hexsha
string
size
int64
ext
string
lang
string
max_stars_repo_path
string
max_stars_repo_name
string
max_stars_repo_head_hexsha
string
max_stars_repo_licenses
list
max_stars_count
int64
max_stars_repo_stars_event_min_datetime
string
max_stars_repo_stars_event_max_datetime
string
max_issues_repo_path
string
max_issues_repo_name
string
max_issues_repo_head_hexsha
string
max_issues_repo_licenses
list
max_issues_count
int64
max_issues_repo_issues_event_min_datetime
string
max_issues_repo_issues_event_max_datetime
string
max_forks_repo_path
string
max_forks_repo_name
string
max_forks_repo_head_hexsha
string
max_forks_repo_licenses
list
max_forks_count
int64
max_forks_repo_forks_event_min_datetime
string
max_forks_repo_forks_event_max_datetime
string
content
string
avg_line_length
float64
max_line_length
int64
alphanum_fraction
float64
c5dc416e494e26ec6dac75fdb4ed3d74fb20b2d9
314
js
JavaScript
app/components/VTXDashboard/VTXAddress/VTXAddress.js
inconduit/vtx-demo
0e40cdba784d485058709a682adfc2671234983d
[ "MIT" ]
null
null
null
app/components/VTXDashboard/VTXAddress/VTXAddress.js
inconduit/vtx-demo
0e40cdba784d485058709a682adfc2671234983d
[ "MIT" ]
null
null
null
app/components/VTXDashboard/VTXAddress/VTXAddress.js
inconduit/vtx-demo
0e40cdba784d485058709a682adfc2671234983d
[ "MIT" ]
null
null
null
import React from 'react'; import { string } from 'prop-types'; import './style.scss'; const VTXAddress = (props) => ( <div className="vtx-address"> <h2> Address </h2> <h4> {props.address} </h4> </div> ); VTXAddress.propTypes = { address: string }; export default VTXAddress;
14.272727
36
0.595541
c5dc57da0a6a1e020b88236fda1efbaa17aa0948
662
js
JavaScript
dist/src/helpers/vars.helper.js
Mravuri96/svelte-sitemap
d4e1141c98cb0cb7da06a0b94cb3867cafd8ebe4
[ "MIT" ]
1
2022-02-10T15:25:59.000Z
2022-02-10T15:25:59.000Z
dist/src/helpers/vars.helper.js
Mravuri96/svelte-sitemap
d4e1141c98cb0cb7da06a0b94cb3867cafd8ebe4
[ "MIT" ]
null
null
null
dist/src/helpers/vars.helper.js
Mravuri96/svelte-sitemap
d4e1141c98cb0cb7da06a0b94cb3867cafd8ebe4
[ "MIT" ]
null
null
null
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.errorMsg = exports.successMsg = exports.cliColors = void 0; exports.cliColors = { cyanAndBold: '\x1b[36m\x1b[1m%s\x1b[22m\x1b[0m', green: '\x1b[32m%s\x1b[0m', red: '\x1b[31m%s\x1b[0m' }; const successMsg = (outDir) => ` ✔ done. Check your new sitemap here: ./${outDir}/sitemap.xml`; exports.successMsg = successMsg; const errorMsg = (outDir) => ` × Make sure you are using this script as 'postbuild' so '${outDir}' folder was successfully created before running this script. See https://github.com/bartholomej/svelte-sitemap#readme`; exports.errorMsg = errorMsg;
50.923077
218
0.708459
c5dc89c78ae23f2559a51707c990f78dfc0cd4e8
10,253
js
JavaScript
src/ws-scrcpy/frontend/gl/three/examples/jsm/loaders/PCDLoader.js
MartinRGB/TweakIt-Desktop
11f0f0a44436c77dd13276484b77897d85c32a56
[ "Apache-2.0" ]
33
2021-07-13T14:39:26.000Z
2022-02-19T07:11:09.000Z
src/ws-scrcpy/frontend/gl/three/examples/jsm/loaders/PCDLoader.js
MartinRGB/TweakIt-Desktop
11f0f0a44436c77dd13276484b77897d85c32a56
[ "Apache-2.0" ]
1
2022-01-04T03:00:28.000Z
2022-01-25T05:42:20.000Z
src/ws-scrcpy/frontend/gl/three/examples/jsm/loaders/PCDLoader.js
MartinRGB/TweakIt-Desktop
11f0f0a44436c77dd13276484b77897d85c32a56
[ "Apache-2.0" ]
1
2021-12-31T15:00:09.000Z
2021-12-31T15:00:09.000Z
import { BufferGeometry, FileLoader, Float32BufferAttribute, Loader, LoaderUtils, Points, PointsMaterial } from '../../../src/Three'; var PCDLoader = function ( manager ) { Loader.call( this, manager ); this.littleEndian = true; }; PCDLoader.prototype = Object.assign( Object.create( Loader.prototype ), { constructor: PCDLoader, load: function ( url, onLoad, onProgress, onError ) { var scope = this; var loader = new FileLoader( scope.manager ); loader.setPath( scope.path ); loader.setResponseType( 'arraybuffer' ); loader.setRequestHeader( scope.requestHeader ); loader.setWithCredentials( scope.withCredentials ); loader.load( url, function ( data ) { try { onLoad( scope.parse( data, url ) ); } catch ( e ) { if ( onError ) { onError( e ); } else { console.error( e ); } scope.manager.itemError( url ); } }, onProgress, onError ); }, parse: function ( data, url ) { // from https://gitlab.com/taketwo/three-pcd-loader/blob/master/decompress-lzf.js function decompressLZF( inData, outLength ) { var inLength = inData.length; var outData = new Uint8Array( outLength ); var inPtr = 0; var outPtr = 0; var ctrl; var len; var ref; do { ctrl = inData[ inPtr ++ ]; if ( ctrl < ( 1 << 5 ) ) { ctrl ++; if ( outPtr + ctrl > outLength ) throw new Error( 'Output buffer is not large enough' ); if ( inPtr + ctrl > inLength ) throw new Error( 'Invalid compressed data' ); do { outData[ outPtr ++ ] = inData[ inPtr ++ ]; } while ( -- ctrl ); } else { len = ctrl >> 5; ref = outPtr - ( ( ctrl & 0x1f ) << 8 ) - 1; if ( inPtr >= inLength ) throw new Error( 'Invalid compressed data' ); if ( len === 7 ) { len += inData[ inPtr ++ ]; if ( inPtr >= inLength ) throw new Error( 'Invalid compressed data' ); } ref -= inData[ inPtr ++ ]; if ( outPtr + len + 2 > outLength ) throw new Error( 'Output buffer is not large enough' ); if ( ref < 0 ) throw new Error( 'Invalid compressed data' ); if ( ref >= outPtr ) throw new Error( 'Invalid compressed data' ); do { outData[ outPtr ++ ] = outData[ ref ++ ]; } while ( -- len + 2 ); } } while ( inPtr < inLength ); return outData; } function parseHeader( data ) { var PCDheader = {}; var result1 = data.search( /[\r\n]DATA\s(\S*)\s/i ); var result2 = /[\r\n]DATA\s(\S*)\s/i.exec( data.substr( result1 - 1 ) ); PCDheader.data = result2[ 1 ]; PCDheader.headerLen = result2[ 0 ].length + result1; PCDheader.str = data.substr( 0, PCDheader.headerLen ); // remove comments PCDheader.str = PCDheader.str.replace( /\#.*/gi, '' ); // parse PCDheader.version = /VERSION (.*)/i.exec( PCDheader.str ); PCDheader.fields = /FIELDS (.*)/i.exec( PCDheader.str ); PCDheader.size = /SIZE (.*)/i.exec( PCDheader.str ); PCDheader.type = /TYPE (.*)/i.exec( PCDheader.str ); PCDheader.count = /COUNT (.*)/i.exec( PCDheader.str ); PCDheader.width = /WIDTH (.*)/i.exec( PCDheader.str ); PCDheader.height = /HEIGHT (.*)/i.exec( PCDheader.str ); PCDheader.viewpoint = /VIEWPOINT (.*)/i.exec( PCDheader.str ); PCDheader.points = /POINTS (.*)/i.exec( PCDheader.str ); // evaluate if ( PCDheader.version !== null ) PCDheader.version = parseFloat( PCDheader.version[ 1 ] ); if ( PCDheader.fields !== null ) PCDheader.fields = PCDheader.fields[ 1 ].split( ' ' ); if ( PCDheader.type !== null ) PCDheader.type = PCDheader.type[ 1 ].split( ' ' ); if ( PCDheader.width !== null ) PCDheader.width = parseInt( PCDheader.width[ 1 ] ); if ( PCDheader.height !== null ) PCDheader.height = parseInt( PCDheader.height[ 1 ] ); if ( PCDheader.viewpoint !== null ) PCDheader.viewpoint = PCDheader.viewpoint[ 1 ]; if ( PCDheader.points !== null ) PCDheader.points = parseInt( PCDheader.points[ 1 ], 10 ); if ( PCDheader.points === null ) PCDheader.points = PCDheader.width * PCDheader.height; if ( PCDheader.size !== null ) { PCDheader.size = PCDheader.size[ 1 ].split( ' ' ).map( function ( x ) { return parseInt( x, 10 ); } ); } if ( PCDheader.count !== null ) { PCDheader.count = PCDheader.count[ 1 ].split( ' ' ).map( function ( x ) { return parseInt( x, 10 ); } ); } else { PCDheader.count = []; for ( var i = 0, l = PCDheader.fields.length; i < l; i ++ ) { PCDheader.count.push( 1 ); } } PCDheader.offset = {}; var sizeSum = 0; for ( var i = 0, l = PCDheader.fields.length; i < l; i ++ ) { if ( PCDheader.data === 'ascii' ) { PCDheader.offset[ PCDheader.fields[ i ] ] = i; } else { PCDheader.offset[ PCDheader.fields[ i ] ] = sizeSum; sizeSum += PCDheader.size[ i ] * PCDheader.count[ i ]; } } // for binary only PCDheader.rowSize = sizeSum; return PCDheader; } var textData = LoaderUtils.decodeText( new Uint8Array( data ) ); // parse header (always ascii format) var PCDheader = parseHeader( textData ); // parse data var position = []; var normal = []; var color = []; // ascii if ( PCDheader.data === 'ascii' ) { var offset = PCDheader.offset; var pcdData = textData.substr( PCDheader.headerLen ); var lines = pcdData.split( '\n' ); for ( var i = 0, l = lines.length; i < l; i ++ ) { if ( lines[ i ] === '' ) continue; var line = lines[ i ].split( ' ' ); if ( offset.x !== undefined ) { position.push( parseFloat( line[ offset.x ] ) ); position.push( parseFloat( line[ offset.y ] ) ); position.push( parseFloat( line[ offset.z ] ) ); } if ( offset.rgb !== undefined ) { var rgb = parseFloat( line[ offset.rgb ] ); var r = ( rgb >> 16 ) & 0x0000ff; var g = ( rgb >> 8 ) & 0x0000ff; var b = ( rgb >> 0 ) & 0x0000ff; color.push( r / 255, g / 255, b / 255 ); } if ( offset.normal_x !== undefined ) { normal.push( parseFloat( line[ offset.normal_x ] ) ); normal.push( parseFloat( line[ offset.normal_y ] ) ); normal.push( parseFloat( line[ offset.normal_z ] ) ); } } } // binary-compressed // normally data in PCD files are organized as array of structures: XYZRGBXYZRGB // binary compressed PCD files organize their data as structure of arrays: XXYYZZRGBRGB // that requires a totally different parsing approach compared to non-compressed data if ( PCDheader.data === 'binary_compressed' ) { var sizes = new Uint32Array( data.slice( PCDheader.headerLen, PCDheader.headerLen + 8 ) ); var compressedSize = sizes[ 0 ]; var decompressedSize = sizes[ 1 ]; var decompressed = decompressLZF( new Uint8Array( data, PCDheader.headerLen + 8, compressedSize ), decompressedSize ); var dataview = new DataView( decompressed.buffer ); var offset = PCDheader.offset; for ( var i = 0; i < PCDheader.points; i ++ ) { if ( offset.x !== undefined ) { position.push( dataview.getFloat32( ( PCDheader.points * offset.x ) + PCDheader.size[ 0 ] * i, this.littleEndian ) ); position.push( dataview.getFloat32( ( PCDheader.points * offset.y ) + PCDheader.size[ 1 ] * i, this.littleEndian ) ); position.push( dataview.getFloat32( ( PCDheader.points * offset.z ) + PCDheader.size[ 2 ] * i, this.littleEndian ) ); } if ( offset.rgb !== undefined ) { color.push( dataview.getUint8( ( PCDheader.points * offset.rgb ) + PCDheader.size[ 3 ] * i + 0 ) / 255.0 ); color.push( dataview.getUint8( ( PCDheader.points * offset.rgb ) + PCDheader.size[ 3 ] * i + 1 ) / 255.0 ); color.push( dataview.getUint8( ( PCDheader.points * offset.rgb ) + PCDheader.size[ 3 ] * i + 2 ) / 255.0 ); } if ( offset.normal_x !== undefined ) { normal.push( dataview.getFloat32( ( PCDheader.points * offset.normal_x ) + PCDheader.size[ 4 ] * i, this.littleEndian ) ); normal.push( dataview.getFloat32( ( PCDheader.points * offset.normal_y ) + PCDheader.size[ 5 ] * i, this.littleEndian ) ); normal.push( dataview.getFloat32( ( PCDheader.points * offset.normal_z ) + PCDheader.size[ 6 ] * i, this.littleEndian ) ); } } } // binary if ( PCDheader.data === 'binary' ) { var dataview = new DataView( data, PCDheader.headerLen ); var offset = PCDheader.offset; for ( var i = 0, row = 0; i < PCDheader.points; i ++, row += PCDheader.rowSize ) { if ( offset.x !== undefined ) { position.push( dataview.getFloat32( row + offset.x, this.littleEndian ) ); position.push( dataview.getFloat32( row + offset.y, this.littleEndian ) ); position.push( dataview.getFloat32( row + offset.z, this.littleEndian ) ); } if ( offset.rgb !== undefined ) { color.push( dataview.getUint8( row + offset.rgb + 2 ) / 255.0 ); color.push( dataview.getUint8( row + offset.rgb + 1 ) / 255.0 ); color.push( dataview.getUint8( row + offset.rgb + 0 ) / 255.0 ); } if ( offset.normal_x !== undefined ) { normal.push( dataview.getFloat32( row + offset.normal_x, this.littleEndian ) ); normal.push( dataview.getFloat32( row + offset.normal_y, this.littleEndian ) ); normal.push( dataview.getFloat32( row + offset.normal_z, this.littleEndian ) ); } } } // build geometry var geometry = new BufferGeometry(); if ( position.length > 0 ) geometry.setAttribute( 'position', new Float32BufferAttribute( position, 3 ) ); if ( normal.length > 0 ) geometry.setAttribute( 'normal', new Float32BufferAttribute( normal, 3 ) ); if ( color.length > 0 ) geometry.setAttribute( 'color', new Float32BufferAttribute( color, 3 ) ); geometry.computeBoundingSphere(); // build material var material = new PointsMaterial( { size: 0.005 } ); if ( color.length > 0 ) { material.vertexColors = true; } else { material.color.setHex( Math.random() * 0xffffff ); } // build point cloud var mesh = new Points( geometry, material ); var name = url.split( '' ).reverse().join( '' ); name = /([^\/]*)/.exec( name ); name = name[ 1 ].split( '' ).reverse().join( '' ); mesh.name = name; return mesh; } } ); export { PCDLoader };
25.441687
127
0.604799
c5dc991d1146b573265fcdf02f9c62dea1e5de8e
8,019
js
JavaScript
public/js/audio/nwffacim/2007/082507.js
Christ-Mind-Teachings/cmi-original
4397a750b7d9ec7e234f091d3acbaae73b40e9ad
[ "MIT" ]
null
null
null
public/js/audio/nwffacim/2007/082507.js
Christ-Mind-Teachings/cmi-original
4397a750b7d9ec7e234f091d3acbaae73b40e9ad
[ "MIT" ]
null
null
null
public/js/audio/nwffacim/2007/082507.js
Christ-Mind-Teachings/cmi-original
4397a750b7d9ec7e234f091d3acbaae73b40e9ad
[ "MIT" ]
null
null
null
var cmiAudioTimingData = { "base": "/nwffacim/2007/082507/", "title": "Aug 25, 2007 T13 Introduction", "time": [{ "id": "p0", "seconds": 0 }, { "id": "p1", "seconds": 8.930771433 }, { "id": "p2", "seconds": 21.006491084 }, { "id": "p3", "seconds": 30.29803274 }, { "id": "p4", "seconds": 82.047465508 }, { "id": "p5", "seconds": 87.318502689 }, { "id": "p6", "seconds": 93.844018878 }, { "id": "p7", "seconds": 141.050329184 }, { "id": "p8", "seconds": 177.2163614 }, { "id": "p9", "seconds": 239.987597967 }, { "id": "p10", "seconds": 294.470769911 }, { "id": "p11", "seconds": 382.1097455 }, { "id": "p12", "seconds": 468.236151503 }, { "id": "p13", "seconds": 513.179853156 }, { "id": "p14", "seconds": 537.535563372 }, { "id": "p15", "seconds": 553.101347123 }, { "id": "p16", "seconds": 592.520827287 }, { "id": "p17", "seconds": 801.423220324 }, { "id": "p18", "seconds": 873.99578456 }, { "id": "p19", "seconds": 931.751680636 }, { "id": "p20", "seconds": 972.925993138 }, { "id": "p21", "seconds": 1016.111959653 }, { "id": "p22", "seconds": 1025.653668895 }, { "id": "p23", "seconds": 1028.918027353 }, { "id": "p24", "seconds": 1078.634837162 }, { "id": "p25", "seconds": 1113.532788415 }, { "id": "p26", "seconds": 1139.899933638 }, { "id": "p27", "seconds": 1143.164670167 }, { "id": "p28", "seconds": 1147.686265474 }, { "id": "p29", "seconds": 1153.460048983 }, { "id": "p30", "seconds": 1192.637488617 }, { "id": "p31", "seconds": 1210.208585169 }, { "id": "p32", "seconds": 1213.227909872 }, { "id": "p33", "seconds": 1220.009098775 }, { "id": "p34", "seconds": 1243.363524674 }, { "id": "p35", "seconds": 1264.201338093 }, { "id": "p36", "seconds": 1280.522381826 }, { "id": "p37", "seconds": 1332.248904151 }, { "id": "p38", "seconds": 1353.086879029 }, { "id": "p39", "seconds": 1412.09880985 }, { "id": "p40", "seconds": 1418.375350904 }, { "id": "p41", "seconds": 1469.097012133 }, { "id": "p42", "seconds": 1563.763900766 }, { "id": "p43", "seconds": 1574.060669616 }, { "id": "p44", "seconds": 1594.396353456 }, { "id": "p45", "seconds": 1605.94588102 }, { "id": "p46", "seconds": 1633.067531118 }, { "id": "p47", "seconds": 1649.639863973 }, { "id": "p48", "seconds": 1654.159657223 }, { "id": "p49", "seconds": 1659.93555754 }, { "id": "p50", "seconds": 1690.07054713 }, { "id": "p51", "seconds": 1712.423731776 }, { "id": "p52", "seconds": 1747.074816799 }, { "id": "p53", "seconds": 1786.496165162 }, { "id": "p54", "seconds": 1836.463167125 }, { "id": "p55", "seconds": 1845.250694181 }, { "id": "p56", "seconds": 1854.291212481 }, { "id": "p57", "seconds": 1857.305578412 }, { "id": "p58", "seconds": 1858.31053831 }, { "id": "p59", "seconds": 1865.086735215 }, { "id": "p60", "seconds": 1883.919377625 }, { "id": "p61", "seconds": 1986.861070553 }, { "id": "p62", "seconds": 2047.123714751 }, { "id": "p63", "seconds": 2149.563468866 }, { "id": "p64", "seconds": 2206.815022597 }, { "id": "p65", "seconds": 2245.735764463 }, { "id": "p66", "seconds": 2276.120590543 }, { "id": "p67", "seconds": 2286.16485566 }, { "id": "p68", "seconds": 2297.217132031 }, { "id": "p69", "seconds": 2303.49559142 }, { "id": "p70", "seconds": 2311.783575491 }, { "id": "p71", "seconds": 2316.058379032 }, { "id": "p72", "seconds": 2339.667528364 }, { "id": "p73", "seconds": 2347.702194025 }, { "id": "p74", "seconds": 2350.213051321 }, { "id": "p75", "seconds": 2358.746015093 }, { "id": "p76", "seconds": 2366.028254531 }, { "id": "p77", "seconds": 2382.598268042 }, { "id": "p78", "seconds": 2386.61652205 }, { "id": "p79", "seconds": 2400.428047356 }, { "id": "p80", "seconds": 2406.455268688 }, { "id": "p81", "seconds": 2439.847753553 }, { "id": "p82", "seconds": 2443.362118884 }, { "id": "p83", "seconds": 2451.149893583 }, { "id": "p84", "seconds": 2466.463060783 }, { "id": "p85", "seconds": 2488.55759218 }, { "id": "p86", "seconds": 2496.590856317 }, { "id": "p87", "seconds": 2515.170240565 }, { "id": "p88", "seconds": 2518.685708454 }, { "id": "p89", "seconds": 2526.467573809 }, { "id": "p90", "seconds": 2532.239232407 }, { "id": "p91", "seconds": 2642.734096699 }, { "id": "p92", "seconds": 2702.501596227 }, { "id": "p93", "seconds": 2746.944113139 }, { "id": "p94", "seconds": 2754.474602261 }, { "id": "p95", "seconds": 2823.52458504 }, { "id": "p96", "seconds": 2841.351706504 }, { "id": "p97", "seconds": 2877.270565621 }, { "id": "p98", "seconds": 2884.800967765 }, { "id": "p99", "seconds": 2893.087945201 }, { "id": "p100", "seconds": 2903.637710573 }, { "id": "p101", "seconds": 2905.647149209 }, { "id": "p102", "seconds": 2936.530469429 }, { "id": "p103", "seconds": 2942.557942556 }, { "id": "p104", "seconds": 2943.311817587 }, { "id": "p105", "seconds": 2950.088365676 }, { "id": "p106", "seconds": 2989.759358494 }, { "id": "p107", "seconds": 3118.311761495 }, { "id": "p108", "seconds": 3158.242109827 }, { "id": "p109", "seconds": 3250.65522016 }, { "id": "p110", "seconds": 3259.442167887 }, { "id": "p111", "seconds": 3297.605809132 }, { "id": "p112", "seconds": 3350.594048269 }, { "id": "p113", "seconds": 3441.23788007 }, { "id": "p114", "seconds": 3479.908500066 }, { "id": "p115", "seconds": 3551.721879492 }, { "id": "p116", "seconds": 3586.146408026 }, { "id": "p117", "seconds": 3629.337521635 }, { "id": "p118", "seconds": 3689.356812628 }, { "id": "p119", "seconds": 3723.508563997 }, { "id": "p120", "seconds": 3749.120702472 }, { "id": "p121", "seconds": 3749.874354359 }, { "id": "p122", "seconds": 3750.627771573 }, { "id": "p123", "seconds": 3751.381514287 }] };
21.214286
45
0.390697
c5dcc17c4a5ab5c6f3022fe3d3714a6d807bc7e8
19,670
js
JavaScript
htdocs/moodle/blocks/timeline/amd/src/event_list.js
ifleeyo180/VspriteMoodleWebsite
38baa924829c83808d2c87d44740ff365927a646
[ "Apache-2.0" ]
null
null
null
htdocs/moodle/blocks/timeline/amd/src/event_list.js
ifleeyo180/VspriteMoodleWebsite
38baa924829c83808d2c87d44740ff365927a646
[ "Apache-2.0" ]
null
null
null
htdocs/moodle/blocks/timeline/amd/src/event_list.js
ifleeyo180/VspriteMoodleWebsite
38baa924829c83808d2c87d44740ff365927a646
[ "Apache-2.0" ]
null
null
null
// This file is part of Moodle - http://moodle.org/ // // Moodle 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. // // Moodle 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 Moodle. If not, see <http://www.gnu.org/licenses/>. /** * Javascript to load and render the list of calendar events for a * given day range. * * @module block_timeline/event_list * @copyright 2016 Ryan Wyllie <ryan@moodle.com> * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ define( [ 'jquery', 'core/notification', 'core/templates', 'core/paged_content_factory', 'core/str', 'core/user_date', 'block_timeline/calendar_events_repository' ], function( $, Notification, Templates, PagedContentFactory, Str, UserDate, CalendarEventsRepository ) { var SECONDS_IN_DAY = 60 * 60 * 24; var SELECTORS = { EMPTY_MESSAGE: '[data-region="empty-message"]', ROOT: '[data-region="event-list-container"]', EVENT_LIST_CONTENT: '[data-region="event-list-content"]', EVENT_LIST_LOADING_PLACEHOLDER: '[data-region="event-list-loading-placeholder"]', }; var TEMPLATES = { EVENT_LIST_CONTENT: 'block_timeline/event-list-content' }; // We want the paged content controls below the paged content area // and the controls should be ignored while data is loading. var DEFAULT_PAGED_CONTENT_CONFIG = { ignoreControlWhileLoading: true, controlPlacementBottom: true, ariaLabels: { itemsperpagecomponents: 'ariaeventlistpagelimit, block_timeline', } }; /** * Hide the content area and display the empty content message. * * @param {object} root The container element */ var hideContent = function(root) { root.find(SELECTORS.EVENT_LIST_CONTENT).addClass('hidden'); root.find(SELECTORS.EMPTY_MESSAGE).removeClass('hidden'); }; /** * Show the content area and hide the empty content message. * * @param {object} root The container element */ var showContent = function(root) { root.find(SELECTORS.EVENT_LIST_CONTENT).removeClass('hidden'); root.find(SELECTORS.EMPTY_MESSAGE).addClass('hidden'); }; /** * Empty the content area. * * @param {object} root The container element */ var emptyContent = function(root) { root.find(SELECTORS.EVENT_LIST_CONTENT).empty(); }; /** * Construct the template context from a list of calendar events. The events * are grouped by which day they are on. The day is calculated from the user's * midnight timestamp to ensure that the calculation is timezone agnostic. * * The return data structure will look like: * { * eventsbyday: [ * { * dayTimestamp: 1533744000, * events: [ * { ...event 1 data... }, * { ...event 2 data... } * ] * }, * { * dayTimestamp: 1533830400, * events: [ * { ...event 3 data... }, * { ...event 4 data... } * ] * } * ] * } * * Each day timestamp is the day's midnight in the user's timezone. * * @param {array} calendarEvents List of calendar events * @param {Number} midnight A timestamp representing midnight in the user's timezone * @return {object} */ var buildTemplateContext = function(calendarEvents, midnight) { var eventsByDay = {}; var templateContext = { eventsbyday: [] }; calendarEvents.forEach(function(calendarEvent) { var dayTimestamp = calendarEvent.timeusermidnight; if (eventsByDay[dayTimestamp]) { eventsByDay[dayTimestamp].push(calendarEvent); } else { eventsByDay[dayTimestamp] = [calendarEvent]; } }); Object.keys(eventsByDay).forEach(function(dayTimestamp) { var events = eventsByDay[dayTimestamp]; templateContext.eventsbyday.push({ past: dayTimestamp < midnight, dayTimestamp: dayTimestamp, events: events }); }); return templateContext; }; /** * Render the HTML for the given calendar events. * * @param {array} calendarEvents A list of calendar events * @param {Number} midnight A timestamp representing midnight for the user * @return {promise} Resolved with HTML and JS strings. */ var render = function(calendarEvents, midnight) { var templateContext = buildTemplateContext(calendarEvents, midnight); var templateName = TEMPLATES.EVENT_LIST_CONTENT; return Templates.render(templateName, templateContext); }; /** * Retrieve a list of calendar events from the server for the given * constraints. * * @param {Number} midnight The user's midnight time in unix timestamp. * @param {Number} limit Limit the result set to this number of items * @param {Number} daysOffset How many days (from midnight) to offset the results from * @param {int|undefined} daysLimit How many dates (from midnight) to limit the result to * @param {int|false} lastId The ID of the last seen event (if any) * @param {int|undefined} courseId Course ID to restrict events to * @return {Promise} A jquery promise */ var load = function(midnight, limit, daysOffset, daysLimit, lastId, courseId) { var startTime = midnight + (daysOffset * SECONDS_IN_DAY); var endTime = daysLimit != undefined ? midnight + (daysLimit * SECONDS_IN_DAY) : false; var args = { starttime: startTime, limit: limit, }; if (lastId) { args.aftereventid = lastId; } if (endTime) { args.endtime = endTime; } if (courseId) { // If we have a course id then we only want events from that course. args.courseid = courseId; return CalendarEventsRepository.queryByCourse(args); } else { // Otherwise we want events from any course. return CalendarEventsRepository.queryByTime(args); } }; /** * Handle a single page request from the paged content. Uses the given page data to request * the events from the server. * * Checks the given preloadedPages before sending a request to the server to make sure we * don't load data unnecessarily. * * @param {object} pageData A single page data (see core/paged_content_pages for more info). * @param {object} actions Paged content actions (see core/paged_content_pages for more info). * @param {Number} midnight The user's midnight time in unix timestamp. * @param {object} lastIds The last event ID for each loaded page. Page number is key, id is value. * @param {object} preloadedPages An object of preloaded page data. Page number as key, data promise as value. * @param {int|undefined} courseId Course ID to restrict events to * @param {Number} daysOffset How many days (from midnight) to offset the results from * @param {int|undefined} daysLimit How many dates (from midnight) to limit the result to * @return {object} jQuery promise resolved with calendar events. */ var loadEventsFromPageData = function( pageData, actions, midnight, lastIds, preloadedPages, courseId, daysOffset, daysLimit ) { var pageNumber = pageData.pageNumber; var limit = pageData.limit; var lastPageNumber = pageNumber; // This is here to protect us if, for some reason, the pages // are loaded out of order somehow and we don't have a reference // to the previous page. In that case, scan back to find the most // recent page we've seen. while (!lastIds.hasOwnProperty(lastPageNumber)) { lastPageNumber--; } // Use the last id of the most recent page. var lastId = lastIds[lastPageNumber]; var eventsPromise = null; if (preloadedPages && preloadedPages.hasOwnProperty(pageNumber)) { // This page has been preloaded so use that rather than load the values // again. eventsPromise = preloadedPages[pageNumber]; } else { // Load one more than the given limit so that we can tell if there // is more content to load after this. eventsPromise = load(midnight, limit + 1, daysOffset, daysLimit, lastId, courseId); } return eventsPromise.then(function(result) { if (!result.events.length) { // If we didn't get any events back then tell the paged content // that we're done loading. actions.allItemsLoaded(pageNumber); return []; } var calendarEvents = result.events.filter(function(event) { if (event.eventtype == "open" || event.eventtype == "opensubmission") { var dayTimestamp = UserDate.getUserMidnightForTimestamp(event.timesort, midnight); return dayTimestamp > midnight; } return true; }); // We expect to receive limit + 1 events back from the server. // Any less means there are no more events to load. var loadedAll = calendarEvents.length <= limit; if (loadedAll) { // Tell the pagination that everything is loaded. actions.allItemsLoaded(pageNumber); } else { // Remove the last element from the array because it isn't // needed in this result set. calendarEvents.pop(); } return calendarEvents; }); }; /** * Use the paged content factory to create a paged content element for showing * the event list. We only provide a page limit to the factory because we don't * know exactly how many pages we'll need. This creates a paging bar with just * next/previous buttons. * * This function specifies the callback for loading the event data that the user * is requesting. * * @param {int|array} pageLimit A single limit or list of limits as options for the paged content * @param {object} preloadedPages An object of preloaded page data. Page number as key, data promise as value. * @param {Number} midnight The user's midnight time in unix timestamp. * @param {object} firstLoad A jQuery promise to be resolved after the first set of data is loaded. * @param {int|undefined} courseId Course ID to restrict events to * @param {Number} daysOffset How many days (from midnight) to offset the results from * @param {int|undefined} daysLimit How many dates (from midnight) to limit the result to * @param {string} paginationAriaLabel String to set as the aria label for the pagination bar. * @param {object} additionalConfig Additional config options to pass to pagedContentFactory * @return {object} jQuery promise. */ var createPagedContent = function( pageLimit, preloadedPages, midnight, firstLoad, courseId, daysOffset, daysLimit, paginationAriaLabel, additionalConfig ) { // Remember the last event id we loaded on each page because we can't // use the offset value since the backend can skip events if the user doesn't // have the capability to see them. Instead we load the next page of events // based on the last seen event id. var lastIds = {'1': 0}; var hasContent = false; var config = $.extend({}, DEFAULT_PAGED_CONTENT_CONFIG, additionalConfig); return Str.get_string( 'ariaeventlistpagelimit', 'block_timeline', $.isArray(pageLimit) ? pageLimit[0].value : pageLimit ) .then(function(string) { config.ariaLabels.itemsperpage = string; config.ariaLabels.paginationnav = paginationAriaLabel; return string; }) .then(function() { return PagedContentFactory.createWithLimit( pageLimit, function(pagesData, actions) { var promises = []; pagesData.forEach(function(pageData) { var pageNumber = pageData.pageNumber; // Load the page data. var pagePromise = loadEventsFromPageData( pageData, actions, midnight, lastIds, preloadedPages, courseId, daysOffset, daysLimit ).then(function(calendarEvents) { if (calendarEvents.length) { // Remember that we've loaded content. hasContent = true; // Remember the last id we've seen. var lastEventId = calendarEvents[calendarEvents.length - 1].id; // Record the id that the next page will need to start from. lastIds[pageNumber + 1] = lastEventId; // Get the HTML and JS for these calendar events. return render(calendarEvents, midnight); } else { return calendarEvents; } }) .catch(Notification.exception); promises.push(pagePromise); }); $.when.apply($, promises).then(function() { // Tell the calling code that the first page has been loaded // and whether it contains any content. firstLoad.resolve(hasContent); return; }) .catch(function() { firstLoad.resolve(hasContent); }); return promises; }, config ); }); }; /** * Create a paged content region for the calendar events in the given root element. * The content of the root element are replaced with a new paged content section * each time this function is called. * * This function will be called each time the offset or limit values are changed to * reload the event list region. * * @param {object} root The event list container element * @param {int|array} pageLimit A single limit or list of limits as options for the paged content * @param {object} preloadedPages An object of preloaded page data. Page number as key, data promise as value. * @param {string} paginationAriaLabel String to set as the aria label for the pagination bar. * @param {object} additionalConfig Additional config options to pass to pagedContentFactory */ var init = function(root, pageLimit, preloadedPages, paginationAriaLabel, additionalConfig) { root = $(root); // Create a promise that will be resolved once the first set of page // data has been loaded. This ensures that the loading placeholder isn't // hidden until we have all of the data back to prevent the page elements // jumping around. var firstLoad = $.Deferred(); var eventListContent = root.find(SELECTORS.EVENT_LIST_CONTENT); var loadingPlaceholder = root.find(SELECTORS.EVENT_LIST_LOADING_PLACEHOLDER); var courseId = root.attr('data-course-id'); var daysOffset = parseInt(root.attr('data-days-offset'), 10); var daysLimit = root.attr('data-days-limit'); var midnight = parseInt(root.attr('data-midnight'), 10); // Make sure the content area and loading placeholder is visible. // This is because the init function can be called to re-initialise // an existing event list area. emptyContent(root); showContent(root); loadingPlaceholder.removeClass('hidden'); // Days limit isn't mandatory. if (daysLimit != undefined) { daysLimit = parseInt(daysLimit, 10); } // Created the paged content element. return createPagedContent(pageLimit, preloadedPages, midnight, firstLoad, courseId, daysOffset, daysLimit, paginationAriaLabel, additionalConfig) .then(function(html, js) { html = $(html); // Hide the content for now. html.addClass('hidden'); // Replace existing elements with the newly created paged content. // If we're reinitialising an existing event list this will replace // the old event list (including removing any event handlers). Templates.replaceNodeContents(eventListContent, html, js); firstLoad.then(function(hasContent) { // Prevent changing page elements too much by only showing the content // once we've loaded some data for the first time. This allows our // fancy loading placeholder to shine. html.removeClass('hidden'); loadingPlaceholder.addClass('hidden'); if (!hasContent) { // If we didn't get any data then show the empty data message. hideContent(root); } return hasContent; }) .catch(function() { return false; }); return html; }) .catch(Notification.exception); }; return { init: init, rootSelector: SELECTORS.ROOT, }; });
41.410526
115
0.564514
c5dcd36fe0800a5be4c83ef625b36f2dc36c9f42
2,196
js
JavaScript
wiki2/resources/src/mediawiki.action/mediawiki.action.view.postEdit.js
unpo88/KHUHACKER
734cf299987f3c403d090c1ae91c75eea2ec604a
[ "MIT" ]
1
2019-10-09T13:48:40.000Z
2019-10-09T13:48:40.000Z
wiki2/resources/src/mediawiki.action/mediawiki.action.view.postEdit.js
unpo88/KHUHACKER
734cf299987f3c403d090c1ae91c75eea2ec604a
[ "MIT" ]
5
2019-07-28T08:18:23.000Z
2020-09-06T01:25:28.000Z
wiki2/resources/src/mediawiki.action/mediawiki.action.view.postEdit.js
unpo88/KHUHACKER
734cf299987f3c403d090c1ae91c75eea2ec604a
[ "MIT" ]
1
2019-07-28T10:17:46.000Z
2019-07-28T10:17:46.000Z
( function () { 'use strict'; /** * Fired after an edit was successfully saved. * * Does not fire for null edits. * * @event postEdit * @member mw.hook * @param {Object} [data] Optional data * @param {string|jQuery|Array} [data.message] Message that listeners * should use when displaying notifications. String for plain text, * use array or jQuery object to pass actual nodes. * @param {string|mw.user} [data.user=mw.user] User that made the edit. */ /** * After the listener for #postEdit removes the notification. * * @event postEdit_afterRemoval * @member mw.hook */ var postEdit = mw.config.get( 'wgPostEdit' ); function showConfirmation( data ) { var $container, $popup, $content, timeoutId; function fadeOutConfirmation() { $popup.addClass( 'postedit-faded' ); setTimeout( function () { $container.remove(); mw.hook( 'postEdit.afterRemoval' ).fire(); }, 250 ); } data = data || {}; if ( data.message === undefined ) { data.message = $.parseHTML( mw.message( mw.config.get( 'wgEditSubmitButtonLabelPublish' ) ? 'postedit-confirmation-published' : 'postedit-confirmation-saved', data.user || mw.user ).escaped() ); } $content = $( '<div>' ).addClass( 'postedit-icon postedit-icon-checkmark postedit-content' ); if ( typeof data.message === 'string' ) { $content.text( data.message ); } else if ( typeof data.message === 'object' ) { $content.append( data.message ); } $popup = $( '<div>' ).addClass( 'postedit mw-notification' ).append( $content ) .on( 'click', function () { clearTimeout( timeoutId ); fadeOutConfirmation(); } ); $container = $( '<div>' ).addClass( 'postedit-container' ).append( $popup ); timeoutId = setTimeout( fadeOutConfirmation, 3000 ); $( 'body' ).prepend( $container ); } mw.hook( 'postEdit' ).add( showConfirmation ); if ( postEdit ) { mw.hook( 'postEdit' ).fire( { // The following messages can be used here: // postedit-confirmation-saved // postedit-confirmation-created // postedit-confirmation-restored message: mw.msg( 'postedit-confirmation-' + postEdit, mw.user ) } ); } }() );
26.142857
95
0.637523
c5dcd7cfa6261608a1f01bbf426668a17a1c7211
131
js
JavaScript
src/custamConsole.js
aclearworld/learning-react
6c98f9f7fffd760db287547cddd4138a0d33bd59
[ "MIT" ]
null
null
null
src/custamConsole.js
aclearworld/learning-react
6c98f9f7fffd760db287547cddd4138a0d33bd59
[ "MIT" ]
null
null
null
src/custamConsole.js
aclearworld/learning-react
6c98f9f7fffd760db287547cddd4138a0d33bd59
[ "MIT" ]
null
null
null
const colors = require('colors') colors.setTheme({ err: 'red', warn: 'yellow', funny: 'rainbow' }) module.exports = colors
13.1
32
0.648855
c5ddabd0c99643bb2d25a5be4326746a8229a965
461
js
JavaScript
packages/ext-web-components-classic/src/ext-multiselector.component.js
shanu-celestial/ext-web-components
f17a89613a2103a16d6ba0701a45e0f64c527d81
[ "Apache-2.0", "MIT" ]
null
null
null
packages/ext-web-components-classic/src/ext-multiselector.component.js
shanu-celestial/ext-web-components
f17a89613a2103a16d6ba0701a45e0f64c527d81
[ "Apache-2.0", "MIT" ]
null
null
null
packages/ext-web-components-classic/src/ext-multiselector.component.js
shanu-celestial/ext-web-components
f17a89613a2103a16d6ba0701a45e0f64c527d81
[ "Apache-2.0", "MIT" ]
null
null
null
import Ext_view_MultiSelector from './Ext/view/MultiSelector.js'; import ElementParser from './ElementParser.js'; export default class EWCMultiselector extends Ext_view_MultiSelector { constructor() { super ([], []); this.xtype = 'multiselector'; } } try { window.customElements.define('ext-multiselector', ElementParser.withParsedCallback(EWCMultiselector)); } catch(e) { window.customElements.define('ext-multiselector', EWCMultiselector); }
28.8125
104
0.75705
c5dde8038621285836717a02e50b2067831da124
11,145
js
JavaScript
apache/htdocs/vtigerCRM/layouts/vlayout/modules/Reports/resources/Edit1.js
trol929/test
83be14de9edc438eb036c9287f6d65f6f0878201
[ "Apache-2.0" ]
9
2019-04-30T21:18:12.000Z
2021-11-19T06:06:57.000Z
apache/htdocs/vtigerCRM/layouts/vlayout/modules/Reports/resources/Edit1.js
trol929/test
83be14de9edc438eb036c9287f6d65f6f0878201
[ "Apache-2.0" ]
1
2019-10-21T02:15:52.000Z
2019-10-21T02:15:52.000Z
apache/htdocs/vtigerCRM/layouts/vlayout/modules/Reports/resources/Edit1.js
trol929/test
83be14de9edc438eb036c9287f6d65f6f0878201
[ "Apache-2.0" ]
12
2019-03-30T04:58:04.000Z
2021-11-12T04:01:41.000Z
/*+*********************************************************************************** * The contents of this file are subject to the vtiger CRM Public License Version 1.0 * ("License"); You may not use this file except in compliance with the License * The Original Code is: vtiger CRM Open Source * The Initial Developer of the Original Code is vtiger. * Portions created by vtiger are Copyright (C) vtiger. * All Rights Reserved. *************************************************************************************/ Reports_Edit_Js("Reports_Edit1_Js",{},{ relatedModulesMapping : false, step1Container : false, secondaryModulesContainer : false, init : function() { this.initialize(); }, /** * Function to get the container which holds all the reports step1 elements * @return jQuery object */ getContainer : function() { return this.step1Container; }, /** * Function to set the reports step1 container * @params : element - which represents the reports step1 container * @return : current instance */ setContainer : function(element) { this.step1Container = element; return this; }, /* * Function to get the secondary module container */ getSecondaryModuleContainer : function(){ if(this.secondaryModulesContainer == false){ this.secondaryModulesContainer = jQuery('#secondary_module'); } return this.secondaryModulesContainer; }, /** * Function to intialize the reports step1 */ initialize : function(container) { if(typeof container == 'undefined') { container = jQuery('#report_step1'); } if(container.is('#report_step1')) { this.setContainer(container); }else{ this.setContainer(jQuery('#report_step1')); } this.intializeOperationMappingDetails(); }, /** * Function which will save the related modules mapping */ intializeOperationMappingDetails : function() { this.relatedModulesMapping = jQuery('#relatedModules').data('value'); }, /** * Function which will return set of condition for the given field type * @return array of conditions */ getRelatedModulesFromPrimaryModule : function(primaryModule){ return this.relatedModulesMapping[primaryModule]; }, loadRelatedModules : function(primaryModule){ var relatedModulesMapping = this.getRelatedModulesFromPrimaryModule(primaryModule); var options = ''; for(var key in relatedModulesMapping) { //IE Browser consider the prototype properties also, it should consider has own properties only. if(relatedModulesMapping.hasOwnProperty(key)) { options += '<option value="'+key+'">'+relatedModulesMapping[key]+'</option>'; } } var secondaryModulesContainer = this.getSecondaryModuleContainer(); secondaryModulesContainer.html(options).trigger("change"); }, registerPrimaryModuleChangeEvent : function(){ var thisInstance = this; jQuery('#primary_module').on('change',function(e){ var primaryModule = jQuery(e.currentTarget).val(); thisInstance.loadRelatedModules(primaryModule); }); }, /* * Function to check Duplication of report Name * returns boolean true or false */ checkDuplicateName : function(details) { var aDeferred = jQuery.Deferred(); var moduleName = app.getModuleName(); var params = { 'module' : moduleName, 'action' : "CheckDuplicate", 'reportname' : details.reportName, 'record' : details.reportId, 'isDuplicate' : details.isDuplicate } AppConnector.request(params).then( function(data) { var response = data['result']; var result = response['success']; if(result == true) { aDeferred.reject(response); } else { aDeferred.resolve(response); } }, function(error,err){ aDeferred.reject(); } ); return aDeferred.promise(); }, submit : function(){ var thisInstance = this; var aDeferred = jQuery.Deferred(); var form = this.getContainer(); var formData = form.serializeFormData(); var params = {}; var reportName = jQuery.trim(formData.reportname); var reportId = formData.record; var progressIndicatorElement = jQuery.progressIndicator({ 'position' : 'html', 'blockInfo' : { 'enabled' : true } }); thisInstance.checkDuplicateName({ 'reportName' : reportName, 'reportId' : reportId, 'isDuplicate' : formData.isDuplicate }).then( function(data){ AppConnector.request(formData).then( function(data) { form.hide(); progressIndicatorElement.progressIndicator({ 'mode' : 'hide' }) aDeferred.resolve(data); }, function(error,err){ } ); }, function(data, err){ progressIndicatorElement.progressIndicator({ 'mode' : 'hide' }); params = { title: app.vtranslate('JS_DUPLICATE_RECORD'), text: data['message'] }; Vtiger_Helper_Js.showPnotify(params); aDeferred.reject(); } ); return aDeferred.promise(); }, /** * Function which will register the select2 elements for secondary modules selection */ registerSelect2ElementForSecondaryModulesSelection : function() { var secondaryModulesContainer = this.getSecondaryModuleContainer(); app.changeSelectElementView(secondaryModulesContainer, 'select2', {maximumSelectionSize: 2}); }, /** * Function to register event for scheduled reports UI */ registerEventForScheduledReprots : function() { var thisInstance = this; jQuery('input[name="enable_schedule"]').on('click', function(e) { var element = jQuery(e.currentTarget); var scheduleBoxContainer = jQuery('#scheduleBox'); if(element.is(':checked')) { element.val(element.is(':checked')); scheduleBoxContainer.removeClass('hide'); } else { element.val(element.is(':checked')); scheduleBoxContainer.addClass('hide'); } }); app.registerEventForTimeFields('#schtime', true); app.registerEventForDatePickerFields('#scheduleByDate', true); jQuery('#annualDates').chosen(); jQuery('#schdayoftheweek').chosen(); jQuery('#schdayofthemonth').chosen(); jQuery('#recipients').chosen(); var currentYear = new Date().getFullYear(); jQuery('#annualDatePicker').datepick({autoSize: true, multiSelect:100,monthsToShow: [1,2], minDate: '01/01/'+currentYear, maxDate: '12/31/'+currentYear, yearRange: currentYear+':'+currentYear, onShow : function() { //Hack to remove the year thisInstance.removeYearInAnnualReport(); }, onSelect : function(dates) { var datesInfo = []; var values = []; var html=''; // reset the annual dates var annualDatesEle = jQuery('#annualDates'); thisInstance.updateAnnualDates(annualDatesEle); for(index in dates) { var date = dates[index]; datesInfo.push({ id:thisInstance.DateToYMD(date), text:thisInstance.DateToYMD(date) }); values.push(thisInstance.DateToYMD(date)); html += '<option selected value='+thisInstance.DateToYMD(date)+'>'+thisInstance.DateToYMD(date)+'</option>'; } annualDatesEle.append(html); annualDatesEle.trigger("liszt:updated"); } }); var annualDatesEle = jQuery('#annualDates'); thisInstance.updateAnnualDates(annualDatesEle); annualDatesEle.trigger("liszt:updated"); }, removeYearInAnnualReport : function() { setTimeout(function() { var year = jQuery('.datepick-month.first').find('.datepick-month-year').get(1); jQuery(year).hide(); var monthHeaders = jQuery('.datepick-month-header'); jQuery.each(monthHeaders, function( key, ele ) { var header = jQuery(ele); var str = header.html().replace(/[\d]+/, ''); header.html(str); }); },100); }, updateAnnualDates : function(annualDatesEle) { annualDatesEle.html(''); var annualDatesJSON = jQuery('#hiddenAnnualDates').val(); if(annualDatesJSON) { var hiddenDates = ''; var annualDates = JSON.parse(annualDatesJSON); for(i in annualDates) { hiddenDates += '<option selected value='+annualDates[i]+'>'+annualDates[i]+'</option>'; } annualDatesEle.html(hiddenDates); } }, DateToYMD : function (date) { var year, month, day; year = String(date.getFullYear()); month = String(date.getMonth() + 1); if (month.length == 1) { month = "0" + month; } day = String(date.getDate()); if (day.length == 1) { day = "0" + day; } return year + "-" + month + "-" + day; }, registerEventForChangeInScheduledType : function() { var thisInstance = this; jQuery('#schtypeid').on('change', function(e){ var element = jQuery(e.currentTarget); var value = element.val(); thisInstance.showScheduledTime(); thisInstance.hideScheduledWeekList(); thisInstance.hideScheduledMonthByDateList(); thisInstance.hideScheduledAnually(); thisInstance.hideScheduledSpecificDate(); if(value == '2') { //weekly thisInstance.showScheduledWeekList(); } else if(value == '3') { //monthly by day thisInstance.showScheduledMonthByDateList(); } else if(value == '4') { //Anually thisInstance.showScheduledAnually(); } else if(value == '5') { //specific date thisInstance.showScheduledSpecificDate(); } }); }, //Remove annual dates element registerEventForRemoveAnnualDates : function() { var thisInstance = this; jQuery("#annualDates").chosen().change(function(e){ jQuery('#hiddenAnnualDates').val(JSON.stringify(jQuery(e.target).val())); var element = jQuery(e.currentTarget); thisInstance.updateAnnualDates(element); element.trigger("liszt:updated"); }); }, hideScheduledTime : function() { jQuery('#scheduledTime').addClass('hide'); }, showScheduledTime : function() { jQuery('#scheduledTime').removeClass('hide'); }, hideScheduledWeekList : function() { jQuery('#scheduledWeekDay').addClass('hide'); }, showScheduledWeekList : function() { jQuery('#scheduledWeekDay').removeClass('hide'); }, hideScheduledMonthByDateList : function() { jQuery('#scheduleMonthByDates').addClass('hide'); }, showScheduledMonthByDateList : function() { jQuery('#scheduleMonthByDates').removeClass('hide'); }, hideScheduledSpecificDate : function() { jQuery('#scheduleByDate').addClass('hide'); }, showScheduledSpecificDate : function() { jQuery('#scheduleByDate').removeClass('hide'); }, hideScheduledAnually : function() { jQuery('#scheduleAnually').addClass('hide'); }, showScheduledAnually : function() { jQuery('#scheduleAnually').removeClass('hide'); }, registerEvents : function(){ this.registerPrimaryModuleChangeEvent(); this.registerSelect2ElementForSecondaryModulesSelection(); var container = this.getContainer(); var opts = app.validationEngineOptions; // to prevent the page reload after the validation has completed opts['onValidationComplete'] = function(form,valid) { //returns the valid status return valid; }; opts['promptPosition'] = "bottomRight"; container.validationEngine(opts); //schedule reports this.registerEventForScheduledReprots(); this.registerEventForChangeInScheduledType(); this.registerEventForRemoveAnnualDates(); } });
29.562334
114
0.670974
c5dde8c8a881209dbfe5bc3fe587df64accb7bfb
607
js
JavaScript
Linguagens/JavaScript/array/10-filter2.js
marcos-vcg/WEB-Moderno-2020
923f5ec3e9a8db05d658d29071d18f833cb8211b
[ "MIT" ]
null
null
null
Linguagens/JavaScript/array/10-filter2.js
marcos-vcg/WEB-Moderno-2020
923f5ec3e9a8db05d658d29071d18f833cb8211b
[ "MIT" ]
null
null
null
Linguagens/JavaScript/array/10-filter2.js
marcos-vcg/WEB-Moderno-2020
923f5ec3e9a8db05d658d29071d18f833cb8211b
[ "MIT" ]
null
null
null
Array.prototype.filter2 = function(callback) { const newArray = [] for (let i = 0; i < this.length; i++) { if (callback(this[i], i, this)) { newArray.push(this[i]) } } return newArray } const produtos = [ {nome: 'Notebook', preco: 2499, fragil: true}, {nome: 'iPad Pro', preco: 4199, fragil: true}, {nome: 'Copo de Vidro', preco: 12.49, fragil: true}, {nome: 'Copo de Plástico', preco: 18.99, fragil: false} ] const caro = produto => produto.preco >= 500 const fragil = prod => prod.fragil console.log(produtos.filter2(caro).filter2(fragil))
30.35
59
0.601318
c5ddf2c89dc1a3b2cdcf7072bdae70696e76e2ea
1,150
js
JavaScript
build/es6/node_modules/@vaadin/vaadin-progress-bar/src/vaadin-progress-bar.js
EberlyODL/haxcms-courses
85b5d31995abaf5621a33cfe943347eec01cfa53
[ "Apache-2.0" ]
null
null
null
build/es6/node_modules/@vaadin/vaadin-progress-bar/src/vaadin-progress-bar.js
EberlyODL/haxcms-courses
85b5d31995abaf5621a33cfe943347eec01cfa53
[ "Apache-2.0" ]
null
null
null
build/es6/node_modules/@vaadin/vaadin-progress-bar/src/vaadin-progress-bar.js
EberlyODL/haxcms-courses
85b5d31995abaf5621a33cfe943347eec01cfa53
[ "Apache-2.0" ]
null
null
null
import{PolymerElement}from"../../../@polymer/polymer/polymer-element.js";import{ProgressMixin}from"./vaadin-progress-mixin.js";import{ThemableMixin}from"../../vaadin-themable-mixin/vaadin-themable-mixin.js";import{ElementMixin}from"../../vaadin-element-mixin/vaadin-element-mixin.js";import{html}from"../../../@polymer/polymer/lib/utils/html-tag.js";class ProgressBarElement extends ElementMixin(ThemableMixin(ProgressMixin(PolymerElement))){static get template(){return html` <style> :host { display: block; width: 100%; /* prevent collapsing inside non-stretching column flex */ height: 8px; } :host([hidden]) { display: none !important; } [part="bar"] { height: 100%; } [part="value"] { height: 100%; transform-origin: 0 50%; transform: scaleX(var(--vaadin-progress-value)); } </style> <div part="bar"> <div part="value"></div> </div> `}static get is(){return"vaadin-progress-bar"}static get version(){return"1.1.0"}}customElements.define(ProgressBarElement.is,ProgressBarElement);export{ProgressBarElement};
41.071429
476
0.653913
c5de105202c916dfa443dfcca28e38b525a2a0d1
5,315
js
JavaScript
test/multiInstances.test.js
Intellihealth/feathers-auth-management
58642d90bf4580d3934f7e93909751432211fcc7
[ "MIT" ]
null
null
null
test/multiInstances.test.js
Intellihealth/feathers-auth-management
58642d90bf4580d3934f7e93909751432211fcc7
[ "MIT" ]
4
2020-07-18T08:42:09.000Z
2021-05-10T15:29:32.000Z
test/multiInstances.test.js
Intellihealth/feathers-auth-management
58642d90bf4580d3934f7e93909751432211fcc7
[ "MIT" ]
1
2020-09-14T13:47:52.000Z
2020-09-14T13:47:52.000Z
/* global assert, describe, it */ const assert = require('chai').assert; const feathers = require('@feathersjs/feathers'); const express = require('@feathersjs/express'); const authManagement = require('../src/index'); const helpers = require('../src/helpers') const optionsDefault = { app: null, service: '/users', // need exactly this for test suite path: 'authManagement', notifier: () => Promise.resolve(), longTokenLen: 15, // token's length will be twice this shortTokenLen: 6, shortTokenDigits: true, resetDelay: 1000 * 60 * 60 * 2, // 2 hours delay: 1000 * 60 * 60 * 24 * 5, // 5 days identifyUserProps: ['email'], sanitizeUserForClient: helpers.sanitizeUserForClient }; const userMgntOptions = { service: '/users', notifier: () => Promise.resolve(), shortTokenLen: 8, }; const orgMgntOptions = { service: '/organizations', path: 'authManagement/org', // *** specify path for this instance of service notifier: () => Promise.resolve(), shortTokenLen: 10, }; function services() { const app = this; app.configure(user); app.configure(organization); } function user() { const app = this; app.use('/users', { create: data => Promise.resolve(data) }); const service = app.service('/users'); service.hooks({ before: { create: authManagement.hooks.addVerification() } }); } function organization() { const app = this; app.use('/organizations', { create: data => Promise.resolve(data) }); const service = app.service('/organizations'); service.hooks({ before: { create: authManagement.hooks.addVerification('authManagement/org') }, // *** which one }); } describe('multiple services', () => { describe('can configure 1 service', () => { var app; beforeEach(() => { app = express(feathers()); app.configure(authManagement(userMgntOptions)) .configure(services); }); it('can create an item', (done) => { const user = app.service('/users'); user.create({ username: 'John Doe' }) .catch(err => { console.log(err); done(); }) .then(result => { assert.equal(result.username, 'John Doe'); assert.equal(result.verifyShortToken.length, 8); done(); }); }); it('can call service', (done) => { const userMgnt = app.service('authManagement'); const options = userMgnt.create({ action: 'options' }) .catch(err => console.log(err)) .then(options => { assert.property(options, 'app'); assert.property(options, 'notifier'); delete options.app; delete options.notifier; const expected = Object.assign({}, optionsDefault, userMgntOptions); delete expected.app; delete expected.notifier; assert.deepEqual(options, expected); done(); }); }); }); describe('can configure 2 services', () => { var app; beforeEach(() => { app = express(feathers()); app.configure(authManagement(userMgntOptions)) .configure(authManagement(orgMgntOptions)) .configure(services); }); it('can create items', (done) => { const user = app.service('/users'); const organization = app.service('/organizations'); // create a user item user.create({ username: 'John Doe' }) .catch(err => { console.log(err); done(); }) .then(result => { assert.equal(result.username, 'John Doe'); assert.equal(result.verifyShortToken.length, 8); // create an organization item organization.create({ organization: 'Black Ice' }) .catch(err => { console.log(err); done(); }) .then(result => { assert.equal(result.organization, 'Black Ice'); assert.equal(result.verifyShortToken.length, 10); done(); }); }); }); it('can call services', (done) => { const userMgnt = app.service('authManagement'); // *** the default const orgMgnt = app.service('authManagement/org'); // *** which one // call the user instance userMgnt.create({ action: 'options' }) .catch(err => console.log(err)) .then(options => { assert.property(options, 'app'); assert.property(options, 'notifier'); delete options.app; delete options.notifier; const expected = Object.assign({}, optionsDefault, userMgntOptions); delete expected.app; delete expected.notifier; assert.deepEqual(options, expected); // call the organization instance orgMgnt.create({ action: 'options' }) .catch(err => console.log(err)) .then(options => { assert.property(options, 'app'); assert.property(options, 'notifier'); delete options.app; delete options.notifier; const expected = Object.assign({}, optionsDefault, orgMgntOptions); delete expected.app; delete expected.notifier; assert.deepEqual(options, expected); done(); }) }); }); }); });
26.575
100
0.572342
c5de55d3ea8b98334dd288cc6e8da0ea45363c0f
229
js
JavaScript
app/pods/components/aa-power-button/component.js
ddallaire/Adaptone-app
47396db3223bcf877e4ab051efbce2170e01f41f
[ "MIT" ]
null
null
null
app/pods/components/aa-power-button/component.js
ddallaire/Adaptone-app
47396db3223bcf877e4ab051efbce2170e01f41f
[ "MIT" ]
null
null
null
app/pods/components/aa-power-button/component.js
ddallaire/Adaptone-app
47396db3223bcf877e4ab051efbce2170e01f41f
[ "MIT" ]
1
2020-02-27T16:42:51.000Z
2020-02-27T16:42:51.000Z
import Component from '@ember/component'; export default Component.extend({ isOn: false, actions: { togglePower() { this.toggleProperty('isOn'); if (!this.get('isOn')) this.get('onChange')(); } } });
16.357143
52
0.60262
c5deda14ca8b4a5404f9cf3d1b1579ce38a22f06
55
js
JavaScript
server/database/migrations/migrate/down.js
ODINAKACHUKWU/SendIT
13cf6eef10cc3b007fc1a886cb96a47eb4e12d6b
[ "PostgreSQL", "Unlicense" ]
1
2020-07-24T17:42:58.000Z
2020-07-24T17:42:58.000Z
server/database/migrations/migrate/down.js
ODINAKACHUKWU/SendIT
13cf6eef10cc3b007fc1a886cb96a47eb4e12d6b
[ "PostgreSQL", "Unlicense" ]
4
2020-09-06T23:48:26.000Z
2021-09-01T21:05:01.000Z
server/database/migrations/migrate/down.js
ODINAKACHUKWU/SendIT
13cf6eef10cc3b007fc1a886cb96a47eb4e12d6b
[ "PostgreSQL", "Unlicense" ]
null
null
null
import dropTables from '../dropTables'; dropTables();
13.75
39
0.727273
c5dee71e162ecf336bc3a6629c68114b71a2d091
206,154
js
JavaScript
controls/treegrid/dist/ej2-treegrid.umd.min.js
kierantaylor/ej2-javascript-ui-controls
674d915fec1baa19125d5ebbf5aa7888123924f3
[ "Net-SNMP", "Xnet" ]
null
null
null
controls/treegrid/dist/ej2-treegrid.umd.min.js
kierantaylor/ej2-javascript-ui-controls
674d915fec1baa19125d5ebbf5aa7888123924f3
[ "Net-SNMP", "Xnet" ]
null
null
null
controls/treegrid/dist/ej2-treegrid.umd.min.js
kierantaylor/ej2-javascript-ui-controls
674d915fec1baa19125d5ebbf5aa7888123924f3
[ "Net-SNMP", "Xnet" ]
null
null
null
!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?t(exports,require("@syncfusion/ej2-base"),require("@syncfusion/ej2-grids"),require("@syncfusion/ej2-buttons"),require("@syncfusion/ej2-data"),require("@syncfusion/ej2-popups")):"function"==typeof define&&define.amd?define(["exports","@syncfusion/ej2-base","@syncfusion/ej2-grids","@syncfusion/ej2-buttons","@syncfusion/ej2-data","@syncfusion/ej2-popups"],t):t(e.ej={},e.ej2Base,e.ej2Grids,e.ej2Buttons,e.ej2Data,e.ej2Popups)}(this,function(e,t,r,i,n,o){"use strict";function a(e){if(e.dataSource instanceof n.DataManager){var t=e.dataSource.adaptor;return t instanceof n.ODataAdaptor||t instanceof n.WebApiAdaptor||t instanceof n.WebMethodAdaptor||t instanceof n.CacheAdaptor||t instanceof n.UrlAdaptor}return!1}function s(e){return!!(e.dataSource&&"result"in e.dataSource)}function d(e){for(var t=0;t<e.columns.length;t++)if(e.columns[t].showCheckbox)return!0;return!1}function l(e){return!((t.isNullOrUndefined(e.grid.searchSettings.key)||""===e.grid.searchSettings.key||"Child"!==e.searchSettings.hierarchyMode&&"None"!==e.searchSettings.hierarchyMode)&&(!e.allowFiltering||!e.grid.filterSettings.columns.length||"Child"!==e.filterSettings.hierarchyMode&&"None"!==e.filterSettings.hierarchyMode))}function p(e){var t;t=[];for(var i=0,n=Object.keys(e).length;i<n;i++){r.getObject("hasChildRecords",e[i])&&t.push(e[i])}return t}function h(e,r,i){var n,o=t.isNullOrUndefined(r.parentItem)?null:y(e,r.parentItem.uniqueID);return null==o||(!e.initialRender||t.isNullOrUndefined(o[e.expandStateMapping])||o[e.expandStateMapping]?!1!==o.expanded&&(!o.parentItem||((n=y(e,o.parentItem.uniqueID))&&e.initialRender&&!t.isNullOrUndefined(n[e.expandStateMapping])&&!n[e.expandStateMapping]?(n.expanded=!1,!1):(!n||!1!==n.expanded)&&(!n||h(e,n,i)))):(o.expanded=!1,!1))}function c(e){var r=[];if(t.isNullOrUndefined(e)||!e.hasChildRecords&&!t.isNullOrUndefined(e.childRecords)&&!e.childRecords.length)return[];if(!t.isNullOrUndefined(e.childRecords))for(var i=e.childRecords,n=0,o=Object.keys(i).length;n<o;n++)r.push(i[n]),(i[n].hasChildRecords||!t.isNullOrUndefined(i[n].childRecords)&&i[n].childRecords.length)&&(r=r.concat(c(i[n])));return r}function u(e){if(a(e)){var r=e.dataSource;return!t.isNullOrUndefined(r.ready)}return!0}function g(e){for(var t,r,i=[],n=0;e&&n<e.length;n++){r=Object.keys(e[n]),t={};for(var o=0;o<r.length;o++)t[r[o]]=e[n][r[o]];i.push(t)}return i}function f(e){return delete e.hasChildRecords,delete e.childRecords,delete e.index,delete e.parentItem,delete e.level,e}function y(e,t,r){if(r){return e.uniqueIDFilterCollection[t]}return e.uniqueIDCollection[t]}function v(e,r,i,o,a,s,d){var l,p,h,c=e.value,u=e.action,v=r.grid.getPrimaryKeyFieldNames()[0],R=r.dataSource instanceof n.DataManager?r.dataSource.dataSource.json:r.dataSource,C=[],x=c,S=!1;if("Batch"===r.editSettings.mode&&(h=r.grid.editModule.getBatchChanges()),"add"===u||"batchsave"===u&&"Batch"===r.editSettings.mode&&h.addedRecords.length){var b=function(e,r,i,n,o,a,s){var d,l=!1,p=i.grid.getCurrentViewRecords();switch(d=t.extend({},e.value),d=f(d),i.editSettings.newRowPosition){case"Top":r.unshift(d),l=!0;break;case"Bottom":r.push(d),l=!0;break;case"Above":d=t.isNullOrUndefined(s)?f(d=t.extend({},p[o+1])):f(d=t.extend({},s));break;case"Below":case"Child":if(t.isNullOrUndefined(s)){var h=i.grid.getPrimaryKeyFieldNames()[0],c=p[o];d=f(d=!t.isNullOrUndefined(c)&&c[h]===e.value[h]||-1!==a?t.extend({},c):t.extend({},e.value))}else d=f(d=t.extend({},s));-1===a&&(r.unshift(d),l=!0)}return{value:d,isSkip:l}}(e,R,r,0,o,a,d);c=b.value,S=b.isSkip}if(c instanceof Array?C=g(c):C.push(t.extend({},c)),!S&&("add"!==u||"Top"!==r.editSettings.newRowPosition&&"Bottom"!==r.editSettings.newRowPosition))for(var I=0;I<C.length;I++){"object"==typeof C[I][v]&&(C[I]=C[I][v]);var D=Object.keys(C[I].taskData);l=R.length;for(var M=function(){if(R[l][v]===C[I][v]){if("delete"!==u){if("edit"===u){for(p=0;p<D.length;p++)if(R[l].hasOwnProperty(D[p])&&("Cell"!==r.editSettings.mode||!t.isNullOrUndefined(h)&&0===h.changedRecords.length||D[p]===s)){y(r,C[I].uniqueID).taskData[D[p]]=R[l][D[p]]=C[I][D[p]]}}else if("add"===u||"batchsave"===u){var e=void 0;"Child"===r.editSettings.newRowPosition?i?(x.taskData[r.parentIdMapping]=R[l][r.idMapping],R.splice(l+1,0,x.taskData)):(R[l].hasOwnProperty(r.childMapping)||(R[l][r.childMapping]=[]),R[l][r.childMapping].push(x.taskData),w(v,R[l],u,r,i,x)):"Below"===r.editSettings.newRowPosition?(R.splice(l+1,0,x.taskData),w(v,R[l],u,r,i,x)):o?"Above"===r.editSettings.newRowPosition&&(R.splice(l,0,x.taskData),w(v,R[l],u,r,i,x)):(e=0,R.splice(e,0,x.taskData))}return"break"}var n=R[l];if(R.splice(l,1),i){if(!t.isNullOrUndefined(n[r.parentIdMapping]))for(var a=r.flatData.filter(function(e){return e[r.idMapping]===n[r.parentIdMapping]})[0],d=a?a[r.childMapping]:[],c=d.length-1;c>=0;c--)if(d[c][r.idMapping]===n[r.idMapping]){d.splice(c,1),d.length||(a.hasChildRecords=!1,w(v,a,u,r,i));break}return"break"}}else t.isNullOrUndefined(R[l][r.childMapping])||m(R[l][r.childMapping],C[I],u,v,r,i,x,s)&&w(v,R[l],u,r,i)};l--&&l>=0;){if("break"===M())break}}}function m(e,r,i,n,o,a,s,d){for(var l=!1,p=e.length;p--&&p>=0;)if(e[p][n]===r[n]||a&&e[p][o.parentIdMapping]===r[o.idMapping]){if("edit"===i){for(var h=Object.keys(r),c=y(o,r.uniqueID),u=0;u<h.length;u++)!e[p].hasOwnProperty(h[u])||"Cell"===o.editSettings.mode&&h[u]!==d||(c[h[u]]=c.taskData[h[u]]=e[p][h[u]]=r[h[u]]);break}if("add"===i||"batchsave"===i)"Child"===o.editSettings.newRowPosition?a?(s[o.parentIdMapping]=e[p][o.idMapping],e.splice(p+1,0,s),w(n,e[p],i,o,a,s)):(e[p].hasOwnProperty(o.childMapping)||(e[p][o.childMapping]=[]),e[p][o.childMapping].push(s.taskData),w(n,e[p],i,o,a,s)):"Above"===o.editSettings.newRowPosition?(e.splice(p,0,s.taskData),w(n,e[p],i,o,a,s)):"Below"===o.editSettings.newRowPosition&&(e.splice(p+1,0,s.taskData),w(n,e[p],i,o,a,s));else{e[p].parentItem;e.splice(p,1),e.length||(l=!0)}}else t.isNullOrUndefined(e[p][o.childMapping])||m(e[p][o.childMapping],r,i,n,o,a,s,d)&&w(n,e[p],i,o,a);return l}function w(e,r,i,o,a,s){if("Above"!==o.editSettings.newRowPosition&&"Below"!==o.editSettings.newRowPosition||"add"!==i&&"batchsave"!==i||t.isNullOrUndefined(s.parentItem)){var d,l=o.grid.getCurrentViewRecords();if(l.map(function(t,i){t[e]!==r[e]||(d=i)}),r=l[d],r.hasChildRecords=!1,"add"===i||"batchsave"===i){r.expanded=!0,r.hasChildRecords=!0,o.sortSettings.columns.length&&t.isNullOrUndefined(s)&&(s=l.filter(function(e){return e.parentUniqueID===r.uniqueID?e:null}));var p=s?s instanceof Array?s[0]:s:l[d+1];"Below"!==o.editSettings.newRowPosition&&(r.hasOwnProperty("childRecords")?t.isNullOrUndefined(s)||r[e]===s[e]||r.childRecords.push(s):r.childRecords=[],-1===r.childRecords.indexOf(p)&&r[e]!==s[e]&&r.childRecords.unshift(p),a&&(r.hasOwnProperty(o.childMapping)||(r[o.childMapping]=[]),-1===r[o.childMapping].indexOf(p)&&r[e]!==s[e]&&r[o.childMapping].unshift(p)))}for(var h=o.grid.getPrimaryKeyFieldNames()[0],c=o.grid.dataSource instanceof n.DataManager?o.grid.dataSource.dataSource.json:o.grid.dataSource,u=0;u<c.length;u++)if(c[u][h]===r[h]){c[u]=r;break}o.grid.setRowData(e,r);var g=o.getRowByIndex(d);"Batch"===o.editSettings.mode&&(g=o.getRows()[o.grid.getRowIndexByPrimaryKey(r[e])]);var f=void 0;(o.frozenRows||o.getFrozenColumns())&&(f=o.getMovableRowByIndex(d)),o.renderModule.cellRender({data:r,cell:g.cells[o.treeColumnIndex]?g.cells[o.treeColumnIndex]:f.cells[o.treeColumnIndex-o.frozenColumns],column:o.grid.getColumns()[o.treeColumnIndex],requestType:i})}else{y(o,s.parentItem.uniqueID).childRecords.push(s)}}var R=function(){return function(e){this.allowEditing=!0,this.edit={},this.disableHtmlEncode=!0,this.allowReordering=!0,this.showColumnMenu=!0,this.allowFiltering=!0,this.allowSorting=!0,this.allowResizing=!0,this.filter={},t.merge(this,e)}}(),C=function(){var e=function(t,r){return(e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)t.hasOwnProperty(r)&&(e[r]=t[r])})(t,r)};return function(t,r){function i(){this.constructor=t}e(t,r),t.prototype=null===r?Object.create(r):(i.prototype=r.prototype,new i)}}(),x=function(e,t,r,i){var n,o=arguments.length,a=o<3?t:null===i?i=Object.getOwnPropertyDescriptor(t,r):i;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)a=Reflect.decorate(e,t,r,i);else for(var s=e.length-1;s>=0;s--)(n=e[s])&&(a=(o<3?n(a):o>3?n(t,r,a):n(t,r))||a);return o>3&&a&&Object.defineProperty(t,r,a),a},S=function(e){function r(){return null!==e&&e.apply(this,arguments)||this}return C(r,e),x([t.Property()],r.prototype,"field",void 0),x([t.Property()],r.prototype,"operator",void 0),x([t.Property()],r.prototype,"value",void 0),x([t.Property()],r.prototype,"matchCase",void 0),x([t.Property()],r.prototype,"ignoreAccent",void 0),x([t.Property()],r.prototype,"predicate",void 0),x([t.Property({})],r.prototype,"actualFilterValue",void 0),x([t.Property({})],r.prototype,"actualOperator",void 0),x([t.Property()],r.prototype,"type",void 0),x([t.Property()],r.prototype,"ejpredicate",void 0),x([t.Property()],r.prototype,"uid",void 0),x([t.Property()],r.prototype,"isForeignKey",void 0),r}(t.ChildProperty),b=function(e){function r(){return null!==e&&e.apply(this,arguments)||this}return C(r,e),x([t.Collection([],S)],r.prototype,"columns",void 0),x([t.Property("FilterBar")],r.prototype,"type",void 0),x([t.Property()],r.prototype,"mode",void 0),x([t.Property(!0)],r.prototype,"showFilterBarStatus",void 0),x([t.Property(1500)],r.prototype,"immediateModeDelay",void 0),x([t.Property()],r.prototype,"operators",void 0),x([t.Property(!1)],r.prototype,"ignoreAccent",void 0),x([t.Property("Parent")],r.prototype,"hierarchyMode",void 0),r}(t.ChildProperty),I=function(){var e=function(t,r){return(e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)t.hasOwnProperty(r)&&(e[r]=t[r])})(t,r)};return function(t,r){function i(){this.constructor=t}e(t,r),t.prototype=null===r?Object.create(r):(i.prototype=r.prototype,new i)}}(),D=function(e,t,r,i){var n,o=arguments.length,a=o<3?t:null===i?i=Object.getOwnPropertyDescriptor(t,r):i;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)a=Reflect.decorate(e,t,r,i);else for(var s=e.length-1;s>=0;s--)(n=e[s])&&(a=(o<3?n(a):o>3?n(t,r,a):n(t,r))||a);return o>3&&a&&Object.defineProperty(t,r,a),a},M=function(e){function r(){return null!==e&&e.apply(this,arguments)||this}return I(r,e),D([t.Property("Both")],r.prototype,"wrapMode",void 0),r}(t.ChildProperty),P="rowDataBound",O="queryCellInfo",E="beforeDataBound",A="actionBegin",k="dataStateChange",N="actionComplete",q="rowSelected",B="checkboxChange",U="rowDeselected",T="toolbarClick",L="beforeExcelExport",V="beforePdfExport",j="resizeStop",F="expanded",_="collapsed",z="remoteExpand",G="localPagedExpandCollapse",H="pagingActions",Q="printGrid-Init",W="contextMenuOpen",K="contextMenuClick",Y="crudAction",J="beginEdit",X="beginAdd",Z="recordDoubleClick",$="cellSave",ee="cellSaved",te="cellEdit",re="batchDelete",ie="batchCancel",ne="batchAdd",oe="beforeBatchDelete",ae="beforeBatchAdd",se="beforeBatchSave",de="batchSave",le="key-pressed",pe="double-tap",he="virtual-action-args",ce="data-listener",ue="index-modifier",ge="edit-form",fe="before-batch-cancel",ye="detailDataBound",ve="rowDragStartHelper",me="rows-add",we="rows-remove",Re="row-draging",Ce="row-dropped",xe=function(){var e=function(t,r){return(e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)t.hasOwnProperty(r)&&(e[r]=t[r])})(t,r)};return function(t,r){function i(){this.constructor=t}e(t,r),t.prototype=null===r?Object.create(r):(i.prototype=r.prototype,new i)}}(),Se=function(e){function r(t){var r=e.call(this,t.grid)||this;return r.treeCopyContent="",r.copiedUniqueIdCollection=[],r.treeGridParent=t,r}return xe(r,e),r.prototype.setCopyData=function(r){var i="copyContent",n=this.treeGridParent.getCurrentViewRecords();if(""===window.getSelection().toString()){this.clipBoardTextArea.value=this[i]="";var o=this.treeGridParent.grid.getRows();if("Cell"!==this.treeGridParent.selectionSettings.mode){for(var a=this.treeGridParent.getSelectedRowIndexes().sort(function(e,t){return e-t}),s=0;s<a.length;s++)if(s>0&&(this.treeCopyContent+="\n"),!o[a[s]].classList.contains("e-summaryrow")){var d=[].slice.call(o[a[s]].querySelectorAll(".e-rowcell")),l=this.treeGridParent.getSelectedRecords()[s].uniqueID;-1===this.copiedUniqueIdCollection.indexOf(l)&&("Parent"!==this.treeGridParent.copyHierarchyMode&&"Both"!==this.treeGridParent.copyHierarchyMode||this.parentContentData(n,a[s],o,r,s),this.getCopyData(d,!1,"\t",r),this.treeCopyContent+=this[i],this.copiedUniqueIdCollection.push(l),this[i]="","Child"!==this.treeGridParent.copyHierarchyMode&&"Both"!==this.treeGridParent.copyHierarchyMode||this.childContentData(n,a[s],o,r))}if(r){var p=[];for(s=0;s<this.treeGridParent.getVisibleColumns().length;s++)p[s]=this.treeGridParent.getVisibleColumns()[s].headerText;this.getCopyData(p,!1,"\t",r),this.treeCopyContent=this[i]+"\n"+this.treeCopyContent}var h={data:this.treeCopyContent,cancel:!1};if(this.treeGridParent.trigger("beforeCopy",h),h.cancel)return;this.clipBoardTextArea.value=this[i]=h.data,t.Browser.userAgent.match(/ipad|ipod|iphone/i)?this.clipBoardTextArea.setSelectionRange(0,this.clipBoardTextArea.value.length):this.clipBoardTextArea.select(),this.isSelect=!0,this.copiedUniqueIdCollection=[],this.treeCopyContent=""}else e.prototype.setCopyData.call(this,r)}},r.prototype.parentContentData=function(e,r,i,n,o){var a="copyContent",s="parentItem",d="uniqueID";if(!t.isNullOrUndefined(e[r][s]))for(var l=e[r][s].level,p=0;p<l+1;p++)for(var h=0;h<e.length;h++)if(!t.isNullOrUndefined(e[r][s])&&e[h][d]===e[r][s][d]){r=h;var c=[].slice.call(i[r].querySelectorAll(".e-rowcell")),u=e[h][d];if(-1===this.copiedUniqueIdCollection.indexOf(u)){this.getCopyData(c,!1,"\t",n),this.treeCopyContent=o>0?this.treeCopyContent+this[a]+"\n":this[a]+"\n"+this.treeCopyContent,this.copiedUniqueIdCollection.push(u),this[a]="";break}}},r.prototype.copy=function(t){e.prototype.copy.call(this,t)},r.prototype.paste=function(t,r,i){e.prototype.paste.call(this,t,r,i)},r.prototype.getModuleName=function(){return"clipboard"},r.prototype.destroy=function(){e.prototype.destroy.call(this)},r.prototype.childContentData=function(e,r,i,n){var o="uniqueID";if(e[r].hasChildRecords)for(var a=e[r].childRecords,s=0;s<a.length;s++)for(var d=0;d<e.length;d++)if(!t.isNullOrUndefined(a[s][o])&&e[d][o]===a[s][o]){if(!t.isNullOrUndefined(i[d])&&!i[d].classList.contains("e-summaryrow")){var l=[].slice.call(i[d].querySelectorAll(".e-rowcell")),p=e[d][o];-1===this.copiedUniqueIdCollection.indexOf(p)&&(this.getCopyData(l,!1,"\t",n),this.treeCopyContent+="\n"+this.copyContent,this.copyContent="",this.copiedUniqueIdCollection.push(p),this.childContentData(e,d,i,n))}break}},r}(r.Clipboard),be=function(){function e(e){this.parent=e,this.selectedItems=[],this.selectedIndexes=[],this.addEventListener()}return e.prototype.getModuleName=function(){return"selection"},e.prototype.addEventListener=function(){this.parent.on("dataBoundArg",this.headerCheckbox,this),this.parent.on("columnCheckbox",this.columnCheckbox,this),this.parent.on("updateGridActions",this.updateGridActions,this),this.parent.grid.on("colgroup-refresh",this.headerCheckbox,this),this.parent.on("checkboxSelection",this.checkboxSelection,this)},e.prototype.removeEventListener=function(){this.parent.isDestroyed||(this.parent.off("dataBoundArg",this.headerCheckbox),this.parent.off("columnCheckbox",this.columnCheckbox),this.parent.grid.off("colgroup-refresh",this.headerCheckbox),this.parent.off("checkboxSelection",this.checkboxSelection),this.parent.off("updateGridActions",this.updateGridActions))},e.prototype.destroy=function(){this.removeEventListener()},e.prototype.checkboxSelection=function(e){var t,i=r.getObject("target",e),n=r.parentsUntil(i,"e-checkbox-wrapper");if(n&&n.querySelectorAll(".e-treecheckselect").length>0){t=n.querySelector('input[type="checkbox"]');var o=void 0;(o=[]).push(i.closest("tr").rowIndex),this.selectCheckboxes(o),this.triggerChkChangeEvent(t,t.nextElementSibling.classList.contains("e-check"),i.closest("tr"))}else if(n&&n.querySelectorAll(".e-treeselectall").length>0&&this.parent.autoCheckHierarchy){var a=!n.querySelector(".e-frame").classList.contains("e-check")&&!n.querySelector(".e-frame").classList.contains("e-stop");this.headerSelection(a),t=n.querySelector('input[type="checkbox"]'),this.triggerChkChangeEvent(t,a,i.closest("tr"))}},e.prototype.triggerChkChangeEvent=function(e,t,r){var i=this.parent.getCurrentViewRecords()[r.rowIndex],n={checked:t,target:e,rowElement:r,rowData:e.classList.contains("e-treeselectall")?this.parent.getCheckedRecords():i};this.parent.trigger(B,n)},e.prototype.getCheckboxcolumnIndex=function(){for(var e,t,r=this.parent.columns,i=0;i<r.length;i++)r[i].showCheckbox&&(e=this.parent.columns[i].uid);for(var n=this.parent.getHeaderContent().querySelectorAll(".e-headercelldiv").length,o=0;o<n;o++){this.parent.getHeaderContent().querySelectorAll(".e-headercelldiv")[o].getAttribute("e-mappinguid")===e&&(t=o)}return t},e.prototype.headerCheckbox=function(){if(this.columnIndex=this.getCheckboxcolumnIndex(),this.columnIndex>-1&&0===this.parent.getHeaderContent().querySelectorAll(".e-treeselectall").length){var e=this.parent.getHeaderContent().querySelectorAll(".e-headercelldiv")[this.columnIndex],r=void 0,n=this.parent.createElement("input",{className:"e-treeselectall",attrs:{type:"checkbox"}});(r=i.createCheckBox(this.parent.createElement,!1,{checked:!1,label:" "})).classList.add("e-hierarchycheckbox"),r.querySelector(".e-frame").style.width="18px",r.insertBefore(n.cloneNode(),r.firstChild),t.isNullOrUndefined(e)||e.insertBefore(r,e.firstChild),this.parent.autoCheckHierarchy&&this.headerSelection()}else if(this.columnIndex>-1&&this.parent.getHeaderContent().querySelectorAll(".e-treeselectall").length>0){var o=(r=this.parent.getHeaderContent().querySelectorAll(".e-checkbox-wrapper")[0]).querySelector(".e-frame").classList.contains("e-check");this.parent.autoCheckHierarchy&&o&&this.headerSelection(o)}},e.prototype.renderColumnCheckbox=function(e){var r,n=this.parent.createElement("input",{className:"e-treecheckselect",attrs:{type:"checkbox"}}),o=e.data;e.cell.classList.add("e-treegridcheckbox"),e.cell.setAttribute("aria-label","checkbox");var a=!t.isNullOrUndefined(o.checkboxState)&&"uncheck"!==o.checkboxState;if((r=i.createCheckBox(this.parent.createElement,!1,{checked:a,label:" "})).classList.add("e-hierarchycheckbox"),r.querySelector(".e-frame").style.width="18px","indeterminate"===o.checkboxState){var s=r.querySelectorAll(".e-frame")[0];t.removeClass([s],["e-check","e-stop","e-uncheck"]),r.querySelector(".e-frame").classList.add("e-stop")}return r.insertBefore(n.cloneNode(),r.firstChild),r},e.prototype.columnCheckbox=function(e){var r=this.renderColumnCheckbox(e),i=e.cell.querySelector(".e-treecolumn-container");if(t.isNullOrUndefined(i)){var n=this.parent.createElement("span",{className:"e-treecheckbox"}),o=e.cell.innerHTML;e.cell.innerHTML="",n.innerHTML=o;var a=this.parent.createElement("div",{className:"e-treecheckbox-container"});a.appendChild(r),a.appendChild(n),e.cell.appendChild(a)}else i.insertBefore(r,i.querySelectorAll(".e-treecell")[0])},e.prototype.selectCheckboxes=function(e){for(var r=0;r<e.length;r++){var i=this.parent.getCurrentViewRecords()[e[r]],n=y(this.parent,i.uniqueID),o="uncheck"===(i=t.isBlazor()&&"BlazorAdaptor"===this.parent.dataSource.adaptorName?i:n).checkboxState?"check":"uncheck";i.checkboxState=o;for(var a=Object.keys(i),s=0;s<a.length;s++)n.hasOwnProperty(a[s])&&(n[a[s]]=i[a[s]]);this.traverSelection(i,o,!1),this.parent.autoCheckHierarchy&&this.headerSelection()}},e.prototype.traverSelection=function(e,r,i){var n=0;if(this.updateSelectedItems(e,r),!i&&e.parentItem&&this.parent.autoCheckHierarchy&&this.updateParentSelection(e.parentItem),e.childRecords&&this.parent.autoCheckHierarchy){var o=e.childRecords;!t.isNullOrUndefined(this.parent.filterModule)&&this.parent.filterModule.filteredResult.length>0&&this.parent.autoCheckHierarchy&&(o=this.getFilteredChildRecords(o)),n=o.length;for(var a=0;a<n;a++)o[a].isSummaryRow||(o[a].hasChildRecords?this.traverSelection(o[a],r,!0):this.updateSelectedItems(o[a],r))}},e.prototype.getFilteredChildRecords=function(e){var t=this;return e.filter(function(e){return t.parent.filterModule.filteredResult.indexOf(e)>-1})},e.prototype.updateParentSelection=function(e){var r=0,i=[],n=y(this.parent,e.uniqueID);n&&n.childRecords&&(i=n.childRecords),!t.isNullOrUndefined(this.parent.filterModule)&&this.parent.filterModule.filteredResult.length>0&&this.parent.autoCheckHierarchy&&(i=this.getFilteredChildRecords(i)),r=i&&i.length;var o=0,a=0;if(!t.isNullOrUndefined(n)){for(var s=function(e){var r=d.parent.getCurrentViewRecords().filter(function(t){return t.uniqueID===i[e].uniqueID}),n=y(d.parent,i[e].uniqueID),s=t.isBlazor()&&"BlazorAdaptor"===d.parent.dataSource.adaptorName?r[0]:n;t.isNullOrUndefined(s)||("indeterminate"===s.checkboxState?o++:"check"===s.checkboxState&&a++)},d=this,l=0;l<i.length;l++)s(l);n.checkboxState=o>0||a>0&&a!==r?"indeterminate":0===a&&0===o?"uncheck":"check",this.updateSelectedItems(n,n.checkboxState),n.parentItem&&this.updateParentSelection(n.parentItem)}},e.prototype.headerSelection=function(e){var r=this,i=0,n=!t.isNullOrUndefined(this.parent.filterModule)&&this.parent.filterModule.filteredResult.length>0?this.parent.filterModule.filteredResult:this.parent.flatData;if(n=t.isBlazor()&&"BlazorAdaptor"===this.parent.dataSource.adaptorName||a(this.parent)?this.parent.getCurrentViewRecords():n,!t.isNullOrUndefined(e))for(var o=0;o<n.length;o++)if(e){if("check"===n[o].checkboxState)continue;n[o].checkboxState="check",this.updateSelectedItems(n[o],n[o].checkboxState)}else this.selectedItems.indexOf(n[o])>-1&&(n[o].checkboxState="uncheck",this.updateSelectedItems(n[o],n[o].checkboxState),this.parent.autoCheckHierarchy&&this.updateParentSelection(n[o]));!1===e&&this.parent.enableVirtualization&&(this.selectedItems=[],this.selectedIndexes=[],n.filter(function(e){e.checkboxState="uncheck",r.updateSelectedItems(e,e.checkboxState)})),i=this.selectedItems.length;var s=this.parent.getHeaderContent().querySelectorAll(".e-frame")[0];i>0&&n.length>0?i===n.length||e?(t.removeClass([s],["e-stop"]),s.classList.add("e-check")):(t.removeClass([s],["e-check"]),s.classList.add("e-stop")):t.removeClass([s],["e-check","e-stop"])},e.prototype.updateSelectedItems=function(e,r,i){var n,o,a=this.parent.getCurrentViewRecords().filter(function(t){return t.uniqueID===e.uniqueID}),s=this.parent.getCurrentViewRecords().indexOf(a[0]),d=y(this.parent,e.uniqueID);if(s>-1){var l=this.parent.getRows()[s],p=void 0;(this.parent.frozenRows||this.parent.getFrozenColumns())&&(p=this.parent.getMovableDataRows()[s]),o=l.querySelectorAll(".e-frame")[0]?l.querySelectorAll(".e-frame")[0]:p.querySelectorAll(".e-frame")[0],t.isNullOrUndefined(o)||t.removeClass([o],["e-check","e-stop","e-uncheck"])}if(n=t.isBlazor()&&"BlazorAdaptor"===this.parent.dataSource.adaptorName?a[0]:d,t.isNullOrUndefined(n)&&(n=e),n.checkboxState=r,"check"===r&&t.isNullOrUndefined(e.isSummaryRow))-1!==s&&-1===this.selectedIndexes.indexOf(s)&&this.selectedIndexes.push(s),-1===this.selectedItems.indexOf(n)&&-1!==s&&!t.isNullOrUndefined(this.parent.filterModule)&&this.parent.filterModule.filteredResult.length>0&&this.selectedItems.push(n),-1!==this.selectedItems.indexOf(n)||t.isNullOrUndefined(this.parent.filterModule)||0!==this.parent.filterModule.filteredResult.length||this.selectedItems.push(n),-1===this.selectedItems.indexOf(n)&&t.isNullOrUndefined(this.parent.filterModule)&&this.selectedItems.push(n);else if(("uncheck"===r||"indeterminate"===r)&&t.isNullOrUndefined(e.isSummaryRow)){var h=this.selectedItems.indexOf(n);if(-1!==h&&this.selectedItems.splice(h,1),-1!==this.selectedIndexes.indexOf(s)){var c=this.selectedIndexes.indexOf(s);this.selectedIndexes.splice(c,1)}}var u="indeterminate"===r?"e-stop":"e-"+r;s>-1&&(t.isNullOrUndefined(o)||o.classList.add(u))},e.prototype.updateGridActions=function(e){var r,i,n=this,o=e.requestType;if(d(this.parent)&&this.parent.autoCheckHierarchy)if("sorting"===o||"paging"===o){var s=this.parent.grid.getRows();i=(r=this.parent.getCurrentViewRecords()).length,this.selectedIndexes=[];for(var l=0;l<i;l++)s[l].classList.contains("e-summaryrow")||this.updateSelectedItems(r[l],r[l].checkboxState,!0)}else if("delete"===o||"add"===e.action){var p=[];"delete"===o?p=e.data:p.push(e.data);for(l=0;l<p.length;l++){if("delete"===o){var h=this.parent.flatData.indexOf(p[l]),c=this.selectedIndexes.indexOf(h);this.selectedIndexes.splice(c,1),this.updateSelectedItems(p[l],"uncheck")}t.isNullOrUndefined(p[l].parentItem)||this.updateParentSelection(p[l].parentItem)}}else"add"===e.requestType&&this.parent.autoCheckHierarchy?e.data.checkboxState="uncheck":("filtering"===o||"searching"===o||"refresh"===o&&!a(this.parent))&&(this.selectedItems=[],this.selectedIndexes=[],(r=!t.isNullOrUndefined(this.parent.filterModule)&&this.parent.filterModule.filteredResult.length>0?this.parent.getCurrentViewRecords():this.parent.flatData).forEach(function(e){e.hasChildRecords?n.updateParentSelection(e):n.updateSelectedItems(e,e.checkboxState)}),this.headerSelection())},e.prototype.getCheckedrecords=function(){return this.selectedItems},e.prototype.getCheckedRowIndexes=function(){return this.selectedIndexes},e}(),Ie=function(){function e(e){this.parent=e,r.Grid.Inject(r.Print),this.addEventListener()}return e.prototype.getModuleName=function(){return"print"},e.prototype.addEventListener=function(){this.parent.grid.on(Q,this.printTreeGrid,this)},e.prototype.removeEventListener=function(){this.parent.grid.off(Q,this.printTreeGrid)},e.prototype.printTreeGrid=function(e){var i=r.getObject("printgrid",e),n=r.getObject("element",e);i.addEventListener(O,this.parent.grid.queryCellInfo),i.addEventListener(P,this.parent.grid.rowDataBound),i.addEventListener(E,this.parent.grid.beforeDataBound),t.addClass([n],"e-treegrid")},e.prototype.print=function(){this.parent.grid.print()},e.prototype.destroy=function(){this.removeEventListener()},e}(),De=function(){var e=function(t,r){return(e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)t.hasOwnProperty(r)&&(e[r]=t[r])})(t,r)};return function(t,r){function i(){this.constructor=t}e(t,r),t.prototype=null===r?Object.create(r):(i.prototype=r.prototype,new i)}}(),Me=function(e,t,r,i){var n,o=arguments.length,a=o<3?t:null===i?i=Object.getOwnPropertyDescriptor(t,r):i;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)a=Reflect.decorate(e,t,r,i);else for(var s=e.length-1;s>=0;s--)(n=e[s])&&(a=(o<3?n(a):o>3?n(t,r,a):n(t,r))||a);return o>3&&a&&Object.defineProperty(t,r,a),a},Pe=function(e){function r(){return null!==e&&e.apply(this,arguments)||this}return De(r,e),Me([t.Property()],r.prototype,"fields",void 0),Me([t.Property(!1)],r.prototype,"ignoreCase",void 0),Me([t.Property("contains")],r.prototype,"operator",void 0),Me([t.Property()],r.prototype,"key",void 0),Me([t.Property()],r.prototype,"hierarchyMode",void 0),r}(t.ChildProperty),Oe=function(){var e=function(t,r){return(e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)t.hasOwnProperty(r)&&(e[r]=t[r])})(t,r)};return function(t,r){function i(){this.constructor=t}e(t,r),t.prototype=null===r?Object.create(r):(i.prototype=r.prototype,new i)}}(),Ee=function(e,t,r,i){var n,o=arguments.length,a=o<3?t:null===i?i=Object.getOwnPropertyDescriptor(t,r):i;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)a=Reflect.decorate(e,t,r,i);else for(var s=e.length-1;s>=0;s--)(n=e[s])&&(a=(o<3?n(a):o>3?n(t,r,a):n(t,r))||a);return o>3&&a&&Object.defineProperty(t,r,a),a},Ae=function(e){function r(){return null!==e&&e.apply(this,arguments)||this}return Oe(r,e),Ee([t.Property("Row")],r.prototype,"mode",void 0),Ee([t.Property("Flow")],r.prototype,"cellSelectionMode",void 0),Ee([t.Property("Single")],r.prototype,"type",void 0),Ee([t.Property(!1)],r.prototype,"persistSelection",void 0),Ee([t.Property("Default")],r.prototype,"checkboxMode",void 0),Ee([t.Property(!1)],r.prototype,"checkboxOnly",void 0),r}(t.ChildProperty),ke=function(){function e(e){this.parent=e,this.templateResult=null,this.parent.grid.on("template-result",this.columnTemplateResult,this)}return e.prototype.RowModifier=function(e){if(e.data){var i=e.data,n=i.parentItem;if(t.isNullOrUndefined(i.parentItem)||l(this.parent)||this.parent.allowPaging&&"Root"!==this.parent.pageSettings.pageSizeMode&&(!a(this.parent)||u(this.parent)))+e.row.getAttribute("aria-rowindex");else{i.parentItem.index;(this.parent.initialRender&&(!(t.isNullOrUndefined(n[this.parent.expandStateMapping])||n[this.parent.expandStateMapping])||this.parent.enableCollapseAll)||!h(this.parent,e.data,this.parent.grid.getCurrentViewRecords()))&&(e.row.style.display="none")}if(a(this.parent)&&!u(this.parent)){var o=this.parent,s=this.parent.getCurrentViewRecords().filter(function(e){return t.getValue(o.idMapping,e)===t.getValue(o.parentIdMapping,i)});if(s.length>0){var d=s[0].expanded?"table-row":"none";e.row.setAttribute("style","display: "+d+";")}}r.getObject("isSummaryRow",e.data)&&t.addClass([e.row],"e-summaryrow"),e.row.querySelector(".e-treegridexpand")?e.row.setAttribute("aria-expanded","true"):e.row.querySelector(".e-treegridcollapse")&&e.row.setAttribute("aria-expanded","false"),this.parent.enableCollapseAll&&this.parent.initialRender&&(t.isNullOrUndefined(i.parentItem)||(e.row.style.display="none")),this.parent.trigger(P,e)}},e.prototype.cellRender=function(e){if(e.data){var i,n,o=this.parent.grid,a=e.data,s=t.isNullOrUndefined(a.filterLevel)?a.level:a.filterLevel,d=0,l=this.parent.getColumnByField(e.column.field),p=a.isSummaryRow;if(i=t.isNullOrUndefined(a.parentItem)?a.index:a.parentItem.index,o.getColumnIndexByUid(e.column.uid)===this.parent.treeColumnIndex&&("add"===e.requestType||"delete"===e.requestType||t.isNullOrUndefined(e.cell.querySelector(".e-treecell")))){for(var c=t.createElement("div",{className:"e-treecolumn-container"}),u=t.createElement("span",{className:"e-icons e-none",styles:"width: 10px; display: inline-block"}),g=0;g<s;g++)d+=10,c.appendChild(u.cloneNode());var f=t.isNullOrUndefined(a.hasFilteredChildRecords)?a.hasChildRecords:a.hasFilteredChildRecords;if(f&&!t.isNullOrUndefined(a.childRecords)&&(f=!(0===a.childRecords.length)),f){t.addClass([e.cell],"e-treerowcell");var y=t.createElement("span",{className:"e-icons"}),v=void 0;v=this.parent.initialRender?a.expanded&&(t.isNullOrUndefined(a[this.parent.expandStateMapping])||a[this.parent.expandStateMapping])&&!this.parent.enableCollapseAll:!(!a.expanded||!h(this.parent,a,this.parent.grid.getCurrentViewRecords()));var m=!0;t.isNullOrUndefined(a.parentItem)||t.isNullOrUndefined(a[this.parent.expandStateMapping])||!a[this.parent.expandStateMapping]||this.parent.allowPaging&&"Root"!==this.parent.pageSettings.pageSizeMode||(m=!h(this.parent,e.data,this.parent.grid.getCurrentViewRecords())),t.addClass([y],v&&m?"e-treegridexpand":"e-treegridcollapse"),d+=18,c.appendChild(y),u.style.width="7px",d+=7,c.appendChild(u.cloneNode())}else(s||!s&&!a.level)&&(d+=20,c.appendChild(u.cloneNode()),c.appendChild(u.cloneNode()));n=t.createElement("span",{className:"e-treecell"}),this.parent.allowTextWrap&&(n.style.width="Calc(100% - "+d+"px)"),t.addClass([e.cell],"e-gridrowindex"+i+"level"+a.level),this.updateTreeCell(e,n,c),c.appendChild(n),e.cell.appendChild(c)}if(this.parent.frozenColumns>this.parent.treeColumnIndex&&o.getColumnIndexByUid(e.column.uid)===this.parent.frozenColumns+1?t.addClass([e.cell],"e-gridrowindex"+i+"level"+a.level):this.parent.frozenColumns<=this.parent.treeColumnIndex&&o.getColumnIndexByUid(e.column.uid)===this.parent.frozenColumns-1&&t.addClass([e.cell],"e-gridrowindex"+i+"level"+a.level),!t.isNullOrUndefined(l)&&l.showCheckbox&&(this.parent.notify("columnCheckbox",e),this.parent.allowTextWrap)){var w=e.cell.querySelectorAll(".e-frame")[0];d+=parseInt(w.style.width,16),d+=10,(n=o.getColumnIndexByUid(e.column.uid)===this.parent.treeColumnIndex?e.cell.querySelector(".e-treecell"):e.cell.querySelector(".e-treecheckbox")).style.width="Calc(100% - "+d+"px)"}if(p){t.addClass([e.cell],"e-summarycell");var R=r.getObject(e.column.field,e.data);null!=e.cell.querySelector(".e-treecell")?e.cell.querySelector(".e-treecell").innerHTML=R:e.cell.innerHTML=R}t.isNullOrUndefined(this.parent.rowTemplate)&&this.parent.trigger(O,e)}},e.prototype.updateTreeCell=function(e,t,i){var n=null!=e.cell.querySelector(".e-treecell")?e.cell.querySelector(".e-treecell").innerHTML:e.cell.innerHTML;if("object"==typeof e.column.template&&this.templateResult)r.appendChildren(t,this.templateResult),this.templateResult=null,e.cell.innerHTML="";else if(e.cell.classList.contains("e-templatecell"))for(var o=e.cell.children.length;0<o;o=e.cell.children.length)t.appendChild(e.cell.children[0]);else t.innerHTML=n,e.cell.innerHTML=""},e.prototype.columnTemplateResult=function(e){this.templateResult=e.template},e.prototype.destroy=function(){this.parent.grid.off("template-result",this.columnTemplateResult)},e}(),Ne=function(){function e(e){this.addedRecords="addedRecords",this.parent=e,this.parentItems=[],this.taskIds=[],this.hierarchyData=[],this.storedIndex=-1,this.sortedData=[],this.isSortAction=!1,this.addEventListener(),this.dataResults={},this.isSelfReference=!t.isNullOrUndefined(this.parent.parentIdMapping)}return e.prototype.addEventListener=function(){this.parent.on("updateRemoteLevel",this.updateParentRemoteData,this),this.parent.grid.on("sorting-begin",this.beginSorting,this),this.parent.on("updateAction",this.updateData,this),this.parent.on(z,this.collectExpandingRecs,this),this.parent.on("dataProcessor",this.dataProcessor,this)},e.prototype.removeEventListener=function(){this.parent.isDestroyed||(this.parent.off(z,this.collectExpandingRecs),this.parent.off("updateRemoteLevel",this.updateParentRemoteData),this.parent.off("updateAction",this.updateData),this.parent.off("dataProcessor",this.dataProcessor),this.parent.grid.off("sorting-begin",this.beginSorting))},e.prototype.destroy=function(){this.removeEventListener()},e.prototype.isRemote=function(){return this.parent.dataSource instanceof n.DataManager},e.prototype.convertToFlatData=function(e){var i=this;this.parent.flatData=0!==Object.keys(e).length||this.parent.dataSource instanceof n.DataManager?[]:this.parent.dataSource,this.parent.parentData=[];if(a(this.parent)&&!u(this.parent)&&e instanceof n.DataManager&&!(e instanceof Array)){var o=this.parent.dataSource;if(this.parent.parentIdMapping){this.parent.query=t.isNullOrUndefined(this.parent.query)?new n.Query:this.parent.query,this.parent.parentIdMapping&&this.parent.initialRender&&(this.parent.query.where(this.parent.parentIdMapping,"equal",null),this.parent.query.addParams("IdMapping",this.parent.idMapping));if(!this.parent.hasChildMapping&&("BlazorAdaptor"!==this.parent.dataSource.adaptorName||this.parent.isClientRender)){var s=this.parent.query.clone();s.queries=[],(s=s.select([this.parent.parentIdMapping])).isCountRequired=!0,o.executeQuery(s).then(function(e){i.parentItems=n.DataUtil.distinct(e.result,i.parent.parentIdMapping,!1);0===r.getObject("dataSource.requests",i.parent).filter(function(e){return"OK"!==e.httpRequest.statusText}).length&&(t.setValue("grid.contentModule.isLoaded",!0,i.parent),t.isNullOrUndefined(i.zerothLevelData)||(t.setValue("cancel",!1,i.zerothLevelData),t.getValue("grid.renderModule",i.parent).dataManagerSuccess(i.zerothLevelData),i.zerothLevelData=null),i.parent.grid.hideSpinner())})}}}else if(e instanceof Array){this.hierarchyData=[],this.taskIds=[];for(var d=0;d<Object.keys(e).length;d++){var l=e[d];this.hierarchyData.push(t.extend({},l)),t.isNullOrUndefined(l[this.parent.idMapping])||this.taskIds.push(l[this.parent.idMapping])}if(this.isSelfReference){var p=[],h=new n.DataManager(this.hierarchyData).executeLocal((new n.Query).group(this.parent.parentIdMapping));for(d=0;d<h.length;d++){var c=h[d],g=this.taskIds.indexOf(c.key);if(!t.isNullOrUndefined(c.key)&&g>-1){var f=c.items;this.hierarchyData[g][this.parent.childMapping]=f}else p.push.apply(p,c.items)}this.hierarchyData=this.selfReferenceUpdate(p)}Object.keys(this.hierarchyData).length?this.createRecords(this.hierarchyData):this.parent.flatData=[],this.storedIndex=-1}},e.prototype.selfReferenceUpdate=function(e){for(var t=[];this.hierarchyData.length>0&&e.length>0;){var r=e.indexOf(this.hierarchyData[0]);-1===r?this.hierarchyData.shift():(t.push(this.hierarchyData.shift()),e.splice(r,1))}return t},e.prototype.updateParentRemoteData=function(e){var i=e.result,n="adaptorName",o="isClientRender";if(this.parent.hasChildMapping||this.parentItems.length||"BlazorAdaptor"===this.parent.dataSource[n]&&!this.parent[o]||this.parent.loadChildOnDemand)if("BlazorAdaptor"===this.parent.dataSource[n]&&!this.parent[o]||this.parent.loadChildOnDemand)t.isNullOrUndefined(i)||this.convertToFlatData(i);else for(var a=0;a<i.length;a++)t.isNullOrUndefined(i[a].index)&&(i[a].taskData=t.extend({},i[a]),i[a].uniqueID=r.getUid(this.parent.element.id+"_data_"),t.setValue("uniqueIDCollection."+i[a].uniqueID,i[a],this.parent),i[a].level=0,i[a].index=Math.ceil(1e3*Math.random()),(i[a][this.parent.hasChildMapping]||-1!==this.parentItems.indexOf(i[a][this.parent.idMapping]))&&(i[a].hasChildRecords=!0),i[a].checkboxState="uncheck");else this.zerothLevelData=e,t.setValue("cancel",!0,e);e.result="BlazorAdaptor"===this.parent.dataSource[n]&&!this.parent[o]&&!t.isNullOrUndefined(i)||this.parent.loadChildOnDemand?this.parent.flatData:i,this.parent.notify("updateResults",e)},e.prototype.collectExpandingRecs=function(e,r){var i=this.parent.getRows();if(this.parent.rowTemplate){var n=this.parent.getContentTable().rows;i=[].slice.call(n)}var o;if(e.rows.length>0){r||(e.record.expanded=!0);for(var a=0;a<e.rows.length;a++){if(t.isBlazor()&&this.parent.isServerRendered?(t.removeClass([e.rows[a]],"e-treerowcollapsed"),t.addClass([e.rows[a]],"e-treerowexpanded")):e.rows[a].style.display="table-row",t.isBlazor()&&"BlazorAdaptor"===this.parent.dataSource.adaptorName&&!this.parent.isClientRender||this.parent.loadChildOnDemand){var s=e.rows[a].getElementsByClassName("e-treegridcollapse")[0];o=this.parent.rowTemplate?this.parent.grid.getCurrentViewRecords()[e.rows[a].rowIndex]:this.parent.grid.getRowObjectFromUID(e.rows[a].getAttribute("data-Uid")).data,!t.isNullOrUndefined(s)&&o.expanded&&(t.addClass([s],"e-treegridexpand"),t.removeClass([s],"e-treegridcollapse"));var d=[];(d=i.filter(function(e){return e.querySelector(".e-gridrowindex"+o.index+"level"+(o.level+1))})).length&&o.expanded&&this.collectExpandingRecs({record:o,rows:d,parentRow:e.parentRow},!0)}var l=e.rows[a].querySelector(".e-detailrowcollapse");t.isNullOrUndefined(l)||this.parent.grid.detailRowModule.expand(l)}}else this.fetchRemoteChildData({record:e.record,rows:e.rows,parentRow:e.parentRow})},e.prototype.fetchRemoteChildData=function(e,i){var a=this,s={row:e.parentRow,data:e.record},d=this.parent.dataSource,l=this.parent.grid.getDataModule().generateQuery(),p=l.queries.filter(function(e){return"onPage"!==e.fn&&"onWhere"!==e.fn});l.queries=p,l.isCountRequired=!0,l.where(this.parent.parentIdMapping,"equal",e.record[this.parent.idMapping]),o.showSpinner(this.parent.element),d.executeQuery(l).then(function(i){var d=a.parent.grid.currentViewData,l=d.indexOf(e.record),p=r.getObject("actual.nextLevel",i),h=i.result;e.record.childRecords=h;for(var c=0;c<h.length;c++){h[c].taskData=t.extend({},h[c]),h[c].level=e.record.level+1,h[c].index=Math.ceil(1e3*Math.random());var u=t.extend({},e.record);delete u.childRecords,h[c].parentItem=u,h[c].parentUniqueID=e.record.uniqueID,h[c].uniqueID=r.getUid(a.parent.element.id+"_data_"),t.setValue("uniqueIDCollection."+h[c].uniqueID,h[c],a.parent),!h[c][a.parent.hasChildMapping]&&-1===a.parentItems.indexOf(h[c][a.parent.idMapping])||p&&!p[c]||(h[c].hasChildRecords=!0,h[c].expanded=!1),d.splice(l+c+1,0,h[c])}if(t.setValue("result",d,i),t.setValue("action","beforecontentrender",i),a.parent.trigger(N,i),o.hideSpinner(a.parent.element),a.parent.grid.aggregates.length>0&&!a.parent.enableVirtualization){var g=r.getObject("query",i);if(t.isNullOrUndefined(g)&&(g=t.getValue("grid.renderModule.data",a.parent).aggregateQuery(new n.Query)),!t.isNullOrUndefined(g)){var f=g.queries.filter(function(e){return"onAggregates"===e.fn});i.result=a.parent.summaryModule.calculateSummaryValue(f,i.result,!0)}}i.count=a.parent.grid.pageSettings.totalRecordsCount;var y={};a.parent.enableVirtualization&&a.remoteVirtualAction(y),t.getValue("grid.renderModule",a.parent).dataManagerSuccess(i,y),a.parent.trigger(F,s)})},e.prototype.remoteVirtualAction=function(e){e.requestType="refresh",t.setValue("isExpandCollapse",!0,e);var r=t.getValue("grid.contentModule",this.parent),i=t.getValue("currentInfo",r),n=t.getValue("prevInfo",r);i.loadNext&&this.parent.grid.pageSettings.currentPage===i.nextInfo.page&&(this.parent.grid.pageSettings.currentPage=n.page)},e.prototype.beginSorting=function(){this.isSortAction=!0},e.prototype.createRecords=function(e,i){for(var n=[],o=0,a=Object.keys(e).length;o<a;o++){var d=t.extend({},e[o]);d.taskData=e[o];var l=0;if(this.storedIndex++,d.hasOwnProperty("index")||(d.index=this.storedIndex),(!t.isNullOrUndefined(d[this.parent.childMapping])||d[this.parent.hasChildMapping]&&s(this.parent))&&(d.hasChildRecords=!0,this.parent.enableCollapseAll||!t.isNullOrUndefined(this.parent.dataStateChange)&&t.isNullOrUndefined(d[this.parent.childMapping])?d.expanded=!1:d.expanded=!!t.isNullOrUndefined(d[this.parent.expandStateMapping])||d[this.parent.expandStateMapping]),d.hasOwnProperty("index")||(d.index=(d.hasChildRecords,this.storedIndex)),this.isSelfReference&&t.isNullOrUndefined(d[this.parent.parentIdMapping])&&this.parent.parentData.push(d),d.uniqueID=r.getUid(this.parent.element.id+"_data_"),t.setValue("uniqueIDCollection."+d.uniqueID,d,this.parent),!t.isNullOrUndefined(i)){var p=t.extend({},i);delete p.childRecords,delete p[this.parent.childMapping],this.isSelfReference&&delete p.taskData[this.parent.childMapping],d.parentItem=p,d.parentUniqueID=p.uniqueID,l=i.level+1}if(d.hasOwnProperty("level")||(d.level=l),d.checkboxState="uncheck",(t.isNullOrUndefined(d[this.parent.parentIdMapping])||d.parentItem)&&this.parent.flatData.push(d),this.isSelfReference||0!==d.level||this.parent.parentData.push(d),!t.isNullOrUndefined(d[this.parent.childMapping]&&d[this.parent.childMapping].length)){var h=this.createRecords(d[this.parent.childMapping],d);d.childRecords=h}n.push(d)}return n},e.prototype.dataProcessor=function(e){var i,o=r.getObject("isExport",e),a=r.getObject("expresults",e),d=r.getObject("exportType",e),l=r.getObject("isPrinting",e),p=r.getObject("actionArgs",e),h=r.getObject("requestType",e),c=r.getObject("data",e),u=r.getObject("action",e),g=p,f=this.parent.getPrimaryKeyFieldNames()[0],y=r.getObject("data",g);t.isNullOrUndefined(g)||t.isNullOrUndefined(g.action)||"add"!==g.action||t.isNullOrUndefined(g.data)||!t.isNullOrUndefined(g.data[f])||(g.data[f]=e.result[g.index][f],y.taskData[f]=e.result[g.index][f]),(!t.isNullOrUndefined(p)&&Object.keys(p).length||"save"===h)&&(h=h||p.requestType,c=c||r.getObject("data",p),u=u||r.getObject("action",p),"Batch"===this.parent.editSettings.mode&&(this.batchChanges=this.parent.grid.editModule.getBatchChanges()),("add"===u||"batchsave"===h&&"Batch"===this.parent.editSettings.mode&&this.batchChanges[this.addedRecords].length)&&(this.parent.grid.currentViewData=e.result),this.parent.isLocalData&&this.updateAction(c,u,h));var v=(i=o&&!t.isNullOrUndefined(a)?a:s(this.parent)?t.getValue("result",this.parent.grid.dataSource):this.parent.grid.dataSource)instanceof n.DataManager?i.dataSource.json:i,m=s(this.parent)?t.getValue("count",this.parent.dataSource):v.length;if(this.parent.grid.allowFiltering&&this.parent.grid.filterSettings.columns.length||this.parent.grid.searchSettings.key.length>0){var w=new n.Query,R=r.getObject("query",e);t.isNullOrUndefined(R)&&(R=new n.Query,R=t.getValue("grid.renderModule.data",this.parent).filterQuery(R),R=t.getValue("grid.renderModule.data",this.parent).searchQuery(R));var C=R.queries.filter(function(e){return"onWhere"===e.fn}),x=R.queries.filter(function(e){return"onSearch"===e.fn});w.queries=C.concat(x);var S=new n.DataManager(v).executeLocal(w);if(this.parent.notify("updateFilterRecs",{data:S}),v=this.dataResults.result,this.dataResults.result=null,this.parent.grid.aggregates.length>0){var b=r.getObject("query",e);if(t.isNullOrUndefined(R)&&(R=t.getValue("grid.renderModule.data",this.parent).aggregateQuery(new n.Query)),!t.isNullOrUndefined(b)){var I=b.queries.filter(function(e){return"onAggregates"===e.fn});v=this.parent.summaryModule.calculateSummaryValue(I,v,!0)}}}if(this.parent.grid.aggregates.length&&0===this.parent.grid.sortSettings.columns.length&&0===this.parent.grid.filterSettings.columns.length&&!this.parent.grid.searchSettings.key.length){R=r.getObject("query",e);t.isNullOrUndefined(R)&&(R=t.getValue("grid.renderModule.data",this.parent).aggregateQuery(new n.Query));I=R.queries.filter(function(e){return"onAggregates"===e.fn});v=this.parent.summaryModule.calculateSummaryValue(I,this.parent.flatData,!0)}if(this.parent.grid.sortSettings.columns.length>0||this.isSortAction){this.isSortAction=!1;var D=void 0;D=this.parent.parentData;b=r.getObject("query",e);for(var M=new n.Query,P=this.parent.grid.sortSettings.columns.length-1;P>=0;P--){var O=this.parent.getColumnByField(this.parent.grid.sortSettings.columns[P].field),E=O.sortComparer&&!this.isRemote()?O.sortComparer.bind(O):this.parent.grid.sortSettings.columns[P].direction;M.sortBy(this.parent.grid.sortSettings.columns[P].field,E)}var A={modifiedData:new n.DataManager(D).executeLocal(M),filteredData:v,srtQry:M};if(this.parent.notify("createSort",A),v=A.modifiedData,this.dataResults.result=null,this.sortedData=v,this.parent.notify("updateModel",{}),this.parent.grid.aggregates.length>0&&!t.isNullOrUndefined(b)){I=r.getObject("query",e).queries.filter(function(e){return"onAggregates"===e.fn});v=this.parent.summaryModule.calculateSummaryValue(I,this.sortedData,!1)}}m=s(this.parent)?t.getValue("count",this.parent.dataSource):v.length;var k=this.paging(v,m,o,l,d,e);v=k.result,m=k.count,e.result=v,e.count=m,this.parent.notify("updateResults",e)},e.prototype.paging=function(e,r,i,n,o,a){!this.parent.allowPaging||i&&"CurrentPage"!==o||n&&"CurrentPage"!==this.parent.printMode?!this.parent.enableVirtualization||i&&"CurrentPage"!==o||(this.parent.notify(H,{result:e,count:r,actionArgs:t.getValue("actionArgs",a)}),e=this.dataResults.result,r=this.dataResults.count):(this.parent.notify(H,{result:e,count:r}),e=this.dataResults.result,r=s(this.parent)?t.getValue("count",this.parent.dataSource):this.dataResults.count);return{result:e,count:r}},e.prototype.updateData=function(e){this.dataResults=e},e.prototype.updateAction=function(e,t,r){"delete"!==r&&"save"!==r||this.parent.notify(Y,{value:e,action:t||r}),"batchsave"===r&&"Batch"===this.parent.editSettings.mode&&this.parent.notify(de,{})},e}();!function(e){e[e.Add=0]="Add",e[e.Edit=1]="Edit",e[e.Update=2]="Update",e[e.Delete=3]="Delete",e[e.Cancel=4]="Cancel",e[e.Search=5]="Search",e[e.ExpandAll=6]="ExpandAll",e[e.CollapseAll=7]="CollapseAll",e[e.ExcelExport=8]="ExcelExport",e[e.PdfExport=9]="PdfExport",e[e.CsvExport=10]="CsvExport",e[e.Print=11]="Print",e[e.RowIndent=12]="RowIndent",e[e.RowOutdent=13]="RowOutdent"}(e.ToolbarItem||(e.ToolbarItem={})),function(e){e[e.AutoFit=0]="AutoFit",e[e.AutoFitAll=1]="AutoFitAll",e[e.SortAscending=2]="SortAscending",e[e.SortDescending=3]="SortDescending",e[e.Edit=4]="Edit",e[e.Delete=5]="Delete",e[e.Save=6]="Save",e[e.Cancel=7]="Cancel",e[e.PdfExport=8]="PdfExport",e[e.ExcelExport=9]="ExcelExport",e[e.CsvExport=10]="CsvExport",e[e.FirstPage=11]="FirstPage",e[e.PrevPage=12]="PrevPage",e[e.LastPage=13]="LastPage",e[e.NextPage=14]="NextPage",e[e.AddRow=15]="AddRow"}(e.ContextMenuItems||(e.ContextMenuItems={}));var qe=function(){var e=function(t,r){return(e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)t.hasOwnProperty(r)&&(e[r]=t[r])})(t,r)};return function(t,r){function i(){this.constructor=t}e(t,r),t.prototype=null===r?Object.create(r):(i.prototype=r.prototype,new i)}}(),Be=function(e,t,r,i){var n,o=arguments.length,a=o<3?t:null===i?i=Object.getOwnPropertyDescriptor(t,r):i;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)a=Reflect.decorate(e,t,r,i);else for(var s=e.length-1;s>=0;s--)(n=e[s])&&(a=(o<3?n(a):o>3?n(t,r,a):n(t,r))||a);return o>3&&a&&Object.defineProperty(t,r,a),a},Ue=function(e){function r(){return null!==e&&e.apply(this,arguments)||this}return qe(r,e),Be([t.Property(12)],r.prototype,"pageSize",void 0),Be([t.Property(8)],r.prototype,"pageCount",void 0),Be([t.Property(1)],r.prototype,"currentPage",void 0),Be([t.Property()],r.prototype,"totalRecordsCount",void 0),Be([t.Property(!1)],r.prototype,"enableQueryString",void 0),Be([t.Property(!1)],r.prototype,"pageSizes",void 0),Be([t.Property(null)],r.prototype,"template",void 0),Be([t.Property("All")],r.prototype,"pageSizeMode",void 0),r}(t.ChildProperty),Te=function(){var e=function(t,r){return(e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)t.hasOwnProperty(r)&&(e[r]=t[r])})(t,r)};return function(t,r){function i(){this.constructor=t}e(t,r),t.prototype=null===r?Object.create(r):(i.prototype=r.prototype,new i)}}(),Le=function(e,t,r,i){var n,o=arguments.length,a=o<3?t:null===i?i=Object.getOwnPropertyDescriptor(t,r):i;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)a=Reflect.decorate(e,t,r,i);else for(var s=e.length-1;s>=0;s--)(n=e[s])&&(a=(o<3?n(a):o>3?n(t,r,a):n(t,r))||a);return o>3&&a&&Object.defineProperty(t,r,a),a},Ve=function(e){function i(){var r=null!==e&&e.apply(this,arguments)||this;return r.intl=new t.Internationalization,r.templateFn={},r}return Te(i,e),i.prototype.setFormatter=function(e){this.format&&(this.format.skeleton||this.format.format)&&(this.formatFn=this.getFormatFunction(this.format))},i.prototype.getFormatFunction=function(e){return e.type?this.intl.getDateFormat(e):this.intl.getNumberFormat(e)},i.prototype.getFormatter=function(){return this.formatFn},i.prototype.setTemplate=function(e){void 0===e&&(e={}),void 0!==this.footerTemplate&&(this.templateFn[t.getEnumValue(r.CellType,r.CellType.Summary)]={fn:t.compile(this.footerTemplate,e),property:"footerTemplate"})},i.prototype.getTemplate=function(e){return this.templateFn[t.getEnumValue(r.CellType,e)]},i.prototype.setPropertiesSilent=function(e){this.setProperties(e,!0)},Le([t.Property()],i.prototype,"type",void 0),Le([t.Property()],i.prototype,"footerTemplate",void 0),Le([t.Property()],i.prototype,"field",void 0),Le([t.Property()],i.prototype,"format",void 0),Le([t.Property()],i.prototype,"columnName",void 0),Le([t.Property()],i.prototype,"customAggregate",void 0),i}(t.ChildProperty),je=function(e){function r(){return null!==e&&e.apply(this,arguments)||this}return Te(r,e),Le([t.Collection([],Ve)],r.prototype,"columns",void 0),Le([t.Property(!0)],r.prototype,"showChildSummary",void 0),r}(t.ChildProperty),Fe=function(){var e=function(t,r){return(e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)t.hasOwnProperty(r)&&(e[r]=t[r])})(t,r)};return function(t,r){function i(){this.constructor=t}e(t,r),t.prototype=null===r?Object.create(r):(i.prototype=r.prototype,new i)}}(),_e=function(e,t,r,i){var n,o=arguments.length,a=o<3?t:null===i?i=Object.getOwnPropertyDescriptor(t,r):i;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)a=Reflect.decorate(e,t,r,i);else for(var s=e.length-1;s>=0;s--)(n=e[s])&&(a=(o<3?n(a):o>3?n(t,r,a):n(t,r))||a);return o>3&&a&&Object.defineProperty(t,r,a),a},ze=function(e){function r(){return null!==e&&e.apply(this,arguments)||this}return Fe(r,e),_e([t.Property(!1)],r.prototype,"allowAdding",void 0),_e([t.Property(!1)],r.prototype,"allowEditing",void 0),_e([t.Property(!1)],r.prototype,"allowDeleting",void 0),_e([t.Property("Cell")],r.prototype,"mode",void 0),_e([t.Property("Top")],r.prototype,"newRowPosition",void 0),_e([t.Property(!0)],r.prototype,"allowEditOnDblClick",void 0),_e([t.Property(!0)],r.prototype,"showConfirmDialog",void 0),_e([t.Property(!1)],r.prototype,"showDeleteConfirmDialog",void 0),_e([t.Property("")],r.prototype,"template",void 0),_e([t.Property({})],r.prototype,"dialog",void 0),r}(t.ChildProperty),Ge=function(){var e=function(t,r){return(e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)t.hasOwnProperty(r)&&(e[r]=t[r])})(t,r)};return function(t,r){function i(){this.constructor=t}e(t,r),t.prototype=null===r?Object.create(r):(i.prototype=r.prototype,new i)}}(),He=function(e,t,r,i){var n,o=arguments.length,a=o<3?t:null===i?i=Object.getOwnPropertyDescriptor(t,r):i;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)a=Reflect.decorate(e,t,r,i);else for(var s=e.length-1;s>=0;s--)(n=e[s])&&(a=(o<3?n(a):o>3?n(t,r,a):n(t,r))||a);return o>3&&a&&Object.defineProperty(t,r,a),a},Qe=function(e){function r(){return null!==e&&e.apply(this,arguments)||this}return Ge(r,e),He([t.Property()],r.prototype,"field",void 0),He([t.Property()],r.prototype,"direction",void 0),r}(t.ChildProperty),We=function(e){function r(){return null!==e&&e.apply(this,arguments)||this}return Ge(r,e),He([t.Collection([],Qe)],r.prototype,"columns",void 0),He([t.Property(!0)],r.prototype,"allowUnsort",void 0),r}(t.ChildProperty),Ke=function(){var e=function(t,r){return(e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)t.hasOwnProperty(r)&&(e[r]=t[r])})(t,r)};return function(t,r){function i(){this.constructor=t}e(t,r),t.prototype=null===r?Object.create(r):(i.prototype=r.prototype,new i)}}(),Ye=function(e,t,r,i){var n,o=arguments.length,a=o<3?t:null===i?i=Object.getOwnPropertyDescriptor(t,r):i;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)a=Reflect.decorate(e,t,r,i);else for(var s=e.length-1;s>=0;s--)(n=e[s])&&(a=(o<3?n(a):o>3?n(t,r,a):n(t,r))||a);return o>3&&a&&Object.defineProperty(t,r,a),a},Je=function(i){function d(e,n){var o=i.call(this,e,n)||this;return o.dataResults={},o.uniqueIDCollection={},o.uniqueIDFilterCollection={},o.changedRecords="changedRecords",o.deletedRecords="deletedRecords",o.addedRecords="addedRecords",l.Inject(be),t.setValue("mergePersistData",o.mergePersistTreeGridData,o),o.grid=new r.Grid,o}Ke(d,i),l=d,d.prototype.excelExport=function(e,r,i,n){return t.isBlazor()?(this.excelExportModule.Map(e,r,i,n,!1),null):this.excelExportModule.Map(e,r,i,n,!1)},d.prototype.csvExport=function(e,r,i,n){return t.isBlazor()?(this.excelExportModule.Map(e,r,i,n,!0),null):this.excelExportModule.Map(e,r,i,n,!0)},d.prototype.pdfExport=function(e,r,i,n){return t.isBlazor()?(this.pdfExportModule.Map(e,r,i,n),null):this.pdfExportModule.Map(e,r,i,n)},d.prototype.getModuleName=function(){return"treegrid"},d.prototype.preRender=function(){this.TreeGridLocale(),this.initProperties(),this.defaultLocale={Above:"Above",Below:"Below",AddRow:"Add Row",ExpandAll:"Expand All",CollapseAll:"Collapse All",RowIndent:"Indent",RowOutdent:"Outdent"},this.l10n=new t.L10n("treegrid",this.defaultLocale,this.locale),this.isSelfReference&&t.isNullOrUndefined(this.childMapping)&&(this.childMapping="Children")},d.prototype.sortByColumn=function(e,t,r){this.sortModule.sortColumn(e,t,r)},d.prototype.clearSorting=function(){this.sortModule&&this.sortModule.clearSorting()},d.prototype.removeSortColumn=function(e){this.sortModule.removeSortColumn(e)},d.prototype.search=function(e){this.grid.search(e)},d.prototype.autoFitColumns=function(e){this.resizeModule.autoFitColumns(e),this.updateColumnModel()},d.prototype.reorderColumns=function(e,t){this.grid.reorderColumns(e,t)},d.prototype.TreeGridLocale=function(){var e,i=t.L10n.locale;e={},t.setValue(this.locale,{},e);var n;n={},n=r.getObject(this.locale,i);var o;o={},o=r.getObject(this.getModuleName(),n),t.setValue("grid",o,r.getObject(this.locale,e)),t.L10n.load(e)},d.prototype.print=function(){this.printModule.print()},d.prototype.treeGridkeyActionHandler=function(e){if(this.allowKeyboard)switch(e.action){case"ctrlDownArrow":this.expandAll();break;case"ctrlUpArrow":this.collapseAll();break;case"ctrlShiftUpArrow":var r=e.target.closest(".e-rowcell").closest("tr"),i=r.querySelector(".e-treegridexpand");null!==i&&void 0!==i&&this.expandCollapseRequest(r.querySelector(".e-treegridexpand"));break;case"ctrlShiftDownArrow":var n=e.target.closest(".e-rowcell").closest("tr"),o=n.querySelector(".e-treegridcollapse");null!==o&&void 0!==o&&this.expandCollapseRequest(n.querySelector(".e-treegridcollapse"));break;case"downArrow":var a=e.target.parentElement,s=this.findnextRowElement(a);if(null!==s){var d=s.rowIndex;this.selectRow(d);var l=e.target.cellIndex,p=s.children[l];t.addClass([p],"e-focused"),t.addClass([p],"e-focus")}else this.clearSelection();break;case"upArrow":var h=e.target.parentElement,c=this.findPreviousRowElement(h);if(null!==c){var u=c.rowIndex;this.selectRow(u);var g=e.target.cellIndex,f=c.children[g];t.addClass([f],"e-focused"),t.addClass([f],"e-focus")}else this.clearSelection()}},d.prototype.findnextRowElement=function(e){var t=e.nextElementSibling;return null===t||-1===t.className.indexOf("e-summaryrow")&&"none"!==t.style.display||(t=this.findnextRowElement(t)),t},d.prototype.findPreviousRowElement=function(e){var t=e.previousElementSibling;return null===t||-1===t.className.indexOf("e-summaryrow")&&"none"!==t.style.display||(t=this.findPreviousRowElement(t)),t},d.prototype.initProperties=function(){this.defaultLocale={},this.flatData=[],this.parentData=[],this.columnModel=[],this.isExpandAll=!1,this.isCollapseAll=!1,this.keyConfigs={ctrlDownArrow:"ctrl+downarrow",ctrlUpArrow:"ctrl+uparrow",ctrlShiftUpArrow:"ctrl+shift+uparrow",ctrlShiftDownArrow:"ctrl+shift+downarrow",downArrow:"downArrow",upArrow:"upArrow"},this.isLocalData=!(this.dataSource instanceof n.DataManager)||this.dataSource.dataSource.offline||!t.isNullOrUndefined(this.dataSource.ready)||this.dataSource.adaptor instanceof n.RemoteSaveAdaptor,this.isSelfReference=!t.isNullOrUndefined(this.parentIdMapping)},d.prototype.wireEvents=function(){t.EventHandler.add(this.grid.element,"click",this.mouseClickHandler,this),t.EventHandler.add(this.element,"touchend",this.mouseClickHandler,this),this.keyboardModule=new t.KeyboardEvents(this.element,{keyAction:this.treeGridkeyActionHandler.bind(this),keyConfigs:this.keyConfigs,eventName:"keydown"}),this.allowKeyboard&&(this.element.tabIndex=-1===this.element.tabIndex?0:this.element.tabIndex)},d.prototype.requiredModules=function(){var e=[];return this.isDestroyed?e:(e.push({member:"filter",args:[this,this.filterSettings]}),t.isNullOrUndefined(this.toolbar)||e.push({member:"toolbar",args:[this]}),this.contextMenuItems&&e.push({member:"contextMenu",args:[this]}),this.allowPaging&&e.push({member:"pager",args:[this,this.pageSettings]}),this.allowReordering&&e.push({member:"reorder",args:[this]}),this.allowSorting&&e.push({member:"sort",args:[this]}),this.aggregates.length>0&&e.push({member:"summary",args:[this]}),e.push({member:"resize",args:[this]}),this.allowExcelExport&&e.push({member:"ExcelExport",args:[this]}),(this.frozenColumns||this.frozenRows||this.getFrozenColumns())&&e.push({member:"freeze",args:[this]}),this.detailTemplate&&e.push({member:"detailRow",args:[this]}),this.allowPdfExport&&e.push({member:"PdfExport",args:[this]}),this.showColumnMenu&&e.push({member:"columnMenu",args:[this]}),this.allowRowDragAndDrop&&e.push({member:"rowDragAndDrop",args:[this]}),(this.editSettings.allowAdding||this.editSettings.allowDeleting||this.editSettings.allowEditing)&&e.push({member:"edit",args:[this]}),this.isCommandColumn(this.columns)&&e.push({member:"commandColumn",args:[this]}),this.allowSelection&&e.push({member:"selection",args:[this]}),this.enableVirtualization&&e.push({member:"virtualScroll",args:[this]}),e)},d.prototype.isCommandColumn=function(e){var t=this;return e.some(function(e){return e.columns?t.isCommandColumn(e.columns):!(!e.commands&&!e.commandsTemplate)})},d.prototype.unwireEvents=function(){t.EventHandler.remove(this.grid.element,"click",this.mouseClickHandler)},d.prototype.render=function(){var e=this;o.createSpinner({target:this.element},this.createElement),this.renderModule=new ke(this),this.dataModule=new Ne(this),this.printModule=new Ie(this);if(this.isClientRender&&(this.isServerRendered=!1),this.trigger("load"),this.autoGenerateColumns(),this.initialRender=!0,t.isNullOrUndefined(this.dataSource)||this.convertTreeData(this.dataSource),!t.isBlazor()||!this.isServerRendered){this.loadGrid(),this.element.classList.contains("e-treegrid")&&this.rowDropSettings.targetID&&(this.grid.rowDropSettings.targetID+="_gridcontrol"),this.addListener();var i=t.createElement("div",{id:this.element.id+"_gridcontrol"});t.addClass([this.element],"e-treegrid"),t.isNullOrUndefined(this.height)||"string"!=typeof this.height||-1===this.height.indexOf("%")||(this.element.style.height=this.height),t.isNullOrUndefined(this.width)||"string"!=typeof this.width||-1===this.width.indexOf("%")||(this.element.style.width=this.width),this.element.appendChild(i),this.grid.appendTo(i),this.wireEvents()}this.renderComplete();var n="destroyTemplate",a=this.grid[n];if(this.grid[n]=function(t,r){a.apply(e.grid),e.clearTemplate(t,r)},t.isBlazor()&&this.isServerRendered){var s=function(t){return e.gridRendered(t,s)};r.gridObserver.on("component-rendered",s,this)}},d.prototype.afterGridRender=function(){t.isNullOrUndefined(this.grid.clipboardModule)||this.grid.clipboardModule.destroy(),this.clipboardModule=this.grid.clipboardModule=new Se(this)},d.prototype.gridRendered=function(e,i){if(e.id===this.element.id+"_gridcontrol"){this.grid=e.grid,this.grid.query.queries=[];this.isServerRendered?this.grid.isHybrid=!0:this.grid.isJsComponent=!0,this.setBlazorGUID(),this.setColIndex(this.grid.columns),this.bindGridEvents();t.isNullOrUndefined(this.selectionModule)||this.grid.on("colgroup-refresh",this.selectionModule.headerCheckbox,this.selectionModule);for(var n=0;n<this.columns.length;n++)this.columns[n].uid=this.grid.columns[n].uid;this.wireEvents(),this.afterGridRender();t.isNullOrUndefined(this.grid.editModule)||this.grid.editModule.updateColTypeObj();this.grid.processModel(),r.gridObserver.off("component-rendered",this.gridRendered)}},d.prototype.setColIndex=function(e,r){void 0===r&&(r=0);for(var i=0,n=e.length;i<n;i++)e[i].columns?(e[i].index=t.isNullOrUndefined(e[i].index)?r:e[i].index,r++,r=this.setColIndex(e[i].columns,r)):(e[i].index=t.isNullOrUndefined(e[i].index)?r:e[i].index,r++);return r},d.prototype.setBlazorGUID=function(){this.editSettings&&(this.grid.editSettings.guid=this.editSettings.guid,this.grid.editSettings.template=this.editSettings.template);for(var e=0;e<this.aggregates.length;e++)for(var t=0;t<this.aggregates[e].columns.length;t++)this.grid.aggregates[e].columns[t].guid=this.aggregates[e].columns[t].guid;for(e=0;e<this.columns.length;e++)this.grid.columns[e].guid=this.columns[e].guid},d.prototype.convertTreeData=function(e){var r=this;if(e instanceof Array&&e.length>0&&e[0].hasOwnProperty("level"))this.flatData=s(this)?t.getValue("result",e):e,this.flatData.filter(function(e){t.setValue("uniqueIDCollection."+e.uniqueID,e,r),0===e.level&&r.parentData.push(e)});else if(s(this)){var i=t.getValue("result",this.dataSource);this.dataModule.convertToFlatData(i)}else this.dataModule.convertToFlatData(e)},d.prototype.bindGridProperties=function(){this.bindedDataSource(),this.grid.enableRtl=this.enableRtl,this.grid.allowKeyboard=this.allowKeyboard,this.grid.columns=this.getGridColumns(this.columns),this.grid.allowExcelExport=this.allowExcelExport,this.grid.allowPdfExport=this.allowPdfExport,this.grid.query=this.query,this.grid.columnQueryMode=this.columnQueryMode,this.grid.allowPaging=this.allowPaging,this.grid.pageSettings=r.getActualProperties(this.pageSettings),this.grid.pagerTemplate=this.pagerTemplate,this.grid.showColumnMenu=this.showColumnMenu,this.grid.allowSorting=this.allowSorting,this.grid.allowFiltering=this.allowFiltering,this.grid.enableVirtualization=this.enableVirtualization,this.grid.width=this.width,this.grid.height=this.height,this.grid.enableAltRow=this.enableAltRow,this.grid.allowReordering=this.allowReordering,this.grid.allowTextWrap=this.allowTextWrap,this.grid.allowResizing=this.allowResizing,this.grid.enableHover=this.enableHover,this.grid.enableAutoFill=this.enableAutoFill,this.grid.allowRowDragAndDrop=this.allowRowDragAndDrop,this.grid.rowDropSettings=r.getActualProperties(this.rowDropSettings),this.grid.rowHeight=this.rowHeight,this.grid.gridLines=this.gridLines,this.grid.allowSelection=this.allowSelection,this.grid.toolbar=r.getActualProperties(this.getGridToolbar()),this.grid.toolbarTemplate=this.toolbarTemplate,this.grid.filterSettings=r.getActualProperties(this.filterSettings),this.grid.selectionSettings=r.getActualProperties(this.selectionSettings),this.grid.sortSettings=r.getActualProperties(this.sortSettings),this.grid.searchSettings=r.getActualProperties(this.searchSettings),this.grid.aggregates=r.getActualProperties(this.aggregates),this.grid.textWrapSettings=r.getActualProperties(this.textWrapSettings),this.grid.printMode=r.getActualProperties(this.printMode),this.grid.locale=r.getActualProperties(this.locale),this.grid.selectedRowIndex=this.selectedRowIndex,this.grid.contextMenuItems=r.getActualProperties(this.getContextMenu()),this.grid.columnMenuItems=r.getActualProperties(this.columnMenuItems),this.grid.editSettings=this.getGridEditSettings(),this.grid.rowTemplate=r.getActualProperties(this.rowTemplate),this.grid.detailTemplate=r.getActualProperties(this.detailTemplate),this.grid.frozenRows=this.frozenRows,this.grid.frozenColumns=this.frozenColumns;var e="templateDotnetInstance";this.grid[e]=this[e];this.grid.isJsComponent=!0},d.prototype.triggerEvents=function(e){this.trigger(r.getObject("name",e),e)},d.prototype.bindGridEvents=function(){var e=this,r=this;this.grid.rowSelecting=this.triggerEvents.bind(this),this.grid.rowSelected=function(i){t.isBlazor()?t.isBlazor()&&e.isServerRendered&&(e.allowServerDataBinding=!1,e.setProperties({selectedRowIndex:e.grid.selectedRowIndex},!0),e.allowServerDataBinding=!0):e.selectedRowIndex=e.grid.selectedRowIndex,r.notify(q,i),e.trigger(q,i)},this.grid.rowDeselected=function(r){if(e.selectedRowIndex=e.grid.selectedRowIndex,t.isBlazor()){r.data=r.data[r.data.length-1],r.rowIndex=r.rowIndex[r.rowIndex.length-1],r.row=r.row[r.row.length-1]}e.trigger(U,r)},this.grid.resizeStop=function(t){e.updateColumnModel(),e.trigger(j,t)},this.grid.excelQueryCellInfo=function(t){e.notify("excelCellInfo",t),t=e.dataResults},this.grid.pdfQueryCellInfo=function(t){e.notify("pdfCellInfo",t),t=e.dataResults},this.grid.checkBoxChange=function(t){e.trigger(B,t)},this.grid.cellSelected=function(r){var i;t.isBlazor()&&e.isServerRendered?(i={data:r.data,cellIndex:r.cellIndex},e.trigger("cellSelected",i)):e.trigger("cellSelected",r)},this.grid.pdfExportComplete=this.triggerEvents.bind(this),this.grid.excelExportComplete=this.triggerEvents.bind(this),this.grid.excelHeaderQueryCellInfo=this.triggerEvents.bind(this),this.grid.pdfHeaderQueryCellInfo=this.triggerEvents.bind(this),this.grid.dataSourceChanged=this.triggerEvents.bind(this),this.grid.recordDoubleClick=this.triggerEvents.bind(this),this.grid.rowDeselecting=this.triggerEvents.bind(this),this.grid.cellDeselected=this.triggerEvents.bind(this),this.grid.cellDeselecting=this.triggerEvents.bind(this),this.grid.columnMenuOpen=this.triggerEvents.bind(this),this.grid.columnMenuClick=this.triggerEvents.bind(this),this.grid.headerCellInfo=this.triggerEvents.bind(this),this.grid.resizeStart=this.triggerEvents.bind(this),this.grid.resizing=this.triggerEvents.bind(this),this.grid.columnDrag=this.triggerEvents.bind(this),this.grid.columnDragStart=this.triggerEvents.bind(this),this.grid.columnDrop=this.triggerEvents.bind(this),this.grid.beforePrint=this.triggerEvents.bind(this),this.grid.beforeCopy=this.triggerEvents.bind(this),this.grid.beforePaste=function(t){for(var r=e.getRows();r[t.rowIndex].classList.contains("e-summaryrow");)t.rowIndex++;e.trigger("beforePaste",t)},this.grid.load=function(){r.grid.on("initial-end",r.afterGridRender,r)},this.grid.printComplete=this.triggerEvents.bind(this),this.grid.actionFailure=this.triggerEvents.bind(this),this.extendedGridDataBoundEvent(),this.extendedGridEvents(),this.extendedGridActionEvents(),this.extendedGridEditEvents(),this.extendedGridBatchEvents(),this.bindGridDragEvents(),this.bindCallBackEvents()},d.prototype.extendedGridDataBoundEvent=function(){var e=this,i=this;this.grid.dataBound=function(i){if(e.updateRowTemplate(i),e.updateColumnModel(),e.updateAltRow(e.getRows()),e.notify("dataBoundArg",i),e.trigger("dataBound",i),a(e)&&!u(e)&&!e.hasChildMapping){var n=r.getObject("dataSource.requests",e).filter(function(e){return"OK"!==e.httpRequest.statusText}).length;t.setValue("grid.contentModule.isLoaded",!(n>0),e)}e.initialRender=!1},this.grid.beforeDataBound=function(e){var o=r.getObject("action",e);if(a(i)&&!u(i)&&"edit"!==o)i.notify("updateRemoteLevel",e),e=i.dataResults;else if(0===i.flatData.length&&u(i)&&i.dataSource instanceof n.DataManager){var d=i.dataSource;i.dataModule.convertToFlatData(d.dataSource.json),e.result=i.grid.dataSource.dataSource.json=i.flatData}if(a(i)||s(this)||t.isNullOrUndefined(i.dataSource)||(this.isPrinting&&t.setValue("isPrinting",!0,e),i.notify("dataProcessor",e)),t.extend(e,i.dataResults),!this.isPrinting){var l=new n.Deferred;return i.trigger(E,e,function(e){l.resolve(e)}),l}}},d.prototype.bindCallBackEvents=function(){var e,i=this;t.isBlazor()&&this.isServerRendered&&(t.isNullOrUndefined(this.grid.beginEdit)||(e=this.grid.beginEdit)),this.grid.toolbarClick=function(e){var t=new n.Deferred;return i.trigger(T,e,function(r){r.cancel||i.notify(T,e),t.resolve(r)}),t},this.grid.cellSelecting=function(e){var t=new n.Deferred;return i.trigger(r.getObject("name",e),e,function(e){t.resolve(e)}),t},this.grid.beginEdit=function(r){t.isBlazor()&&i.isServerRendered&&e&&"function"==typeof e&&e.apply(i,[r]);var o=new n.Deferred;return i.trigger(J,r,function(e){o.resolve(e)}),o}},d.prototype.extendedGridEditEvents=function(){var e,r,i=this;if(t.isBlazor()&&this.isServerRendered&&(t.isNullOrUndefined(this.grid.cellEdit)||(e=this.grid.cellEdit),t.isNullOrUndefined(this.grid.cellSave)||(r=this.grid.cellSave)),this.editModule&&t.isBlazor()&&this.isServerRendered){this.grid.on("key-pressed",this.editModule.keyPressed,this.editModule);var o=this.grid.localObserver.boundedEvents["key-pressed"];o.splice(0,0,o.pop())}this.grid.dataStateChange=function(e){i.isExpandRefresh?(i.isExpandRefresh=!1,i.grid.dataSource={result:i.flatData,count:t.getValue("count",i.grid.dataSource)}):i.trigger(k,e)},this.grid.cellSave=function(e){if(t.isBlazor()&&i.isServerRendered&&r&&"function"==typeof r&&r.apply(i,[e]),i.grid.isContextMenuOpen()){var o=void 0;o=i.grid.contextMenuModule.contextMenu.element.getElementsByClassName("e-selected")[0],(t.isNullOrUndefined(o)||o.id!==i.element.id+"_gridcontrol_cmenu_Save")&&(e.cancel=!0)}var a=new n.Deferred;return i.trigger($,e,function(e){t.isBlazor()&&!i.isServerRendered&&(e.cell=t.getElement(e.cell)),e.cancel||i.notify($,e),a.resolve(e)}),a},this.grid.cellSaved=function(e){i.trigger(ee,e),i.notify(ee,e)},this.grid.cellEdit=function(r){t.isBlazor()&&i.isServerRendered&&e&&"function"==typeof e&&e.apply(i,[r]);var o=new n.Deferred;return r.promise=o,i.notify(te,r),o}},d.prototype.extendedGridBatchEvents=function(){var e,r=this;t.isBlazor()&&this.isServerRendered&&(t.isNullOrUndefined(this.grid.beforeBatchSave)||(e=this.grid.beforeBatchSave)),this.grid.batchAdd=function(e){r.trigger(ne,e),r.notify(ne,e)},this.grid.beforeBatchSave=function(i){t.isBlazor()&&r.isServerRendered&&e&&"function"==typeof e&&e.apply(r,[i]),r.trigger(se,i),r.notify(se,i)},this.grid.beforeBatchAdd=function(e){r.trigger(ae,e),r.notify(ae,e)},this.grid.batchDelete=function(e){r.trigger(re,e),r.notify(re,e)},this.grid.beforeBatchDelete=function(e){r.trigger(oe,e),r.notify(oe,e)},this.grid.batchCancel=function(e){"Cell"!==r.editSettings.mode&&r.trigger(ie,e),r.notify(ie,e)}},d.prototype.updateRowTemplate=function(e){var r=this;t.isBlazor()&&!this.isServerRendered?setTimeout(function(){r.treeColumnRowTemplate(e)},1e3):this.treeColumnRowTemplate(e)},d.prototype.bindedDataSource=function(){var e="dataSource";if(this.dataSource&&s(this)){var r=this.flatData,i=t.getValue("count",this.dataSource);this.grid.dataSource={result:r,count:i}}else this.grid.dataSource=this.dataSource instanceof n.DataManager?new n.DataManager(this.dataSource.dataSource,this.dataSource.defaultQuery,this.dataSource.adaptor):this.flatData;if(t.isBlazor()&&this.dataSource instanceof n.DataManager&&(this.grid.dataSource.adaptorName=this.dataSource.adaptorName,this.grid.dataSource.dotnetInstance=this.dataSource.dotnetInstance,this.grid.dataSource.key=this.dataSource.key),this.dataSource instanceof n.DataManager&&(this.dataSource.dataSource.offline||this.dataSource.ready)){this.grid.dataSource[e].json=g(this.dataSource[e].json),this.grid.dataSource.ready=this.dataSource.ready;var o=this.grid.dataSource;t.isNullOrUndefined(this.grid.dataSource.ready)||this.grid.dataSource.ready.then(function(t){o[e].offline=!0,o.isDataAvailable=!0,o[e].json=t.result,o.adaptor=new n.JsonAdaptor})}},d.prototype.extendedGridActionEvents=function(){var e,i=this;t.isBlazor()&&this.isServerRendered&&(t.isNullOrUndefined(this.grid.actionComplete)||(e=this.grid.actionComplete)),this.grid.actionBegin=function(e){"sorting"===e.requestType&&e.target&&e.target.parentElement&&e.target.parentElement.classList.contains("e-hierarchycheckbox")&&(e.cancel=!0);"reorder"===r.getObject("requestType",e)&&i.notify("getColumnIndex",{}),i.notify("actionBegin",{editAction:e}),a(i)||t.isNullOrUndefined(i.filterModule)||s(i)||0!==i.grid.filterSettings.columns.length&&0!==i.grid.searchSettings.key.length||(i.notify("clearFilters",{flatData:i.grid.dataSource}),i.grid.dataSource=i.dataResults.result);var o=new n.Deferred;if(t.isBlazor()&&"delete"===e.requestType&&!i.isServerRendered){e.data=e.data[0]}return i.trigger(A,e,function(e){if(t.isBlazor()&&"delete"===e.requestType&&!i.isServerRendered){e.data=[e.data]}e.cancel||i.notify(J,e),t.isBlazor()&&"beginEdit"===e.requestType&&!i.isServerRendered&&(e.row=t.getElement(e.row)),o.resolve(e)}),o},this.grid.actionComplete=function(r){if(t.isBlazor()&&i.isServerRendered){for(var n=i.getRows(),o=0;o<n.length;o++){(n[o].classList.contains("e-treerowcollapsed")||n[o].classList.contains("e-treerowexpanded"))&&(i.enableCollapseAll&&"paging"===r.requestType?t.removeClass([n[o]],"e-treerowexpanded"):t.removeClass([n[o]],"e-treerowcollapsed"),i.enableCollapseAll&&"paging"===r.requestType?t.addClass([n[o]],"e-treerowcollapsed"):t.addClass([n[o]],"e-treerowexpanded"));var a=n[o].querySelectorAll(".e-rowcell"),s=a[i.treeColumnIndex].getElementsByClassName("e-treegridcollapse")[0]||a[i.treeColumnIndex].getElementsByClassName("e-treegridexpand")[0];s&&(i.enableCollapseAll&&"paging"===r.requestType?t.removeClass([s],"e-treegridexpand"):t.removeClass([s],"e-treegridcollapse"),i.enableCollapseAll&&"paging"===r.requestType?t.addClass([s],"e-treegridcollapse"):t.addClass([s],"e-treegridexpand"))}e&&"function"==typeof e&&e.apply(i,[r])}if(i.notify("actioncomplete",r),i.updateColumnModel(),i.updateTreeGridModel(),"reorder"===r.requestType&&i.notify("setColumnIndex",{}),i.notify("actionComplete",{editAction:r}),"add"===r.requestType&&"Top"!==i.editSettings.newRowPosition&&"Bottom"!==i.editSettings.newRowPosition&&i.notify(X,r),"batchsave"===r.requestType&&i.notify(de,r),i.notify("updateGridActions",r),t.isBlazor()&&"delete"===r.requestType&&!i.isServerRendered){r.data=r.data[0]}i.trigger(N,r)}},d.prototype.extendedGridEvents=function(){var e=this,r=this;this.grid.recordDoubleClick=function(t){e.trigger(Z,t),e.notify(Z,t)},this.grid.detailDataBound=function(t){e.notify("detaildataBound",t),e.trigger(ye,t)},this.grid.rowDataBound=function(e){t.isNullOrUndefined(this.isPrinting)?t.setValue("isPrinting",!1,e):t.setValue("isPrinting",this.isPrinting,e),r.renderModule.RowModifier(e)},this.grid.queryCellInfo=function(e){t.isNullOrUndefined(this.isPrinting)?t.setValue("isPrinting",!1,e):t.setValue("isPrinting",this.isPrinting,e),r.renderModule.cellRender(e)},this.grid.contextMenuClick=function(t){e.notify(K,t),e.trigger(K,t)},this.grid.contextMenuOpen=function(t){e.notify(W,t),e.trigger(W,t)},this.grid.queryCellInfo=function(t){e.renderModule.cellRender(t)}},d.prototype.bindGridDragEvents=function(){var e=this,t=this;this.grid.rowDragStartHelper=function(e){t.trigger(ve,e)},this.grid.rowDragStart=function(e){t.trigger("rowDragStart",e)},this.grid.rowDrag=function(r){e.grid.isEdit?r.cancel=!0:(t.notify(Re,r),t.trigger("rowDrag",r))},this.grid.rowDrop=function(r){e.grid.isEdit?r.cancel=!0:(t.notify(Ce,r),r.cancel=!0)}},d.prototype.loadGrid=function(){this.bindGridProperties(),this.bindGridEvents(),t.setValue("registeredTemplate",this.registeredTemplate,this.grid);t.setValue("viewContainerRef",this.viewContainerRef,this.grid)},d.prototype.autoGenerateColumns=function(){if(!this.columns.length&&!this.dataModule.isRemote()&&Object.keys(this.dataSource).length){var e=void 0;e=this.dataSource[0];for(var t=Object.keys(e),r=0;r<t.length;r++)-1===[this.childMapping,this.parentIdMapping].indexOf(t[r])&&this.columns.push(t[r])}},d.prototype.getGridEditSettings=function(){var e={};switch(e.allowAdding=this.editSettings.allowAdding,e.allowEditing=this.editSettings.allowEditing,e.allowDeleting=this.editSettings.allowDeleting,e.newRowPosition="Bottom"===this.editSettings.newRowPosition?"Bottom":"Top",e.allowEditOnDblClick=this.editSettings.allowEditOnDblClick,e.showConfirmDialog=this.editSettings.showConfirmDialog,e.template=this.editSettings.template,e.showDeleteConfirmDialog=this.editSettings.showDeleteConfirmDialog,e.guid=this.editSettings.guid,e.dialog=this.editSettings.dialog,this.editSettings.mode){case"Dialog":case"Batch":e.mode=this.editSettings.mode;break;case"Row":e.mode="Normal";break;case"Cell":e.mode="Normal",e.showConfirmDialog=!1}return e},d.prototype.getContextMenu=function(){if(this.contextMenuItems){for(var t=[],r=0;r<this.contextMenuItems.length;r++)switch(this.contextMenuItems[r]){case"AddRow":case e.ContextMenuItems.AddRow:t.push({text:this.l10n.getConstant("AddRow"),target:".e-content",id:this.element.id+"_gridcontrol_cmenu_AddRow",items:[{text:this.l10n.getConstant("Above"),id:"Above"},{text:this.l10n.getConstant("Below"),id:"Below"}]});break;default:t.push(this.contextMenuItems[r])}return t}return null},d.prototype.getGridToolbar=function(){if(this.toolbar){for(var t=[],r=0;r<this.toolbar.length;r++)switch(this.toolbar[r]){case"Search":case e.ToolbarItem.Search:t.push("Search");break;case"Print":case e.ToolbarItem.Print:t.push("Print");break;case"ExpandAll":case e.ToolbarItem.ExpandAll:var i=this.l10n.getConstant("ExpandAll");t.push({text:i,tooltipText:i,prefixIcon:"e-expand",id:this.element.id+"_gridcontrol_expandall"});break;case"CollapseAll":case e.ToolbarItem.CollapseAll:var n=this.l10n.getConstant("CollapseAll");t.push({text:n,tooltipText:n,prefixIcon:"e-collapse",id:this.element.id+"_gridcontrol_collapseall"});break;case"Indent":case e.ToolbarItem.RowIndent:var o=this.l10n.getConstant("RowIndent");t.push({text:o,tooltipText:o,prefixIcon:"e-indent",id:this.element.id+"_gridcontrol_indent"});break;case"Outdent":case e.ToolbarItem.RowOutdent:var a=this.l10n.getConstant("RowOutdent");t.push({text:a,tooltipText:a,prefixIcon:"e-outdent",id:this.element.id+"_gridcontrol_outdent"});break;default:t.push(this.toolbar[r])}return t}return null},d.prototype.getGridColumns=function(e){var t=e;this.columnModel=[];for(var r,i,n=[],o=0;o<t.length;o++){var a=this.grid.getColumnByUid(t[o].uid);if(i=a||{},r={},"string"==typeof this.columns[o])i.field=r.field=this.columns[o];else for(var s=0,d=Object.keys(t[o]);s<d.length;s++){var l=d[s];i[l]=r[l]=t[o][l]}t[o].columns?this.getGridColumns(e[o].columns):this.columnModel.push(new R(r)),n.push(i)}return n},d.prototype.onPropertyChanged=function(e,i){for(var o=!1,a=0,d=Object.keys(e);a<d.length;a++){var l=d[a];switch(l){case"columns":t.isBlazor()&&this.isServerRendered&&this.preventUpdate||(this.grid.columns=this.getGridColumns(this.columns));break;case"treeColumnIndex":this.grid.refreshColumns();break;case"allowPaging":this.grid.allowPaging=this.allowPaging;break;case"pageSettings":this.grid.pageSettings=r.getActualProperties(this.pageSettings),o=!0;break;case"enableVirtualization":this.grid.enableVirtualization=this.enableVirtualization;break;case"toolbar":this.grid.toolbar=this.getGridToolbar();break;case"allowSelection":this.grid.allowSelection=this.allowSelection;break;case"selectionSettings":this.grid.selectionSettings=r.getActualProperties(this.selectionSettings);break;case"allowSorting":this.grid.allowSorting=this.allowSorting;break;case"allowMultiSorting":this.grid.allowMultiSorting=this.allowMultiSorting;break;case"sortSettings":this.grid.sortSettings=r.getActualProperties(this.sortSettings);break;case"searchSettings":this.grid.searchSettings=r.getActualProperties(this.searchSettings);break;case"allowFiltering":this.grid.allowFiltering=this.allowFiltering;break;case"filterSettings":this.grid.filterSettings=r.getActualProperties(this.filterSettings);break;case"showColumnMenu":this.grid.showColumnMenu=this.showColumnMenu;break;case"allowRowDragAndDrop":this.grid.allowRowDragAndDrop=this.allowRowDragAndDrop;break;case"aggregates":this.grid.aggregates=r.getActualProperties(this.aggregates);break;case"dataSource":if(this.isLocalData=!(this.dataSource instanceof n.DataManager)||!t.isNullOrUndefined(this.dataSource.ready)||this.dataSource.adaptor instanceof n.RemoteSaveAdaptor,this.convertTreeData(this.dataSource),this.isLocalData)if(s(this)){var p=t.getValue("count",this.dataSource);this.grid.dataSource={result:this.flatData,count:p}}else this.grid.dataSource=this.flatData;else this.bindedDataSource(),this.enableVirtualization&&(this.grid.contentModule.removeEventListener(),this.grid.contentModule.eventListener("on"),this.grid.contentModule.renderTable());break;case"query":this.grid.query=this.query;break;case"enableCollapseAll":e[l]?this.collapseAll():this.expandAll();break;case"expandStateMapping":this.refresh();break;case"gridLines":this.grid.gridLines=this.gridLines;break;case"rowTemplate":this.grid.rowTemplate=r.getActualProperties(this.rowTemplate);break;case"frozenRows":this.grid.frozenRows=this.frozenRows;break;case"frozenColumns":this.grid.frozenColumns=this.frozenColumns;break;case"rowHeight":this.grid.rowHeight=this.rowHeight;break;case"height":t.isNullOrUndefined(this.height)||"string"!=typeof this.height||-1===this.height.indexOf("%")||(this.element.style.height=this.height),this.grid.height=this.height;break;case"width":t.isNullOrUndefined(this.width)||"string"!=typeof this.width||-1===this.width.indexOf("%")||(this.element.style.width=this.width),this.grid.width=this.width;break;case"locale":this.grid.locale=this.locale;break;case"selectedRowIndex":this.grid.selectedRowIndex=this.selectedRowIndex;break;case"enableAltRow":this.grid.enableAltRow=this.enableAltRow;break;case"enableHover":this.grid.enableHover=this.enableHover;break;case"enableAutoFill":this.grid.enableAutoFill=this.enableAutoFill;break;case"allowExcelExport":this.grid.allowExcelExport=this.allowExcelExport;break;case"allowPdfExport":this.grid.allowPdfExport=this.allowPdfExport;break;case"enableRtl":this.grid.enableRtl=this.enableRtl;break;case"allowReordering":this.grid.allowReordering=this.allowReordering;break;case"allowResizing":this.grid.allowResizing=this.allowResizing;break;case"textWrapSettings":this.grid.textWrapSettings=r.getActualProperties(this.textWrapSettings);break;case"allowTextWrap":this.grid.allowTextWrap=r.getActualProperties(this.allowTextWrap),this.refresh();break;case"contextMenuItems":this.grid.contextMenuItems=this.getContextMenu();break;case"detailTemplate":this.grid.detailTemplate=r.getActualProperties(this.detailTemplate);break;case"columnMenuItems":this.grid.columnMenuItems=r.getActualProperties(this.columnMenuItems);break;case"editSettings":this.grid.isEdit&&"Normal"===this.grid.editSettings.mode&&e[l].mode&&("Cell"===e[l].mode||"Row"===e[l].mode)&&this.grid.closeEdit(),this.grid.editSettings=this.getGridEditSettings()}o&&this.refresh()}},d.prototype.destroy=function(){this.removeListener(),this.unwireEvents(),i.prototype.destroy.call(this),this.grid.destroy(),this.dataModule.destroy();for(var e=["dataModule","sortModule","renderModule","filterModule","printModule","clipboardModule","excelExportModule","pdfExportModule","toolbarModule","summaryModule","reorderModule","resizeModule","pagerModule","keyboardModule","columnMenuModule","contextMenuModule","editModule","virtualScrollModule","selectionModule","detailRow","rowDragAndDropModule","freezeModule"],t=0;t<e.length;t++)this[e[t]]&&(this[e[t]]=null);this.element.innerHTML="",this.grid=null},d.prototype.dataBind=function(){i.prototype.dataBind.call(this),t.isBlazor()&&this.isServerRendered&&(!t.getValue("isRendered",this.grid)||this.initialRender)||this.grid.dataBind()},d.prototype.getPersistData=function(){for(var e=["pageSettings","sortSettings","filterSettings","columns","searchSettings","selectedRowIndex"],t={pageSettings:["template","pageSizes","pageSizeMode","enableQueryString","totalRecordsCount","pageCount"],filterSettings:["type","mode","showFilterBarStatus","immediateModeDelay","ignoreAccent","hierarchyMode"],searchSettings:["fields","operator","ignoreCase"],sortSettings:[],columns:[],selectedRowIndex:[]},r=0;r<e.length;r++)for(var i=this[e[r]],n=0,o=t[e[r]];n<o.length;n++){delete i[o[n]]}return this.ignoreInArrays(["filter","edit","filterBarTemplate","headerTemplate","template","commandTemplate","commands","dataSource"],this.columns),this.addOnPersist(e)},d.prototype.ignoreInArrays=function(e,t){for(var r=0;r<t.length;r++)t[r].columns?(this.ignoreInColumn(e,t[r]),this.ignoreInArrays(e,t[r].columns)):this.ignoreInColumn(e,t[r])},d.prototype.ignoreInColumn=function(e,t){for(var r=0;r<e.length;r++)delete t[e[r]],t.filter={}},d.prototype.mouseClickHandler=function(e){if(t.isNullOrUndefined(e.touches)){var r=e.target;!r.classList.contains("e-treegridexpand")&&!r.classList.contains("e-treegridcollapse")||this.isEditCollapse||this.grid.isEdit||this.expandCollapseRequest(r),this.isEditCollapse=!1,this.notify("checkboxSelection",{target:r})}},d.prototype.getRows=function(){return this.grid.getRows()},d.prototype.getPager=function(){return this.grid.getPager()},d.prototype.addRecord=function(e,t,r){this.editModule&&this.editModule.addRecord(e,t,r)},d.prototype.closeEdit=function(){this.grid.editModule&&this.grid.editModule.closeEdit()},d.prototype.saveCell=function(){this.grid.editModule&&this.grid.editModule.saveCell()},d.prototype.updateCell=function(e,t,r){this.grid.editModule&&this.grid.editModule.updateCell(e,t,r)},d.prototype.updateRow=function(e,r){if(this.grid.editModule){var i=this.grid.getCurrentViewRecords()[e];t.extend(i,r),this.grid.editModule.updateRow(e,i)}},d.prototype.deleteRecord=function(e,t){this.grid.editModule&&this.grid.editModule.deleteRecord(e,t)},d.prototype.startEdit=function(e){this.grid.editModule&&this.grid.editModule.startEdit(e)},d.prototype.editCell=function(e,t){this.editModule&&this.editModule.editCell(e,t)},d.prototype.enableToolbarItems=function(e,t){this.grid.toolbarModule&&this.grid.toolbarModule.enableItems(e,t)},d.prototype.endEdit=function(){this.grid.editModule&&this.grid.editModule.endEdit()},d.prototype.deleteRow=function(e){this.grid.editModule&&this.grid.editModule.deleteRow(e)},d.prototype.getPrimaryKeyFieldNames=function(){return this.grid.getPrimaryKeyFieldNames()},d.prototype.setCellValue=function(e,t,r){this.grid.setCellValue(e,t,r)},d.prototype.setRowData=function(e,t){var r=this.getCurrentViewRecords(),i=this.grid.getPrimaryKeyFieldNames()[0],n=0,o={};r.some(function(t,r,n){return t[i]===e&&(o=t,!0)}),n=o.level;var a=t;a.level=n,a.index=o.index,a.childRecords=o.childRecords,a.taskData=o.taskData,a.uniqueID=o.uniqueID,a.parentItem=o.parentItem,a.checkboxState=o.checkboxState,a.hasChildRecords=o.hasChildRecords,a.parentUniqueID=o.parentUniqueID,a.expanded=o.expanded,this.grid.setRowData(e,a)},d.prototype.goToPage=function(e){this.grid.pagerModule&&this.grid.pagerModule.goToPage(e)},d.prototype.updateExternalMessage=function(e){this.pagerModule&&this.grid.pagerModule.updateExternalMessage(e)},d.prototype.getCellFromIndex=function(e,t){return this.grid.getCellFromIndex(e,t)},d.prototype.getColumnByField=function(e){return t.isBlazor()&&this.isServerRendered?r.iterateArrayOrObject(this.grid.columns,function(t,r){if(t.field===e)return t})[0]:r.iterateArrayOrObject(this.columnModel,function(t,r){if(t.field===e)return t})[0]},d.prototype.getColumnByUid=function(e){return t.isBlazor()&&this.isServerRendered?r.iterateArrayOrObject(this.grid.columns,function(t,r){if(t.uid===e)return t})[0]:r.iterateArrayOrObject(this.columnModel,function(t,r){if(t.uid===e)return t})[0]},d.prototype.getColumnFieldNames=function(){return this.grid.getColumnFieldNames()},d.prototype.getFooterContent=function(){return this.grid.getFooterContent()},d.prototype.getFooterContentTable=function(){return this.grid.getFooterContentTable()},d.prototype.showColumns=function(e,t){this.grid.showColumns(e,t),this.updateColumnModel()},d.prototype.hideColumns=function(e,t){this.grid.hideColumns(e,t),this.updateColumnModel()},d.prototype.getColumnHeaderByField=function(e){return this.grid.getColumnHeaderByField(e)},d.prototype.getColumnHeaderByIndex=function(e){return this.grid.getColumnHeaderByIndex(e)},d.prototype.getColumnHeaderByUid=function(e){return this.grid.getColumnHeaderByUid(e)},d.prototype.getColumnIndexByField=function(e){return this.grid.getColumnIndexByField(e)},d.prototype.getColumnIndexByUid=function(e){return this.grid.getColumnIndexByUid(e)},d.prototype.getColumns=function(e){return t.isBlazor()&&this.isServerRendered?this.grid.columns:(this.updateColumnModel(this.grid.getColumns(e)),this.columnModel)},d.prototype.updateColumnModel=function(e){this.columnModel=[];for(var r,i=!1,n=t.isNullOrUndefined(e)?this.grid.getColumns():e,o=0;o<n.length;o++){r={};for(var a=0,s=Object.keys(n[o]);a<s.length;a++){var d=s[a];t.isBlazor()&&"edit"===d||(r[d]=n[o][d])}this.columnModel.push(new R(r))}if(!t.isBlazor()||!this.isServerRendered){this.deepMerge=["columns"],this.grid.columns.length!==this.columnModel.length&&(i=!0),i||this.setProperties({columns:this.columnModel},!0),this.deepMerge=void 0}return this.columnModel},d.prototype.getContent=function(){return this.grid.getContent()},d.prototype.mergePersistTreeGridData=function(){this.grid.mergePersistGridData.apply(this)},d.prototype.mergeColumns=function(e,t){this.grid.mergeColumns.apply(this,[e,t])},d.prototype.updateTreeGridModel=function(){this.setProperties({filterSettings:r.getObject("properties",this.grid.filterSettings)},!0),this.setProperties({pageSettings:r.getObject("properties",this.grid.pageSettings)},!0),this.setProperties({searchSettings:r.getObject("properties",this.grid.searchSettings)},!0),this.setProperties({sortSettings:r.getObject("properties",this.grid.sortSettings)},!0)},d.prototype.getContentTable=function(){return this.grid.getContentTable()},d.prototype.getDataRows=function(){for(var e=[],t=this.grid.getDataRows(),r=0,i=t.length;r<i;r++)t[r].classList.contains("e-summaryrow")||e.push(t[r]);return e},d.prototype.getCurrentViewRecords=function(){return this.grid.currentViewData},d.prototype.getBatchChanges=function(){return this.grid.editModule.getBatchChanges()},d.prototype.getHeaderContent=function(){return this.grid.getHeaderContent()},d.prototype.getHeaderTable=function(){return this.grid.getHeaderTable()},d.prototype.getRowByIndex=function(e){return this.grid.getRowByIndex(e)},d.prototype.getRowInfo=function(e){return this.grid.getRowInfo(e)},d.prototype.getUidByColumnField=function(e){return this.grid.getUidByColumnField(e)},d.prototype.getVisibleColumns=function(){for(var e=[],t=0,r=this.columnModel;t<r.length;t++){var i=r[t];i.visible&&e.push(i)}return e},d.prototype.showSpinner=function(){o.showSpinner(this.element)},d.prototype.hideSpinner=function(){o.hideSpinner(this.element)},d.prototype.refresh=function(){this.grid.refresh()},d.prototype.getCheckedRecords=function(){return this.selectionModule.getCheckedrecords()},d.prototype.getCheckedRowIndexes=function(){return this.selectionModule.getCheckedRowIndexes()},d.prototype.selectCheckboxes=function(e){this.selectionModule.selectCheckboxes(e)},d.prototype.refreshColumns=function(e){t.isNullOrUndefined(e)||e?(this.grid.columns=this.getGridColumns(this.columns),this.grid.refreshColumns()):this.grid.setProperties({columns:this.getGridColumns(this.columns)},!0)},d.prototype.refreshHeader=function(){this.grid.refreshHeader()},d.prototype.expandCollapseRequest=function(e){if("Batch"===this.editSettings.mode){if(this.getBatchChanges()[this.changedRecords].length||this.getBatchChanges()[this.deletedRecords].length||this.getBatchChanges()[this.addedRecords].length){var t=this.grid.editModule.dialogObj;return this.grid.editModule.showDialog("CancelEdit",t),void(this.targetElement=e)}}if(this.rowTemplate){var r=e.closest(".e-treerowcell").parentElement,i=this.getCurrentViewRecords()[r.rowIndex];e.classList.contains("e-treegridexpand")?this.collapseRow(r,i):this.expandRow(r,i)}else{i=(r=this.grid.getRowInfo(e)).rowData;e.classList.contains("e-treegridexpand")?this.collapseRow(r.row,i):this.expandRow(r.row,i)}},d.prototype.expandRow=function(e,t){var r=this,i={data:t=this.getCollapseExpandRecords(e,t),row:e,cancel:!1};this.trigger("expanding",i,function(i){if(!i.cancel&&(r.expandCollapse("expand",e,t),(!a(r)||u(r))&&!s(r))){var n={data:t,row:e};r.trigger(F,n)}})},d.prototype.getCollapseExpandRecords=function(e,r){return this.allowPaging&&"All"===this.pageSettings.pageSizeMode&&this.isExpandAll&&t.isNullOrUndefined(r)&&!a(this)?r=this.flatData.filter(function(e){return e.hasChildRecords}):t.isNullOrUndefined(r)&&(r=this.grid.getCurrentViewRecords()[e.rowIndex]),r},d.prototype.collapseRow=function(e,t){var r=this,i={data:t=this.getCollapseExpandRecords(e,t),row:e,cancel:!1};this.trigger("collapsing",i,function(i){if(!i.cancel){r.expandCollapse("collapse",e,t);var n={data:t,row:e};a(r)||r.trigger(_,n)}})},d.prototype.expandAtLevel=function(e){if((this.allowPaging&&"All"===this.pageSettings.pageSizeMode||this.enableVirtualization)&&!a(this)){var t=this.grid.dataSource.filter(function(t){return t.hasChildRecords&&t.level===e&&(t.expanded=!0),t.hasChildRecords&&t.level===e});this.expandRow(null,t)}else{t=this.getRecordDetails(e);for(var i=r.getObject("rows",t),n=r.getObject("records",t),o=0;o<n.length;o++)this.expandRow(i[o],n[o])}},d.prototype.getRecordDetails=function(e){var t=this.getRows().filter(function(t){return-1!==t.className.indexOf("level"+e)&&(t.querySelector(".e-treegridcollapse")||t.querySelector(".e-treegridexpand"))});return{records:this.getCurrentViewRecords().filter(function(t){return t.level===e&&t.hasChildRecords}),rows:t}},d.prototype.collapseAtLevel=function(e){if((this.allowPaging&&"All"===this.pageSettings.pageSizeMode||this.enableVirtualization)&&!a(this)){var t=this.grid.dataSource.filter(function(t){return t.hasChildRecords&&t.level===e&&(t.expanded=!1),t.hasChildRecords&&t.level===e});this.collapseRow(null,t)}else for(var i=this.getRecordDetails(e),n=r.getObject("rows",i),o=r.getObject("records",i),s=0;s<o.length;s++)this.collapseRow(n[s],o[s])},d.prototype.expandAll=function(){this.expandCollapseAll("expand")},d.prototype.collapseAll=function(){this.expandCollapseAll("collapse")},d.prototype.expandCollapseAll=function(e){var t=this.getRows().filter(function(t){return t.querySelector(".e-treegrid"+("expand"===e?"collapse":"expand"))});if(this.isExpandAll=!0,this.isCollapseAll=!0,(this.allowPaging&&"All"===this.pageSettings.pageSizeMode||this.enableVirtualization)&&!a(this))this.flatData.filter(function(t){t.hasChildRecords&&(t.expanded="collapse"!==e)}),t.length&&("collapse"===e?this.collapseRow(t[0]):this.expandRow(t[0]));else for(var r=0;r<t.length;r++)"collapse"===e?this.collapseRow(t[r]):this.expandRow(t[r]);this.isExpandAll=!1,this.isCollapseAll=!1},d.prototype.expandCollapse=function(e,r,i,n){var o={row:r,data:i,childData:[],requestType:e};!a(this)&&"expand"===e&&this.isSelfReference&&this.updateChildOnDemand(o);var d=this.getRows();if(this.rowTemplate){var l=this.getContentTable().rows;d=[].slice.call(l)}if(t.isNullOrUndefined(r)?r=d[this.getCurrentViewRecords().indexOf(i)]:+r.getAttribute("aria-rowindex"),t.isNullOrUndefined(r)||r.setAttribute("aria-expanded","expand"===e?"true":"false"),!(this.allowPaging&&"All"===this.pageSettings.pageSizeMode||this.enableVirtualization)||a(this)||s(this)){var p=void 0;if("expand"===e){p="table-row",n||(i.expanded=!0,this.uniqueIDCollection[i.uniqueID].expanded=i.expanded);var h=r.getElementsByClassName("e-treegridcollapse")[0];if(t.isNullOrUndefined(h))return;t.addClass([h],"e-treegridexpand"),t.removeClass([h],"e-treegridcollapse")}else{p="none",n||(i.expanded=!1,this.uniqueIDCollection[i.uniqueID].expanded=i.expanded);h=r.getElementsByClassName("e-treegridexpand")[0];if(t.isNullOrUndefined(h))return;t.addClass([h],"e-treegridcollapse"),t.removeClass([h],"e-treegridexpand")}var c=d.filter(function(e){return e.classList.contains("e-griddetailrowindex"+i.index+"level"+(i.level+1))});a(this)&&!u(this)?this.remoteExpand(e,r,i,n):s(this)&&"collapse"!==e||this.localExpand(e,r,i,n),this.notify("rowExpandCollapse",{detailrows:c,action:p,record:i,row:r}),this.updateAltRow(d)}else this.notify(G,{action:e,row:r,record:i})},d.prototype.updateChildOnDemand=function(e){var i=this,o=new n.Deferred;e.childDataBind=o.resolve;var a=e.data;this.trigger(k,e),o.promise.then(function(n){if(e.childData.length){for(var o=i.flatData,d=0,l=0;l<o.length;l++)if(o[l].taskData===a.taskData){d=l;break}var p=t.getValue("result",i.dataSource),h=g(e.childData),c=a[i.childMapping]&&a[i.childMapping].length>h.length?a[i.childMapping].length:h.length;for(l=0;l<c;l++)a[i.childMapping]&&p.filter(function(e,t){e[i.parentIdMapping]===a[i.idMapping]&&p.splice(t,1)}),h[l]?(h[l].level=a.level+1,h[l].index=Math.ceil(1e3*Math.random()),h[l].parentItem=t.extend({},a),h[l].taskData=t.extend({},h[l]),delete h[l].parentItem.childRecords,delete h[l].taskData.parentItem,h[l].parentUniqueID=a.uniqueID,h[l].uniqueID=r.getUid(i.element.id+"_data_"),t.setValue("uniqueIDCollection."+h[l].uniqueID,h[l],i),(!t.isNullOrUndefined(h[l][i.childMapping])||h[l][i.hasChildMapping]&&s(i))&&(h[l].hasChildRecords=!0),o.splice(d+1+l,a[i.childMapping]&&a[i.childMapping][l]?1:0,h[l])):o.splice(d+1+l,1);o[d][i.childMapping]=h,o[d].childRecords=h,o[d].expanded=!0,t.setValue("uniqueIDCollection."+o[d].uniqueID,o[d],i);for(var u=0;u<e.childData.length;u++)p.push(e.childData[u])}i.isExpandRefresh=!0,i.refresh(),i.trigger(F,e)})},d.prototype.remoteExpand=function(e,t,r,i){var n=this.getRows();if(this.rowTemplate){var o=this.getContentTable().rows;n=[].slice.call(o)}var a={data:r,row:t},s=[];if(s=n.filter(function(e){return e.querySelector(".e-gridrowindex"+r.index+"level"+(r.level+1))}),"expand"===e){this.notify(z,{record:r,rows:s,parentRow:t});var d={row:t,data:r};s.length>0&&this.trigger(F,d)}else this.collapseRemoteChild({record:r,rows:s}),this.trigger(_,a)},d.prototype.localExpand=function(e,r,i,n){var o,a=this.getCurrentViewRecords().filter(function(e){return e.parentUniqueID===i.uniqueID}),s=this.getRows();if(this.rowTemplate){var d=this.getContentTable().rows;s=[].slice.call(d)}var l="expand"===e?"table-row":"none",p=(a[0].parentItem.index,s.filter(function(e){return e.querySelector(".e-gridrowindex"+i.index+"level"+(i.level+1))}));(this.frozenRows||this.frozenColumns||this.getFrozenColumns())&&(o=this.getMovableRows().filter(function(e){return e.querySelector(".e-gridrowindex"+i.index+"level"+(i.level+1))}));for(var h=0;h<p.length;h++)p[h].style.display=l,t.isNullOrUndefined(o)||(o[h].style.display=l),this.notify("childRowExpand",{row:p[h]}),t.isNullOrUndefined(a[h].childRecords)||"expand"===e&&!t.isNullOrUndefined(a[h].expanded)&&!a[h].expanded||(this.expandCollapse(e,p[h],a[h],!0),this.frozenColumns<=this.treeColumnIndex&&!t.isNullOrUndefined(o)&&this.expandCollapse(e,o[h],a[h],!0))},d.prototype.updateAltRow=function(e){if(this.enableAltRow&&!this.rowTemplate)for(var r=0,i=0;e&&i<e.length;i++){var n=e[i];"none"!==n.style.display&&(n.classList.contains("e-altrow")&&t.removeClass([n],"e-altrow"),r%2==0||n.classList.contains("e-summaryrow")||n.classList.contains("e-detailrow")||t.addClass([n],"e-altrow"),n.classList.contains("e-summaryrow")||n.classList.contains("e-detailrow")||r++)}},d.prototype.treeColumnRowTemplate=function(e){if(this.rowTemplate){var t=this.getContentTable().rows;t=[].slice.call(t);for(var r=0;r<t.length;r++){var i=this.grid.getContentTable().rows[r].cells[this.treeColumnIndex],n=t[r],o={data:this.grid.getRowsObject()[r].data,row:n,cell:i,column:this.getColumns()[this.treeColumnIndex]};this.renderModule.cellRender(o)}}},d.prototype.collapseRemoteChild=function(e,r){r||(e.record.expanded=!1);for(var i,n=e.rows,o=0;o<n.length;o++){t.isBlazor()&&this.isServerRendered?(t.removeClass([n[o]],"e-treerowexpanded"),t.addClass([n[o]],"e-treerowcollapsed")):n[o].style.display="none";var a=n[o].querySelector(".e-detailrowexpand");if(t.isNullOrUndefined(a)||this.grid.detailRowModule.collapse(a),n[o].querySelector(".e-treecolumn-container .e-treegridexpand")){var s=n[o].querySelector(".e-treecolumn-container .e-treegridexpand");i=this.rowTemplate?this.grid.getCurrentViewRecords()[n[o].rowIndex]:this.grid.getRowObjectFromUID(n[o].getAttribute("data-Uid")).data,!t.isNullOrUndefined(s)&&i.expanded&&(t.removeClass([s],"e-treegridexpand"),t.addClass([s],"e-treegridcollapse"));for(var d=[],l=this.getRows(),p=0;p<l.length;p++)l[p].querySelector(".e-gridrowindex"+i.index+"level"+(i.level+1))&&d.push(l[p]);d.length&&i.expanded&&this.collapseRemoteChild({record:i,rows:d},!0)}}},d.prototype.addListener=function(){this.on("updateResults",this.updateResultModel,this),this.grid.on("initial-end",this.afterGridRender,this)},d.prototype.updateResultModel=function(e){this.dataResults=e},d.prototype.removeListener=function(){this.isDestroyed||(this.off("updateResults",this.updateResultModel),this.grid.off("initial-end",this.afterGridRender))},d.prototype.filterByColumn=function(e,t,r,i,n,o,a,s){this.grid.filterByColumn(e,t,r,i,n,o,a,s)},d.prototype.clearFiltering=function(){this.grid.clearFiltering()},d.prototype.removeFilteredColsByField=function(e,t){this.grid.removeFilteredColsByField(e,t)},d.prototype.selectRow=function(e,t){this.grid.selectRow(e,t)},d.prototype.selectRows=function(e){this.grid.selectRows(e)},d.prototype.clearSelection=function(){this.grid.clearSelection()},d.prototype.copy=function(e){this.clipboardModule.copy(e)},d.prototype.paste=function(e,t,r){this.clipboardModule.paste(e,t,r)},d.prototype.selectCell=function(e,t){this.grid.selectCell(e,t)},d.prototype.getSelectedRows=function(){return this.grid.getSelectedRows()},d.prototype.getMovableCellFromIndex=function(e,t){return this.grid.getMovableCellFromIndex(e,t)},d.prototype.getMovableDataRows=function(){return this.grid.getMovableDataRows()},d.prototype.getMovableRowByIndex=function(e){return this.grid.getMovableRowByIndex(e)},d.prototype.getMovableRows=function(){return this.grid.getMovableRows()},d.prototype.getFrozenColumns=function(){return this.getFrozenCount(this.columns,0)},d.prototype.getFrozenCount=function(e,t){for(var r=0,i=e.length;r<i;r++)e[r].columns?t=this.getFrozenCount(e[r].columns,t):e[r].isFrozen&&t++;return t},d.prototype.getSelectedRowIndexes=function(){return this.grid.getSelectedRowIndexes()},d.prototype.getSelectedRowCellIndexes=function(){return this.grid.getSelectedRowCellIndexes()},d.prototype.getSelectedRecords=function(){return this.grid.getSelectedRecords()},d.prototype.getDataModule=function(){return{baseModule:this.grid.getDataModule(),treeModule:this.dataModule}},d.prototype.reorderRows=function(e,t,r){this.rowDragAndDropModule.reorderRows(e,t,r)};var l;return Ye([t.Property(0)],d.prototype,"frozenRows",void 0),Ye([t.Property(0)],d.prototype,"frozenColumns",void 0),Ye([t.Property("Ellipsis")],d.prototype,"clipMode",void 0),Ye([t.Property([])],d.prototype,"columns",void 0),Ye([t.Property(null)],d.prototype,"childMapping",void 0),Ye([t.Property(null)],d.prototype,"hasChildMapping",void 0),Ye([t.Property(0)],d.prototype,"treeColumnIndex",void 0),Ye([t.Property(null)],d.prototype,"idMapping",void 0),Ye([t.Property(null)],d.prototype,"parentIdMapping",void 0),Ye([t.Property(!1)],d.prototype,"enableCollapseAll",void 0),Ye([t.Property(null)],d.prototype,"expandStateMapping",void 0),Ye([t.Property(!1)],d.prototype,"allowRowDragAndDrop",void 0),Ye([t.Property([])],d.prototype,"dataSource",void 0),Ye([t.Property()],d.prototype,"query",void 0),Ye([t.Property()],d.prototype,"cloneQuery",void 0),Ye([t.Property("AllPages")],d.prototype,"printMode",void 0),Ye([t.Property(!1)],d.prototype,"allowPaging",void 0),Ye([t.Property(!1)],d.prototype,"loadChildOnDemand",void 0),Ye([t.Property(!1)],d.prototype,"allowTextWrap",void 0),Ye([t.Complex({},M)],d.prototype,"textWrapSettings",void 0),Ye([t.Property(!1)],d.prototype,"allowReordering",void 0),Ye([t.Property(!1)],d.prototype,"allowResizing",void 0),Ye([t.Property(!1)],d.prototype,"autoCheckHierarchy",void 0),Ye([t.Complex({},Ue)],d.prototype,"pageSettings",void 0),Ye([t.Complex({},r.RowDropSettings)],d.prototype,"rowDropSettings",void 0),Ye([t.Property()],d.prototype,"pagerTemplate",void 0),Ye([t.Property(!1)],d.prototype,"showColumnMenu",void 0),Ye([t.Property(!1)],d.prototype,"allowSorting",void 0),Ye([t.Property(!0)],d.prototype,"allowMultiSorting",void 0),Ye([t.Complex({},We)],d.prototype,"sortSettings",void 0),Ye([t.Collection([],je)],d.prototype,"aggregates",void 0),Ye([t.Complex({},ze)],d.prototype,"editSettings",void 0),Ye([t.Property(!1)],d.prototype,"allowFiltering",void 0),Ye([t.Property()],d.prototype,"detailTemplate",void 0),Ye([t.Complex({},b)],d.prototype,"filterSettings",void 0),Ye([t.Complex({},Pe)],d.prototype,"searchSettings",void 0),Ye([t.Property()],d.prototype,"toolbar",void 0),Ye([t.Property()],d.prototype,"toolbarTemplate",void 0),Ye([t.Property("Default")],d.prototype,"gridLines",void 0),Ye([t.Property()],d.prototype,"contextMenuItems",void 0),Ye([t.Property()],d.prototype,"columnMenuItems",void 0),Ye([t.Property()],d.prototype,"rowTemplate",void 0),Ye([t.Property("Parent")],d.prototype,"copyHierarchyMode",void 0),Ye([t.Property(null)],d.prototype,"rowHeight",void 0),Ye([t.Property(!0)],d.prototype,"enableAltRow",void 0),Ye([t.Property(!0)],d.prototype,"allowKeyboard",void 0),Ye([t.Property(!1)],d.prototype,"enableHover",void 0),Ye([t.Property(!1)],d.prototype,"enableAutoFill",void 0),Ye([t.Property("auto")],d.prototype,"height",void 0),Ye([t.Property("auto")],d.prototype,"width",void 0),Ye([t.Property(!1)],d.prototype,"enableVirtualization",void 0),Ye([t.Property("All")],d.prototype,"columnQueryMode",void 0),Ye([t.Event()],d.prototype,"created",void 0),Ye([t.Event()],d.prototype,"load",void 0),Ye([t.Event()],d.prototype,"expanding",void 0),Ye([t.Event()],d.prototype,"expanded",void 0),Ye([t.Event()],d.prototype,"collapsing",void 0),Ye([t.Event()],d.prototype,"collapsed",void 0),Ye([t.Event()],d.prototype,"cellSave",void 0),Ye([t.Event()],d.prototype,"cellSaved",void 0),Ye([t.Event()],d.prototype,"actionBegin",void 0),Ye([t.Event()],d.prototype,"actionComplete",void 0),Ye([t.Event()],d.prototype,"beginEdit",void 0),Ye([t.Event()],d.prototype,"batchAdd",void 0),Ye([t.Event()],d.prototype,"batchDelete",void 0),Ye([t.Event()],d.prototype,"batchCancel",void 0),Ye([t.Event()],d.prototype,"beforeBatchAdd",void 0),Ye([t.Event()],d.prototype,"beforeBatchDelete",void 0),Ye([t.Event()],d.prototype,"beforeBatchSave",void 0),Ye([t.Event()],d.prototype,"cellEdit",void 0),Ye([t.Event()],d.prototype,"actionFailure",void 0),Ye([t.Event()],d.prototype,"dataBound",void 0),Ye([t.Event()],d.prototype,"dataSourceChanged",void 0),Ye([t.Event()],d.prototype,"dataStateChange",void 0),Ye([t.Event()],d.prototype,"recordDoubleClick",void 0),Ye([t.Event()],d.prototype,"rowDataBound",void 0),Ye([t.Event()],d.prototype,"detailDataBound",void 0),Ye([t.Event()],d.prototype,"queryCellInfo",void 0),Ye([t.Property(!0)],d.prototype,"allowSelection",void 0),Ye([t.Event()],d.prototype,"rowSelecting",void 0),Ye([t.Event()],d.prototype,"rowSelected",void 0),Ye([t.Event()],d.prototype,"rowDeselecting",void 0),Ye([t.Event()],d.prototype,"rowDeselected",void 0),Ye([t.Event()],d.prototype,"headerCellInfo",void 0),Ye([t.Event()],d.prototype,"cellSelecting",void 0),Ye([t.Event()],d.prototype,"columnMenuOpen",void 0),Ye([t.Event()],d.prototype,"columnMenuClick",void 0),Ye([t.Event()],d.prototype,"cellSelected",void 0),Ye([t.Event()],d.prototype,"cellDeselecting",void 0),Ye([t.Event()],d.prototype,"cellDeselected",void 0),Ye([t.Event()],d.prototype,"resizeStart",void 0),Ye([t.Event()],d.prototype,"resizing",void 0),Ye([t.Event()],d.prototype,"resizeStop",void 0),Ye([t.Event()],d.prototype,"columnDragStart",void 0),Ye([t.Event()],d.prototype,"columnDrag",void 0),Ye([t.Event()],d.prototype,"columnDrop",void 0),Ye([t.Event()],d.prototype,"checkboxChange",void 0),Ye([t.Event()],d.prototype,"printComplete",void 0),Ye([t.Event()],d.prototype,"beforePrint",void 0),Ye([t.Event()],d.prototype,"toolbarClick",void 0),Ye([t.Event()],d.prototype,"beforeDataBound",void 0),Ye([t.Event()],d.prototype,"contextMenuOpen",void 0),Ye([t.Event()],d.prototype,"contextMenuClick",void 0),Ye([t.Event()],d.prototype,"beforeCopy",void 0),Ye([t.Event()],d.prototype,"beforePaste",void 0),Ye([t.Event()],d.prototype,"rowDrag",void 0),Ye([t.Event()],d.prototype,"rowDragStart",void 0),Ye([t.Event()],d.prototype,"rowDragStartHelper",void 0),Ye([t.Event()],d.prototype,"rowDrop",void 0),Ye([t.Property(-1)],d.prototype,"selectedRowIndex",void 0),Ye([t.Complex({},Ae)],d.prototype,"selectionSettings",void 0),Ye([t.Property(!1)],d.prototype,"allowExcelExport",void 0),Ye([t.Property(!1)],d.prototype,"allowPdfExport",void 0),Ye([t.Event()],d.prototype,"pdfQueryCellInfo",void 0),Ye([t.Event()],d.prototype,"pdfHeaderQueryCellInfo",void 0),Ye([t.Event()],d.prototype,"excelQueryCellInfo",void 0),Ye([t.Event()],d.prototype,"excelHeaderQueryCellInfo",void 0),Ye([t.Event()],d.prototype,"beforeExcelExport",void 0),Ye([t.Event()],d.prototype,"excelExportComplete",void 0),Ye([t.Event()],d.prototype,"beforePdfExport",void 0),Ye([t.Event()],d.prototype,"pdfExportComplete",void 0),d=l=Ye([t.NotifyPropertyChanges],d)}(t.Component),Xe=function(){function e(e,t){r.Grid.Inject(r.Reorder),this.parent=e,this.addEventListener()}return e.prototype.getModuleName=function(){return"reorder"},e.prototype.addEventListener=function(){this.parent.on("getColumnIndex",this.getTreeColumn,this)},e.prototype.removeEventListener=function(){this.parent.isDestroyed||this.parent.off("getColumnIndex",this.getTreeColumn)},e.prototype.destroy=function(){this.removeEventListener()},e.prototype.getTreeColumn=function(){for(var e,t=this.parent.columnModel[this.parent.treeColumnIndex],i=this.parent.getColumns(),n=0;n<i.length;n++){if(r.getObject("field",t)===r.getObject("field",i[n])){e=n;break}}this.parent.setProperties({treeColumnIndex:e},!0)},e}(),Ze=function(){function e(e){r.Grid.Inject(r.Resize),this.parent=e}return e.prototype.autoFitColumns=function(e){this.parent.grid.autoFitColumns(e)},e.prototype.getModuleName=function(){return"resize"},e.prototype.destroy=function(){this.parent.isDestroyed||this.parent.grid.resizeModule.destroy()},e}(),$e=function(){function e(e){this.canDrop=!0,this.isDraggedWithChild=!1,this.isaddtoBottom=!1,r.Grid.Inject(r.RowDD),this.parent=e,this.addEventListener()}return e.prototype.getChildrecordsByParentID=function(e){return(this.parent.dataSource instanceof n.DataManager&&u(this.parent)?this.parent.grid.dataSource.dataSource.json:this.parent.grid.dataSource).filter(function(t){return t.uniqueID===e})},e.prototype.addEventListener=function(){this.parent.on(Re,this.Rowdraging,this),this.parent.on(Ce,this.rowDropped,this),this.parent.on(me,this.rowsAdded,this),this.parent.on(we,this.rowsRemoved,this)},e.prototype.reorderRows=function(e,t,r){var i=this.parent;e[0],"above"===r&&(this.dropPosition="topSegment"),"below"===r&&(this.dropPosition="bottomSegment"),"child"===r&&(this.dropPosition="middleSegment");for(var n=[],o=0;o<e.length;o++)n[o]=this.parent.getCurrentViewRecords()[e[o]];var a={data:n,dropIndex:t};s(this.parent)||this.dropRows(a,!0),this.parent.refresh(),i.isLocalData&&(i.flatData=this.orderToIndex(i.flatData))},e.prototype.orderToIndex=function(e){for(var t=0;t<e.length;t++)e[t].index=t;return e},e.prototype.rowsAdded=function(e){for(var r,i=e.records,o=e.records.length-1;o>-1;o--)if((r=i[o]).parentUniqueID){var a=i.filter(function(e){return e.uniqueID===r.parentUniqueID});if(a.length){var s=a[0].childRecords.indexOf(r),d=a[0];-1!==s&&(d.childRecords.splice(s,1),d.childRecords.length||(d.hasChildRecords=!1,d.hasFilteredChildRecords=!1),this.isDraggedWithChild=!0)}}if(t.isNullOrUndefined(this.parent.dataSource)||!this.parent.dataSource.length){var l,p=this.parent,h=e.records;for(o=e.records.length-1;o>-1;o--){(l=h[o]).taskData.hasOwnProperty(p.childMapping)||(l.taskData[p.childMapping]=[]),t.isNullOrUndefined(p.dataSource)&&(p.dataSource=[]),p.dataSource.splice(0,0,l.taskData),p.setProperties({dataSource:p.dataSource},!1)}}else{for(o=0;o<i.length;o++)t.setValue("uniqueIDCollection."+i[o].uniqueID,i[o],this.parent);var c={data:e.records,dropIndex:e.toIndex};this.parent.dataSource instanceof n.DataManager?this.treeGridData=this.parent.dataSource.dataSource.json:this.treeGridData=this.parent.grid.dataSource,this.dropRows(c)}},e.prototype.rowsRemoved=function(e){for(var t=0;t<e.records.length;t++)this.draggedRecord=e.records[t],(this.draggedRecord.hasChildRecords||this.draggedRecord.parentItem&&-1!==this.parent.grid.dataSource.indexOf(this.getChildrecordsByParentID(this.draggedRecord.parentUniqueID)[0])||0===this.draggedRecord.level)&&this.deleteDragRow()},e.prototype.refreshGridDataSource=function(){var e,r,i=this.draggedRecord,o=this.droppedRecord,a=this.parent;if(!(e=this.parent.dataSource instanceof n.DataManager&&u(this.parent)?a.dataSource.dataSource.json:a.dataSource)||t.isNullOrUndefined(o)||o.parentItem){if(!this.parent.parentIdMapping&&!t.isNullOrUndefined(o)&&o.parentItem&&("topSegment"===this.dropPosition||"bottomSegment"===this.dropPosition)){var s=this.getChildrecordsByParentID(o.parentUniqueID)[0].childRecords;for(d=0;d<s.length;d++)o.parentItem.taskData[this.parent.childMapping][d]=s[d].taskData}}else{for(var d=0;d<Object.keys(e).length;d++)e[d][this.parent.childMapping]===o.taskData[this.parent.childMapping]&&(r=d);"topSegment"===this.dropPosition?this.parent.idMapping||e.splice(r,0,i.taskData):"bottomSegment"===this.dropPosition&&(this.parent.idMapping||e.splice(r+1,0,i.taskData))}this.parent.parentIdMapping&&(i.parentItem?"topSegment"===this.dropPosition||"bottomSegment"===this.dropPosition?(i[this.parent.parentIdMapping]=o[this.parent.parentIdMapping],i.taskData[this.parent.parentIdMapping]=o[this.parent.parentIdMapping]):(i[this.parent.parentIdMapping]=o[this.parent.idMapping],i.taskData[this.parent.parentIdMapping]=o[this.parent.idMapping]):(i.taskData[this.parent.parentIdMapping]=null,i[this.parent.parentIdMapping]=null))},e.prototype.removeFirstrowBorder=function(e,t){var r="bottomSegment"===this.dropPosition;this.parent.element.getElementsByClassName("e-firstrow-border").length>0&&e&&(0!==e.rowIndex||r)&&this.parent.element.getElementsByClassName("e-firstrow-border")[0].remove()},e.prototype.removeLastrowBorder=function(e,t){var r=e&&(e.classList.contains("e-emptyrow")||e.classList.contains("e-columnheader")),i=e&&!r&&this.parent.getRowByIndex(this.parent.getRows().length-1).getAttribute("data-uid")!==e.getAttribute("data-uid"),n=i||"topSegment"===this.dropPosition;this.parent.element.getElementsByClassName("e-lastrow-border").length>0&&e&&(i||n)&&this.parent.element.getElementsByClassName("e-lastrow-border")[0].remove()},e.prototype.updateIcon=function(e,i,n){var o=n.target?t.closest(n.target,"tr"):null;this.dropPosition=void 0;var a=0;this.removeFirstrowBorder(o),this.removeLastrowBorder(o);for(var s=0;s<n.rows.length;s++)(t.isNullOrUndefined(o)||o.getAttribute("data-uid")!==n.rows[s].getAttribute("data-uid"))&&r.parentsUntil(n.target,"e-gridcontent")||(this.dropPosition="Invalid",this.addErrorElem());var d=this.parent,l=0,p=d.toolbar&&d.toolbar.length?document.getElementById(d.element.id+"_gridcontrol_toolbarItems").offsetHeight:0,h=this.getOffset(d.element),c=d.getHeaderContent().offsetHeight+h.top+p,u=d.getContent().firstElementChild.scrollTop;t.isNullOrUndefined(o)||(a=o.offsetTop-u);var g=((l=d.allowTextWrap?e[0].offsetHeight:a+c+0)+e[0].offsetHeight-l)/3,f=l+g,y=f+g,v=y+g,m=(h.left,r.getObject("originalEvent.event",n).pageY),w=m<=f,R=m>f&&m<=y,C=m>y&&m<=v;if(w||R||C){if(w&&"Invalid"!==this.dropPosition&&(this.removeChildBorder(),this.dropPosition="topSegment",this.removetopOrBottomBorder(),this.addFirstrowBorder(o),this.removeErrorElem(),this.removeLastrowBorder(o),this.topOrBottomBorder(n.target)),R&&"Invalid"!==this.dropPosition){this.removetopOrBottomBorder();var x=void 0,S=[];x=t.closest(n.target,"tr"),(S=[].slice.call(x.querySelectorAll(".e-rowcell,.e-rowdragdrop,.e-detailrowcollapse"))).length>0&&this.addRemoveClasses(S,!0,"e-childborder"),this.addLastRowborder(o),this.addFirstrowBorder(o),this.dropPosition="middleSegment"}C&&"Invalid"!==this.dropPosition&&(this.removeErrorElem(),this.removetopOrBottomBorder(),this.removeChildBorder(),this.dropPosition="bottomSegment",this.addLastRowborder(o),this.removeFirstrowBorder(o),this.topOrBottomBorder(n.target))}return this.dropPosition},e.prototype.removeChildBorder=function(){var e=[];(e=[].slice.call(this.parent.element.querySelectorAll(".e-childborder"))).length>0&&this.addRemoveClasses(e,!1,"e-childborder")},e.prototype.addFirstrowBorder=function(e){var r=this.parent.element,i=this.parent;if(e&&0===e.rowIndex&&!e.classList.contains("e-emptyrow")){var n=this.parent.createElement("div",{className:"e-firstrow-border"}),o=this.parent.getHeaderContent(),a=0;i.toolbar&&(a=i.toolbarModule.getToolbar().offsetHeight);var s=!t.isNullOrUndefined(this.parent.rowDropSettings.targetID);s&&(n.style.top=this.parent.grid.element.getElementsByClassName("e-gridheader")[0].offsetHeight+a+"px"),n.style.width=s?r.offsetWidth+"px":r.offsetWidth-this.getScrollWidth()+"px",o.querySelectorAll(".e-firstrow-border").length||o.appendChild(n)}},e.prototype.addLastRowborder=function(e){var t=e&&(e.classList.contains("e-emptyrow")||e.classList.contains("e-columnheader"));if(e&&!t&&this.parent.getRowByIndex(this.parent.getRows().length-1).getAttribute("data-uid")===e.getAttribute("data-uid")){var r=this.parent.createElement("div",{className:"e-lastrow-border"}),i=this.parent.getContent();r.style.width=this.parent.element.offsetWidth-this.getScrollWidth()+"px",i.querySelectorAll(".e-lastrow-border").length||(i.classList.add("e-treegrid-relative"),i.appendChild(r),r.style.bottom=this.getScrollWidth()+"px")}},e.prototype.getScrollWidth=function(){var e=this.parent.getContent().firstElementChild;return e.scrollWidth>e.offsetWidth?r.Scroll.getScrollBarWidth():0},e.prototype.addErrorElem=function(){var e=document.getElementsByClassName("e-cloneproperties")[0];if(!e.querySelectorAll(".e-errorelem").length&&!this.parent.rowDropSettings.targetID){var r=document.createElement("div");t.classList(r,["e-errorcontainer"],[]),t.classList(r,["e-icons","e-errorelem"],[]);var i=e.querySelector(".errorValue"),n=e.querySelector(".e-rowcell").innerHTML;i&&(n=i.innerHTML,i.parentNode.removeChild(i)),e.querySelector(".e-rowcell").innerHTML="";var o=document.createElement("span");o.className="errorValue",o.style.paddingLeft="16px",o.innerHTML=n,e.querySelector(".e-rowcell").appendChild(r),e.querySelector(".e-rowcell").appendChild(o)}},e.prototype.removeErrorElem=function(){var e=document.querySelector(".e-errorelem");e&&e.remove()},e.prototype.topOrBottomBorder=function(e){t.isNullOrUndefined(this.parent.rowDropSettings.targetID);var r,i=[];(i=(r=t.closest(e,"tr"))?[].slice.call(r.querySelectorAll(".e-rowcell,.e-rowdragdrop,.e-detailrowcollapse")):[]).length&&("topSegment"===this.dropPosition&&(this.addRemoveClasses(i,!0,"e-droptop"),this.parent.element.getElementsByClassName("e-lastrow-dragborder").length>0&&this.parent.element.getElementsByClassName("e-lastrow-dragborder")[0].remove()),"bottomSegment"===this.dropPosition&&this.addRemoveClasses(i,!0,"e-dropbottom"))},e.prototype.removetopOrBottomBorder=function(){var e=[];(e=[].slice.call(this.parent.element.querySelectorAll(".e-dropbottom, .e-droptop"))).length&&(this.addRemoveClasses(e,!1,"e-dropbottom"),this.addRemoveClasses(e,!1,"e-droptop"))},e.prototype.addRemoveClasses=function(e,t,r){for(var i=0,n=e.length;i<n;i++)t?e[i].classList.add(r):e[i].classList.remove(r)},e.prototype.getOffset=function(e){var t=e.getBoundingClientRect(),r=document.body,i=document.documentElement,n=window.pageYOffset||i.scrollTop||r.scrollTop,o=window.pageXOffset||i.scrollLeft||r.scrollLeft,a=i.clientTop||r.clientTop||0,s=i.clientLeft||r.clientLeft||0,d=t.top+n-a,l=t.left+o-s;return{top:Math.round(d),left:Math.round(l)}},e.prototype.Rowdraging=function(e){var i=this.parent,n=this.parent.element.querySelector(".e-cloneproperties");n.style.cursor="";var o=e.target?t.closest(e.target,"tr"):null,a=o?o.rowIndex:-1,s=[],d=i.getCurrentViewRecords()[a];if(this.removeErrorElem(),this.canDrop=!0,e.data[0]?s=e.data:s.push(e.data),-1!==a?this.ensuredropPosition(s,d):(this.canDrop=!1,this.addErrorElem()),!i.rowDropSettings.targetID&&this.canDrop&&i.rowDragAndDropModule.updateIcon(e.rows,a,e),i.rowDropSettings.targetID){if((l=r.parentsUntil(e.target,"e-treegrid"))&&l.id===this.parent.rowDropSettings.targetID){l.ej2_instances[0].rowDragAndDropModule.updateIcon(e.rows,a,e)}}if(e.target&&t.closest(e.target,"#"+i.rowDropSettings.targetID)){var l;(l=r.parentsUntil(e.target,"e-treegrid"))||(n.style.cursor="default")}},e.prototype.rowDropped=function(e){var i=this.parent;i.rowDropSettings.targetID?(e.target&&t.closest(e.target,"#"+i.rowDropSettings.targetID)||r.parentsUntil(e.target,"e-treegrid")&&r.parentsUntil(e.target,"e-treegrid").id===i.rowDropSettings.targetID)&&(t.setValue("dropPosition",this.dropPosition,e),i.trigger("rowDrop",e),!e.cancel&&i.rowDropSettings.targetID&&(this.dragDropGrid(e),i.isLocalData&&(i.flatData=this.orderToIndex(i.flatData)))):r.parentsUntil(e.target,"e-content")&&(this.parent.element.querySelector(".e-errorelem")&&(this.dropPosition="Invalid"),t.setValue("dropPosition",this.dropPosition,e),i.trigger("rowDrop",e),e.cancel||(s(this.parent)||this.dropRows(e),i.refresh(),i.isLocalData&&(i.flatData=this.orderToIndex(i.flatData)),t.isNullOrUndefined(i.getHeaderContent().querySelector(".e-firstrow-border"))||i.getHeaderContent().querySelector(".e-firstrow-border").remove())),this.removetopOrBottomBorder(),this.removeChildBorder(),t.isNullOrUndefined(this.parent.element.getElementsByClassName("e-firstrow-border")[0])?t.isNullOrUndefined(this.parent.element.getElementsByClassName("e-lastrow-border")[0])||this.parent.element.getElementsByClassName("e-lastrow-border")[0].remove():this.parent.element.getElementsByClassName("e-firstrow-border")[0].remove()},e.prototype.dragDropGrid=function(e){var i,n=this.parent,o=t.closest(e.target,"tr"),d=isNaN(this.getTargetIdx(o))?0:this.getTargetIdx(o),l=r.parentsUntil(e.target,"e-treegrid");if(l&&l.id===this.parent.rowDropSettings.targetID&&!a(this.parent)&&!s(this.parent)){i=l.ej2_instances[0];for(var p=n.getSelectedRecords(),h=[],c=0;c<p.length;c++)h[c]=p[c].index;n.notify(we,{indexes:h,records:p}),i.notify(me,{toIndex:d,records:p}),n.refresh(),i.refresh(),i.grid.dataSource.length>1&&(i.refresh(),t.isNullOrUndefined(i.getHeaderContent().querySelector(".e-firstrow-border"))||i.getHeaderContent().querySelector(".e-firstrow-border").remove(),t.isNullOrUndefined(i.getContent().querySelector(".e-lastrow-border"))||i.getContent().querySelector(".e-lastrow-border").remove())}s(this.parent)&&(i=l.ej2_instances[0],n.refresh(),i.refresh())},e.prototype.getTargetIdx=function(e){return e?parseInt(e.getAttribute("aria-rowindex"),10):0},e.prototype.getParentData=function(e){var t=e.parentItem;if("bottomSegment"===this.dropPosition){var r=this.parent.getSelectedRecords()[0];this.droppedRecord=y(this.parent,r.parentItem.uniqueID)}if("middleSegment"===this.dropPosition){this.parent.getSelectedRecords()[0].level===t.level?this.droppedRecord=y(this.parent,t.uniqueID):this.getParentData(t)}},e.prototype.dropRows=function(e,r){if("Invalid"!==this.dropPosition&&!a(this.parent)){var i=this.parent,n=void 0,o=void 0;if(t.isNullOrUndefined(e.dropIndex)){var s=i.getSelectedRowIndexes()[0]-1,d=i.getCurrentViewRecords()[s];this.getParentData(d)}else this.droppedRecord=i.getCurrentViewRecords()[e.dropIndex];var l=[];o=this.droppedRecord,e.data[0]?l=e.data:l.push(e.data);var p=0,h=this.parent.rowDropSettings.targetID;this.isMultipleGrid=h;h?this.isaddtoBottom=h&&this.isDraggedWithChild:this.ensuredropPosition(l,o);for(var c=l.length,u=0;u<c;u++){n=l[u],this.draggedRecord=n;var g=e.dropIndex,f=!t.isNullOrUndefined(i.parentIdMapping);if("Invalid"!==this.dropPosition){i.rowDropSettings.targetID&&!r||this.deleteDragRow();var y=this.treeGridData.indexOf(o);if(this.dropAtTop(y,f,u),"bottomSegment"===this.dropPosition){if(o.hasChildRecords?(p=this.getChildCount(o,0),this.parent.parentIdMapping&&this.treeData.splice(y+p+1,0,this.draggedRecord.taskData),this.treeGridData.splice(y+p+1,0,this.draggedRecord)):(this.parent.parentIdMapping&&this.treeData.splice(y+1,0,this.draggedRecord.taskData),this.treeGridData.splice(y+1,0,this.draggedRecord)),n.parentItem=this.treeGridData[y].parentItem,n.parentUniqueID=this.treeGridData[y].parentUniqueID,n.level=this.treeGridData[y].level,n.hasChildRecords){this.updateChildRecordLevel(n,1),this.updateChildRecord(n,y+p+1)}if(o.parentItem){var v=this.getChildrecordsByParentID(o.parentUniqueID)[0].childRecords,m=v.indexOf(o)+1;v.splice(m,0,n)}}this.dropMiddle(g,y,e,r,f,u)}if(t.isNullOrUndefined(n.parentItem)){var w=i.parentData,R=w.indexOf(this.droppedRecord);"bottomSegment"===this.dropPosition?w.splice(R+1,0,n):"topSegment"===this.dropPosition&&w.splice(R,0,n)}i.rowDragAndDropModule.refreshGridDataSource()}}},e.prototype.dropMiddle=function(e,r,i,n,o,a){var s=this.parent,d=c(this.droppedRecord),l=t.isNullOrUndefined(d)||0===d.length?r+1:d.length+r+1;"middleSegment"===this.dropPosition&&(s.parentIdMapping?(this.treeData.splice(l,0,this.draggedRecord.taskData),this.treeGridData.splice(l,0,this.draggedRecord)):this.treeGridData.splice(l,0,this.draggedRecord),this.recordLevel(),this.draggedRecord.hasChildRecords&&this.updateChildRecord(this.draggedRecord,l,this.droppedRecord.expanded))},e.prototype.dropAtTop=function(e,t,r){var i=this.parent;if("topSegment"===this.dropPosition){if(i.parentIdMapping&&this.treeData.splice(e,0,this.draggedRecord.taskData),this.draggedRecord.parentItem=this.treeGridData[e].parentItem,this.draggedRecord.parentUniqueID=this.treeGridData[e].parentUniqueID,this.draggedRecord.level=this.treeGridData[e].level,this.treeGridData.splice(e,0,this.draggedRecord),this.draggedRecord.hasChildRecords){this.updateChildRecord(this.draggedRecord,e),this.updateChildRecordLevel(this.draggedRecord,1)}if(this.droppedRecord.parentItem){var n=this.getChildrecordsByParentID(this.droppedRecord.parentUniqueID)[0].childRecords,o=n.indexOf(this.droppedRecord);n.splice(o,0,this.draggedRecord)}}},e.prototype.recordLevel=function(){var e=this.parent,r=this.draggedRecord,i=this.droppedRecord,n=e.childMapping;if(i.hasChildRecords||(i.hasChildRecords=!0,i.hasFilteredChildRecords=!0,t.isNullOrUndefined(i.childRecords)&&(i.childRecords=[],!e.parentIdMapping&&t.isNullOrUndefined(i.taskData[n])&&(i.taskData[n]=[]))),"middleSegment"===this.dropPosition){var o=t.extend({},i);if(delete o.childRecords,r.parentItem=o,r.parentUniqueID=i.uniqueID,i.childRecords.splice(i.childRecords.length,0,r),t.isNullOrUndefined(r)||e.parentIdMapping||t.isNullOrUndefined(i.taskData[n])||i.taskData[e.childMapping].splice(i.childRecords.length,0,r.taskData),r.hasChildRecords){r.level=i.level+1,this.updateChildRecordLevel(r,1)}else r.level=i.level+1;i.expanded=!0}},e.prototype.deleteDragRow=function(){this.parent.dataSource instanceof n.DataManager&&u(this.parent)?(this.treeGridData=this.parent.grid.dataSource.dataSource.json,this.treeData=this.parent.dataSource.dataSource.json):(this.treeGridData=this.parent.grid.dataSource,this.treeData=this.parent.dataSource);var e;e=y(this.parent,this.draggedRecord.uniqueID),this.removeRecords(e)},e.prototype.updateChildRecord=function(e,t,r){var i,n=this.parent,o=0;if(!e.hasChildRecords)return 0;o=e.childRecords.length;for(var a=0;a<o;a++)i=e.childRecords[a],t++,n.flatData.splice(t,0,i),n.parentIdMapping&&this.treeData.splice(t,0,i.taskData),i.hasChildRecords&&(t=this.updateChildRecord(i,t));return t},e.prototype.updateChildRecordLevel=function(e,t){var r,i=0;if(t++,!e.hasChildRecords)return 0;i=e.childRecords.length;for(var n=0;n<i;n++){r=e.childRecords[n];var o=void 0;e.parentItem&&(o=y(this.parent,e.parentItem.uniqueID)),r.level=e.parentItem?o.level+t:e.level+1,r.hasChildRecords&&(t--,t=this.updateChildRecordLevel(r,t))}return t},e.prototype.removeRecords=function(e){var r,i=this.parent;r=this.parent.dataSource instanceof n.DataManager&&u(this.parent)?this.parent.dataSource.dataSource.json:this.parent.dataSource;var o=e,a=!t.isNullOrUndefined(i.parentIdMapping),s=this.getChildrecordsByParentID(o.parentUniqueID)[0];if(o){if(o.parentItem){var d=s?s.childRecords:[],l=0;d&&d.length>0&&(l=d.indexOf(o),s.childRecords.splice(l,1),this.parent.parentIdMapping||v({value:o,action:"delete"},this.parent,a,o.index,o.index))}if(i.parentIdMapping){o.hasChildRecords&&o.childRecords.length>0&&this.removeChildItem(o);for(var p=void 0,h=void 0,c=r,g=0;g<c.length;g++)c[g][this.parent.idMapping]===o.taskData[this.parent.idMapping]&&(p=g);for(g=0;g<this.treeGridData.length;g++)this.treeGridData[g][this.parent.idMapping]===o.taskData[this.parent.idMapping]&&(h=g);-1===p&&-1===h||(r.splice(p,1),this.treeGridData.splice(h,1))}var f=this.treeGridData.indexOf(o);if(!i.parentIdMapping){var y=this.parent.parentData.indexOf(o);-1!==y&&(i.parentData.splice(y,1),r.splice(y,1))}if(-1===f&&!i.parentIdMapping)for(var m=i.getPrimaryKeyFieldNames()[0],w=0;w<this.treeGridData.length;w++)this.treeGridData[w][m]===o[m]&&(f=w);if(!i.parentIdMapping){var R=this.getChildCount(o,0);this.treeGridData.splice(f,R+1)}o.parentItem&&s&&s.childRecords&&!s.childRecords.length&&(s.expanded=!1,s.hasChildRecords=!1,s.hasFilteredChildRecords=!1)}},e.prototype.removeChildItem=function(e){var t,r,i,o;this.parent;o=this.parent.dataSource instanceof n.DataManager&&u(this.parent)?this.parent.dataSource.dataSource.json:this.parent.dataSource;for(var a=0;a<e.childRecords.length;a++){t=e.childRecords[a];var s=void 0;s=this.parent.dataSource instanceof n.DataManager&&u(this.parent)?this.parent.dataSource.dataSource.json:this.parent.dataSource;for(var d=0;d<s.length;d++)s[d][this.parent.idMapping]===t.taskData[this.parent.idMapping]&&(r=d);for(var l=0;l<this.treeGridData.length;l++)if(this.treeGridData[l][this.parent.idMapping]===t.taskData[this.parent.idMapping]){i=l;break}-1===r&&-1===i||(o.splice(r,1),this.treeGridData.splice(i,1)),t.hasChildRecords&&this.removeChildItem(t)}},e.prototype.getChildCount=function(e,t){var r;if(!e.hasChildRecords)return 0;for(var i=0;i<e.childRecords.length;i++)t++,(r=e.childRecords[i]).hasChildRecords&&(t=this.getChildCount(r,t));return t},e.prototype.ensuredropPosition=function(e,r){this.parent;var i=this;e.filter(function(e){if(e.hasChildRecords&&!t.isNullOrUndefined(e.childRecords)){if(-1!==e.childRecords.indexOf(r))return i.dropPosition="Invalid",i.addErrorElem(),void(i.canDrop=!1);i.ensuredropPosition(e.childRecords,r)}})},e.prototype.destroy=function(){this.removeEventListener()},e.prototype.removeEventListener=function(){this.parent.isDestroyed||(this.parent.off(Re,this.Rowdraging),this.parent.off(Ce,this.rowDropped),this.parent.off(me,this.rowsAdded),this.parent.off(we,this.rowsRemoved))},e.prototype.getModuleName=function(){return"rowDragAndDrop"},e}(),et=function(){var e=function(t,r){return(e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)t.hasOwnProperty(r)&&(e[r]=t[r])})(t,r)};return function(t,r){function i(){this.constructor=t}e(t,r),t.prototype=null===r?Object.create(r):(i.prototype=r.prototype,new i)}}(),tt=function(e,t,r,i){var n,o=arguments.length,a=o<3?t:null===i?i=Object.getOwnPropertyDescriptor(t,r):i;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)a=Reflect.decorate(e,t,r,i);else for(var s=e.length-1;s>=0;s--)(n=e[s])&&(a=(o<3?n(a):o>3?n(t,r,a):n(t,r))||a);return o>3&&a&&Object.defineProperty(t,r,a),a},rt=function(e){function r(){return null!==e&&e.apply(this,arguments)||this}return et(r,e),tt([t.Property()],r.prototype,"targetID",void 0),r}(t.ChildProperty),it=function(){var e=function(t,r){return(e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)t.hasOwnProperty(r)&&(e[r]=t[r])})(t,r)};return function(t,r){function i(){this.constructor=t}e(t,r),t.prototype=null===r?Object.create(r):(i.prototype=r.prototype,new i)}}(),nt=function(e){function r(t){var r=e.call(this,t)||this;return r.addEventListener(),r}return it(r,e),r.prototype.addEventListener=function(){this.parent.on(ce,this.getDatas,this)},r.prototype.getDatas=function(e){this.visualData=e.data},r.prototype.generateRows=function(r,i){if(this.parent.dataSource instanceof n.DataManager&&void 0!==this.parent.dataSource.dataSource.url&&""!==this.parent.dataSource.dataSource.url)return e.prototype.generateRows.call(this,r,i);t.isNullOrUndefined(i.requestType)||"collapseAll"!==i.requestType.toString()||(i.requestType="refresh");for(var o=e.prototype.generateRows.call(this,r,i),a=0;a<o.length;a++)o[a].index=this.visualData.indexOf(o[a].data);return o},r.prototype.checkAndResetCache=function(e){var t=["paging","refresh","sorting","filtering","searching","reorder","save","delete"].some(function(t){return e===t});if(this.parent.dataSource instanceof n.DataManager&&void 0!==this.parent.dataSource.dataSource.url&&""!==this.parent.dataSource.dataSource.url){var r=this.model.currentPage;t?(this.cache={},this.data={},this.groups={}):"virtualscroll"===e&&this.cache[r]&&this.cache[r].length>this.parent.contentModule.getBlockSize()&&delete this.cache[r]}else(t||"virtualscroll"===e)&&(this.cache={},this.data={},this.groups={});return t},r}(r.VirtualRowModelGenerator),ot=function(){function e(e){r.Grid.Inject(r.Filter),this.parent=e,this.isHierarchyFilter=!1,this.filteredResult=[],this.flatFilteredData=[],this.filteredParentRecs=[],this.addEventListener()}return e.prototype.getModuleName=function(){return"filter"},e.prototype.destroy=function(){this.removeEventListener()},e.prototype.addEventListener=function(){this.parent.on("updateFilterRecs",this.updatedFilteredRecord,this),this.parent.on("clearFilters",this.clearFilterLevel,this)},e.prototype.removeEventListener=function(){this.parent.isDestroyed||(this.parent.off("updateFilterRecs",this.updatedFilteredRecord),this.parent.off("clearFilters",this.clearFilterLevel))},e.prototype.updatedFilteredRecord=function(e){t.setValue("uniqueIDFilterCollection",{},this.parent),this.flatFilteredData=e.data,this.filteredParentRecs=[],this.filteredResult=[],this.isHierarchyFilter=!1;for(var i=0;i<this.flatFilteredData.length;i++){var n=this.flatFilteredData[i];this.addParentRecord(n);var o=""===this.parent.grid.searchSettings.key?this.parent.filterSettings.hierarchyMode:this.parent.searchSettings.hierarchyMode;"Child"!==o&&"None"!==o||0===this.parent.grid.filterSettings.columns.length&&""===this.parent.grid.searchSettings.key||(this.isHierarchyFilter=!0);var a=r.getObject("childRecords",n);!t.isNullOrUndefined(a)&&a.length&&t.setValue("hasFilteredChildRecords",this.checkChildExsist(n),n);var s=r.getObject("parentItem",n);if(!t.isNullOrUndefined(s)){var d=y(this.parent,n.parentItem.uniqueID,!0);t.setValue("hasFilteredChildRecords",!0,d),d&&d.parentItem&&this.updateParentFilteredRecord(d)}}this.flatFilteredData.length>0&&this.isHierarchyFilter&&this.updateFilterLevel(),this.parent.notify("updateAction",{result:this.filteredResult})},e.prototype.updateParentFilteredRecord=function(e){var r=y(this.parent,e.parentItem.uniqueID,!0),i=t.getValue("uniqueIDFilterCollection",this.parent);r&&i.hasOwnProperty(r.uniqueID)&&t.setValue("hasFilteredChildRecords",!0,r),r&&r.parentItem&&this.updateParentFilteredRecord(r)},e.prototype.addParentRecord=function(e){var r=y(this.parent,e.parentUniqueID);if("None"!==(""===this.parent.grid.searchSettings.key?this.parent.filterSettings.hierarchyMode:this.parent.searchSettings.hierarchyMode)||0===this.parent.grid.filterSettings.columns.length&&""===this.parent.grid.searchSettings.key){if(!t.isNullOrUndefined(r)){"Child"!==(""===this.parent.grid.searchSettings.key?this.parent.filterSettings.hierarchyMode:this.parent.searchSettings.hierarchyMode)||0===this.parent.grid.filterSettings.columns.length&&""===this.parent.grid.searchSettings.key?this.addParentRecord(r):-1!==this.flatFilteredData.indexOf(r)&&this.addParentRecord(r)}-1===this.filteredResult.indexOf(e)&&(this.filteredResult.push(e),t.setValue("uniqueIDFilterCollection."+e.uniqueID,e,this.parent))}else if(t.isNullOrUndefined(r)){if(-1!==this.flatFilteredData.indexOf(e))return void(-1===this.filteredResult.indexOf(e)&&(this.filteredResult.push(e),t.setValue("uniqueIDFilterCollection."+e.uniqueID,e,this.parent),e.hasFilteredChildRecords=!0))}else this.addParentRecord(r),-1!==this.flatFilteredData.indexOf(r)||-1!==this.filteredResult.indexOf(r)?-1===this.filteredResult.indexOf(e)&&(this.filteredResult.push(e),t.setValue("uniqueIDFilterCollection."+e.uniqueID,e,this.parent)):-1===this.filteredResult.indexOf(e)&&-1!==this.flatFilteredData.indexOf(e)&&(this.filteredResult.push(e),t.setValue("uniqueIDFilterCollection."+e.uniqueID,e,this.parent))},e.prototype.checkChildExsist=function(e){for(var i=r.getObject("childRecords",e),n=!1,o=0;o<i.length;o++){var a=i[o].childRecords,s=""===this.parent.grid.searchSettings.key?this.parent.filterSettings.hierarchyMode:this.parent.searchSettings.hierarchyMode;if(!("Child"!==s&&"Both"!==s||0===this.parent.grid.filterSettings.columns.length&&""===this.parent.grid.searchSettings.key)){t.getValue("uniqueIDFilterCollection",this.parent).hasOwnProperty(i[o].uniqueID)||(this.filteredResult.push(i[o]),t.setValue("uniqueIDFilterCollection."+i[o].uniqueID,i[o],this.parent),n=!0)}if("None"===s&&(0!==this.parent.grid.filterSettings.columns.length||""!==this.parent.grid.searchSettings.key)&&-1!==this.flatFilteredData.indexOf(i[o])){n=!0;break}!t.isNullOrUndefined(a)&&a.length&&(n=this.checkChildExsist(i[o])),"Child"!==s&&"Both"!==s||!i.length||(n=!0)}return n},e.prototype.updateFilterLevel=function(){for(var e=this.filteredResult,t=this.filteredResult.length,r=0;r<t;r++){var i=y(this.parent,e[r].parentUniqueID);if(-1!==e.indexOf(i)){var n=y(this.parent,e[r].parentUniqueID,!0);e[r].filterLevel=n.filterLevel+1}else e[r].filterLevel=0,this.filteredParentRecs.push(e[r])}},e.prototype.clearFilterLevel=function(e){for(var r,i=0,n=e.flatData,o=n.length;i<o;i++){var a=(r=n[i]).filterLevel;!a&&0!==a&&t.isNullOrUndefined(r.hasFilteredChildRecords)||(r.hasFilteredChildRecords=null,r.filterLevel=null)}this.filteredResult=[],this.parent.notify("updateResults",{result:n,count:n.length})},e}(),at=function(){function e(e){r.Grid.Inject(r.ExcelExport),this.parent=e,this.dataResults={},this.addEventListener()}return e.prototype.getModuleName=function(){return"ExcelExport"},e.prototype.addEventListener=function(){this.parent.on("updateResults",this.updateExcelResultModel,this),this.parent.on("excelCellInfo",this.excelQueryCellInfo,this)},e.prototype.destroy=function(){this.removeEventListener()},e.prototype.removeEventListener=function(){this.parent.isDestroyed||(this.parent.off("updateResults",this.updateExcelResultModel),this.parent.off("excelCellInfo",this.excelQueryCellInfo))},e.prototype.updateExcelResultModel=function(e){this.dataResults=e},e.prototype.Map=function(e,i,o,a,s){var d=this,l=this.parent.dataSource,p=Object();return t.setValue("isCsv",s,p),t.setValue("cancel",!1,p),new Promise(function(h,c){var u=d.isLocal()?new n.DataManager(l):d.parent.dataSource,g=new n.Query;if(d.isLocal()||(g=d.generateQuery(g),t.setValue("query",g,p)),d.parent.trigger(L,t.extend(p,e)),r.getObject("cancel",p))return null;u.executeQuery(g).then(function(r){var n=null;return t.isNullOrUndefined(e)||t.isNullOrUndefined(e.dataSource)||(n=e.dataSource),e=d.manipulateExportProperties(e,l,r),d.parent.grid.excelExportModule.Map(d.parent.grid,e,i,o,s,a).then(function(t){null!=n?e.dataSource=n:delete e.dataSource,h(t)})})})},e.prototype.generateQuery=function(e,i){return!t.isNullOrUndefined(i)&&"CurrentPage"===i.exportType&&this.parent.allowPaging&&(i.exportType="AllPages",e.addParams("ExportType","CurrentPage"),e.where(this.parent.parentIdMapping,"equal",null),e=r.getObject("grid.renderModule.data.pageQuery",this.parent)(e)),e},e.prototype.manipulateExportProperties=function(e,i,o){var a=Object();if(t.setValue("query",this.parent.grid.getDataModule().generateQuery(!0),a),t.setValue("isExport",!0,a),t.isNullOrUndefined(e)||t.isNullOrUndefined(e.exportType)||t.setValue("exportType",e.exportType,a),this.isLocal()&&t.isNullOrUndefined(this.parent.parentIdMapping)||(this.parent.parentData=[],this.parent.dataModule.convertToFlatData(r.getObject("result",o)),t.setValue("expresults",this.parent.flatData,a)),this.parent.notify("dataProcessor",a),a=this.dataResults,i=t.isNullOrUndefined(a.result)?this.parent.flatData.slice(0):a.result,this.isLocal()||(this.parent.flatData=[]),e&&e.dataSource&&this.isLocal()){var s=this.parent.flatData,d=e.dataSource instanceof n.DataManager?e.dataSource.dataSource.json:e.dataSource;this.parent.dataModule.convertToFlatData(d),i=this.parent.flatData,this.parent.flatData=s}return e=t.isNullOrUndefined(e)?Object():e,e.dataSource=new n.DataManager({json:i}),e},e.prototype.excelQueryCellInfo=function(e){if(this.parent.grid.getColumnIndexByUid(e.column.uid)===this.parent.treeColumnIndex){var r={},i=e.data,n=t.isNullOrUndefined(i.filterLevel)?i.level:i.filterLevel;r.indent=n,e.style=r}this.parent.notify("updateResults",e),this.parent.trigger("excelQueryCellInfo",e)},e.prototype.isLocal=function(){return!a(this.parent)&&u(this.parent)},e}(),st=function(){function e(e){r.Grid.Inject(r.PdfExport),this.parent=e,this.dataResults={},this.addEventListener()}return e.prototype.getModuleName=function(){return"PdfExport"},e.prototype.addEventListener=function(){this.parent.on("pdfCellInfo",this.pdfQueryCellInfo,this),this.parent.on("updateResults",this.updatePdfResultModel,this)},e.prototype.removeEventListener=function(){this.parent.isDestroyed||(this.parent.off("pdfCellInfo",this.pdfQueryCellInfo),this.parent.off("updateResults",this.updatePdfResultModel))},e.prototype.destroy=function(){this.removeEventListener()},e.prototype.updatePdfResultModel=function(e){this.dataResults=e},e.prototype.Map=function(e,i,o,s){var d=this,l=this.parent.dataSource,p=Object(),h=!a(this.parent)&&u(this.parent);return t.setValue("cancel",!1,p),new Promise(function(a,c){var u=h?new n.DataManager(l):d.parent.dataSource,g=new n.Query;if(h||(g=d.generateQuery(g),t.setValue("query",g,p)),d.parent.trigger(V,t.extend(p,e)),r.getObject("cancel",p))return null;u.executeQuery(g).then(function(r){var n=null;return t.isNullOrUndefined(e)||t.isNullOrUndefined(e.dataSource)||(n=e.dataSource),e=d.manipulatePdfProperties(e,l,r),d.parent.grid.pdfExportModule.Map(d.parent.grid,e,i,o,s).then(function(t){null!=n?e.dataSource=n:delete e.dataSource,a(t)})})})},e.prototype.generateQuery=function(e,i){return!t.isNullOrUndefined(i)&&"CurrentPage"===i.exportType&&this.parent.allowPaging&&(i.exportType="AllPages",e.addParams("ExportType","CurrentPage"),e.where(this.parent.parentIdMapping,"equal",null),e=r.getObject("grid.renderModule.data.pageQuery",this.parent)(e)),e},e.prototype.manipulatePdfProperties=function(e,r,i){var o={},s=!a(this.parent)&&u(this.parent);if(t.setValue("query",this.parent.grid.getDataModule().generateQuery(!0),o),t.setValue("isExport",!0,o),t.isNullOrUndefined(e)||t.isNullOrUndefined(e.exportType)||t.setValue("exportType",e.exportType,o),s&&t.isNullOrUndefined(this.parent.parentIdMapping)||(this.parent.parentData=[],this.parent.dataModule.convertToFlatData(t.getValue("result",i)),t.setValue("expresults",this.parent.flatData,o)),this.parent.notify("dataProcessor",o),o=this.dataResults,r=t.isNullOrUndefined(o.result)?this.parent.flatData.slice(0):o.result,s||(this.parent.flatData=[]),e&&e.dataSource&&s){var d=this.parent.flatData,l=e.dataSource instanceof n.DataManager?e.dataSource.dataSource.json:e.dataSource;this.parent.dataModule.convertToFlatData(l),r=this.parent.flatData,this.parent.flatData=d}return e=t.isNullOrUndefined(e)?{}:e,e.dataSource=new n.DataManager({json:r}),e},e.prototype.pdfQueryCellInfo=function(e){if(this.parent.grid.getColumnIndexByUid(e.column.uid)===this.parent.treeColumnIndex){var i={},n=r.getObject("data",e),o=t.isNullOrUndefined(n.filterLevel)?n.level:n.filterLevel;i.paragraphIndent=3*o,e.style=i}this.parent.notify("updateResults",e),this.parent.trigger("pdfQueryCellInfo",e)},e}(),dt=function(){function e(e){r.Grid.Inject(r.Page),this.parent=e,this.addEventListener()}return e.prototype.addEventListener=function(){this.parent.on(G,this.collapseExpandPagedchilds,this),this.parent.on(H,this.pageAction,this)},e.prototype.removeEventListener=function(){this.parent.isDestroyed||(this.parent.off(G,this.collapseExpandPagedchilds),this.parent.off(H,this.pageAction))},e.prototype.getModuleName=function(){return"pager"},e.prototype.refresh=function(){this.parent.grid.pagerModule.refresh()},e.prototype.destroy=function(){this.removeEventListener()},e.prototype.goToPage=function(e){this.parent.grid.pagerModule.goToPage(e)},e.prototype.updateExternalMessage=function(e){this.parent.grid.pagerModule.updateExternalMessage(e)},e.prototype.collapseExpandPagedchilds=function(e){e.record.expanded="collapse"!==e.action,t.isBlazor()&&(this.parent.flatData.filter(function(t){return t.uniqueID===e.record.uniqueID})[0].expanded="collapse"!==e.action);var r={result:this.parent.flatData,row:e.row,action:e.action,record:e.record,count:this.parent.flatData.length};t.getValue("grid.renderModule",this.parent).dataManagerSuccess(r)},e.prototype.pageRoot=function(e,r,i){for(var n=t.isNullOrUndefined(i)?[]:i,o=function(t){n.push(r[t]);var i=[];r[t].hasChildRecords&&(i=e.filter(function(e){return r[t].uniqueID===e.parentUniqueID}),n=a.pageRoot(e,i,n))},a=this,s=0;s<r.length;s++)o(s);return n},e.prototype.pageAction=function(e){var t=this,r=new n.DataManager(e.result);if("Root"===this.parent.pageSettings.pageSizeMode){var i=[],o=this.parent.grid.filterSettings.columns.length>0&&("Child"===this.parent.filterSettings.hierarchyMode||"None"===this.parent.filterSettings.hierarchyMode)?"filterLevel":"level",a=(new n.Query).where(o,"equal",0);i=r.executeLocal(a),e.count=i.length;var s=(f=this.parent.grid.pageSettings.pageSize)*((y=this.parent.grid.pageSettings.currentPage)-1);a=a.skip(s).take(f),i=r.executeLocal(a);var d=this.pageRoot(e.result,i);e.result=d}else{var p=new n.DataManager(e.result),c=new n.Predicate("expanded","notequal",null).or("expanded","notequal",void 0),u=p.executeLocal((new n.Query).where(c)),g=void 0;g=l(this.parent)?u:u.filter(function(e){return h(t.parent,e,u)}),e.count=g.length;a=new n.Query;var f=this.parent.grid.pageSettings.pageSize,y=this.parent.grid.pageSettings.currentPage;g.length<y*f&&(y=(y=Math.floor(g.length/f)+(g.length%f?1:0))||1,this.parent.grid.setProperties({pageSettings:{currentPage:y}},!0));s=f*(y-1);a=a.skip(s).take(f),p.dataSource.json=g,e.result=p.executeLocal(a)}this.parent.notify("updateAction",e)},e}(),lt=function(){function e(e){r.Grid.Inject(r.Toolbar),this.parent=e,this.addEventListener()}return e.prototype.getModuleName=function(){return"toolbar"},e.prototype.addEventListener=function(){this.parent.on(q,this.refreshToolbar,this),this.parent.on(T,this.toolbarClickHandler,this)},e.prototype.removeEventListener=function(){this.parent.isDestroyed||(this.parent.off(q,this.refreshToolbar),this.parent.off(T,this.toolbarClickHandler))},e.prototype.refreshToolbar=function(e){var r=this.parent;0===e.row.rowIndex||r.getSelectedRecords().length>1?this.enableItems([r.element.id+"_gridcontrol_indent",r.element.id+"_gridcontrol_outdent"],!1):t.isNullOrUndefined(r.getCurrentViewRecords()[e.row.rowIndex])||(!t.isNullOrUndefined(r.getCurrentViewRecords()[e.row.rowIndex])&&r.getCurrentViewRecords()[e.row.rowIndex].level>r.getCurrentViewRecords()[e.row.rowIndex-1].level?this.enableItems([r.element.id+"_gridcontrol_indent"],!1):this.enableItems([r.element.id+"_gridcontrol_indent"],!0),r.getCurrentViewRecords()[e.row.rowIndex].level===r.getCurrentViewRecords()[e.row.rowIndex-1].level&&this.enableItems([r.element.id+"_gridcontrol_indent"],!0),0===r.getCurrentViewRecords()[e.row.rowIndex].level&&this.enableItems([r.element.id+"_gridcontrol_outdent"],!1),0!==r.getCurrentViewRecords()[e.row.rowIndex].level&&this.enableItems([r.element.id+"_gridcontrol_outdent"],!0)),0!==e.row.rowIndex||t.isNullOrUndefined(e.data.parentItem)||this.enableItems([r.element.id+"_gridcontrol_outdent"],!0)},e.prototype.toolbarClickHandler=function(e){var t=this.parent;if("Cell"===this.parent.editSettings.mode&&"Batch"===this.parent.grid.editSettings.mode&&e.item.id===this.parent.grid.element.id+"_update"&&(e.cancel=!0,this.parent.grid.editModule.saveCell()),e.item.id===this.parent.grid.element.id+"_expandall"&&this.parent.expandAll(),e.item.id===this.parent.grid.element.id+"_collapseall"&&this.parent.collapseAll(),e.item.id===t.grid.element.id+"_indent"&&t.getSelectedRecords().length){var r=t.getCurrentViewRecords()[t.getSelectedRowIndexes()[0]-1],i=void 0;if(r.level>t.getSelectedRecords()[0].level)for(var n=0;n<t.getCurrentViewRecords().length;n++)t.getCurrentViewRecords()[n].taskData===r.parentItem.taskData&&(i=n);else i=t.getSelectedRowIndexes()[0]-1;t.reorderRows([t.getSelectedRowIndexes()[0]],i,"child")}if(e.item.id===t.grid.element.id+"_outdent"&&t.getSelectedRecords().length){var o=t.getSelectedRowIndexes()[0],a=(i=void 0,t.getSelectedRecords()[0].parentItem);for(n=0;n<t.getCurrentViewRecords().length;n++)t.getCurrentViewRecords()[n].taskData===a.taskData&&(i=n);t.reorderRows([o],i,"below")}},e.prototype.getToolbar=function(){return this.parent.grid.toolbarModule.getToolbar()},e.prototype.enableItems=function(e,t){this.parent.grid.toolbarModule.enableItems(e,t)},e.prototype.destroy=function(){this.removeEventListener()},e}(),pt=function(){function e(e){r.Grid.Inject(r.Aggregate),this.parent=e,this.flatChildRecords=[],this.summaryQuery=[]}return e.prototype.getModuleName=function(){return"summary"},e.prototype.removeEventListener=function(){this.parent.isDestroyed},e.prototype.calculateSummaryValue=function(e,i,n){this.summaryQuery=e;var o,a;a=[];for(var s=0,d=Object.keys(i).length;s<d;s++){r.getObject("isSummaryRow",i[s])||a.push(i[s])}var l,h=p(a);l=a.slice();var c,u=Object.keys(this.parent.columns).length,g=Object.keys(this.parent.aggregates).length,f=0;for(d=Object.keys(h).length;f<d;f++)if(o=h[f],c=this.getChildRecordsLength(o,l)){for(var y=function(e,i){var a=void 0;a={};for(var s=0,d=u;s<d;s++){a[t.isNullOrUndefined(r.getObject("field",v.parent.columns[s]))?v.parent.columns[s]:r.getObject("field",v.parent.columns[s])]=null}if(!v.parent.aggregates[e-1].showChildSummary)return"continue";a=v.createSummaryItem(a,v.parent.aggregates[e-1]);var p;l.map(function(e,t){e.uniqueID!==o.uniqueID||(p=t)});var h=p+c+e,g=t.extend({},o);delete g.childRecords,delete g[v.parent.childMapping],t.setValue("parentItem",g,a);var f=r.getObject("level",g);t.setValue("level",f+1,a);r.getObject("index",g);if(t.setValue("isSummaryRow",!0,a),t.setValue("parentUniqueID",g.uniqueID,a),n){var y=r.getObject("childRecords",o);y.length&&y.push(a)}l.splice(h,0,a)},v=this,m=1,w=g;m<=w;m++)y(m);this.flatChildRecords=[]}return l},e.prototype.getChildRecordsLength=function(e,i){for(var n,o=0,a=Object.keys(i).length;o<a;o++){n=i[o];if(e===(t.isNullOrUndefined(n.parentItem)?null:i.filter(function(e){return e.uniqueID===n.parentItem.uniqueID})[0])){this.flatChildRecords.push(n);if(!r.getObject("hasChildRecords",n))continue;this.getChildRecordsLength(n,i)}}return this.flatChildRecords.length},e.prototype.createSummaryItem=function(e,r){for(var i=0,n=Object.keys(r.columns).length;i<n;i++)for(var o=t.isNullOrUndefined(r.columns[i].columnName)?r.columns[i].field:r.columns[i].columnName,a=0,s=Object.keys(e);a<s.length;a++){var d=s[a];d===o&&(e[d]=this.getSummaryValues(r.columns[i],this.flatChildRecords))}return e},e.prototype.getSummaryValues=function(e,i){var o,a=new n.Query;o={};var s={},d=t.isNullOrUndefined(e.field)?void 0:this.parent.getColumnByField(e.field).type;e.setPropertiesSilent({format:this.getFormatFromType(e.format,d)}),e.setFormatter(this.parent.grid.locale);var l=e.getFormatter()||function(e){return e};e.setTemplate(s);var p=e.getTemplate(2);a.queries=this.summaryQuery,a.requiresCount();var h,c=new n.DataManager(i).executeLocal(a),u=e.type;u=[e.type];for(var g=0;g<u.length;g++){h=u[g];var f=e.field+" - "+u[g].toLowerCase(),y="Custom"!==u[g]?r.getObject("aggregates",c):r.calculateAggregate(u[g],c,e,this.parent),v=e.columnName,m="Custom"!==u[g]?y[f]:y;o[v]=o[v]||{},o[v][f]=m,o[v][u[g]]=t.isNullOrUndefined(y)?" ":l(m)}s.format=e.getFormatter();var w=t.createElement("td",{className:"e-summary"});r.appendChildren(w,p.fn(o[e.columnName],this.parent,p.property));var R=o[e.columnName][h];return-1===w.innerHTML.indexOf(R)?w.innerHTML+R:w.innerHTML},e.prototype.getFormatFromType=function(e,r){if(t.isNullOrUndefined(r)||"string"!=typeof e)return e;var i;switch(r){case"number":i={format:e};break;case"datetime":i={type:"dateTime",skeleton:e};break;case"date":i={type:r,skeleton:e}}return i},e.prototype.destroy=function(){this.removeEventListener()},e}(),ht=function(){function e(e){r.Grid.Inject(r.Sort),this.parent=e,this.taskIds=[],this.flatSortedData=[],this.storedIndex=-1,this.isSelfReference=!t.isNullOrUndefined(this.parent.parentIdMapping),this.addEventListener()}return e.prototype.getModuleName=function(){return"sort"},e.prototype.addEventListener=function(){this.parent.on("updateModel",this.updateModel,this),this.parent.on("createSort",this.createdSortedRecords,this)},e.prototype.removeEventListener=function(){this.parent.isDestroyed||(this.parent.off("updateModel",this.updateModel),this.parent.off("createSort",this.createdSortedRecords))},e.prototype.createdSortedRecords=function(e){var t=e.modifiedData,r=e.srtQry;this.iterateSort(t,r),this.storedIndex=-1,e.modifiedData=this.flatSortedData,this.flatSortedData=[]},e.prototype.iterateSort=function(e,r){for(var i=0;i<e.length;i++)if(this.parent.grid.filterSettings.columns.length>0||""!==this.parent.grid.searchSettings.key?t.isNullOrUndefined(y(this.parent,e[i].uniqueID,!0))||(this.storedIndex++,this.flatSortedData[this.storedIndex]=e[i]):(this.storedIndex++,this.flatSortedData[this.storedIndex]=e[i]),e[i].hasChildRecords){var o=new n.DataManager(e[i].childRecords).executeLocal(r);this.iterateSort(o,r)}},e.prototype.sortColumn=function(e,t,r){this.parent.grid.sortColumn(e,t,r)},e.prototype.removeSortColumn=function(e){this.parent.grid.removeSortColumn(e)},e.prototype.updateModel=function(){this.parent.setProperties({sortSettings:r.getActualProperties(this.parent.grid.sortSettings)},!0)},e.prototype.clearSorting=function(){this.parent.grid.clearSorting(),this.updateModel()},e.prototype.destroy=function(){this.removeEventListener()},e}(),ct=function(){function e(e){r.Grid.Inject(r.ColumnMenu),this.parent=e}return e.prototype.getColumnMenu=function(){return this.parent.grid.columnMenuModule.getColumnMenu()},e.prototype.destroy=function(){},e.prototype.getModuleName=function(){return"columnMenu"},e}(),ut=function(){function e(e){r.Grid.Inject(r.ContextMenu),this.parent=e,this.addEventListener()}return e.prototype.addEventListener=function(){this.parent.on("contextMenuOpen",this.contextMenuOpen,this),this.parent.on("contextMenuClick",this.contextMenuClick,this)},e.prototype.removeEventListener=function(){this.parent.isDestroyed||(this.parent.off("contextMenuOpen",this.contextMenuOpen),this.parent.off("contextMenuClick",this.contextMenuClick))},e.prototype.contextMenuOpen=function(e){var r=e.element.querySelector("#"+this.parent.element.id+"_gridcontrol_cmenu_AddRow"),i=e.element.querySelector("#"+this.parent.element.id+"_gridcontrol_cmenu_Edit");r&&(!1===this.parent.grid.editSettings.allowAdding?r.style.display="none":r.style.display="block"),"Cell"!==this.parent.editSettings.mode&&"Batch"!==this.parent.editSettings.mode||t.isNullOrUndefined(i)||i.classList.contains("e-menu-hide")||(i.style.display="none")},e.prototype.contextMenuClick=function(e){"Above"!==e.item.id&&"Below"!==e.item.id||(this.parent.notify("savePreviousRowPosition",e),this.parent.setProperties({editSettings:{newRowPosition:e.item.id}},!0),this.parent.addRecord())},e.prototype.getModuleName=function(){return"contextMenu"},e.prototype.destroy=function(){this.removeEventListener()},e.prototype.getContextMenu=function(){return this.parent.grid.contextMenuModule.getContextMenu()},e}(),gt=function(){function e(e){this.batchChildCount=0,this.addedRecords="addedRecords",this.deletedRecords="deletedRecords",this.batchAddedRecords=[],this.batchDeletedRecords=[],this.batchAddRowRecord=[],this.parent=e,this.isSelfReference=!t.isNullOrUndefined(e.parentIdMapping),this.batchRecords=[],this.currentViewRecords=[],this.isAdd=!1,this.addEventListener()}return e.prototype.addEventListener=function(){this.parent.on(ee,this.cellSaved,this),this.parent.on(ne,this.batchAdd,this),this.parent.on(ae,this.beforeBatchAdd,this),this.parent.on(de,this.batchSave,this),this.parent.on(oe,this.beforeBatchDelete,this),this.parent.on(se,this.beforeBatchSave,this),this.parent.on("batchPageAction",this.batchPageAction,this),this.parent.on("batchCancelAction",this.batchCancelAction,this)},e.prototype.removeEventListener=function(){this.parent.isDestroyed||(this.parent.off(ee,this.cellSaved),this.parent.off(ne,this.batchAdd),this.parent.off(de,this.batchSave),this.parent.off(ae,this.beforeBatchAdd),this.parent.off(oe,this.beforeBatchDelete),this.parent.off(se,this.beforeBatchSave),this.parent.off("batchPageAction",this.batchPageAction),this.parent.off("batchCancelAction",this.batchCancelAction))},e.prototype.destroy=function(){this.removeEventListener()},e.prototype.getBatchRecords=function(){return this.batchRecords},e.prototype.getAddRowIndex=function(){return this.addRowIndex},e.prototype.getSelectedIndex=function(){return this.selectedIndex},e.prototype.getBatchChildCount=function(){return this.batchChildCount},e.prototype.batchPageAction=function(){var e,r=this.parent.grid.dataSource instanceof n.DataManager?this.parent.grid.dataSource.dataSource.json:this.parent.grid.dataSource,i=this.parent.grid.getPrimaryKeyFieldNames()[0];if(!t.isNullOrUndefined(this.batchAddedRecords)&&this.batchAddedRecords.length)for(var o=0;o<this.batchAddedRecords.length;o++)e=r.map(function(e){return e[i]}).indexOf(this.batchAddedRecords[o][i]),r.splice(e,1);this.batchAddedRecords=this.batchRecords=this.batchAddRowRecord=this.batchDeletedRecords=this.currentViewRecords=[]},e.prototype.cellSaved=function(e){if(e.cell.cellIndex===this.parent.treeColumnIndex&&this.parent.renderModule.cellRender({data:e.rowData,cell:e.cell,column:this.parent.grid.getColumnByIndex(e.cell.cellIndex)}),this.isAdd&&"Batch"===this.parent.editSettings.mode&&"Bottom"!==this.parent.editSettings.newRowPosition){var i=this.parent.grid.dataSource instanceof n.DataManager?this.parent.grid.dataSource.dataSource.json:this.parent.grid.dataSource,o=void 0,a=this.parent.grid.getPrimaryKeyFieldNames()[0],s=void 0,d=void 0,l=void 0,p="parentItem";d=this.selectedIndex>-1?this.batchRecords[this.addRowIndex][p]:null;var h=void 0,u=void 0,f=void 0;if(this.newBatchRowAdded){if(this.batchRecords.length&&(h=this.batchRecords[this.addRowIndex][this.parent.idMapping],f=this.batchRecords[this.addRowIndex][this.parent.parentIdMapping],this.batchRecords[this.addRowIndex][p]&&(u=this.batchRecords[this.addRowIndex][p].uniqueID)),this.batchAddedRecords=g(this.batchAddedRecords),this.batchAddRowRecord=g(this.batchAddRowRecord),this.batchAddRowRecord.push(this.batchRecords[this.addRowIndex]),o=this.parent.grid.getRowsObject()[0].changes,o.uniqueID=r.getUid(this.parent.element.id+"_data_"),t.setValue("uniqueIDCollection."+o.uniqueID,o,this.parent),!o.hasOwnProperty("level")){if(this.batchIndex=-1===this.selectedIndex?0:this.batchIndex,"Child"===this.parent.editSettings.newRowPosition){if(o.primaryParent=d,this.selectedIndex>-1){o.parentItem=t.extend({},this.batchRecords[this.addRowIndex]),o.parentUniqueID=o.parentItem.uniqueID,delete o.parentItem.childRecords,delete o.parentItem[this.parent.childMapping],o.level=o.parentItem.level+1,o.index=this.batchIndex;var y=c(this.batchRecords[this.addRowIndex]).length,v=c(this.batchRecords[this.addRowIndex])[y-1];v=t.isNullOrUndefined(v)?this.batchRecords[this.addRowIndex]:v,s=i.map(function(e){return e[a]}).indexOf(v[a]),this.isSelfReference&&(o[this.parent.parentIdMapping]=h),w(a,o.parentItem,"add",this.parent,this.isSelfReference,o)}}else if(("Above"===this.parent.editSettings.newRowPosition||"Below"===this.parent.editSettings.newRowPosition)&&!t.isNullOrUndefined(this.batchRecords[this.addRowIndex])){if(o.level=this.batchRecords[this.addRowIndex].level,o.level&&this.selectedIndex>-1&&(o.parentItem=d,o.parentUniqueID=u,delete o.parentItem.childRecords,delete o.parentItem[this.parent.childMapping]),o.index="Below"===this.parent.editSettings.newRowPosition?this.batchIndex:this.batchIndex-1,"Below"===this.parent.editSettings.newRowPosition&&this.selectedIndex>-1){y=c(this.batchRecords[this.addRowIndex]).length,v=c(this.batchRecords[this.addRowIndex])[y-1];v=t.isNullOrUndefined(v)?this.batchRecords[this.addRowIndex]:v,s=i.map(function(e){return e[a]}).indexOf(v[a])}if("Above"===this.parent.editSettings.newRowPosition&&this.selectedIndex>-1){v=this.batchRecords[this.addRowIndex];s=i.map(function(e){return e[a]}).indexOf(v[a])}this.isSelfReference&&(o[this.parent.parentIdMapping]=f)}o.index=-1===o.index?0:o.index,o.hasChildRecords=!1,o.childRecords=[],this.batchRecords.splice(o.index,0,o),this.currentViewRecords.splice(o.index,0,o),l=s||o.index,"Above"!==this.parent.editSettings.newRowPosition&&(l=0===o.index?l:l+1),i.splice(l,0,o),this.batchAddedRecords.push(o)}this.parent.grid.getRowsObject()[0].data=o,this.newBatchRowAdded=!1}}},e.prototype.beforeBatchAdd=function(e){this.selectedIndex=this.parent.grid.selectedRowIndex,this.addRowIndex=this.parent.grid.selectedRowIndex>-1?this.parent.grid.selectedRowIndex:0,this.addRowRecord=this.parent.getSelectedRecords()[0]},e.prototype.batchAdd=function(e){if("Bottom"!==this.parent.editSettings.newRowPosition){this.isAdd=!0,this.newBatchRowAdded=!0;var r=0;if(this.batchRecords.length||(this.batchAddedRecords=[],this.batchRecords=g(this.parent.grid.getCurrentViewRecords()),this.currentViewRecords=g(this.parent.grid.getCurrentViewRecords())),"Top"!==this.parent.editSettings.newRowPosition){var i=this.parent.grid.getCurrentViewRecords();"Batch"===this.parent.editSettings.mode&&(this.parent.getBatchChanges()[this.addedRecords].length>1||this.parent.getBatchChanges()[this.deletedRecords].length)&&(i=this.batchRecords),this.updateChildCount(i),this.parent.notify(X,{}),this.batchChildCount=0}this.updateRowIndex();var n=t.getValue("focusModule",this.parent.grid),o=this.parent.getContentTable();this.parent.getBatchChanges()[this.deletedRecords].length&&"Above"===this.parent.editSettings.newRowPosition?(r=e.row.rowIndex,n.getContent().matrix.matrix=this.matrix):(r=o.getElementsByClassName("e-batchrow")[0].rowIndex,(this.parent.frozenRows||this.parent.frozenColumns)&&(r=this.batchIndex)),n.getContent().matrix.current=[r,n.getContent().matrix.current[1]]}},e.prototype.beforeBatchDelete=function(e){this.batchRecords.length||(this.batchRecords=g(this.parent.grid.getCurrentViewRecords()),this.currentViewRecords=g(this.parent.grid.getCurrentViewRecords()));var r=t.getValue("focusModule",this.parent.grid);this.matrix=r.getContent().matrix.matrix,this.parent=this.parent;var i,n,o=[],a=this.parent.grid.getPrimaryKeyFieldNames()[0],s=c(n=this.parent.grid.getSelectedRecords()[this.parent.grid.getSelectedRecords().length-1]);if(s.length)for(var d=0;d<s.length;d++){var l=this.parent.grid.getRowIndexByPrimaryKey(s[d][a]);o.push(this.parent.grid.getRows()[l])}if(!t.isNullOrUndefined(n.parentItem)){var p=y(this.parent,n.parentItem.uniqueID);if(!t.isNullOrUndefined(p)&&p.hasChildRecords){var h=p.childRecords.indexOf(n);p.childRecords.splice(h,1)}this.batchDeletedRecords=g(this.batchDeletedRecords),this.batchDeletedRecords.push(n)}s.push(n),i=s;for(d=0;d<i.length;d++){var u=this.batchRecords.map(function(e){return e[a]}).indexOf(i[d][a]);-1!==u&&this.batchRecords.splice(u,1)}for(d=0;d<o.length;d++)t.isNullOrUndefined(o[d])||this.parent.grid.selectionModule.selectedRecords.push(o[d])},e.prototype.updateRowIndex=function(){for(var e=this.parent.grid.getDataRows(),t=0;t<e.length;t++)e[t].setAttribute("aria-rowindex",t.toString())},e.prototype.updateChildCount=function(e){for(var r=this.parent.grid.getPrimaryKeyFieldNames()[0],i="addedRecords",n="Child"===this.parent.editSettings.newRowPosition?"primaryParent":"parentItem",o=1;o<this.parent.getBatchChanges()[i].length;o++)t.isNullOrUndefined(this.parent.getBatchChanges()[i][o][n])||this.parent.getBatchChanges()[i][o][n][r]===e[this.addRowIndex][r]&&(this.batchChildCount=this.batchChildCount+1)},e.prototype.beforeBatchSave=function(e){var t="deletedRecords",r=e.batchChanges.changedRecords;if(e.batchChanges.changedRecords.length)for(var i=0;i<r.length;i++)v({value:r[i],action:"edit"},this.parent,this.isSelfReference,this.addRowIndex,this.selectedIndex,void 0);if(e.batchChanges[t].length){var n=e.batchChanges[t];for(i=0;i<n.length;i++){this.deleteUniqueID(n[i].uniqueID);for(var o=c(n[i]),a=0;a<o.length;a++)this.deleteUniqueID(o[a].uniqueID);e.batchChanges[t]=e.batchChanges[t].concat(o)}}this.isAdd=!1},e.prototype.deleteUniqueID=function(e){delete this.parent.uniqueIDFilterCollection[e];delete this.parent.uniqueIDCollection[e]},e.prototype.batchCancelAction=function(){var e,r="targetElement",i="parentItem",o=this.parent.grid.getCurrentViewRecords(),a="childRecords",s=this.parent.grid.dataSource instanceof n.DataManager?this.parent.grid.dataSource.dataSource.json:this.parent.grid.dataSource,d=this.parent.grid.getPrimaryKeyFieldNames()[0];if(!t.isNullOrUndefined(this.parent[r])){var l=this.parent[r].closest("tr");this.parent.collapseRow(l),this.parent[r]=null}if(!t.isNullOrUndefined(this.batchAddedRecords))for(var p=0;p<this.batchAddedRecords.length;p++)if(e=s.map(function(e){return e[d]}).indexOf(this.batchAddedRecords[p][d]),s.splice(e,1),"Child"===this.parent.editSettings.newRowPosition)for(var h=o[e=o.map(function(e){return e[d]}).indexOf(this.batchAddedRecords[p][i][d])][a],c=0;c<h.length;c++)h[c][d]===this.batchAddedRecords[p][d]&&o[e][a].splice(c,1);if(!t.isNullOrUndefined(this.batchDeletedRecords))for(p=0;p<this.batchDeletedRecords.length;p++)if(!t.isNullOrUndefined(this.batchDeletedRecords[p][i])){e=o.map(function(e){return e[d]}).indexOf(this.batchDeletedRecords[p][i][d]);var u=0===this.batchDeletedRecords[p].index?this.batchDeletedRecords[p].index:this.batchDeletedRecords[p].index-1;t.isNullOrUndefined(o[e])||o[e][a].splice(u,0,this.batchDeletedRecords[p])}this.batchAddedRecords=this.batchRecords=this.batchAddRowRecord=this.currentViewRecords=[],this.batchRecords=g(this.parent.grid.getCurrentViewRecords()),this.batchIndex=0,this.currentViewRecords=g(this.parent.grid.getCurrentViewRecords()),this.batchDeletedRecords=[],this.parent.refresh()},e.prototype.batchSave=function(e){if("Batch"===this.parent.editSettings.mode){var r=void 0,i=this.parent.getBatchChanges(),o="deletedRecords",a=this.parent.grid.dataSource instanceof n.DataManager?this.parent.grid.dataSource.dataSource.json:this.parent.grid.dataSource,s=this.parent.grid.getCurrentViewRecords(),d=this.parent.grid.getPrimaryKeyFieldNames()[0],l=i.addedRecords,p=void 0,h=void 0,c=void 0;if(l.length>1&&"Bottom"!==this.parent.editSettings.newRowPosition&&l.reverse(),"Bottom"!==this.parent.editSettings.newRowPosition)if(a.splice(a.length-l.length,l.length),this.parent.allowPaging){var u=g(a),f=u.map(function(e){return e[d]}).indexOf(s[0][d]),y=f+this.parent.grid.pageSettings.pageSize;s=u.splice(f,y)}else s.length>l.length&&s.splice(s.length-l.length,l.length);for(r=0;r<l.length;r++){var m=t.extend({},l[r]);if(delete m.parentItem,delete m.uniqueID,delete m.index,delete m.level,delete m.hasChildRecords,delete m.childRecords,delete m.parentUniqueID,t.isNullOrUndefined(m.primaryParent)||delete m.primaryParent,l[r].taskData=m,c=this.batchAddRowRecord[r],t.isNullOrUndefined(c)&&(c=this.batchAddRowRecord[r-1]),this.isSelfReference&&(t.isNullOrUndefined(l[r].parentItem)||w(d,l[r].parentItem,"add",this.parent,this.isSelfReference,l[r])),t.isNullOrUndefined(c)||(h=c.index),"Top"!==this.parent.editSettings.newRowPosition&&"Bottom"!==this.parent.editSettings.newRowPosition&&t.isNullOrUndefined(l[r].parentItem)&&-1===this.selectedIndex&&(p=-1,c=null),v({value:l[r],action:"add"},this.parent,this.isSelfReference,h,p,void 0,c),p=null,"Child"===this.parent.editSettings.newRowPosition&&!t.isNullOrUndefined(l[r].parentItem))for(var R=s.map(function(e){return e[d]}).indexOf(l[r].parentItem[d]),C=s[R].childRecords,x=0;x<C.length;x++)C[x][d]===l[r][d]&&s[R].childRecords.splice(x,1)}if(i[o].length)for(r=0;r<i[o].length;r++)v({value:i[o][r],action:"delete"},this.parent,this.isSelfReference,h,p,void 0,c);this.parent.parentData=[];for(var S=0;S<a.length;S++)a[S].index=S,t.setValue("uniqueIDCollection."+a[S].uniqueID+".index",S,this.parent),a[S].level||this.parent.parentData.push(a[S])}this.batchAddRowRecord=this.batchAddedRecords=this.batchRecords=this.batchDeletedRecords=this.currentViewRecords=[]},e}(),ft=function(){function e(e){this.addedRecords="addedRecords",this.deletedRecords="deletedRecords",r.Grid.Inject(r.Edit),this.parent=e,this.isSelfReference=!t.isNullOrUndefined(e.parentIdMapping),this.previousNewRowPosition=null,this.internalProperties={},this.batchEditModule=new gt(this.parent),this.addEventListener()}return e.prototype.getModuleName=function(){return"edit"},e.prototype.addEventListener=function(){this.parent.on(Y,this.crudAction,this),this.parent.on(J,this.beginEdit,this),this.parent.on(X,this.beginAdd,this),this.parent.on(Z,this.recordDoubleClick,this),this.parent.on($,this.cellSave,this),this.parent.on(ie,this.batchCancel,this),this.parent.grid.on(le,this.keyPressed,this),this.parent.grid.on("content-ready",this.contentready,this),this.parent.on(te,this.cellEdit,this),this.parent.on("actionBegin",this.editActionEvents,this),this.parent.on("actionComplete",this.editActionEvents,this),this.parent.grid.on(pe,this.recordDoubleClick,this),this.parent.grid.on("dblclick",this.gridDblClick,this),this.parent.on("savePreviousRowPosition",this.savePreviousRowPosition,this),this.parent.grid.on(ge,this.beforeStartEdit,this),this.parent.grid.on(fe,this.beforeBatchCancel,this)},e.prototype.gridDblClick=function(e){this.doubleClickTarget=e.target},e.prototype.beforeStartEdit=function(e){this.parent.trigger(A,e)},e.prototype.beforeBatchCancel=function(e){"Cell"===this.parent.editSettings.mode&&this.parent.trigger(N,e)},e.prototype.removeEventListener=function(){this.parent.isDestroyed||(this.parent.off(Y,this.crudAction),this.parent.off(J,this.beginEdit),this.parent.off(X,this.beginAdd),this.parent.off(Z,this.recordDoubleClick),this.parent.off(ie,this.batchCancel),this.parent.grid.off(le,this.keyPressed),this.parent.grid.off("content-ready",this.contentready),this.parent.off(te,this.cellEdit),this.parent.off("actionBegin",this.editActionEvents),this.parent.off("actionComplete",this.editActionEvents),this.parent.grid.off(pe,this.recordDoubleClick),this.parent.off("savePreviousRowPosition",this.savePreviousRowPosition),this.parent.grid.off(ge,this.beforeStartEdit),this.parent.grid.off(fe,this.beforeBatchCancel),this.parent.grid.off("dblclick",this.gridDblClick))},e.prototype.destroy=function(){this.removeEventListener()},e.prototype.applyFormValidation=function(e){this.parent.grid.editModule.applyFormValidation(e)},e.prototype.editActionEvents=function(e){var i=r.getObject("editAction",e),o=r.getObject("name",i),s=this.parent,d=s.dataSource.adaptor;if((a(s)||d instanceof n.RemoteSaveAdaptor)&&"save"===i.requestType&&"add"===i.action&&("Child"===s.editSettings.newRowPosition||"Below"===s.editSettings.newRowPosition||"Above"===s.editSettings.newRowPosition))if("actionBegin"===o){var l=t.isNullOrUndefined(i.row)||!Object.keys(i.row).length?this.selectedIndex:i.row.rowIndex-1,p=t.isNullOrUndefined(l)||-1===l?-1:s.getCurrentViewRecords()[l][s.getPrimaryKeyFieldNames()[0]];s.grid.query.addParams("relationalKey",p)}else if("actionComplete"===o)for(var h=s.grid.query.params.length,c=0;c<h;c++)"relationalKey"===s.grid.query.params[c].key&&s.grid.query.params.splice(c);"Batch"===this.parent.editSettings.mode&&"paging"===i.requestType&&this.parent.notify("batchPageAction",{})},e.prototype.recordDoubleClick=function(e){var r=e.target;if(!t.isNullOrUndefined(r.closest("td.e-rowcell"))){var i=this.parent.grid.getColumnByIndex(+r.closest("td.e-rowcell").getAttribute("aria-colindex"));"Cell"!==this.parent.editSettings.mode||this.isOnBatch||!i||i.isPrimaryKey||!i.allowEditing||r.classList.contains("e-treegridexpand")||r.classList.contains("e-treegridcollapse")||!this.parent.editSettings.allowEditOnDblClick||(this.isOnBatch=!0,this.parent.grid.setProperties({selectedRowIndex:e.rowIndex},!0),this.updateGridEditMode("Batch"))}},e.prototype.updateGridEditMode=function(e){this.parent.grid.setProperties({editSettings:{mode:e}},!0);r.getObject("updateEditObj",this.parent.grid.editModule).apply(this.parent.grid.editModule),this.parent.grid.isEdit=!1},e.prototype.keyPressed=function(e){(this.isOnBatch||"Cell"===this.parent.editSettings.mode&&t.isBlazor()&&this.parent.isServerRendered)&&(this.keyPress=e.action),"f2"===e.action&&this.recordDoubleClick(e)},e.prototype.deleteUniqueID=function(e){delete this.parent.uniqueIDFilterCollection[e];delete this.parent.uniqueIDCollection[e]},e.prototype.cellEdit=function(e){var r=this,i=e.promise;if(delete e.promise,"enter"!==this.keyPress&&this.parent.trigger(te,e,function(e){e.cancel||"Cell"!==r.parent.editSettings.mode?e.cancel&&"Cell"===r.parent.editSettings.mode&&(r.isOnBatch=!1,r.updateGridEditMode("Normal")):r.enableToolbarItems("edit"),t.isNullOrUndefined(i)||i.resolve(e)}),this.doubleClickTarget&&(this.doubleClickTarget.classList.contains("e-treegridexpand")||this.doubleClickTarget.classList.contains("e-treegridcollapse")))return e.cancel=!0,void(this.doubleClickTarget=null);"Cell"===this.parent.editSettings.mode&&("tab"===this.keyPress||"shiftTab"===this.keyPress?this.keyPress=null:"enter"===this.keyPress&&(e.cancel=!0,this.keyPress=null))},e.prototype.enableToolbarItems=function(e){if(!t.isNullOrUndefined(this.parent.grid.toolbarModule)){var r=this.parent.element.id+"_gridcontrol_";this.parent.grid.toolbarModule.enableItems([r+"add",r+"edit",r+"delete"],"save"===e),this.parent.grid.toolbarModule.enableItems([r+"update",r+"cancel"],"edit"===e)}},e.prototype.batchCancel=function(e){if("Cell"===this.parent.editSettings.mode){var r=t.getValue("editModule.cellDetails",this.parent.grid.editModule),i=r.rowIndex;this.parent.renderModule.cellRender({data:r.rowData,cell:this.parent.getRows()[i].cells[this.parent.treeColumnIndex],column:this.parent.grid.getColumns()[this.parent.treeColumnIndex]}),this.updateGridEditMode("Normal"),this.isOnBatch=!1}"Batch"===this.parent.editSettings.mode&&this.parent.notify("batchCancelAction",{})},e.prototype.cellSave=function(e){if("Cell"===this.parent.editSettings.mode&&this.parent.element.querySelector("form")){e.cancel=!0;t.setValue("isEdit",!1,this.parent.grid),t.setValue("isEditCollapse",!0,this.parent),e.rowData[e.columnName]=e.value;var r=void 0;r=t.isNullOrUndefined(e.cell)?this.parent.grid.editModule.editModule.form.parentElement.parentNode:e.cell.parentNode;var i,n=this.parent.getPrimaryKeyFieldNames();t.isNullOrUndefined(r)?this.parent.grid.getCurrentViewRecords().filter(function(t,r){t[n[0]]!==e.rowData[n[0]]||(i=r)}):i=this.parent.getRows().indexOf(r);var o={};if(t.extend(o,e),o.cancel=!1,o.type="save",r=this.parent.grid.getRows()[r.rowIndex],this.parent.trigger(A,o),o.cancel)this.parent.grid.isEdit=!0;else{this.blazorTemplates(e),this.updateCell(e,i),this.parent.grid.aggregateModule&&this.parent.grid.aggregateModule.refresh(e.rowData),this.parent.grid.editModule.formObj.destroy(),"tab"!==this.keyPress&&"shiftTab"!==this.keyPress&&(this.updateGridEditMode("Normal"),this.isOnBatch=!1),this.enableToolbarItems("save"),t.removeClass([r],["e-editedrow","e-batchrow"]),t.removeClass(r.querySelectorAll(".e-rowcell"),["e-editedbatchcell","e-updatedtd"]),this.parent.grid.focusModule.restoreFocus(),v({value:e.rowData,action:"edit"},this.parent,this.isSelfReference,this.addRowIndex,this.selectedIndex,e.columnName);var a={type:"save",column:this.parent.getColumnByField(e.columnName),data:e.rowData,previousData:e.previousValue,row:r,target:e.cell};this.parent.trigger(N,a)}}},e.prototype.blazorTemplates=function(e){if(t.isBlazor()&&this.parent.isServerRendered)for(var r=this.parent.grid.getColumns(),i=this.parent.grid.columnModel,n=0;n<r.length;n++){if(i[n].template){var o=this.parent.grid.element.id+r[n].uid;i[n].getColumnTemplate()(t.extend({index:[n]},e.rowData),this.parent.grid,"template",o,this.parent.grid.isStringTemplate,null)}r[n].editTemplate&&t.updateBlazorTemplate(this.parent.grid.element.id+r[n].uid+"editTemplate","EditTemplate",r[n]),r[n].template&&t.updateBlazorTemplate(this.parent.grid.element.id+r[n].uid,"Template",r[n],!1)}},e.prototype.updateCell=function(e,t){this.parent.grid.editModule.updateRow(t,e.rowData),this.parent.grid.getRowsObject()[t].data=e.rowData},e.prototype.crudAction=function(e,r){v(e,this.parent,this.isSelfReference,this.addRowIndex,this.selectedIndex,r,this.addRowRecord),this.parent.parentData=[];for(var i=this.parent.grid.dataSource instanceof n.DataManager?this.parent.grid.dataSource.dataSource.json:this.parent.grid.dataSource,o=0;o<i.length;o++){i[o].index=o;var a=this.parent.grid.getPrimaryKeyFieldNames()[0];e.value[a]===i[o][a]&&"add"===e.action&&(i[o].level=this.internalProperties.level,i[o].taskData=this.internalProperties.taskData,i[o].uniqueID=this.internalProperties.uniqueID,t.isNullOrUndefined(this.internalProperties.parentItem)||(i[o].parentItem=this.internalProperties.parentItem,i[o].parentUniqueID=this.internalProperties.parentUniqueID),i[o].childRecords=this.internalProperties.childRecords),t.setValue("uniqueIDCollection."+i[o].uniqueID+".index",o,this.parent),i[o].level||this.parent.parentData.push(i[o])}"add"===e.action&&null!=this.previousNewRowPosition&&(this.parent.setProperties({editSettings:{newRowPosition:this.previousNewRowPosition}},!0),this.previousNewRowPosition=null)},e.prototype.updateIndex=function(e,r,i){for(var n=0;n<this.parent.getDataRows().length;n++){var o=i[n],a=t.getValue("uniqueIDCollection."+o.uniqueID+".index",this.parent);if(o.index=a,!t.isNullOrUndefined(o.parentItem)){var s=t.getValue("uniqueIDCollection."+o.parentItem.uniqueID+".index",this.parent);o.parentItem.index=s}}for(var d=-1,l=0;l<this.parent.getRows().length;l++){r[l].classList.contains("e-detailrow")||d++;var p=i[d],h=(a=p.index,p.level),c=r[l];t.isNullOrUndefined(p.parentItem)||(a=t.getValue("uniqueIDCollection."+p.parentItem.uniqueID+".index",this.parent));for(var u=c.cells[this.parent.treeColumnIndex],g=0;g<u.classList.length;g++){var f=u.classList[g],y=f.match(/e-gridrowindex/i),v=f.match(/e-griddetailrowindex/i);null!=y&&t.removeClass([u],f),null!=v&&t.removeClass([u],f)}r[l].classList.contains("e-detailrow")?t.addClass([u],"e-griddetailrowindex"+a+"level"+h):t.addClass([u],"e-gridrowindex"+a+"level"+h)}},e.prototype.beginAdd=function(e){var r,i=this.addRowIndex,n=this.parent.grid.getCurrentViewRecords();"Batch"===this.parent.editSettings.mode&&(i=this.batchEditModule.getAddRowIndex(),this.selectedIndex=this.batchEditModule.getSelectedIndex(),(this.parent.getBatchChanges()[this.addedRecords].length>1||this.parent.getBatchChanges()[this.deletedRecords].length)&&(n=this.batchEditModule.getBatchRecords()));var o,a=this.parent.grid.getDataRows();if((this.parent.frozenRows||this.parent.getFrozenColumns())&&(o=this.parent.getMovableDataRows()),"Dialog"!==this.parent.editSettings.mode){if("Above"===this.parent.editSettings.newRowPosition)r="before";else if(("Below"===this.parent.editSettings.newRowPosition||"Child"===this.parent.editSettings.newRowPosition)&&this.selectedIndex>-1&&(r="after",n[i].expanded&&!t.isNullOrUndefined(n[i])))if("Batch"===this.parent.editSettings.mode&&(this.parent.getBatchChanges()[this.addedRecords].length>1||this.parent.getBatchChanges()[this.deletedRecords].length)){if(i+=c(n[i]).length,"Child"!==this.parent.editSettings.newRowPosition){i+=this.batchEditModule.getBatchChildCount()}}else i+=c(n[i]).length;if(this.selectedIndex>-1&&(i||"Child"===this.parent.editSettings.newRowPosition||"Below"===this.parent.editSettings.newRowPosition)){i>=a.length&&(i=a.length-2);var s=document.activeElement;if(a[i+1][r](a[0]),t.setValue("batchIndex",i+1,this.batchEditModule),(this.parent.frozenRows||this.parent.getFrozenColumns())&&(o[i+1][r](o[0]),t.setValue("batchIndex",i+1,this.batchEditModule)),"Row"===this.parent.editSettings.mode||"Cell"===this.parent.editSettings.mode){for(var d=this.parent.grid.getContentTable().querySelectorAll(".e-griderror"),l=0;l<d.length;l++)d[l].remove();t.setValue("errorRules",[],this.parent.grid.editModule.formObj)}s.focus()}}},e.prototype.beginEdit=function(e){if("refresh"===e.requestType&&this.isOnBatch)e.cancel=!0;else if("Cell"!==this.parent.editSettings.mode||"beginEdit"!==e.requestType){if(this.doubleClickTarget&&(this.doubleClickTarget.classList.contains("e-treegridexpand")||this.doubleClickTarget.classList.contains("e-treegridcollapse")||this.doubleClickTarget.classList.contains("e-frame")))return e.cancel=!0,void(this.doubleClickTarget=null);if("delete"===e.requestType)for(var t=e.data,r=0;r<t.length;r++){this.deleteUniqueID(t[r].uniqueID);for(var i=c(t[r]),n=0;n<i.length;n++)this.deleteUniqueID(i[n].uniqueID);e.data=t.concat(i)}"add"===e.requestType&&(this.selectedIndex=this.parent.grid.selectedRowIndex,this.addRowIndex=this.parent.grid.selectedRowIndex>-1?this.parent.grid.selectedRowIndex:0,this.addRowRecord=this.parent.getSelectedRecords()[0]),e=this.beginAddEdit(e)}else e.cancel=!0},e.prototype.savePreviousRowPosition=function(e){null===this.previousNewRowPosition&&(this.previousNewRowPosition=this.parent.editSettings.newRowPosition)},e.prototype.beginAddEdit=function(e){var i=e.data;if("add"===e.action){var o=this.parent.grid.getPrimaryKeyFieldNames()[0],a=null;i.taskData=t.isNullOrUndefined(i.taskData)?t.extend({},e.data):i.taskData;var s=this.parent.grid.getCurrentViewRecords(),d=this.addRowIndex;i.uniqueID=r.getUid(this.parent.element.id+"_data_"),t.setValue("uniqueIDCollection."+i.uniqueID,i,this.parent);var l=void 0,p=void 0,h=void 0,u=void 0,g=void 0;if(s.length&&(l=s[this.addRowIndex].level,s[this.addRowIndex].index,p=s[this.addRowIndex][this.parent.idMapping],g=s[this.addRowIndex][this.parent.parentIdMapping],s[this.addRowIndex].parentItem&&(h=s[this.addRowIndex].parentItem.uniqueID),u=s[this.addRowIndex].parentItem),"Top"!==this.parent.editSettings.newRowPosition&&s.length){if("Above"===this.parent.editSettings.newRowPosition)a="before",d=s[this.addRowIndex].index;else if("Below"===this.parent.editSettings.newRowPosition){a="after";var f=c(s[this.addRowIndex]).length,v=s[this.addRowIndex].index;d=f>0?v+f:v}else if("Child"===this.parent.editSettings.newRowPosition){a="after",this.selectedIndex>-1&&(i.parentItem=t.extend({},s[this.addRowIndex]),i.parentUniqueID=i.parentItem.uniqueID,delete i.parentItem.childRecords,delete i.parentItem[this.parent.childMapping]);var m=c(s[this.addRowIndex]).length,R=s[this.addRowIndex].index;d=m>0?R+m:R,i.level=l+1,this.isSelfReference&&(i.taskData[this.parent.parentIdMapping]=i[this.parent.parentIdMapping]=p,t.isNullOrUndefined(i.parentItem)||w(o,i.parentItem,"add",this.parent,this.isSelfReference,i))}if("Above"!==this.parent.editSettings.newRowPosition&&"Below"!==this.parent.editSettings.newRowPosition||(this.selectedIndex>-1&&l&&(i.parentUniqueID=h,i.parentItem=t.extend({},u),delete i.parentItem.childRecords,delete i.parentItem[this.parent.childMapping]),i.level=l,this.isSelfReference&&(i.taskData[this.parent.parentIdMapping]=i[this.parent.parentIdMapping]=g,t.isNullOrUndefined(i.parentItem)||w(o,i.parentItem,"add",this.parent,this.isSelfReference,i))),null!=a&&this.selectedIndex>-1&&(e.index="before"===a?d:d+1),"Bottom"===this.parent.editSettings.newRowPosition){var C=this.parent.grid.dataSource instanceof n.DataManager?this.parent.grid.dataSource.dataSource.json:this.parent.grid.dataSource;e.index=C.length}}t.isNullOrUndefined(i.level)&&(i.level=l),i.hasChildRecords=!1,i.childRecords=[],i.index=0}if("add"===e.action&&(this.internalProperties={level:i.level,parentItem:i.parentItem,uniqueID:i.uniqueID,taskData:i.taskData,parentUniqueID:t.isNullOrUndefined(i.parentItem)?void 0:i.parentItem.uniqueID,childRecords:i.childRecords}),"delete"===e.requestType)for(var x=e.data,S=0;S<x.length;S++)if(x[S].parentItem){u=y(this.parent,x[S].parentItem.uniqueID);if(!t.isNullOrUndefined(u)&&u.hasChildRecords){var b=u.childRecords.indexOf(x[S]);u.childRecords.splice(b,1)}}return e},e.prototype.addRecord=function(e,t,r){this.previousNewRowPosition=this.parent.editSettings.newRowPosition,e?(t>-1?(this.selectedIndex=t,this.addRowIndex=t):(this.selectedIndex=this.parent.selectedRowIndex,this.addRowIndex=this.parent.selectedRowIndex),r&&this.parent.setProperties({editSettings:{newRowPosition:r}},!0),this.parent.grid.editModule.addRecord(e,t)):this.parent.grid.editModule.addRecord(e,t)},e.prototype.editFormValidate=function(){return this.parent.grid.editModule.editFormValidate()},e.prototype.destroyForm=function(){this.parent.grid.editModule.destroyForm()},e.prototype.contentready=function(e){t.isNullOrUndefined(e.args.requestType)||"delete"!==e.args.requestType.toString()&&"save"!==e.args.requestType.toString()&&("Batch"!==this.parent.editSettings.mode||"batchsave"!==e.args.requestType.toString())||(this.updateIndex(this.parent.grid.dataSource,this.parent.getRows(),this.parent.getCurrentViewRecords()),(this.parent.frozenRows||this.parent.getFrozenColumns())&&this.updateIndex(this.parent.grid.dataSource,this.parent.getMovableDataRows(),this.parent.getCurrentViewRecords()))},e.prototype.editCell=function(e,t){"Cell"!==this.parent.editSettings.mode&&"Batch"!==this.parent.editSettings.mode||("Batch"!==this.parent.editSettings.mode&&(this.isOnBatch=!0,this.updateGridEditMode("Batch")),this.parent.grid.editModule.editCell(e,t))},e}(),yt=function(){function e(e){r.Grid.Inject(r.CommandColumn),this.parent=e}return e.prototype.getModuleName=function(){return"commandColumn"},e.prototype.destroy=function(){},e}(),vt=function(){function e(e){r.Grid.Inject(r.DetailRow),this.parent=e,this.addEventListener()}return e.prototype.getModuleName=function(){return"detailRow"},e.prototype.addEventListener=function(){this.parent.on("dataBoundArg",this.dataBoundArg,this),this.parent.on("detaildataBound",this.detaildataBound,this),this.parent.grid.on("detail-indentcell-info",this.setIndentVisibility,this),this.parent.on("childRowExpand",this.childRowExpand,this),this.parent.on("rowExpandCollapse",this.rowExpandCollapse,this),this.parent.on("actioncomplete",this.actioncomplete,this)},e.prototype.removeEventListener=function(){this.parent.isDestroyed||(this.parent.off("dataBoundArg",this.dataBoundArg),this.parent.off("detaildataBound",this.detaildataBound),this.parent.off("childRowExpand",this.childRowExpand),this.parent.off("rowExpandCollapse",this.rowExpandCollapse),this.parent.off("actioncomplete",this.actioncomplete),this.parent.grid.off("detail-indentcell-info",this.setIndentVisibility))},e.prototype.setIndentVisibility=function(e){e.visible=!1},e.prototype.dataBoundArg=function(){for(var e=this.parent.getRows().filter(function(e){return!e.classList.contains("e-detailrow")}),i=0;i<e.length;i++){var n=e[i].getElementsByClassName("e-detailrowcollapse"),o=this.parent.grid.getRowObjectFromUID(e[i].getAttribute("data-Uid")),a=r.getObject("parentItem",this.parent.grid.getCurrentViewRecords()[i]);(t.isNullOrUndefined(a)||!t.isNullOrUndefined(a)&&h(this.parent,o.data,this.parent.grid.getCurrentViewRecords()))&&this.parent.grid.detailRowModule.expand(n[0])}},e.prototype.childRowExpand=function(e){var r=e.row.getElementsByClassName("e-detailrowcollapse");t.isNullOrUndefined(r[0])||this.parent.grid.detailRowModule.expand(r[0])},e.prototype.rowExpandCollapse=function(e){if(!a(this.parent))for(var t=0;t<e.detailrows.length;t++)e.detailrows[t].style.display=e.action},e.prototype.detaildataBound=function(e){if(!t.isBlazor()||!this.parent.isServerRendered){var r=e.data,i=e.detailElement.parentElement.previousSibling,n="e-gridrowindex"+(t.isNullOrUndefined(r.parentItem)?r.index:r.parentItem.index)+"level"+r.level,o=i.querySelector("."+n).classList,a=[].slice.call(o).filter(function(e){return e===n}),s=a[0].length,d="e-griddetail"+a.toString().slice(6,s);t.addClass([e.detailElement.parentElement],d)}},e.prototype.actioncomplete=function(e){if("beginEdit"===e.requestType||"add"===e.requestType){var t=e.row.querySelectorAll(".e-editcell")[0].getAttribute("colSpan"),i=(parseInt(t,10)-1).toString();e.row.querySelectorAll(".e-editcell")[0].setAttribute("colSpan",i)}for(var n=this.parent.grid.contentModule.getRows(),o=0;o<n.length;o++)n[o].cells[0].visible=!1;r.getObject("focusModule",this.parent.grid).refreshMatrix(!0)({rows:this.parent.grid.contentModule.getRows()})},e.prototype.destroy=function(){this.removeEventListener()},e}(),mt=function(){var e=function(t,r){return(e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)t.hasOwnProperty(r)&&(e[r]=t[r])})(t,r)};return function(t,r){function i(){this.constructor=t}e(t,r),t.prototype=null===r?Object.create(r):(i.prototype=r.prototype,new i)}}(),wt=function(e){function r(t,r){var i=e.call(this,t,r)||this;return i.isExpandCollapse=!1,i.translateY=0,i.maxiPage=0,i.startIndex=-1,i.endIndex=-1,i.preTranslate=0,i.isRemoteExpand=!1,i.addEventListener(),i}return mt(r,e),r.prototype.getModelGenerator=function(){return new nt(this.parent)},r.prototype.getRowByIndex=function(e){return this.parent.getDataRows().filter(function(t){return parseInt(t.getAttribute("aria-rowindex"),0)===e})[0]},r.prototype.addEventListener=function(){this.parent.on(he,this.virtualOtherAction,this),this.parent.on(ue,this.indexModifier,this)},r.prototype.virtualOtherAction=function(e){e.setTop?(this.translateY=0,this.startIndex=0,this.endIndex=this.parent.pageSettings.pageSize-1):e.isExpandCollapse&&(this.isExpandCollapse=!0)},r.prototype.indexModifier=function(e){e.startIndex=this.startIndex,e.endIndex=this.endIndex},r.prototype.eventListener=function(t){var r=this;this.parent.dataSource instanceof n.DataManager&&void 0!==this.parent.dataSource.dataSource.url&&""!==this.parent.dataSource.dataSource.url?e.prototype.eventListener.call(this,"on"):(this.parent[t]("data-ready",this.onDataReady,this),this.fn=function(){r.observers.observes(function(e){return r.scrollListeners(e)}),r.parent.off("content-ready",r.fn)},this.parent.on("content-ready",this.fn,this))},r.prototype.onDataReady=function(r){e.prototype.onDataReady.call(this,r),this.parent.dataSource instanceof n.DataManager&&void 0!==this.parent.dataSource.dataSource.url&&""!==this.parent.dataSource.dataSource.url||(t.isNullOrUndefined(r.count)||(this.totalRecords=r.count,t.getValue("virtualEle",this).setVirtualHeight(this.parent.getRowHeight()*r.count,"100%")),t.isNullOrUndefined(r.requestType)||"collapseAll"!==r.requestType.toString()||(this.contents.scrollTop=0))},r.prototype.renderTable=function(){e.prototype.renderTable.call(this),this.parent.dataSource instanceof n.DataManager&&void 0!==this.parent.dataSource.dataSource.url&&""!==this.parent.dataSource.dataSource.url||(t.getValue("observer",this).options.debounceEvent=!1,this.observers=new Rt(this.parent,t.getValue("observer",this).element,t.getValue("observer",this).options),this.contents=this.getPanel().firstChild)},r.prototype.getTranslateY=function(t,r,i,o){return this.parent.dataSource instanceof n.DataManager&&void 0!==this.parent.dataSource.dataSource.url&&""!==this.parent.dataSource.dataSource.url?this.isRemoteExpand?(this.isRemoteExpand=!1,this.preTranslate):(this.preTranslate=e.prototype.getTranslateY.call(this,t,r,i,o),e.prototype.getTranslateY.call(this,t,r,i,o)):e.prototype.getTranslateY.call(this,t,r,i,o)},r.prototype.scrollListeners=function(e){var r=e.sentinel,i=this.parent.getContent().querySelector(".e-content"),n=10*this.parent.getRowHeight(),o=e.offset.top-this.translateY<0,a=e.offset.top-this.translateY>n;if(o){var s=+(this.parent.height.toString().indexOf("%")<0?this.parent.height:this.parent.element.getBoundingClientRect().height),d=~~(i.scrollTop/this.parent.getRowHeight())+Math.ceil(s/this.parent.getRowHeight())-this.parent.getRows().length;if(d=d>0?d:0,this.startIndex=d,this.endIndex=d+this.parent.getRows().length,this.endIndex>this.totalRecords){var l=this.totalRecords-1,p=this.endIndex%l;this.endIndex=l,this.startIndex=this.startIndex-p}var h=Math.ceil(e.offset.top/this.parent.getRowHeight());h%=this.parent.pageSettings.pageSize;var c=0;if(!t.isNullOrUndefined(this.parent.getRows()[h])){c=+this.parent.getContent().querySelectorAll(".e-content tr")[h].querySelector("td").getAttribute("index")}if(0===c)this.translateY=e.offset.top;else{var u=this.parent.getRowHeight();this.translateY=e.offset.top-10*u>0?e.offset.top-10*u+10:0}}else if(a){var g=~~(i.scrollTop/this.parent.getRowHeight()),f=g+this.parent.getRows().length;f>this.totalRecords&&(f=g+(this.totalRecords-g)),this.startIndex=f-this.parent.getRows().length,this.endIndex=f,this.translateY=this.getTranslateY(e.offset.top,i.getBoundingClientRect().height)}if(a&&e.offset.top<this.parent.getRowHeight()*this.totalRecords||o){var y=t.getValue("getInfoFromView",this).apply(this,[e.direction,r,e.offset]);this.parent.notify(y.event,{requestType:"virtualscroll",focusElement:e.focusElement})}},r.prototype.appendContent=function(r,i,o){if(this.parent.dataSource instanceof n.DataManager&&void 0!==this.parent.dataSource.dataSource.url&&""!==this.parent.dataSource.dataSource.url)t.getValue("isExpandCollapse",o)&&(this.isRemoteExpand=!0),e.prototype.appendContent.call(this,r,i,o);else{var a=o.virtualInfo.sentinelInfo&&"Y"===o.virtualInfo.sentinelInfo.axis&&t.getValue("currentInfo",this).page&&t.getValue("currentInfo",this).page!==o.virtualInfo.page?t.getValue("currentInfo",this):o.virtualInfo,s=a.columnIndexes[0]-1,d=this.getColumnOffset(s);(r=this.parent.createElement("tbody")).appendChild(i);this.getTable().querySelector("tbody").replaceWith(r),this.isExpandCollapse&&0!==this.translateY?this.isExpandCollapse=!1:t.getValue("virtualEle",this).adjustTable(d,this.translateY),t.setValue("prevInfo",a,this)}},r.prototype.removeEventListener=function(){this.parent.isDestroyed||(this.parent.off("data-ready",this.onDataReady),this.parent.off("content-ready",this.fn),this.parent.off(he,this.virtualOtherAction),this.parent.off(ue,this.indexModifier))},r}(r.VirtualContentRenderer),Rt=function(e){function r(){var t=null!==e&&e.apply(this,arguments)||this;return t.isWheeling=!1,t.newPos=0,t.lastPos=0,t.timer=0,t}return mt(r,e),r.prototype.observes=function(e){t.setValue("containerRect",t.getValue("options",this).container.getBoundingClientRect(),this),t.EventHandler.add(t.getValue("options",this).container,"scroll",this.virtualScrollHandlers(e),this)},r.prototype.clear=function(){this.lastPos=null},r.prototype.virtualScrollHandlers=function(e){var r=this,i=0,n=0;return function(o){var a=o.target.scrollTop,s=o.target.scrollLeft,d=i<a?"down":"up";d=n===s?d:n<s?"right":"left",i=a,n=s;var l=t.getValue("sentinelInfo",r)[d],p=0;r.newPos=a,null!=r.lastPos&&(p=r.newPos-r.lastPos),r.lastPos=r.newPos,r.timer&&clearTimeout(r.timer),r.timer=setTimeout(r.clear,0),(p>100||p<-100)&&o&&o.preventDefault&&(o.returnValue=!1,o.preventDefault()),e({direction:d,isWheel:r.isWheeling,sentinel:l,offset:{top:a,left:s},focusElement:document.activeElement})}},r}(r.InterSectionObserver),Ct=function(){var e=function(t,r){return(e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)t.hasOwnProperty(r)&&(e[r]=t[r])})(t,r)};return function(t,r){function i(){this.constructor=t}e(t,r),t.prototype=null===r?Object.create(r):(i.prototype=r.prototype,new i)}}(),xt=function(){function e(e){this.prevstartIndex=-1,this.prevendIndex=-1,this.parent=e;for(var t=r.Grid.prototype.injectedModules,i=0;i<t.length;i++)if(t[i]===r.VirtualScroll){t.splice(i,1);break}r.Grid.Inject(St),this.addEventListener()}return e.prototype.returnVisualData=function(e){e.data=this.visualData},e.prototype.getModuleName=function(){return"virtualScroll"},e.prototype.addEventListener=function(){this.parent.on(G,this.collapseExpandVirtualchilds,this),this.parent.on(H,this.virtualPageAction,this)},e.prototype.removeEventListener=function(){this.parent.isDestroyed||(this.parent.off(G,this.collapseExpandVirtualchilds),this.parent.off(H,this.virtualPageAction))},e.prototype.collapseExpandVirtualchilds=function(e){this.parent.grid.notify(he,{isExpandCollapse:!0}),this.expandCollapseRec=e.record,e.record.expanded="collapse"!==e.action;var r={result:this.parent.flatData,row:e.row,action:e.action,record:e.record,count:this.parent.flatData.length},i=t.getValue("isCollapseAll",this.parent)?"collapseAll":"refresh";t.getValue("grid.renderModule",this.parent).dataManagerSuccess(r,{requestType:i})},e.prototype.virtualPageAction=function(e){var r=this,i=new n.DataManager(e.result),o=new n.Predicate("expanded","notequal",null).or("expanded","notequal",void 0),a=i.executeLocal((new n.Query).where(o)),s=a.filter(function(e){return h(r.parent,e,a)});this.visualData=s,this.parent.grid.notify(ce,{data:s});var d={startIndex:-1,endIndex:-1};this.parent.grid.notify(ue,d);var l=d.startIndex,p=d.endIndex;if(e.count=s.length,-1===l&&-1===p){var c=new n.Query,u=this.parent.grid.pageSettings.pageSize,g=u*(this.parent.grid.pageSettings.currentPage-1);c=c.skip(g).take(u),i.dataSource.json=s,e.result=i.executeLocal(c)}else{if("filtering"===e.actionArgs.requestType&&(l=0,p=this.parent.grid.pageSettings.pageSize-1,this.parent.grid.notify(he,{setTop:!0})),!t.isNullOrUndefined(this.expandCollapseRec)){var f=this.parent.getRows(),y=s.indexOf(this.expandCollapseRec);s.slice(y,y+f.length).length<f.length&&y>=0?(l=y=(y=s.length-f.length)>0?y:0,p=s.length):t.getValue("isCollapseAll",this.parent)&&(l=0,p=this.parent.grid.pageSettings.pageSize-1,this.parent.grid.notify(he,{setTop:!0})),this.expandCollapseRec=null}e.result=s.slice(l,p),this.prevstartIndex=l,this.prevendIndex=p}this.parent.notify("updateAction",e)},e.prototype.destroy=function(){this.removeEventListener()},e}(),St=function(e){function i(r,i){var n=e.call(this,r,i)||this;return t.getValue("parent",n).off("initial-load",t.getValue("instantiateRenderer",n),n),t.getValue("parent",n).on("initial-load",n.instantiateRenderers,n),n}return Ct(i,e),i.prototype.instantiateRenderers=function(){t.getValue("parent",this).log(["limitation","virtual_height"],"virtualization");var e=t.getValue("locator",this).getService("rendererFactory");t.getValue("addRenderer",e).apply(e,[r.RenderType.Content,new wt(t.getValue("parent",this),t.getValue("locator",this))]),this.ensurePageSize()},i.prototype.ensurePageSize=function(){var e=t.getValue("parent",this),r=e.getRowHeight();t.isNullOrUndefined(e.height)||"string"!=typeof e.height||-1===e.height.indexOf("%")||(e.element.style.height=e.height);var i=2*~~((e.height.toString().indexOf("%")<0?e.height:e.element.getBoundingClientRect().height)/r),n=e.pageSettings.pageSize;e.setProperties({pageSettings:{pageSize:n<i?i:n}},!0)},i}(r.VirtualScroll),bt=function(){function e(e){r.Grid.Inject(r.Freeze),this.parent=e,this.addEventListener()}return e.prototype.addEventListener=function(){this.parent.on("rowExpandCollapse",this.rowExpandCollapse,this),this.parent.on("dataBoundArg",this.dataBoundArg,this),this.parent.grid.on("dblclick",this.dblClickHandler,this)},e.prototype.removeEventListener=function(){this.parent.isDestroyed||(this.parent.off("rowExpandCollapse",this.rowExpandCollapse),this.parent.off("dataBoundArg",this.dataBoundArg),this.parent.grid.off("dblclick",this.dblClickHandler))},e.prototype.rowExpandCollapse=function(e){var t,r=this.parent.getMovableDataRows(),i=this.parent.getRows();t=e.detailrows.length?e.detailrows:r.filter(function(t){return t.querySelector(".e-gridrowindex"+e.record.index+"level"+(e.record.level+1))});for(var n=0;n<t.length;n++){var o=this.parent.grid.getRowObjectFromUID(t[n].getAttribute("data-Uid")).data;t[n].style.display=e.action;var a="none"===e.action?".e-treecolumn-container .e-treegridcollapse":".e-treecolumn-container .e-treegridexpand";if(i[t[n].rowIndex].querySelector(a)){for(var s=[],d=0;d<r.length;d++)r[d].querySelector(".e-gridrowindex"+o.index+"level"+(o.level+1))&&s.push(r[d]);s.length&&this.rowExpandCollapse({detailrows:s,action:e.action})}}},e.prototype.dblClickHandler=function(e){r.parentsUntil(e.target,"e-rowcell")&&this.parent.grid.editSettings.allowEditOnDblClick&&"Cell"!==this.parent.editSettings.mode&&this.parent.grid.editModule.startEdit(r.parentsUntil(e.target,"e-row"))},e.prototype.dataBoundArg=function(e){this.parent.getColumns().filter(function(e){return e.showCheckbox}).length&&this.parent.freezeModule&&this.parent.initialRender&&t.addClass([this.parent.element.getElementsByClassName("e-grid")[0]],"e-checkselection")},e.prototype.destroy=function(){this.removeEventListener()},e.prototype.getModuleName=function(){return"freeze"},e}();e.TreeGrid=Je,e.load="load",e.rowDataBound=P,e.dataBound="dataBound",e.queryCellInfo=O,e.beforeDataBound=E,e.actionBegin=A,e.dataStateChange=k,e.actionComplete=N,e.rowSelecting="rowSelecting",e.rowSelected=q,e.checkboxChange=B,e.rowDeselected=U,e.toolbarClick=T,e.beforeExcelExport=L,e.beforePdfExport=V,e.resizeStop=j,e.expanded=F,e.expanding="expanding",e.collapsed=_,e.collapsing="collapsing",e.remoteExpand=z,e.localPagedExpandCollapse=G,e.pagingActions=H,e.printGridInit=Q,e.contextMenuOpen=W,e.contextMenuClick=K,e.beforeCopy="beforeCopy",e.beforePaste="beforePaste",e.savePreviousRowPosition="savePreviousRowPosition",e.crudAction=Y,e.beginEdit=J,e.beginAdd=X,e.recordDoubleClick=Z,e.cellSave=$,e.cellSaved=ee,e.cellEdit=te,e.batchDelete=re,e.batchCancel=ie,e.batchAdd=ne,e.beforeBatchDelete=oe,e.beforeBatchAdd=ae,e.beforeBatchSave=se,e.batchSave=de,e.keyPressed=le,e.updateData="update-data",e.doubleTap=pe,e.virtualColumnIndex="virtualColumnIndex",e.virtualActionArgs=he,e.dataListener=ce,e.indexModifier=ue,e.beforeStartEdit=ge,e.beforeBatchCancel=fe,e.batchEditFormRendered="batcheditform-rendered",e.detailDataBound=ye,e.rowDrag="rowDrag",e.rowDragStartHelper=ve,e.rowDrop="rowDrop",e.rowDragStart="rowDragStart",e.rowsAdd=me,e.rowsRemove=we,e.rowdraging=Re,e.rowDropped=Ce,e.DataManipulation=Ne,e.Reorder=Xe,e.Resize=Ze,e.RowDD=$e,e.Column=R,e.EditSettings=ze,e.Predicate=S,e.FilterSettings=b,e.PageSettings=Ue,e.SearchSettings=Pe,e.SelectionSettings=Ae,e.AggregateColumn=Ve,e.AggregateRow=je,e.SortDescriptor=Qe,e.SortSettings=We,e.RowDropSettings=rt,e.Render=ke,e.TreeVirtualRowModelGenerator=nt,e.isRemoteData=a,e.isCountRequired=s,e.isCheckboxcolumn=d,e.isFilterChildHierarchy=l,e.findParentRecords=p,e.getExpandStatus=h,e.findChildrenRecords=c,e.isOffline=u,e.extendArray=g,e.getPlainData=f,e.getParentData=y,e.Filter=ot,e.ExcelExport=at,e.PdfExport=st,e.Page=dt,e.Toolbar=lt,e.Aggregate=pt,e.Sort=ht,e.TreeClipboard=Se,e.ColumnMenu=ct,e.ContextMenu=ut,e.Edit=ft,e.CommandColumn=yt,e.Selection=be,e.DetailRow=vt,e.VirtualScroll=xt,e.TreeVirtual=St,e.Freeze=bt,Object.defineProperty(e,"__esModule",{value:!0})}); //# sourceMappingURL=ej2-treegrid.umd.min.js.map
68,718
206,104
0.768974
c5df35e39e969ed4ba01ccaeb8ada4b46ff1deec
16,222
js
JavaScript
app/components/Dashboards/CampoDashboard.js
dariovillalta/INTEGEVAL
8f60b52f790aa28bd42ac0f574f2507880f09ee4
[ "CC0-1.0" ]
null
null
null
app/components/Dashboards/CampoDashboard.js
dariovillalta/INTEGEVAL
8f60b52f790aa28bd42ac0f574f2507880f09ee4
[ "CC0-1.0" ]
6
2019-11-26T06:42:33.000Z
2022-03-25T18:58:33.000Z
app/components/Dashboards/CampoDashboard.js
dariovillalta/INTEGEVAL
8f60b52f790aa28bd42ac0f574f2507880f09ee4
[ "CC0-1.0" ]
null
null
null
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports["default"] = void 0; var _react = _interopRequireDefault(require("react")); var _ListasSeleVariable = _interopRequireDefault(require("../ListasSeleVariable.js")); var _Accordion = _interopRequireDefault(require("../Accordion/Accordion.js")); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; } function _typeof(obj) { if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); } function _toConsumableArray(arr) { return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _nonIterableSpread(); } function _nonIterableSpread() { throw new TypeError("Invalid attempt to spread non-iterable instance"); } function _iterableToArray(iter) { if (Symbol.iterator in Object(iter) || Object.prototype.toString.call(iter) === "[object Arguments]") return Array.from(iter); } function _arrayWithoutHoles(arr) { if (Array.isArray(arr)) { for (var i = 0, arr2 = new Array(arr.length); i < arr.length; i++) { arr2[i] = arr[i]; } return arr2; } } function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; } function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); } function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); } function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; } function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); } function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); } var CampoDashboard = /*#__PURE__*/ function (_React$Component) { _inherits(CampoDashboard, _React$Component); function CampoDashboard(props) { var _this; _classCallCheck(this, CampoDashboard); _this = _possibleConstructorReturn(this, _getPrototypeOf(CampoDashboard).call(this, props)); _this.state = { indicesVarSeleccionadosVariables: [], indicesVarSeleccionadosIndicadores: [], indicesVarSeleccionadosRiesgos: [] }; _this.checkFieldType = _this.checkFieldType.bind(_assertThisInitialized(_this)); _this.retornoSeleccionVariableVariables = _this.retornoSeleccionVariableVariables.bind(_assertThisInitialized(_this)); _this.retornoSeleccionVariableIndicadores = _this.retornoSeleccionVariableIndicadores.bind(_assertThisInitialized(_this)); _this.retornoSeleccionVariableRiesgos = _this.retornoSeleccionVariableRiesgos.bind(_assertThisInitialized(_this)); return _this; } _createClass(CampoDashboard, [{ key: "checkFieldType", value: function checkFieldType(campo) { if (campo[0].tipo.indexOf("int") == 0 || campo[0].tipo.indexOf("decimal") == 0 || campo[0].tipo.indexOf("numero") == 0) { this.props.esNumero(); } else if (campo[0].tipo.indexOf("bit") == 0) { this.props.esBoolean(); } else if (campo[0].tipo.indexOf("date") == 0) { this.props.esFecha(); } else if (campo[0].tipo.indexOf("varchar") == 0) { this.props.esTexto(); } } }, { key: "componentDidMount", value: function componentDidMount() { if (this.props.variables.length > 0) { var indicesVarSeleccionadosVariables = []; for (var i = 0; i < this.props.variables.length; i++) { if (this.props.variables[i] != undefined) { indicesVarSeleccionadosVariables[i] = []; } } ; this.setState({ indicesVarSeleccionadosVariables: indicesVarSeleccionadosVariables }); } if (this.props.indicadores.length > 0) { var indicesVarSeleccionadosIndicadores = []; for (var i = 0; i < this.props.indicadores.length; i++) { if (this.props.indicadores[i] != undefined) { indicesVarSeleccionadosIndicadores[i] = []; } } ; this.setState({ indicesVarSeleccionadosIndicadores: indicesVarSeleccionadosIndicadores }); } if (this.props.riesgos.length > 0) { var indicesVarSeleccionadosRiesgos = []; for (var i = 0; i < this.props.riesgos.length; i++) { if (this.props.riesgos[i] != undefined) { indicesVarSeleccionadosRiesgos[i] = []; } } ; this.setState({ indicesVarSeleccionadosRiesgos: indicesVarSeleccionadosRiesgos }); } } }, { key: "componentDidUpdate", value: function componentDidUpdate(prevProps, prevState, snapshot) { if (prevProps.variables.length != this.props.variables.length) { var indicesVarSeleccionadosVariables = []; for (var i = 0; i < this.props.variables.length; i++) { if (this.props.variables[i] != undefined) { indicesVarSeleccionadosVariables[i] = []; } } ; this.setState({ indicesVarSeleccionadosVariables: indicesVarSeleccionadosVariables }); } if (prevProps.indicadores.length != this.props.indicadores.length) { var indicesVarSeleccionadosIndicadores = []; for (var i = 0; i < this.props.indicadores.length; i++) { if (this.props.indicadores[i] != undefined) { indicesVarSeleccionadosIndicadores[i] = []; } } ; this.setState({ indicesVarSeleccionadosIndicadores: indicesVarSeleccionadosIndicadores }); } if (prevProps.riesgos.length != this.props.riesgos.length) { var indicesVarSeleccionadosRiesgos = []; for (var i = 0; i < this.props.riesgos.length; i++) { if (this.props.riesgos[i] != undefined) { indicesVarSeleccionadosRiesgos[i] = []; } } ; this.setState({ indicesVarSeleccionadosRiesgos: indicesVarSeleccionadosRiesgos }); } } }, { key: "retornoSeleccionVariableVariables", value: function retornoSeleccionVariableVariables(variable, posicion) { var indicesVarSeleccionadosVariables = _toConsumableArray(this.state.indicesVarSeleccionadosVariables); for (var i = 0; i < this.props.variables.length; i++) { for (var j = 0; j < this.props.camposDeVariables[i].length; j++) { if (this.props.camposDeVariables[i][j] != undefined && this.props.camposDeVariables[i][j].nombre.localeCompare(variable[0].nombre) != 0) { indicesVarSeleccionadosVariables[i][j] = false; } else if (this.props.camposDeVariables[i][j] != undefined && this.props.camposDeVariables[i][j].nombre.localeCompare(variable[0].nombre) == 0 && i != posicion) { indicesVarSeleccionadosVariables[i][j] = false; } else if (this.props.camposDeVariables[i][j].nombre.localeCompare(variable[0].nombre) == 0 && i == posicion) { indicesVarSeleccionadosVariables[i][j] = true; } } ; } ; var indicesVarSeleccionadosIndicadores = []; for (var i = 0; i < this.props.indicadores.length; i++) { if (this.props.indicadores[i] != undefined) { indicesVarSeleccionadosIndicadores[i] = []; } } ; var indicesVarSeleccionadosRiesgos = []; for (var i = 0; i < this.props.riesgos.length; i++) { if (this.props.riesgos[i] != undefined) { indicesVarSeleccionadosRiesgos[i] = []; } } ; this.setState({ indicesVarSeleccionadosVariables: indicesVarSeleccionadosVariables, indicesVarSeleccionadosIndicadores: indicesVarSeleccionadosIndicadores, indicesVarSeleccionadosRiesgos: indicesVarSeleccionadosRiesgos }); this.checkFieldType(variable); this.props.retornoSeleccionVariable(variable); } }, { key: "retornoSeleccionVariableIndicadores", value: function retornoSeleccionVariableIndicadores(variable, posicion) { var indicesVarSeleccionadosVariables = []; for (var i = 0; i < this.props.variables.length; i++) { if (this.props.variables[i] != undefined) { indicesVarSeleccionadosVariables[i] = []; } } ; var indicesVarSeleccionadosIndicadores = _toConsumableArray(this.state.indicesVarSeleccionadosIndicadores); for (var i = 0; i < this.props.indicadores.length; i++) { for (var j = 0; j < this.props.camposDeIndicadores[i].length; j++) { if (this.props.camposDeIndicadores[i][j] != undefined && this.props.camposDeIndicadores[i][j].nombre.localeCompare(variable[0].nombre) != 0) { indicesVarSeleccionadosIndicadores[i][j] = false; } else if (this.props.camposDeIndicadores[i][j] != undefined && this.props.camposDeIndicadores[i][j].nombre.localeCompare(variable[0].nombre) == 0 && i != posicion) { indicesVarSeleccionadosIndicadores[i][j] = false; } else if (this.props.camposDeIndicadores[i][j].nombre.localeCompare(variable[0].nombre) == 0 && i == posicion) { indicesVarSeleccionadosIndicadores[i][j] = true; } } ; } ; var indicesVarSeleccionadosRiesgos = []; for (var i = 0; i < this.props.riesgos.length; i++) { if (this.props.riesgos[i] != undefined) { indicesVarSeleccionadosRiesgos[i] = []; } } ; this.setState({ indicesVarSeleccionadosVariables: indicesVarSeleccionadosVariables, indicesVarSeleccionadosIndicadores: indicesVarSeleccionadosIndicadores, indicesVarSeleccionadosRiesgos: indicesVarSeleccionadosRiesgos }); this.checkFieldType(variable); this.props.retornoSeleccionVariable(variable); } }, { key: "retornoSeleccionVariableRiesgos", value: function retornoSeleccionVariableRiesgos(variable, posicion) { var indicesVarSeleccionadosVariables = []; for (var i = 0; i < this.props.variables.length; i++) { if (this.props.variables[i] != undefined) { indicesVarSeleccionadosVariables[i] = []; } } ; var indicesVarSeleccionadosIndicadores = []; for (var i = 0; i < this.props.indicadores.length; i++) { if (this.props.indicadores[i] != undefined) { indicesVarSeleccionadosIndicadores[i] = []; } } ; var indicesVarSeleccionadosRiesgos = _toConsumableArray(this.state.indicesVarSeleccionadosRiesgos); for (var i = 0; i < this.props.riesgos.length; i++) { for (var j = 0; j < this.props.camposDeRiesgos[i].length; j++) { if (this.props.camposDeRiesgos[i][j] != undefined && this.props.camposDeRiesgos[i][j].nombre.localeCompare(variable[0].nombre) != 0) { indicesVarSeleccionadosRiesgos[i][j] = false; } else if (this.props.camposDeRiesgos[i][j] != undefined && this.props.camposDeRiesgos[i][j].nombre.localeCompare(variable[0].nombre) == 0 && i != posicion) { indicesVarSeleccionadosRiesgos[i][j] = false; } else if (this.props.camposDeRiesgos[i][j].nombre.localeCompare(variable[0].nombre) == 0 && i == posicion) { indicesVarSeleccionadosRiesgos[i][j] = true; } } ; } ; this.setState({ indicesVarSeleccionadosVariables: indicesVarSeleccionadosVariables, indicesVarSeleccionadosIndicadores: indicesVarSeleccionadosIndicadores, indicesVarSeleccionadosRiesgos: indicesVarSeleccionadosRiesgos }); this.checkFieldType(variable); this.props.retornoSeleccionVariable(variable); } }, { key: "render", value: function render() { var _this2 = this; return _react["default"].createElement("div", { className: "row", style: { width: "100%", maxHeight: "60vh", overflowY: "scroll" } }, _react["default"].createElement(_Accordion["default"], { showTrash: false, showEdit: false, color: "#ffffff" }, _react["default"].createElement("div", { label: "Variables" }, this.props.variables.map(function (variable, i) { return _react["default"].createElement("div", { className: "row", key: variable.nombreVariable + i, style: { height: "80%", width: "100%" } }, _this2.props.camposDeVariables[i] != undefined ? _react["default"].createElement(_ListasSeleVariable["default"], { mostrarRosa: true, variables: _this2.props.camposDeVariables[i], seleccionarMultiple: false, retornoSeleccion: _this2.retornoSeleccionVariableVariables, titulo: variable.nombreVariable, indiceTabla: i, indicesVarSeleccionados: _this2.state.indicesVarSeleccionadosVariables[i] }) : null); })), _react["default"].createElement("div", { label: "Indicadores" }, this.props.indicadores.map(function (indicador, i) { return _react["default"].createElement("div", { className: "row", key: indicador.nombreIndicador + i, style: { height: "80%", width: "100%" } }, _this2.props.camposDeIndicadores[i] != undefined ? _react["default"].createElement(_ListasSeleVariable["default"], { mostrarRosa: true, variables: _this2.props.camposDeIndicadores[i], seleccionarMultiple: false, retornoSeleccion: _this2.retornoSeleccionVariableIndicadores, titulo: indicador.nombreIndicador, indiceTabla: i, indicesVarSeleccionados: _this2.state.indicesVarSeleccionadosIndicadores[i] }) : null); })), _react["default"].createElement("div", { label: "Riesgos" }, this.props.riesgos.map(function (riesgo, i) { return _react["default"].createElement("div", { className: "row", key: riesgo.nombreRiesgo + i, style: { height: "80%", width: "100%" } }, _this2.props.camposDeRiesgos[i] != undefined ? _react["default"].createElement(_ListasSeleVariable["default"], { mostrarRosa: true, variables: _this2.props.camposDeRiesgos[i], seleccionarMultiple: false, retornoSeleccion: _this2.retornoSeleccionVariableRiesgos, titulo: riesgo.nombreRiesgo, indiceTabla: i, indicesVarSeleccionados: _this2.state.indicesVarSeleccionadosRiesgos[i] }) : null); })))); } }]); return CampoDashboard; }(_react["default"].Component); exports["default"] = CampoDashboard; //# sourceMappingURL=CampoDashboard.js.map
40.964646
385
0.643262
c5df7195e99e24c26eaf37e3bb2cffa7287a4f17
199
js
JavaScript
app/components/Input/index.js
gerbilsinspace/babynames
9b62a4d2741e4b9ebbd7474155277f0c24a8b49c
[ "MIT" ]
null
null
null
app/components/Input/index.js
gerbilsinspace/babynames
9b62a4d2741e4b9ebbd7474155277f0c24a8b49c
[ "MIT" ]
1
2018-10-03T14:20:25.000Z
2018-10-03T14:20:25.000Z
app/components/Input/index.js
gerbilsinspace/babynames
9b62a4d2741e4b9ebbd7474155277f0c24a8b49c
[ "MIT" ]
null
null
null
/** * * Input * */ import styled from 'styled-components'; const Input = styled.input` flex: 1; margin: 0 0 10px; padding: 10px; border-radius: 2px; background:#fff; `; export default Input;
11.055556
39
0.663317
c5dfa515db6cd4955c610340f17484f223366c72
2,902
js
JavaScript
lib/model/migrations/20200428-01-allow-string-downcast.js
nafundi/jubilant-garbonzo
b2642bf588c93922c87edfd091415b330d1e7e81
[ "Apache-2.0" ]
10
2018-06-27T12:11:56.000Z
2019-10-28T15:26:24.000Z
lib/model/migrations/20200428-01-allow-string-downcast.js
nafundi/jubilant-garbonzo
b2642bf588c93922c87edfd091415b330d1e7e81
[ "Apache-2.0" ]
104
2018-06-11T22:07:04.000Z
2020-04-07T19:29:23.000Z
lib/model/migrations/20200428-01-allow-string-downcast.js
nafundi/jubilant-garbonzo
b2642bf588c93922c87edfd091415b330d1e7e81
[ "Apache-2.0" ]
21
2018-06-27T19:33:06.000Z
2020-04-07T14:11:13.000Z
// Copyright 2020 ODK Central Developers // See the NOTICE file at the top-level directory of this distribution and at // https://github.com/getodk/central-backend/blob/master/NOTICE. // This file is part of ODK Central. It is subject to the license terms in // the LICENSE file found in the top-level directory of this distribution and at // https://www.apache.org/licenses/LICENSE-2.0. No part of ODK Central, // including this file, may be copied, modified, propagated, or distributed // except according to the terms contained in the LICENSE file. const up = async (db) => { await db.raw(` create or replace function check_field_collisions() returns trigger as $check_field_collisions$ declare extant int; declare extformid int; declare extpath text; declare exttype text; begin -- factoring the repeated joins here into a CTE explodes the cost by 10x select count(distinct type), form_fields."formId", form_fields.path into extant, extformid, extpath from form_fields -- finds canonical formDefIds (published, or active draft) left outer join (select id from form_defs where "publishedAt" is not null) as form_defs on form_defs.id = form_fields."formDefId" left outer join (select id, "draftDefId" from forms) as forms on forms."draftDefId" = form_fields."formDefId" -- weeds out paths whose latest def indicates they are a string. first figure -- out latest def, then knock out latest strings from conflict detection. inner join (select form_fields."formId", max("formDefId") as "latestDefId" from form_fields -- this is a repeat of the above canonical-def subquery left outer join (select id from form_defs where "publishedAt" is not null) as ifds on ifds.id = form_fields."formDefId" left outer join (select id, "draftDefId" from forms) as ifs on ifs."draftDefId" = form_fields."formDefId" where ifs.id is not null or ifds.id is not null group by form_fields."formId" ) as tail on tail."formId" = form_fields."formId" inner join (select "formDefId", path from form_fields where type != 'string') as nonstring on "latestDefId" = nonstring."formDefId" and form_fields.path = nonstring.path where forms.id is not null or form_defs.id is not null group by form_fields."formId", form_fields.path having count(distinct type) > 1; if extant > 0 then select type into exttype from form_fields where "formId" = extformid and path = extpath order by "formDefId" desc limit 1 offset 1; raise exception using message = format('ODK05:%s:%s', extpath, exttype); end if; return NEW; end; $check_field_collisions$ language plpgsql; `); }; const down = () => {}; // no. would cause problems. module.exports = { up, down };
40.873239
103
0.690558
c5e0f61fac5c2d0adc1c11fa3f05127a6edcaabe
817,301
js
JavaScript
static/admin/js/vendor.c3bec5030583e34a0cab.js
Unous1996/Pikachu-Housing
acd1f06ddc3b0e5b300ccd5b500e0c2bad5cd1af
[ "Apache-2.0" ]
1
2019-03-23T18:49:31.000Z
2019-03-23T18:49:31.000Z
static/admin/js/vendor.c3bec5030583e34a0cab.js
DeepinSC/Pikachu-Housing
453201e19812e356106c071bbf9a306931d14fa7
[ "Apache-2.0" ]
null
null
null
static/admin/js/vendor.c3bec5030583e34a0cab.js
DeepinSC/Pikachu-Housing
453201e19812e356106c071bbf9a306931d14fa7
[ "Apache-2.0" ]
1
2019-04-24T06:40:49.000Z
2019-04-24T06:40:49.000Z
webpackJsonp([9],{"/ocq":function(t,e,n){"use strict"; /** * vue-router v3.0.1 * (c) 2017 Evan You * @license MIT */function i(t,e){0}function r(t){return Object.prototype.toString.call(t).indexOf("Error")>-1}var s={name:"router-view",functional:!0,props:{name:{type:String,default:"default"}},render:function(t,e){var n=e.props,i=e.children,r=e.parent,s=e.data;s.routerView=!0;for(var o=r.$createElement,a=n.name,l=r.$route,c=r._routerViewCache||(r._routerViewCache={}),u=0,h=!1;r&&r._routerRoot!==r;)r.$vnode&&r.$vnode.data.routerView&&u++,r._inactive&&(h=!0),r=r.$parent;if(s.routerViewDepth=u,h)return o(c[a],s,i);var d=l.matched[u];if(!d)return c[a]=null,o();var p=c[a]=d.components[a];s.registerRouteInstance=function(t,e){var n=d.instances[a];(e&&n!==t||!e&&n===t)&&(d.instances[a]=e)},(s.hook||(s.hook={})).prepatch=function(t,e){d.instances[a]=e.componentInstance};var f=s.props=function(t,e){switch(typeof e){case"undefined":return;case"object":return e;case"function":return e(t);case"boolean":return e?t.params:void 0;default:0}}(l,d.props&&d.props[a]);if(f){f=s.props=function(t,e){for(var n in e)t[n]=e[n];return t}({},f);var m=s.attrs=s.attrs||{};for(var v in f)p.props&&v in p.props||(m[v]=f[v],delete f[v])}return o(p,s,i)}};var o=/[!'()*]/g,a=function(t){return"%"+t.charCodeAt(0).toString(16)},l=/%2C/g,c=function(t){return encodeURIComponent(t).replace(o,a).replace(l,",")},u=decodeURIComponent;function h(t){var e={};return(t=t.trim().replace(/^(\?|#|&)/,""))?(t.split("&").forEach(function(t){var n=t.replace(/\+/g," ").split("="),i=u(n.shift()),r=n.length>0?u(n.join("=")):null;void 0===e[i]?e[i]=r:Array.isArray(e[i])?e[i].push(r):e[i]=[e[i],r]}),e):e}function d(t){var e=t?Object.keys(t).map(function(e){var n=t[e];if(void 0===n)return"";if(null===n)return c(e);if(Array.isArray(n)){var i=[];return n.forEach(function(t){void 0!==t&&(null===t?i.push(c(e)):i.push(c(e)+"="+c(t)))}),i.join("&")}return c(e)+"="+c(n)}).filter(function(t){return t.length>0}).join("&"):null;return e?"?"+e:""}var p=/\/?$/;function f(t,e,n,i){var r=i&&i.options.stringifyQuery,s=e.query||{};try{s=m(s)}catch(t){}var o={name:e.name||t&&t.name,meta:t&&t.meta||{},path:e.path||"/",hash:e.hash||"",query:s,params:e.params||{},fullPath:g(e,r),matched:t?function(t){var e=[];for(;t;)e.unshift(t),t=t.parent;return e}(t):[]};return n&&(o.redirectedFrom=g(n,r)),Object.freeze(o)}function m(t){if(Array.isArray(t))return t.map(m);if(t&&"object"==typeof t){var e={};for(var n in t)e[n]=m(t[n]);return e}return t}var v=f(null,{path:"/"});function g(t,e){var n=t.path,i=t.query;void 0===i&&(i={});var r=t.hash;return void 0===r&&(r=""),(n||"/")+(e||d)(i)+r}function _(t,e){return e===v?t===e:!!e&&(t.path&&e.path?t.path.replace(p,"")===e.path.replace(p,"")&&t.hash===e.hash&&b(t.query,e.query):!(!t.name||!e.name)&&(t.name===e.name&&t.hash===e.hash&&b(t.query,e.query)&&b(t.params,e.params)))}function b(t,e){if(void 0===t&&(t={}),void 0===e&&(e={}),!t||!e)return t===e;var n=Object.keys(t),i=Object.keys(e);return n.length===i.length&&n.every(function(n){var i=t[n],r=e[n];return"object"==typeof i&&"object"==typeof r?b(i,r):String(i)===String(r)})}var y,x=[String,Object],k=[String,Array],w={name:"router-link",props:{to:{type:x,required:!0},tag:{type:String,default:"a"},exact:Boolean,append:Boolean,replace:Boolean,activeClass:String,exactActiveClass:String,event:{type:k,default:"click"}},render:function(t){var e=this,n=this.$router,i=this.$route,r=n.resolve(this.to,i,this.append),s=r.location,o=r.route,a=r.href,l={},c=n.options.linkActiveClass,u=n.options.linkExactActiveClass,h=null==c?"router-link-active":c,d=null==u?"router-link-exact-active":u,m=null==this.activeClass?h:this.activeClass,v=null==this.exactActiveClass?d:this.exactActiveClass,g=s.path?f(null,s,null,n):o;l[v]=_(i,g),l[m]=this.exact?l[v]:function(t,e){return 0===t.path.replace(p,"/").indexOf(e.path.replace(p,"/"))&&(!e.hash||t.hash===e.hash)&&function(t,e){for(var n in e)if(!(n in t))return!1;return!0}(t.query,e.query)}(i,g);var b=function(t){C(t)&&(e.replace?n.replace(s):n.push(s))},x={click:C};Array.isArray(this.event)?this.event.forEach(function(t){x[t]=b}):x[this.event]=b;var k={class:l};if("a"===this.tag)k.on=x,k.attrs={href:a};else{var w=function t(e){if(e)for(var n,i=0;i<e.length;i++){if("a"===(n=e[i]).tag)return n;if(n.children&&(n=t(n.children)))return n}}(this.$slots.default);if(w){w.isStatic=!1;var S=y.util.extend;(w.data=S({},w.data)).on=x,(w.data.attrs=S({},w.data.attrs)).href=a}else k.on=x}return t(this.tag,k,this.$slots.default)}};function C(t){if(!(t.metaKey||t.altKey||t.ctrlKey||t.shiftKey||t.defaultPrevented||void 0!==t.button&&0!==t.button)){if(t.currentTarget&&t.currentTarget.getAttribute){var e=t.currentTarget.getAttribute("target");if(/\b_blank\b/i.test(e))return}return t.preventDefault&&t.preventDefault(),!0}}function S(t){if(!S.installed||y!==t){S.installed=!0,y=t;var e=function(t){return void 0!==t},n=function(t,n){var i=t.$options._parentVnode;e(i)&&e(i=i.data)&&e(i=i.registerRouteInstance)&&i(t,n)};t.mixin({beforeCreate:function(){e(this.$options.router)?(this._routerRoot=this,this._router=this.$options.router,this._router.init(this),t.util.defineReactive(this,"_route",this._router.history.current)):this._routerRoot=this.$parent&&this.$parent._routerRoot||this,n(this,this)},destroyed:function(){n(this)}}),Object.defineProperty(t.prototype,"$router",{get:function(){return this._routerRoot._router}}),Object.defineProperty(t.prototype,"$route",{get:function(){return this._routerRoot._route}}),t.component("router-view",s),t.component("router-link",w);var i=t.config.optionMergeStrategies;i.beforeRouteEnter=i.beforeRouteLeave=i.beforeRouteUpdate=i.created}}var T="undefined"!=typeof window;function V(t,e,n){var i=t.charAt(0);if("/"===i)return t;if("?"===i||"#"===i)return e+t;var r=e.split("/");n&&r[r.length-1]||r.pop();for(var s=t.replace(/^\//,"").split("/"),o=0;o<s.length;o++){var a=s[o];".."===a?r.pop():"."!==a&&r.push(a)}return""!==r[0]&&r.unshift(""),r.join("/")}function $(t){return t.replace(/\/\//g,"/")}var j=Array.isArray||function(t){return"[object Array]"==Object.prototype.toString.call(t)},O=H,A=L,I=function(t,e){return M(L(t,e))},D=M,E=q,P=new RegExp(["(\\\\.)","([\\/.])?(?:(?:\\:(\\w+)(?:\\(((?:\\\\.|[^\\\\()])+)\\))?|\\(((?:\\\\.|[^\\\\()])+)\\))([+*?])?|(\\*))"].join("|"),"g");function L(t,e){for(var n,i=[],r=0,s=0,o="",a=e&&e.delimiter||"/";null!=(n=P.exec(t));){var l=n[0],c=n[1],u=n.index;if(o+=t.slice(s,u),s=u+l.length,c)o+=c[1];else{var h=t[s],d=n[2],p=n[3],f=n[4],m=n[5],v=n[6],g=n[7];o&&(i.push(o),o="");var _=null!=d&&null!=h&&h!==d,b="+"===v||"*"===v,y="?"===v||"*"===v,x=n[2]||a,k=f||m;i.push({name:p||r++,prefix:d||"",delimiter:x,optional:y,repeat:b,partial:_,asterisk:!!g,pattern:k?R(k):g?".*":"[^"+F(x)+"]+?"})}}return s<t.length&&(o+=t.substr(s)),o&&i.push(o),i}function B(t){return encodeURI(t).replace(/[\/?#]/g,function(t){return"%"+t.charCodeAt(0).toString(16).toUpperCase()})}function M(t){for(var e=new Array(t.length),n=0;n<t.length;n++)"object"==typeof t[n]&&(e[n]=new RegExp("^(?:"+t[n].pattern+")$"));return function(n,i){for(var r="",s=n||{},o=(i||{}).pretty?B:encodeURIComponent,a=0;a<t.length;a++){var l=t[a];if("string"!=typeof l){var c,u=s[l.name];if(null==u){if(l.optional){l.partial&&(r+=l.prefix);continue}throw new TypeError('Expected "'+l.name+'" to be defined')}if(j(u)){if(!l.repeat)throw new TypeError('Expected "'+l.name+'" to not repeat, but received `'+JSON.stringify(u)+"`");if(0===u.length){if(l.optional)continue;throw new TypeError('Expected "'+l.name+'" to not be empty')}for(var h=0;h<u.length;h++){if(c=o(u[h]),!e[a].test(c))throw new TypeError('Expected all "'+l.name+'" to match "'+l.pattern+'", but received `'+JSON.stringify(c)+"`");r+=(0===h?l.prefix:l.delimiter)+c}}else{if(c=l.asterisk?encodeURI(u).replace(/[?#]/g,function(t){return"%"+t.charCodeAt(0).toString(16).toUpperCase()}):o(u),!e[a].test(c))throw new TypeError('Expected "'+l.name+'" to match "'+l.pattern+'", but received "'+c+'"');r+=l.prefix+c}}else r+=l}return r}}function F(t){return t.replace(/([.+*?=^!:${}()[\]|\/\\])/g,"\\$1")}function R(t){return t.replace(/([=!:$\/()])/g,"\\$1")}function z(t,e){return t.keys=e,t}function N(t){return t.sensitive?"":"i"}function q(t,e,n){j(e)||(n=e||n,e=[]);for(var i=(n=n||{}).strict,r=!1!==n.end,s="",o=0;o<t.length;o++){var a=t[o];if("string"==typeof a)s+=F(a);else{var l=F(a.prefix),c="(?:"+a.pattern+")";e.push(a),a.repeat&&(c+="(?:"+l+c+")*"),s+=c=a.optional?a.partial?l+"("+c+")?":"(?:"+l+"("+c+"))?":l+"("+c+")"}}var u=F(n.delimiter||"/"),h=s.slice(-u.length)===u;return i||(s=(h?s.slice(0,-u.length):s)+"(?:"+u+"(?=$))?"),s+=r?"$":i&&h?"":"(?="+u+"|$)",z(new RegExp("^"+s,N(n)),e)}function H(t,e,n){return j(e)||(n=e||n,e=[]),n=n||{},t instanceof RegExp?function(t,e){var n=t.source.match(/\((?!\?)/g);if(n)for(var i=0;i<n.length;i++)e.push({name:i,prefix:null,delimiter:null,optional:!1,repeat:!1,partial:!1,asterisk:!1,pattern:null});return z(t,e)}(t,e):j(t)?function(t,e,n){for(var i=[],r=0;r<t.length;r++)i.push(H(t[r],e,n).source);return z(new RegExp("(?:"+i.join("|")+")",N(n)),e)}(t,e,n):function(t,e,n){return q(L(t,n),e,n)}(t,e,n)}O.parse=A,O.compile=I,O.tokensToFunction=D,O.tokensToRegExp=E;var W=Object.create(null);function U(t,e,n){try{return(W[t]||(W[t]=O.compile(t)))(e||{},{pretty:!0})}catch(t){return""}}function K(t,e,n,i){var r=e||[],s=n||Object.create(null),o=i||Object.create(null);t.forEach(function(t){!function t(e,n,i,r,s,o){var a=r.path;var l=r.name;0;var c=r.pathToRegexpOptions||{};var u=function(t,e,n){n||(t=t.replace(/\/$/,""));if("/"===t[0])return t;if(null==e)return t;return $(e.path+"/"+t)}(a,s,c.strict);"boolean"==typeof r.caseSensitive&&(c.sensitive=r.caseSensitive);var h={path:u,regex:function(t,e){var n=O(t,[],e);return n}(u,c),components:r.components||{default:r.component},instances:{},name:l,parent:s,matchAs:o,redirect:r.redirect,beforeEnter:r.beforeEnter,meta:r.meta||{},props:null==r.props?{}:r.components?r.props:{default:r.props}};r.children&&r.children.forEach(function(r){var s=o?$(o+"/"+r.path):void 0;t(e,n,i,r,h,s)});if(void 0!==r.alias){var d=Array.isArray(r.alias)?r.alias:[r.alias];d.forEach(function(o){var a={path:o,children:r.children};t(e,n,i,a,s,h.path||"/")})}n[h.path]||(e.push(h.path),n[h.path]=h);l&&(i[l]||(i[l]=h))}(r,s,o,t)});for(var a=0,l=r.length;a<l;a++)"*"===r[a]&&(r.push(r.splice(a,1)[0]),l--,a--);return{pathList:r,pathMap:s,nameMap:o}}function G(t,e,n,i){var r="string"==typeof t?{path:t}:t;if(r.name||r._normalized)return r;if(!r.path&&r.params&&e){(r=Y({},r))._normalized=!0;var s=Y(Y({},e.params),r.params);if(e.name)r.name=e.name,r.params=s;else if(e.matched.length){var o=e.matched[e.matched.length-1].path;r.path=U(o,s,e.path)}else 0;return r}var a=function(t){var e="",n="",i=t.indexOf("#");i>=0&&(e=t.slice(i),t=t.slice(0,i));var r=t.indexOf("?");return r>=0&&(n=t.slice(r+1),t=t.slice(0,r)),{path:t,query:n,hash:e}}(r.path||""),l=e&&e.path||"/",c=a.path?V(a.path,l,n||r.append):l,u=function(t,e,n){void 0===e&&(e={});var i,r=n||h;try{i=r(t||"")}catch(t){i={}}for(var s in e)i[s]=e[s];return i}(a.query,r.query,i&&i.options.parseQuery),d=r.hash||a.hash;return d&&"#"!==d.charAt(0)&&(d="#"+d),{_normalized:!0,path:c,query:u,hash:d}}function Y(t,e){for(var n in e)t[n]=e[n];return t}function X(t,e){var n=K(t),i=n.pathList,r=n.pathMap,s=n.nameMap;function o(t,n,o){var a=G(t,n,!1,e),c=a.name;if(c){var u=s[c];if(!u)return l(null,a);var h=u.regex.keys.filter(function(t){return!t.optional}).map(function(t){return t.name});if("object"!=typeof a.params&&(a.params={}),n&&"object"==typeof n.params)for(var d in n.params)!(d in a.params)&&h.indexOf(d)>-1&&(a.params[d]=n.params[d]);if(u)return a.path=U(u.path,a.params),l(u,a,o)}else if(a.path){a.params={};for(var p=0;p<i.length;p++){var f=i[p],m=r[f];if(Z(m.regex,a.path,a.params))return l(m,a,o)}}return l(null,a)}function a(t,n){var i=t.redirect,r="function"==typeof i?i(f(t,n,null,e)):i;if("string"==typeof r&&(r={path:r}),!r||"object"!=typeof r)return l(null,n);var a=r,c=a.name,u=a.path,h=n.query,d=n.hash,p=n.params;if(h=a.hasOwnProperty("query")?a.query:h,d=a.hasOwnProperty("hash")?a.hash:d,p=a.hasOwnProperty("params")?a.params:p,c){s[c];return o({_normalized:!0,name:c,query:h,hash:d,params:p},void 0,n)}if(u){var m=function(t,e){return V(t,e.parent?e.parent.path:"/",!0)}(u,t);return o({_normalized:!0,path:U(m,p),query:h,hash:d},void 0,n)}return l(null,n)}function l(t,n,i){return t&&t.redirect?a(t,i||n):t&&t.matchAs?function(t,e,n){var i=o({_normalized:!0,path:U(n,e.params)});if(i){var r=i.matched,s=r[r.length-1];return e.params=i.params,l(s,e)}return l(null,e)}(0,n,t.matchAs):f(t,n,i,e)}return{match:o,addRoutes:function(t){K(t,i,r,s)}}}function Z(t,e,n){var i=e.match(t);if(!i)return!1;if(!n)return!0;for(var r=1,s=i.length;r<s;++r){var o=t.keys[r-1],a="string"==typeof i[r]?decodeURIComponent(i[r]):i[r];o&&(n[o.name]=a)}return!0}var J=Object.create(null);function Q(){window.history.replaceState({key:ht()},""),window.addEventListener("popstate",function(t){var e;et(),t.state&&t.state.key&&(e=t.state.key,ct=e)})}function tt(t,e,n,i){if(t.app){var r=t.options.scrollBehavior;r&&t.app.$nextTick(function(){var t=function(){var t=ht();if(t)return J[t]}(),s=r(e,n,i?t:null);s&&("function"==typeof s.then?s.then(function(e){st(e,t)}).catch(function(t){0}):st(s,t))})}}function et(){var t=ht();t&&(J[t]={x:window.pageXOffset,y:window.pageYOffset})}function nt(t){return rt(t.x)||rt(t.y)}function it(t){return{x:rt(t.x)?t.x:window.pageXOffset,y:rt(t.y)?t.y:window.pageYOffset}}function rt(t){return"number"==typeof t}function st(t,e){var n,i="object"==typeof t;if(i&&"string"==typeof t.selector){var r=document.querySelector(t.selector);if(r){var s=t.offset&&"object"==typeof t.offset?t.offset:{};e=function(t,e){var n=document.documentElement.getBoundingClientRect(),i=t.getBoundingClientRect();return{x:i.left-n.left-e.x,y:i.top-n.top-e.y}}(r,s={x:rt((n=s).x)?n.x:0,y:rt(n.y)?n.y:0})}else nt(t)&&(e=it(t))}else i&&nt(t)&&(e=it(t));e&&window.scrollTo(e.x,e.y)}var ot,at=T&&((-1===(ot=window.navigator.userAgent).indexOf("Android 2.")&&-1===ot.indexOf("Android 4.0")||-1===ot.indexOf("Mobile Safari")||-1!==ot.indexOf("Chrome")||-1!==ot.indexOf("Windows Phone"))&&window.history&&"pushState"in window.history),lt=T&&window.performance&&window.performance.now?window.performance:Date,ct=ut();function ut(){return lt.now().toFixed(3)}function ht(){return ct}function dt(t,e){et();var n=window.history;try{e?n.replaceState({key:ct},"",t):(ct=ut(),n.pushState({key:ct},"",t))}catch(n){window.location[e?"replace":"assign"](t)}}function pt(t){dt(t,!0)}function ft(t,e,n){var i=function(r){r>=t.length?n():t[r]?e(t[r],function(){i(r+1)}):i(r+1)};i(0)}function mt(t){return function(e,n,i){var s=!1,o=0,a=null;vt(t,function(t,e,n,l){if("function"==typeof t&&void 0===t.cid){s=!0,o++;var c,u=bt(function(e){var r;((r=e).__esModule||_t&&"Module"===r[Symbol.toStringTag])&&(e=e.default),t.resolved="function"==typeof e?e:y.extend(e),n.components[l]=e,--o<=0&&i()}),h=bt(function(t){var e="Failed to resolve async component "+l+": "+t;a||(a=r(t)?t:new Error(e),i(a))});try{c=t(u,h)}catch(t){h(t)}if(c)if("function"==typeof c.then)c.then(u,h);else{var d=c.component;d&&"function"==typeof d.then&&d.then(u,h)}}}),s||i()}}function vt(t,e){return gt(t.map(function(t){return Object.keys(t.components).map(function(n){return e(t.components[n],t.instances[n],t,n)})}))}function gt(t){return Array.prototype.concat.apply([],t)}var _t="function"==typeof Symbol&&"symbol"==typeof Symbol.toStringTag;function bt(t){var e=!1;return function(){for(var n=[],i=arguments.length;i--;)n[i]=arguments[i];if(!e)return e=!0,t.apply(this,n)}}var yt=function(t,e){this.router=t,this.base=function(t){if(!t)if(T){var e=document.querySelector("base");t=(t=e&&e.getAttribute("href")||"/").replace(/^https?:\/\/[^\/]+/,"")}else t="/";"/"!==t.charAt(0)&&(t="/"+t);return t.replace(/\/$/,"")}(e),this.current=v,this.pending=null,this.ready=!1,this.readyCbs=[],this.readyErrorCbs=[],this.errorCbs=[]};function xt(t,e,n,i){var r=vt(t,function(t,i,r,s){var o=function(t,e){"function"!=typeof t&&(t=y.extend(t));return t.options[e]}(t,e);if(o)return Array.isArray(o)?o.map(function(t){return n(t,i,r,s)}):n(o,i,r,s)});return gt(i?r.reverse():r)}function kt(t,e){if(e)return function(){return t.apply(e,arguments)}}yt.prototype.listen=function(t){this.cb=t},yt.prototype.onReady=function(t,e){this.ready?t():(this.readyCbs.push(t),e&&this.readyErrorCbs.push(e))},yt.prototype.onError=function(t){this.errorCbs.push(t)},yt.prototype.transitionTo=function(t,e,n){var i=this,r=this.router.match(t,this.current);this.confirmTransition(r,function(){i.updateRoute(r),e&&e(r),i.ensureURL(),i.ready||(i.ready=!0,i.readyCbs.forEach(function(t){t(r)}))},function(t){n&&n(t),t&&!i.ready&&(i.ready=!0,i.readyErrorCbs.forEach(function(e){e(t)}))})},yt.prototype.confirmTransition=function(t,e,n){var s=this,o=this.current,a=function(t){r(t)&&(s.errorCbs.length?s.errorCbs.forEach(function(e){e(t)}):(i(),console.error(t))),n&&n(t)};if(_(t,o)&&t.matched.length===o.matched.length)return this.ensureURL(),a();var l=function(t,e){var n,i=Math.max(t.length,e.length);for(n=0;n<i&&t[n]===e[n];n++);return{updated:e.slice(0,n),activated:e.slice(n),deactivated:t.slice(n)}}(this.current.matched,t.matched),c=l.updated,u=l.deactivated,h=l.activated,d=[].concat(function(t){return xt(t,"beforeRouteLeave",kt,!0)}(u),this.router.beforeHooks,function(t){return xt(t,"beforeRouteUpdate",kt)}(c),h.map(function(t){return t.beforeEnter}),mt(h));this.pending=t;var p=function(e,n){if(s.pending!==t)return a();try{e(t,o,function(t){!1===t||r(t)?(s.ensureURL(!0),a(t)):"string"==typeof t||"object"==typeof t&&("string"==typeof t.path||"string"==typeof t.name)?(a(),"object"==typeof t&&t.replace?s.replace(t):s.push(t)):n(t)})}catch(t){a(t)}};ft(d,p,function(){var n=[];ft(function(t,e,n){return xt(t,"beforeRouteEnter",function(t,i,r,s){return function(t,e,n,i,r){return function(s,o,a){return t(s,o,function(t){a(t),"function"==typeof t&&i.push(function(){!function t(e,n,i,r){n[i]?e(n[i]):r()&&setTimeout(function(){t(e,n,i,r)},16)}(t,e.instances,n,r)})})}}(t,r,s,e,n)})}(h,n,function(){return s.current===t}).concat(s.router.resolveHooks),p,function(){if(s.pending!==t)return a();s.pending=null,e(t),s.router.app&&s.router.app.$nextTick(function(){n.forEach(function(t){t()})})})})},yt.prototype.updateRoute=function(t){var e=this.current;this.current=t,this.cb&&this.cb(t),this.router.afterHooks.forEach(function(n){n&&n(t,e)})};var wt=function(t){function e(e,n){var i=this;t.call(this,e,n);var r=e.options.scrollBehavior;r&&Q();var s=Ct(this.base);window.addEventListener("popstate",function(t){var n=i.current,o=Ct(i.base);i.current===v&&o===s||i.transitionTo(o,function(t){r&&tt(e,t,n,!0)})})}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.go=function(t){window.history.go(t)},e.prototype.push=function(t,e,n){var i=this,r=this.current;this.transitionTo(t,function(t){dt($(i.base+t.fullPath)),tt(i.router,t,r,!1),e&&e(t)},n)},e.prototype.replace=function(t,e,n){var i=this,r=this.current;this.transitionTo(t,function(t){pt($(i.base+t.fullPath)),tt(i.router,t,r,!1),e&&e(t)},n)},e.prototype.ensureURL=function(t){if(Ct(this.base)!==this.current.fullPath){var e=$(this.base+this.current.fullPath);t?dt(e):pt(e)}},e.prototype.getCurrentLocation=function(){return Ct(this.base)},e}(yt);function Ct(t){var e=window.location.pathname;return t&&0===e.indexOf(t)&&(e=e.slice(t.length)),(e||"/")+window.location.search+window.location.hash}var St=function(t){function e(e,n,i){t.call(this,e,n),i&&function(t){var e=Ct(t);if(!/^\/#/.test(e))return window.location.replace($(t+"/#"+e)),!0}(this.base)||Tt()}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.setupListeners=function(){var t=this,e=this.router.options.scrollBehavior,n=at&&e;n&&Q(),window.addEventListener(at?"popstate":"hashchange",function(){var e=t.current;Tt()&&t.transitionTo(Vt(),function(i){n&&tt(t.router,i,e,!0),at||Ot(i.fullPath)})})},e.prototype.push=function(t,e,n){var i=this,r=this.current;this.transitionTo(t,function(t){jt(t.fullPath),tt(i.router,t,r,!1),e&&e(t)},n)},e.prototype.replace=function(t,e,n){var i=this,r=this.current;this.transitionTo(t,function(t){Ot(t.fullPath),tt(i.router,t,r,!1),e&&e(t)},n)},e.prototype.go=function(t){window.history.go(t)},e.prototype.ensureURL=function(t){var e=this.current.fullPath;Vt()!==e&&(t?jt(e):Ot(e))},e.prototype.getCurrentLocation=function(){return Vt()},e}(yt);function Tt(){var t=Vt();return"/"===t.charAt(0)||(Ot("/"+t),!1)}function Vt(){var t=window.location.href,e=t.indexOf("#");return-1===e?"":t.slice(e+1)}function $t(t){var e=window.location.href,n=e.indexOf("#");return(n>=0?e.slice(0,n):e)+"#"+t}function jt(t){at?dt($t(t)):window.location.hash=t}function Ot(t){at?pt($t(t)):window.location.replace($t(t))}var At=function(t){function e(e,n){t.call(this,e,n),this.stack=[],this.index=-1}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.push=function(t,e,n){var i=this;this.transitionTo(t,function(t){i.stack=i.stack.slice(0,i.index+1).concat(t),i.index++,e&&e(t)},n)},e.prototype.replace=function(t,e,n){var i=this;this.transitionTo(t,function(t){i.stack=i.stack.slice(0,i.index).concat(t),e&&e(t)},n)},e.prototype.go=function(t){var e=this,n=this.index+t;if(!(n<0||n>=this.stack.length)){var i=this.stack[n];this.confirmTransition(i,function(){e.index=n,e.updateRoute(i)})}},e.prototype.getCurrentLocation=function(){var t=this.stack[this.stack.length-1];return t?t.fullPath:"/"},e.prototype.ensureURL=function(){},e}(yt),It=function(t){void 0===t&&(t={}),this.app=null,this.apps=[],this.options=t,this.beforeHooks=[],this.resolveHooks=[],this.afterHooks=[],this.matcher=X(t.routes||[],this);var e=t.mode||"hash";switch(this.fallback="history"===e&&!at&&!1!==t.fallback,this.fallback&&(e="hash"),T||(e="abstract"),this.mode=e,e){case"history":this.history=new wt(this,t.base);break;case"hash":this.history=new St(this,t.base,this.fallback);break;case"abstract":this.history=new At(this,t.base);break;default:0}},Dt={currentRoute:{configurable:!0}};function Et(t,e){return t.push(e),function(){var n=t.indexOf(e);n>-1&&t.splice(n,1)}}It.prototype.match=function(t,e,n){return this.matcher.match(t,e,n)},Dt.currentRoute.get=function(){return this.history&&this.history.current},It.prototype.init=function(t){var e=this;if(this.apps.push(t),!this.app){this.app=t;var n=this.history;if(n instanceof wt)n.transitionTo(n.getCurrentLocation());else if(n instanceof St){var i=function(){n.setupListeners()};n.transitionTo(n.getCurrentLocation(),i,i)}n.listen(function(t){e.apps.forEach(function(e){e._route=t})})}},It.prototype.beforeEach=function(t){return Et(this.beforeHooks,t)},It.prototype.beforeResolve=function(t){return Et(this.resolveHooks,t)},It.prototype.afterEach=function(t){return Et(this.afterHooks,t)},It.prototype.onReady=function(t,e){this.history.onReady(t,e)},It.prototype.onError=function(t){this.history.onError(t)},It.prototype.push=function(t,e,n){this.history.push(t,e,n)},It.prototype.replace=function(t,e,n){this.history.replace(t,e,n)},It.prototype.go=function(t){this.history.go(t)},It.prototype.back=function(){this.go(-1)},It.prototype.forward=function(){this.go(1)},It.prototype.getMatchedComponents=function(t){var e=t?t.matched?t:this.resolve(t).route:this.currentRoute;return e?[].concat.apply([],e.matched.map(function(t){return Object.keys(t.components).map(function(e){return t.components[e]})})):[]},It.prototype.resolve=function(t,e,n){var i=G(t,e||this.history.current,n,this),r=this.match(i,e),s=r.redirectedFrom||r.fullPath;return{location:i,route:r,href:function(t,e,n){var i="hash"===n?"#"+e:e;return t?$(t+"/"+i):i}(this.history.base,s,this.mode),normalizedTo:i,resolved:r}},It.prototype.addRoutes=function(t){this.matcher.addRoutes(t),this.history.current!==v&&this.history.transitionTo(this.history.getCurrentLocation())},Object.defineProperties(It.prototype,Dt),It.install=S,It.version="3.0.1",T&&window.Vue&&window.Vue.use(It),e.a=It},"3EgV":function(t,e,n){var i;"undefined"!=typeof self&&self,i=function(t){return function(t){var e={};function n(i){if(e[i])return e[i].exports;var r=e[i]={i:i,l:!1,exports:{}};return t[i].call(r.exports,r,r.exports,n),r.l=!0,r.exports}return n.m=t,n.c=e,n.d=function(t,e,i){n.o(t,e)||Object.defineProperty(t,e,{enumerable:!0,get:i})},n.r=function(t){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},n.t=function(t,e){if(1&e&&(t=n(t)),8&e)return t;if(4&e&&"object"==typeof t&&t&&t.__esModule)return t;var i=Object.create(null);if(n.r(i),Object.defineProperty(i,"default",{enumerable:!0,value:t}),2&e&&"string"!=typeof t)for(var r in t)n.d(i,r,function(e){return t[e]}.bind(null,r));return i},n.n=function(t){var e=t&&t.__esModule?function(){return t.default}:function(){return t};return n.d(e,"a",e),e},n.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},n.p="/dist/",n(n.s="./src/index.ts")}({"./src/components/VAlert/VAlert.ts": /*!*****************************************!*\ !*** ./src/components/VAlert/VAlert.ts ***! \*****************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_alerts.styl */"./src/stylus/components/_alerts.styl");var i=n(/*! ../VIcon */"./src/components/VIcon/index.ts"),r=n(/*! ../../mixins/colorable */"./src/mixins/colorable.ts"),s=n(/*! ../../mixins/toggleable */"./src/mixins/toggleable.ts"),o=n(/*! ../../mixins/transitionable */"./src/mixins/transitionable.ts"),a=n(/*! ../../util/mixins */"./src/util/mixins.ts");e.default=Object(a.default)(r.default,s.default,o.default).extend({name:"v-alert",props:{dismissible:Boolean,icon:String,outline:Boolean,type:{type:String,validator:function(t){return["info","error","success","warning"].includes(t)}}},computed:{computedColor:function(){return this.type&&!this.color?this.type:this.color||"error"},computedIcon:function(){if(this.icon||!this.type)return this.icon;switch(this.type){case"info":return"$vuetify.icons.info";case"error":return"$vuetify.icons.error";case"success":return"$vuetify.icons.success";case"warning":return"$vuetify.icons.warning"}}},methods:{genIcon:function(){return this.computedIcon?this.$createElement(i.default,{class:"v-alert__icon"},this.computedIcon):null},genDismissible:function(){var t=this;return this.dismissible?this.$createElement("a",{class:"v-alert__dismissible",on:{click:function(){t.isActive=!1}}},[this.$createElement(i.default,{props:{right:!0}},"$vuetify.icons.cancel")]):null}},render:function(t){var e=[this.genIcon(),t("div",this.$slots.default),this.genDismissible()],n=t("div",(this.outline?this.setTextColor:this.setBackgroundColor)(this.computedColor,{staticClass:"v-alert",class:{"v-alert--outline":this.outline},directives:[{name:"show",value:this.isActive}],on:this.$listeners}),e);return this.transition?t("transition",{props:{name:this.transition,origin:this.origin,mode:this.mode}},[n]):n}})},"./src/components/VAlert/index.ts": /*!****************************************!*\ !*** ./src/components/VAlert/index.ts ***! \****************************************/ /*! exports provided: VAlert, default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./VAlert */"./src/components/VAlert/VAlert.ts");n.d(e,"VAlert",function(){return i.default}),e.default=i.default},"./src/components/VApp/VApp.js": /*!*************************************!*\ !*** ./src/components/VApp/VApp.js ***! \*************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_app.styl */"./src/stylus/components/_app.styl");var i=n(/*! ./mixins/app-theme */"./src/components/VApp/mixins/app-theme.js"),r=n(/*! ../../mixins/themeable */"./src/mixins/themeable.ts"),s=n(/*! ../../directives/resize */"./src/directives/resize.ts"),o=function(){return(o=Object.assign||function(t){for(var e,n=1,i=arguments.length;n<i;n++)for(var r in e=arguments[n])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t}).apply(this,arguments)};e.default={name:"v-app",directives:{Resize:s.default},mixins:[i.default,r.default],props:{id:{type:String,default:"app"},dark:Boolean},computed:{classes:function(){return o({"application--is-rtl":this.$vuetify.rtl},this.themeClasses)}},watch:{dark:function(){this.$vuetify.dark=this.dark}},mounted:function(){this.$vuetify.dark=this.dark},render:function(t){return t("div",{staticClass:"application",class:this.classes,attrs:{"data-app":!0},domProps:{id:this.id}},[t("div",{staticClass:"application--wrap"},this.$slots.default)])}}},"./src/components/VApp/index.js": /*!**************************************!*\ !*** ./src/components/VApp/index.js ***! \**************************************/ /*! exports provided: VApp, default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./VApp */"./src/components/VApp/VApp.js");n.d(e,"VApp",function(){return i.default}),e.default=i.default},"./src/components/VApp/mixins/app-theme.js": /*!*************************************************!*\ !*** ./src/components/VApp/mixins/app-theme.js ***! \*************************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ../../../util/theme */"./src/util/theme.ts");e.default={data:function(){return{style:null}},computed:{parsedTheme:function(){return i.parse(this.$vuetify.theme)},generatedStyles:function(){var t,e=this.parsedTheme;return null!=this.$vuetify.options.themeCache&&null!=(t=this.$vuetify.options.themeCache.get(e))?t:(t=i.genStyles(e,this.$vuetify.options.customProperties),null!=this.$vuetify.options.minifyTheme&&(t=this.$vuetify.options.minifyTheme(t)),null!=this.$vuetify.options.themeCache&&this.$vuetify.options.themeCache.set(e,t),t)},vueMeta:function(){if(!1===this.$vuetify.theme)return{};var t={cssText:this.generatedStyles,id:"vuetify-theme-stylesheet",type:"text/css"};return this.$vuetify.options.cspNonce&&(t.nonce=this.$vuetify.options.cspNonce),{style:[t]}}},metaInfo:function(){return this.vueMeta},head:function(){return this.vueMeta},watch:{generatedStyles:function(){!this.meta&&this.applyTheme()}},created:function(){if(!1!==this.$vuetify.theme)if(this.$meta);else if("undefined"==typeof document&&this.$ssrContext){var t=this.$vuetify.options.cspNonce?' nonce="'+this.$vuetify.options.cspNonce+'"':"";this.$ssrContext.head=this.$ssrContext.head||"",this.$ssrContext.head+='<style type="text/css" id="vuetify-theme-stylesheet"'+t+">"+this.generatedStyles+"</style>"}else"undefined"!=typeof document&&(this.genStyle(),this.applyTheme())},methods:{applyTheme:function(){this.style&&(this.style.innerHTML=this.generatedStyles)},genStyle:function(){var t=document.getElementById("vuetify-theme-stylesheet");t||((t=document.createElement("style")).type="text/css",t.id="vuetify-theme-stylesheet",this.$vuetify.options.cspNonce&&t.setAttribute("nonce",this.$vuetify.options.cspNonce),document.head.appendChild(t)),this.style=t}}}},"./src/components/VAutocomplete/VAutocomplete.js": /*!*******************************************************!*\ !*** ./src/components/VAutocomplete/VAutocomplete.js ***! \*******************************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_autocompletes.styl */"./src/stylus/components/_autocompletes.styl");var i=n(/*! ../VSelect/VSelect */"./src/components/VSelect/VSelect.js"),r=n(/*! ../VTextField/VTextField */"./src/components/VTextField/VTextField.js"),s=n(/*! ../../util/helpers */"./src/util/helpers.ts"),o=function(){return(o=Object.assign||function(t){for(var e,n=1,i=arguments.length;n<i;n++)for(var r in e=arguments[n])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t}).apply(this,arguments)},a=o({},i.defaultMenuProps,{offsetY:!0,offsetOverflow:!0,transition:!1});e.default={name:"v-autocomplete",extends:i.default,props:{allowOverflow:{type:Boolean,default:!0},browserAutocomplete:{type:String,default:"off"},filter:{type:Function,default:function(t,e,n){var i=function(t){return null!=t?t:""},r=i(n),s=i(e);return r.toString().toLowerCase().indexOf(s.toString().toLowerCase())>-1}},hideNoData:Boolean,noFilter:Boolean,searchInput:{default:void 0},menuProps:{type:i.default.props.menuProps.type,default:function(){return a}}},data:function(t){return{attrsInput:null,lazySearch:t.searchInput}},computed:{classes:function(){return Object.assign({},i.default.computed.classes.call(this),{"v-autocomplete":!0,"v-autocomplete--is-selecting-index":this.selectedIndex>-1})},computedItems:function(){return this.filteredItems},displayedItemsCount:function(){return this.hideSelected?this.filteredItems.length-this.selectedItems.length:this.filteredItems.length},currentRange:function(){return null==this.selectedItem?0:this.getText(this.selectedItem).toString().length},filteredItems:function(){var t=this;return!this.isSearching||this.noFilter?this.allItems:this.allItems.filter(function(e){return t.filter(e,t.internalSearch,t.getText(e))})},internalSearch:{get:function(){return this.lazySearch},set:function(t){this.lazySearch=t,this.$emit("update:searchInput",t)}},isAnyValueAllowed:function(){return!1},isDirty:function(){return this.searchIsDirty||this.selectedItems.length>0},isSearching:function(){return this.multiple?this.searchIsDirty:this.searchIsDirty&&this.internalSearch!==this.getText(this.selectedItem)},menuCanShow:function(){return!!this.isFocused&&(this.displayedItemsCount>0||!this.hideNoData)},$_menuProps:function(){var t=i.default.computed.$_menuProps.call(this);return t.contentClass=("v-autocomplete__content "+(t.contentClass||"")).trim(),o({},a,t)},searchIsDirty:function(){return null!=this.internalSearch&&""!==this.internalSearch},selectedItem:function(){var t=this;return this.multiple?null:this.selectedItems.find(function(e){return t.valueComparator(t.getValue(e),t.getValue(t.internalValue))})},listData:function(){var t=i.default.computed.listData.call(this);return Object.assign(t.props,{items:this.virtualizedItems,noFilter:this.noFilter||!this.isSearching||!this.filteredItems.length,searchInput:this.internalSearch}),t}},watch:{filteredItems:function(t){this.onFilteredItemsChanged(t)},internalValue:function(){this.setSearch()},isFocused:function(t){t?this.$refs.input&&this.$refs.input.select():this.updateSelf()},isMenuActive:function(t){!t&&this.hasSlot&&(this.lazySearch=null)},items:function(t,e){e&&e.length||!this.hideNoData||!this.isFocused||this.isMenuActive||!t.length||this.activateMenu()},searchInput:function(t){this.lazySearch=t},internalSearch:function(t){this.onInternalSearchChanged(t)}},created:function(){this.setSearch()},methods:{onFilteredItemsChanged:function(t){var e=this;this.setMenuIndex(-1),this.$nextTick(function(){e.setMenuIndex(1===t.length?0:-1)})},onInternalSearchChanged:function(t){this.updateMenuDimensions()},updateMenuDimensions:function(){this.isMenuActive&&this.$refs.menu&&this.$refs.menu.updateDimensions()},changeSelectedIndex:function(t){if(!this.searchIsDirty&&[s.keyCodes.backspace,s.keyCodes.left,s.keyCodes.right,s.keyCodes.delete].includes(t)){var e=this.selectedItems.length-1;if(t===s.keyCodes.left)this.selectedIndex=-1===this.selectedIndex?e:this.selectedIndex-1;else if(t===s.keyCodes.right)this.selectedIndex=this.selectedIndex>=e?-1:this.selectedIndex+1;else if(-1===this.selectedIndex)return void(this.selectedIndex=e);var n=this.selectedItems[this.selectedIndex];if([s.keyCodes.backspace,s.keyCodes.delete].includes(t)&&!this.getDisabled(n)){var i=this.selectedIndex===e?this.selectedIndex-1:this.selectedItems[this.selectedIndex+1]?this.selectedIndex:-1;-1===i?this.setValue(this.multiple?[]:void 0):this.selectItem(n),this.selectedIndex=i}}},clearableCallback:function(){this.internalSearch=void 0,i.default.methods.clearableCallback.call(this)},genInput:function(){var t=r.default.methods.genInput.call(this);return t.data.attrs.role="combobox",t.data.domProps.value=this.internalSearch,t},genSelections:function(){return this.hasSlot||this.multiple?i.default.methods.genSelections.call(this):[]},onClick:function(){this.isDisabled||(this.selectedIndex>-1?this.selectedIndex=-1:this.onFocus(),this.activateMenu())},onEnterDown:function(){},onInput:function(t){this.selectedIndex>-1||(t.target.value&&(this.activateMenu(),this.isAnyValueAllowed||this.setMenuIndex(0)),this.mask&&this.resetSelections(t.target),this.internalSearch=t.target.value,this.badInput=t.target.validity&&t.target.validity.badInput)},onKeyDown:function(t){var e=t.keyCode;i.default.methods.onKeyDown.call(this,t),this.changeSelectedIndex(e)},onTabDown:function(t){i.default.methods.onTabDown.call(this,t),this.updateSelf()},setSelectedItems:function(){i.default.methods.setSelectedItems.call(this),this.isFocused||this.setSearch()},setSearch:function(){var t=this;this.$nextTick(function(){t.internalSearch=!t.selectedItems.length||t.multiple||t.hasSlot?null:t.getText(t.selectedItem)})},updateSelf:function(){this.updateAutocomplete()},updateAutocomplete:function(){(this.searchIsDirty||this.internalValue)&&(this.valueComparator(this.internalSearch,this.getValue(this.internalValue))||this.setSearch())}}}},"./src/components/VAutocomplete/index.js": /*!***********************************************!*\ !*** ./src/components/VAutocomplete/index.js ***! \***********************************************/ /*! exports provided: VAutocomplete, default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./VAutocomplete */"./src/components/VAutocomplete/VAutocomplete.js");n.d(e,"VAutocomplete",function(){return i.default}),e.default=i.default},"./src/components/VAvatar/VAvatar.ts": /*!*******************************************!*\ !*** ./src/components/VAvatar/VAvatar.ts ***! \*******************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_avatars.styl */"./src/stylus/components/_avatars.styl");var i=n(/*! ../../mixins/colorable */"./src/mixins/colorable.ts"),r=n(/*! ../../util/helpers */"./src/util/helpers.ts"),s=n(/*! ../../util/mixins */"./src/util/mixins.ts"),o=function(){return(o=Object.assign||function(t){for(var e,n=1,i=arguments.length;n<i;n++)for(var r in e=arguments[n])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t}).apply(this,arguments)};e.default=Object(s.default)(i.default).extend({name:"v-avatar",functional:!0,props:{color:String,size:{type:[Number,String],default:48},tile:Boolean},render:function(t,e){var n=e.data,s=e.props,a=e.children;n.staticClass=("v-avatar "+(n.staticClass||"")).trim(),s.tile&&(n.staticClass+=" v-avatar--tile");var l=Object(r.convertToUnit)(s.size);return n.style=o({height:l,width:l},n.style),t("div",i.default.options.methods.setBackgroundColor(s.color,n),a)}})},"./src/components/VAvatar/index.ts": /*!*****************************************!*\ !*** ./src/components/VAvatar/index.ts ***! \*****************************************/ /*! exports provided: VAvatar, default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./VAvatar */"./src/components/VAvatar/VAvatar.ts");n.d(e,"VAvatar",function(){return i.default}),e.default=i.default},"./src/components/VBadge/VBadge.ts": /*!*****************************************!*\ !*** ./src/components/VBadge/VBadge.ts ***! \*****************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_badges.styl */"./src/stylus/components/_badges.styl");var i=n(/*! ../../mixins/colorable */"./src/mixins/colorable.ts"),r=n(/*! ../../mixins/toggleable */"./src/mixins/toggleable.ts"),s=n(/*! ../../mixins/positionable */"./src/mixins/positionable.ts"),o=n(/*! ../../mixins/transitionable */"./src/mixins/transitionable.ts"),a=n(/*! ../../util/mixins */"./src/util/mixins.ts");e.default=Object(a.default)(i.default,r.default,Object(s.factory)(["left","bottom"]),o.default).extend({name:"v-badge",props:{color:{type:String,default:"primary"},overlap:Boolean,transition:{type:String,default:"fab-transition"},value:{default:!0}},computed:{classes:function(){return{"v-badge--bottom":this.bottom,"v-badge--left":this.left,"v-badge--overlap":this.overlap}}},render:function(t){var e=this.$slots.badge?[t("span",this.setBackgroundColor(this.color,{staticClass:"v-badge__badge",attrs:this.$attrs,directives:[{name:"show",value:this.isActive}]}),this.$slots.badge)]:null;return t("span",{staticClass:"v-badge",class:this.classes},[this.$slots.default,t("transition",{props:{name:this.transition,origin:this.origin,mode:this.mode}},e)])}})},"./src/components/VBadge/index.ts": /*!****************************************!*\ !*** ./src/components/VBadge/index.ts ***! \****************************************/ /*! exports provided: VBadge, default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./VBadge */"./src/components/VBadge/VBadge.ts");n.d(e,"VBadge",function(){return i.default}),e.default=i.default},"./src/components/VBottomNav/VBottomNav.ts": /*!*************************************************!*\ !*** ./src/components/VBottomNav/VBottomNav.ts ***! \*************************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_bottom-navs.styl */"./src/stylus/components/_bottom-navs.styl");var i=n(/*! ../../mixins/applicationable */"./src/mixins/applicationable.ts"),r=n(/*! ../../mixins/button-group */"./src/mixins/button-group.ts"),s=n(/*! ../../mixins/colorable */"./src/mixins/colorable.ts"),o=n(/*! ../../util/mixins */"./src/util/mixins.ts");e.default=Object(o.default)(Object(i.default)("bottom",["height","value"]),s.default).extend({name:"v-bottom-nav",props:{active:[Number,String],mandatory:Boolean,height:{default:56,type:[Number,String],validator:function(t){return!isNaN(parseInt(t))}},shift:Boolean,value:null},computed:{classes:function(){return{"v-bottom-nav--absolute":this.absolute,"v-bottom-nav--fixed":!this.absolute&&(this.app||this.fixed),"v-bottom-nav--shift":this.shift,"v-bottom-nav--active":this.value}},computedHeight:function(){return parseInt(this.height)}},methods:{updateApplication:function(){return this.value?this.computedHeight:0},updateValue:function(t){this.$emit("update:active",t)}},render:function(t){return t(r.default,this.setBackgroundColor(this.color,{staticClass:"v-bottom-nav",class:this.classes,style:{height:parseInt(this.computedHeight)+"px"},props:{mandatory:Boolean(this.mandatory||void 0!==this.active),value:this.active},on:{change:this.updateValue}}),this.$slots.default)}})},"./src/components/VBottomNav/index.ts": /*!********************************************!*\ !*** ./src/components/VBottomNav/index.ts ***! \********************************************/ /*! exports provided: VBottomNav, default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./VBottomNav */"./src/components/VBottomNav/VBottomNav.ts");n.d(e,"VBottomNav",function(){return i.default}),e.default=i.default},"./src/components/VBottomSheet/VBottomSheet.js": /*!*****************************************************!*\ !*** ./src/components/VBottomSheet/VBottomSheet.js ***! \*****************************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_bottom-sheets.styl */"./src/stylus/components/_bottom-sheets.styl");var i=n(/*! ../VDialog/VDialog */"./src/components/VDialog/VDialog.js"),r=function(){return(r=Object.assign||function(t){for(var e,n=1,i=arguments.length;n<i;n++)for(var r in e=arguments[n])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t}).apply(this,arguments)};e.default={name:"v-bottom-sheet",props:{disabled:Boolean,fullWidth:Boolean,hideOverlay:Boolean,inset:Boolean,lazy:Boolean,maxWidth:{type:[String,Number],default:"auto"},persistent:Boolean,value:null},render:function(t){var e=t("template",{slot:"activator"},this.$slots.activator),n=["v-bottom-sheet",this.inset?"v-bottom-sheet--inset":""].join(" ");return t(i.default,{attrs:r({},this.$props),on:r({},this.$listeners),props:{contentClass:n,noClickAnimation:!0,transition:"bottom-sheet-transition",value:this.value}},[e,this.$slots.default])}}},"./src/components/VBottomSheet/index.js": /*!**********************************************!*\ !*** ./src/components/VBottomSheet/index.js ***! \**********************************************/ /*! exports provided: VBottomSheet, default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./VBottomSheet */"./src/components/VBottomSheet/VBottomSheet.js");n.d(e,"VBottomSheet",function(){return i.default}),e.default=i.default},"./src/components/VBreadcrumbs/VBreadcrumbs.js": /*!*****************************************************!*\ !*** ./src/components/VBreadcrumbs/VBreadcrumbs.js ***! \*****************************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_breadcrumbs.styl */"./src/stylus/components/_breadcrumbs.styl");var i=n(/*! ../../mixins/themeable */"./src/mixins/themeable.ts"),r=function(){return(r=Object.assign||function(t){for(var e,n=1,i=arguments.length;n<i;n++)for(var r in e=arguments[n])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t}).apply(this,arguments)};e.default={name:"v-breadcrumbs",mixins:[i.default],props:{divider:{type:String,default:"/"},large:Boolean,justifyCenter:Boolean,justifyEnd:Boolean},computed:{classes:function(){return r({"v-breadcrumbs--large":this.large},this.themeClasses)},computedDivider:function(){return this.$slots.divider?this.$slots.divider:this.divider},styles:function(){return{"justify-content":this.justifyCenter?"center":this.justifyEnd?"flex-end":"flex-start"}}},methods:{genChildren:function(){if(!this.$slots.default)return null;for(var t=this.$createElement,e=[],n={staticClass:"v-breadcrumbs__divider"},i=!1,r=0;r<this.$slots.default.length;r++){var s=this.$slots.default[r];s.componentOptions&&"v-breadcrumbs-item"===s.componentOptions.Ctor.options.name?(i&&e.push(t("li",n,this.computedDivider)),e.push(s),i=!0):e.push(s)}return e}},render:function(t){return t("ul",{staticClass:"v-breadcrumbs",class:this.classes,style:this.styles},this.genChildren())}}},"./src/components/VBreadcrumbs/VBreadcrumbsItem.ts": /*!*********************************************************!*\ !*** ./src/components/VBreadcrumbs/VBreadcrumbsItem.ts ***! \*********************************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ../../mixins/routable */"./src/mixins/routable.ts"),r=n(/*! ../../util/mixins */"./src/util/mixins.ts");e.default=Object(r.default)(i.default).extend({name:"v-breadcrumbs-item",props:{activeClass:{type:String,default:"v-breadcrumbs__item--disabled"}},computed:{classes:function(){var t;return(t={"v-breadcrumbs__item":!0})[this.activeClass]=this.disabled,t}},render:function(t){var e=this.generateRouteLink(this.classes);return t("li",[t(e.tag,e.data,this.$slots.default)])}})},"./src/components/VBreadcrumbs/index.ts": /*!**********************************************!*\ !*** ./src/components/VBreadcrumbs/index.ts ***! \**********************************************/ /*! exports provided: VBreadcrumbs, VBreadcrumbsItem, VBreadcrumbsDivider, default */function(t,e,n){"use strict";n.r(e),n.d(e,"VBreadcrumbsDivider",function(){return o});var i=n(/*! ./VBreadcrumbs */"./src/components/VBreadcrumbs/VBreadcrumbs.js");n.d(e,"VBreadcrumbs",function(){return i.default});var r=n(/*! ./VBreadcrumbsItem */"./src/components/VBreadcrumbs/VBreadcrumbsItem.ts");n.d(e,"VBreadcrumbsItem",function(){return r.default});var s=n(/*! ../../util/helpers */"./src/util/helpers.ts"),o=Object(s.createSimpleFunctional)("v-breadcrumbs__divider","li");e.default={$_vuetify_subcomponents:{VBreadcrumbs:i.default,VBreadcrumbsItem:r.default,VBreadcrumbsDivider:o}}},"./src/components/VBtn/VBtn.ts": /*!*************************************!*\ !*** ./src/components/VBtn/VBtn.ts ***! \*************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_buttons.styl */"./src/stylus/components/_buttons.styl");var i=n(/*! ../../util/mixins */"./src/util/mixins.ts"),r=n(/*! ../VProgressCircular */"./src/components/VProgressCircular/index.ts"),s=n(/*! ../../mixins/colorable */"./src/mixins/colorable.ts"),o=n(/*! ../../mixins/groupable */"./src/mixins/groupable.ts"),a=n(/*! ../../mixins/positionable */"./src/mixins/positionable.ts"),l=n(/*! ../../mixins/routable */"./src/mixins/routable.ts"),c=n(/*! ../../mixins/themeable */"./src/mixins/themeable.ts"),u=n(/*! ../../mixins/toggleable */"./src/mixins/toggleable.ts"),h="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},d=function(){return(d=Object.assign||function(t){for(var e,n=1,i=arguments.length;n<i;n++)for(var r in e=arguments[n])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t}).apply(this,arguments)};e.default=Object(i.default)(s.default,l.default,a.default,c.default,Object(o.factory)("btnToggle"),Object(u.factory)("inputValue")).extend({name:"v-btn",props:{activeClass:{type:String,default:"v-btn--active"},block:Boolean,depressed:Boolean,fab:Boolean,flat:Boolean,icon:Boolean,large:Boolean,loading:Boolean,outline:Boolean,ripple:{type:[Boolean,Object],default:null},round:Boolean,small:Boolean,tag:{type:String,default:"button"},type:{type:String,default:"button"},value:null},computed:{classes:function(){var t;return d(((t={"v-btn":!0})[this.activeClass]=this.isActive,t["v-btn--absolute"]=this.absolute,t["v-btn--block"]=this.block,t["v-btn--bottom"]=this.bottom,t["v-btn--disabled"]=this.disabled,t["v-btn--flat"]=this.flat,t["v-btn--floating"]=this.fab,t["v-btn--fixed"]=this.fixed,t["v-btn--icon"]=this.icon,t["v-btn--large"]=this.large,t["v-btn--left"]=this.left,t["v-btn--loader"]=this.loading,t["v-btn--outline"]=this.outline,t["v-btn--depressed"]=this.depressed&&!this.flat||this.outline,t["v-btn--right"]=this.right,t["v-btn--round"]=this.round,t["v-btn--router"]=this.to,t["v-btn--small"]=this.small,t["v-btn--top"]=this.top,t),this.themeClasses)},computedRipple:function(){var t=!this.icon&&!this.fab||{circle:!0};return!this.disabled&&(null!==this.ripple?this.ripple:t)}},methods:{click:function(t){!this.fab&&t.detail&&this.$el.blur(),this.$emit("click",t),this.btnToggle&&this.toggle()},genContent:function(){return this.$createElement("div",{class:"v-btn__content"},[this.$slots.default])},genLoader:function(){var t=[];return this.$slots.loader?t.push(this.$slots.loader):t.push(this.$createElement(r.default,{props:{indeterminate:!0,size:23,width:2}})),this.$createElement("span",{class:"v-btn__loading"},t)}},render:function(t){var e=this.outline||this.flat?this.setTextColor:this.setBackgroundColor,n=this.generateRouteLink(this.classes),i=n.tag,r=n.data,s=[this.genContent()];return"button"===i&&(r.attrs.type=this.type),this.loading&&s.push(this.genLoader()),r.attrs.value=["string","number"].includes(h(this.value))?this.value:JSON.stringify(this.value),t(i,e(this.color,r),s)}})},"./src/components/VBtn/index.ts": /*!**************************************!*\ !*** ./src/components/VBtn/index.ts ***! \**************************************/ /*! exports provided: VBtn, default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./VBtn */"./src/components/VBtn/VBtn.ts");n.d(e,"VBtn",function(){return i.default}),e.default=i.default},"./src/components/VBtnToggle/VBtnToggle.ts": /*!*************************************************!*\ !*** ./src/components/VBtnToggle/VBtnToggle.ts ***! \*************************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_button-toggle.styl */"./src/stylus/components/_button-toggle.styl");var i=n(/*! ../../mixins/button-group */"./src/mixins/button-group.ts"),r=function(){return(r=Object.assign||function(t){for(var e,n=1,i=arguments.length;n<i;n++)for(var r in e=arguments[n])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t}).apply(this,arguments)};e.default=i.default.extend({name:"v-btn-toggle",props:{activeClass:{type:String,default:"v-btn--active"}},computed:{classes:function(){return r({},i.default.options.computed.classes.call(this),{"v-btn-toggle":!0,"v-btn-toggle--only-child":1===this.selectedItems.length,"v-btn-toggle--selected":this.selectedItems.length>0})}}})},"./src/components/VBtnToggle/index.ts": /*!********************************************!*\ !*** ./src/components/VBtnToggle/index.ts ***! \********************************************/ /*! exports provided: VBtnToggle, default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./VBtnToggle */"./src/components/VBtnToggle/VBtnToggle.ts");n.d(e,"VBtnToggle",function(){return i.default}),e.default=i.default},"./src/components/VCard/VCard.ts": /*!***************************************!*\ !*** ./src/components/VCard/VCard.ts ***! \***************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_cards.styl */"./src/stylus/components/_cards.styl");var i=n(/*! ../../mixins/colorable */"./src/mixins/colorable.ts"),r=n(/*! ../../mixins/measurable */"./src/mixins/measurable.ts"),s=n(/*! ../../mixins/routable */"./src/mixins/routable.ts"),o=n(/*! ../../mixins/themeable */"./src/mixins/themeable.ts"),a=n(/*! ../../util/helpers */"./src/util/helpers.ts"),l=n(/*! ../../util/mixins */"./src/util/mixins.ts"),c=function(){return(c=Object.assign||function(t){for(var e,n=1,i=arguments.length;n<i;n++)for(var r in e=arguments[n])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t}).apply(this,arguments)};e.default=Object(l.default)(i.default,r.default,s.default,o.default).extend({name:"v-card",props:{flat:Boolean,hover:Boolean,img:String,raised:Boolean,tag:{type:String,default:"div"},tile:Boolean},computed:{classes:function(){return c({"v-card":!0,"v-card--flat":this.flat,"v-card--hover":this.hover,"v-card--raised":this.raised,"v-card--tile":this.tile},this.themeClasses)},styles:function(){var t={height:Object(a.convertToUnit)(this.height)};return this.img&&(t.background='url("'+this.img+'") center center / cover no-repeat'),this.height&&(t.height=Object(a.convertToUnit)(this.height)),this.maxHeight&&(t.maxHeight=Object(a.convertToUnit)(this.maxHeight)),this.maxWidth&&(t.maxWidth=Object(a.convertToUnit)(this.maxWidth)),this.width&&(t.width=Object(a.convertToUnit)(this.width)),t}},render:function(t){var e=this.generateRouteLink(this.classes),n=e.tag,i=e.data;return i.style=this.styles,t(n,this.setBackgroundColor(this.color,i),this.$slots.default)}})},"./src/components/VCard/VCardMedia.ts": /*!********************************************!*\ !*** ./src/components/VCard/VCardMedia.ts ***! \********************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ../VImg/VImg */"./src/components/VImg/VImg.ts"),r=n(/*! ../../util/console */"./src/util/console.ts");e.default=i.default.extend({name:"v-card-media",mounted:function(){Object(r.deprecate)("v-card-media",this.src?"v-img":"v-responsive",this)}})},"./src/components/VCard/VCardTitle.ts": /*!********************************************!*\ !*** ./src/components/VCard/VCardTitle.ts ***! \********************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);var i=n(/*! vue */"vue"),r=n.n(i);e.default=r.a.extend({name:"v-card-title",functional:!0,props:{primaryTitle:Boolean},render:function(t,e){var n=e.data,i=e.props,r=e.children;return n.staticClass=("v-card__title "+(n.staticClass||"")).trim(),i.primaryTitle&&(n.staticClass+=" v-card__title--primary"),t("div",n,r)}})},"./src/components/VCard/index.ts": /*!***************************************!*\ !*** ./src/components/VCard/index.ts ***! \***************************************/ /*! exports provided: VCard, VCardMedia, VCardTitle, VCardActions, VCardText, default */function(t,e,n){"use strict";n.r(e),n.d(e,"VCardActions",function(){return c}),n.d(e,"VCardText",function(){return u});var i=n(/*! ../../util/helpers */"./src/util/helpers.ts"),r=n(/*! ./VCard */"./src/components/VCard/VCard.ts");n.d(e,"VCard",function(){return r.default});var s=n(/*! ./VCardMedia */"./src/components/VCard/VCardMedia.ts");n.d(e,"VCardMedia",function(){return s.default});var o=n(/*! ./VCardTitle */"./src/components/VCard/VCardTitle.ts");n.d(e,"VCardTitle",function(){return o.default});var a=n(/*! vue */"vue"),l=n.n(a),c=l.a.extend(Object(i.createSimpleFunctional)("v-card__actions")),u=l.a.extend(Object(i.createSimpleFunctional)("v-card__text"));e.default={$_vuetify_subcomponents:{VCard:r.default,VCardMedia:s.default,VCardTitle:o.default,VCardActions:c,VCardText:u}}},"./src/components/VCarousel/VCarousel.ts": /*!***********************************************!*\ !*** ./src/components/VCarousel/VCarousel.ts ***! \***********************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_carousel.styl */"./src/stylus/components/_carousel.styl");var i=n(/*! ../VWindow/VWindow */"./src/components/VWindow/VWindow.ts"),r=n(/*! ../VBtn */"./src/components/VBtn/index.ts"),s=n(/*! ../VIcon */"./src/components/VIcon/index.ts"),o=n(/*! ../../mixins/button-group */"./src/mixins/button-group.ts"),a=n(/*! ../../util/helpers */"./src/util/helpers.ts");e.default=i.default.extend({name:"v-carousel",props:{cycle:{type:Boolean,default:!0},delimiterIcon:{type:String,default:"$vuetify.icons.delimiter"},height:{type:[Number,String],default:500},hideControls:Boolean,hideDelimiters:Boolean,interval:{type:[Number,String],default:6e3,validator:function(t){return t>0}},mandatory:{type:Boolean,default:!0},nextIcon:{type:[Boolean,String],default:"$vuetify.icons.next"},prevIcon:{type:[Boolean,String],default:"$vuetify.icons.prev"}},data:function(){return{changedByControls:!1,internalHeight:this.height,slideTimeout:void 0}},computed:{isDark:function(){return this.dark||!this.light}},watch:{internalValue:"restartTimeout",interval:"restartTimeout",cycle:function(t){t?this.restartTimeout():(clearTimeout(this.slideTimeout),this.slideTimeout=void 0)}},methods:{genDelimiters:function(){return this.$createElement("div",{staticClass:"v-carousel__controls"},[this.genItems()])},genIcon:function(t,e,n){return this.$createElement("div",{staticClass:"v-carousel__"+t},[this.$createElement(r.default,{props:{icon:!0},on:{click:n}},[this.$createElement(s.default,{props:{size:"46px"}},e)])])},genIcons:function(){var t=[],e=this.$vuetify.rtl?this.nextIcon:this.prevIcon;e&&"string"==typeof e&&t.push(this.genIcon("prev",e,this.prev));var n=this.$vuetify.rtl?this.prevIcon:this.nextIcon;return n&&"string"==typeof n&&t.push(this.genIcon("next",n,this.next)),t},genItems:function(){for(var t=this,e=this.items.length,n=[],i=0;i<e;i++){var a=this.$createElement(r.default,{class:{"v-carousel__controls__item":!0},props:{icon:!0,small:!0}},[this.$createElement(s.default,{props:{size:18}},this.delimiterIcon)]);n.push(a)}return this.$createElement(o.default,{props:{value:this.internalValue},on:{change:function(e){t.changedByControls=!0,t.internalValue=e}}},n)},init:function(){i.default.options.methods.init.call(this),this.startTimeout()},restartTimeout:function(){this.slideTimeout&&clearTimeout(this.slideTimeout),this.slideTimeout=void 0,(requestAnimationFrame||setTimeout)(this.startTimeout)},startTimeout:function(){this.cycle&&(this.slideTimeout=window.setTimeout(this.next,this.interval>0?this.interval:6e3))},updateReverse:function(t,e){this.changedByControls&&(this.changedByControls=!1,i.default.options.methods.updateReverse.call(this,t,e))}},render:function(t){var e=[],n={staticClass:"v-window v-carousel",style:{height:Object(a.convertToUnit)(this.height)},directives:[]};return this.touchless||n.directives.push({name:"touch",value:{left:this.next,right:this.prev}}),this.hideControls||e.push(this.genIcons()),this.hideDelimiters||e.push(this.genDelimiters()),t("div",n,[e,this.genContainer()])}})},"./src/components/VCarousel/VCarouselItem.ts": /*!***************************************************!*\ !*** ./src/components/VCarousel/VCarouselItem.ts ***! \***************************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ../VWindow/VWindowItem */"./src/components/VWindow/VWindowItem.ts"),r=n(/*! ../VImg */"./src/components/VImg/index.ts"),s=function(){return(s=Object.assign||function(t){for(var e,n=1,i=arguments.length;n<i;n++)for(var r in e=arguments[n])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t}).apply(this,arguments)};e.default=i.default.extend({name:"v-carousel-item",inheritAttrs:!1,methods:{genDefaultSlot:function(){return[this.$createElement(r.VImg,{staticClass:"v-carousel__item",props:s({},this.$attrs,{height:this.windowGroup.internalHeight}),on:this.$listeners},this.$slots.default)]},onBeforeEnter:function(){},onEnter:function(){},onAfterEnter:function(){},onBeforeLeave:function(){},onEnterCancelled:function(){}}})},"./src/components/VCarousel/index.ts": /*!*******************************************!*\ !*** ./src/components/VCarousel/index.ts ***! \*******************************************/ /*! exports provided: VCarousel, VCarouselItem, default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./VCarousel */"./src/components/VCarousel/VCarousel.ts");n.d(e,"VCarousel",function(){return i.default});var r=n(/*! ./VCarouselItem */"./src/components/VCarousel/VCarouselItem.ts");n.d(e,"VCarouselItem",function(){return r.default}),e.default={$_vuetify_subcomponents:{VCarousel:i.default,VCarouselItem:r.default}}},"./src/components/VCheckbox/VCheckbox.js": /*!***********************************************!*\ !*** ./src/components/VCheckbox/VCheckbox.js ***! \***********************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_selection-controls.styl */"./src/stylus/components/_selection-controls.styl");var i=n(/*! ../VIcon */"./src/components/VIcon/index.ts"),r=n(/*! ../../mixins/selectable */"./src/mixins/selectable.js"),s=function(){return(s=Object.assign||function(t){for(var e,n=1,i=arguments.length;n<i;n++)for(var r in e=arguments[n])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t}).apply(this,arguments)};e.default={name:"v-checkbox",mixins:[r.default],props:{indeterminate:Boolean,indeterminateIcon:{type:String,default:"$vuetify.icons.checkboxIndeterminate"},onIcon:{type:String,default:"$vuetify.icons.checkboxOn"},offIcon:{type:String,default:"$vuetify.icons.checkboxOff"}},data:function(t){return{inputIndeterminate:t.indeterminate}},computed:{classes:function(){return{"v-input--selection-controls":!0,"v-input--checkbox":!0}},computedIcon:function(){return this.inputIndeterminate?this.indeterminateIcon:this.isActive?this.onIcon:this.offIcon}},watch:{indeterminate:function(t){this.inputIndeterminate=t}},methods:{genCheckbox:function(){return this.$createElement("div",{staticClass:"v-input--selection-controls__input"},[this.genInput("checkbox",s({},this.$attrs,{"aria-checked":this.inputIndeterminate?"mixed":this.isActive.toString()})),!this.disabled&&this.genRipple(this.setTextColor(this.computedColor)),this.$createElement(i.default,this.setTextColor(this.computedColor,{props:{dark:this.dark,light:this.light}}),this.computedIcon)])},genDefaultSlot:function(){return[this.genCheckbox(),this.genLabel()]}}}},"./src/components/VCheckbox/index.js": /*!*******************************************!*\ !*** ./src/components/VCheckbox/index.js ***! \*******************************************/ /*! exports provided: VCheckbox, default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./VCheckbox */"./src/components/VCheckbox/VCheckbox.js");n.d(e,"VCheckbox",function(){return i.default}),e.default=i.default},"./src/components/VChip/VChip.ts": /*!***************************************!*\ !*** ./src/components/VChip/VChip.ts ***! \***************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_chips.styl */"./src/stylus/components/_chips.styl");var i=n(/*! ../../util/mixins */"./src/util/mixins.ts"),r=n(/*! ../VIcon */"./src/components/VIcon/index.ts"),s=n(/*! ../../mixins/colorable */"./src/mixins/colorable.ts"),o=n(/*! ../../mixins/themeable */"./src/mixins/themeable.ts"),a=n(/*! ../../mixins/toggleable */"./src/mixins/toggleable.ts"),l=function(){return(l=Object.assign||function(t){for(var e,n=1,i=arguments.length;n<i;n++)for(var r in e=arguments[n])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t}).apply(this,arguments)};e.default=Object(i.default)(s.default,o.default,a.default).extend({name:"v-chip",props:{close:Boolean,disabled:Boolean,label:Boolean,outline:Boolean,selected:Boolean,small:Boolean,textColor:String,value:{type:Boolean,default:!0}},computed:{classes:function(){return l({"v-chip--disabled":this.disabled,"v-chip--selected":this.selected&&!this.disabled,"v-chip--label":this.label,"v-chip--outline":this.outline,"v-chip--small":this.small,"v-chip--removable":this.close},this.themeClasses)}},methods:{genClose:function(t){var e=this;return t("div",{staticClass:"v-chip__close",on:{click:function(t){t.stopPropagation(),e.$emit("input",!1)}}},[t(r.default,"$vuetify.icons.delete")])},genContent:function(t){var e=[this.$slots.default];return this.close&&e.push(this.genClose(t)),t("span",{staticClass:"v-chip__content"},e)}},render:function(t){var e=this.setBackgroundColor(this.color,{staticClass:"v-chip",class:this.classes,attrs:{tabindex:this.disabled?-1:0},directives:[{name:"show",value:this.isActive}],on:this.$listeners}),n=this.textColor||this.outline&&this.color;return t("span",this.setTextColor(n,e),[this.genContent(t)])}})},"./src/components/VChip/index.ts": /*!***************************************!*\ !*** ./src/components/VChip/index.ts ***! \***************************************/ /*! exports provided: VChip, default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./VChip */"./src/components/VChip/VChip.ts");n.d(e,"VChip",function(){return i.default}),e.default=i.default},"./src/components/VCombobox/VCombobox.js": /*!***********************************************!*\ !*** ./src/components/VCombobox/VCombobox.js ***! \***********************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_autocompletes.styl */"./src/stylus/components/_autocompletes.styl");var i=n(/*! ../VSelect/VSelect */"./src/components/VSelect/VSelect.js"),r=n(/*! ../VAutocomplete/VAutocomplete */"./src/components/VAutocomplete/VAutocomplete.js"),s=n(/*! ../../util/helpers */"./src/util/helpers.ts");e.default={name:"v-combobox",extends:r.default,props:{delimiters:{type:Array,default:function(){return[]}},returnObject:{type:Boolean,default:!0}},data:function(){return{editingIndex:-1}},computed:{counterValue:function(){return this.multiple?this.selectedItems.length:(this.internalSearch||"").toString().length},hasSlot:function(){return i.default.computed.hasSlot.call(this)||this.multiple},isAnyValueAllowed:function(){return!0},menuCanShow:function(){return!!this.isFocused&&(this.displayedItemsCount>0||!!this.$slots["no-data"]&&!this.hideNoData)}},methods:{onFilteredItemsChanged:function(){},onInternalSearchChanged:function(t){if(t&&this.multiple&&this.delimiters){var e=this.delimiters.find(function(e){return t.endsWith(e)});if(null==e)return;this.internalSearch=t.slice(0,t.length-e.length),this.updateTags()}this.updateMenuDimensions()},genChipSelection:function(t,e){var n=this,r=i.default.methods.genChipSelection.call(this,t,e);return this.multiple&&(r.componentOptions.listeners.dblclick=function(){n.editingIndex=e,n.internalSearch=n.getText(t),n.selectedIndex=-1}),r},onChipInput:function(t){i.default.methods.onChipInput.call(this,t),this.editingIndex=-1},onEnterDown:function(t){t.preventDefault(),i.default.methods.onEnterDown.call(this),this.getMenuIndex()>-1||this.updateSelf()},onKeyDown:function(t){var e=t.keyCode;i.default.methods.onKeyDown.call(this,t),this.multiple&&e===s.keyCodes.left&&0===this.$refs.input.selectionStart&&this.updateSelf(),this.changeSelectedIndex(e)},onTabDown:function(t){if(this.multiple&&this.internalSearch&&-1===this.getMenuIndex())return t.preventDefault(),t.stopPropagation(),this.updateTags();r.default.methods.onTabDown.call(this,t)},selectItem:function(t){this.editingIndex>-1?this.updateEditing():i.default.methods.selectItem.call(this,t)},setSelectedItems:function(){null==this.internalValue||""===this.internalValue?this.selectedItems=[]:this.selectedItems=this.multiple?this.internalValue:[this.internalValue]},setValue:function(t){void 0===t&&(t=this.internalSearch),i.default.methods.setValue.call(this,t)},updateEditing:function(){var t=this.internalValue.slice();t[this.editingIndex]=this.internalSearch,this.setValue(t),this.editingIndex=-1},updateCombobox:function(){var t=Boolean(this.$scopedSlots.selection)||this.hasChips;t&&!this.searchIsDirty||(this.internalSearch!==this.getText(this.internalValue)&&this.setValue(),t&&(this.internalSearch=void 0))},updateSelf:function(){this.multiple?this.updateTags():this.updateCombobox()},updateTags:function(){var t=this.getMenuIndex();if(!(t<0)||this.searchIsDirty){if(this.editingIndex>-1)return this.updateEditing();var e=this.selectedItems.indexOf(this.internalSearch);if(e>-1){var n=this.internalValue.slice();n.splice(e,1),this.setValue(n)}if(t>-1)return this.internalSearch=null;this.selectItem(this.internalSearch),this.internalSearch=null}}}}},"./src/components/VCombobox/index.js": /*!*******************************************!*\ !*** ./src/components/VCombobox/index.js ***! \*******************************************/ /*! exports provided: VCombobox, default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./VCombobox */"./src/components/VCombobox/VCombobox.js");n.d(e,"VCombobox",function(){return i.default}),e.default=i.default},"./src/components/VCounter/VCounter.js": /*!*********************************************!*\ !*** ./src/components/VCounter/VCounter.js ***! \*********************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_counters.styl */"./src/stylus/components/_counters.styl");var i=n(/*! ../../mixins/themeable */"./src/mixins/themeable.ts"),r=function(){return(r=Object.assign||function(t){for(var e,n=1,i=arguments.length;n<i;n++)for(var r in e=arguments[n])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t}).apply(this,arguments)};e.default={name:"v-counter",functional:!0,mixins:[i.default],props:{value:{type:[Number,String],default:""},max:[Number,String]},render:function(t,e){var n=e.props,s=parseInt(n.max,10),o=parseInt(n.value,10),a=s?o+" / "+s:n.value;return t("div",{staticClass:"v-counter",class:r({"error--text":s&&o>s},Object(i.functionalThemeClasses)(e))},a)}}},"./src/components/VCounter/index.js": /*!******************************************!*\ !*** ./src/components/VCounter/index.js ***! \******************************************/ /*! exports provided: VCounter, default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./VCounter */"./src/components/VCounter/VCounter.js");n.d(e,"VCounter",function(){return i.default}),e.default=i.default},"./src/components/VDataIterator/VDataIterator.js": /*!*******************************************************!*\ !*** ./src/components/VDataIterator/VDataIterator.js ***! \*******************************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_data-iterator.styl */"./src/stylus/components/_data-iterator.styl");var i=n(/*! ../../mixins/data-iterable */"./src/mixins/data-iterable.js"),r=function(){return(r=Object.assign||function(t){for(var e,n=1,i=arguments.length;n<i;n++)for(var r in e=arguments[n])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t}).apply(this,arguments)};e.default={name:"v-data-iterator",mixins:[i.default],inheritAttrs:!1,props:{contentTag:{type:String,default:"div"},contentProps:{type:Object,required:!1},contentClass:{type:String,required:!1}},computed:{classes:function(){return r({"v-data-iterator":!0,"v-data-iterator--select-all":!1!==this.selectAll},this.themeClasses)}},created:function(){this.initPagination()},methods:{genContent:function(){var t=this.genItems(),e={class:this.contentClass,attrs:this.$attrs,on:this.$listeners,props:this.contentProps};return this.$createElement(this.contentTag,e,t)},genEmptyItems:function(t){return[this.$createElement("div",{class:"text-xs-center",style:"width: 100%"},t)]},genFilteredItems:function(){if(!this.$scopedSlots.item)return null;for(var t=[],e=0,n=this.filteredItems.length;e<n;++e){var i=this.filteredItems[e],r=this.createProps(i,e);t.push(this.$scopedSlots.item(r))}return t},genFooter:function(){var t=[];return this.$slots.footer&&t.push(this.$slots.footer),this.hideActions||t.push(this.genActions()),t.length?this.$createElement("div",t):null},genHeader:function(){var t=[];return this.$slots.header&&t.push(this.$slots.header),t.length?this.$createElement("div",t):null}},render:function(t){return t("div",{class:this.classes},[this.genHeader(),this.genContent(),this.genFooter()])}}},"./src/components/VDataIterator/index.js": /*!***********************************************!*\ !*** ./src/components/VDataIterator/index.js ***! \***********************************************/ /*! exports provided: VDataIterator, default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./VDataIterator */"./src/components/VDataIterator/VDataIterator.js");n.d(e,"VDataIterator",function(){return i.default}),e.default=i.default},"./src/components/VDataTable/VDataTable.js": /*!*************************************************!*\ !*** ./src/components/VDataTable/VDataTable.js ***! \*************************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_tables.styl */"./src/stylus/components/_tables.styl"),n(/*! ../../stylus/components/_data-table.styl */"./src/stylus/components/_data-table.styl");var i=n(/*! ../../mixins/data-iterable */"./src/mixins/data-iterable.js"),r=n(/*! ./mixins/head */"./src/components/VDataTable/mixins/head.js"),s=n(/*! ./mixins/body */"./src/components/VDataTable/mixins/body.js"),o=n(/*! ./mixins/foot */"./src/components/VDataTable/mixins/foot.js"),a=n(/*! ./mixins/progress */"./src/components/VDataTable/mixins/progress.js"),l=n(/*! ../../util/helpers */"./src/util/helpers.ts"),c=function(){return(c=Object.assign||function(t){for(var e,n=1,i=arguments.length;n<i;n++)for(var r in e=arguments[n])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t}).apply(this,arguments)},u=Object(l.createSimpleFunctional)("v-table__overflow");e.default={name:"v-data-table",mixins:[i.default,r.default,s.default,o.default,a.default],props:{headers:{type:Array,default:function(){return[]}},headersLength:{type:Number},headerText:{type:String,default:"text"},headerKey:{type:String,default:null},hideHeaders:Boolean,rowsPerPageText:{type:String,default:"$vuetify.dataTable.rowsPerPageText"},customFilter:{type:Function,default:function(t,e,n,i){if(""===(e=e.toString().toLowerCase()).trim())return t;var r=i.map(function(t){return t.value});return t.filter(function(t){return r.some(function(i){return n(Object(l.getObjectValueByPath)(t,i),e)})})}}},data:function(){return{actionsClasses:"v-datatable__actions",actionsRangeControlsClasses:"v-datatable__actions__range-controls",actionsSelectClasses:"v-datatable__actions__select",actionsPaginationClasses:"v-datatable__actions__pagination"}},computed:{classes:function(){return c({"v-datatable v-table":!0,"v-datatable--select-all":!1!==this.selectAll},this.themeClasses)},filteredItems:function(){return this.filteredItemsImpl(this.headers)},headerColumns:function(){return this.headersLength||this.headers.length+(!1!==this.selectAll)}},created:function(){var t=this.headers.find(function(t){return!("sortable"in t)||t.sortable});this.defaultPagination.sortBy=!this.disableInitialSort&&t?t.value:null,this.initPagination()},methods:{hasTag:function(t,e){return Array.isArray(t)&&t.find(function(t){return t.tag===e})},genTR:function(t,e){return void 0===e&&(e={}),this.$createElement("tr",e,t)}},render:function(t){return t("div",[t(u,{},[t("table",{class:this.classes},[this.genTHead(),this.genTBody(),this.genTFoot()])]),this.genActionsFooter()])}}},"./src/components/VDataTable/VEditDialog.js": /*!**************************************************!*\ !*** ./src/components/VDataTable/VEditDialog.js ***! \**************************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_small-dialog.styl */"./src/stylus/components/_small-dialog.styl");var i=n(/*! ../../mixins/returnable */"./src/mixins/returnable.ts"),r=n(/*! ../../mixins/themeable */"./src/mixins/themeable.ts"),s=n(/*! ../../util/helpers */"./src/util/helpers.ts"),o=n(/*! ../VBtn */"./src/components/VBtn/index.ts"),a=n(/*! ../VMenu */"./src/components/VMenu/index.js");e.default={name:"v-edit-dialog",mixins:[i.default,r.default],props:{cancelText:{default:"Cancel"},large:Boolean,lazy:Boolean,persistent:Boolean,saveText:{default:"Save"},transition:{type:String,default:"slide-x-reverse-transition"}},data:function(){return{isActive:!1}},watch:{isActive:function(t){t?(this.$emit("open"),setTimeout(this.focus,50)):this.$emit("close")}},methods:{cancel:function(){this.isActive=!1,this.$emit("cancel")},focus:function(){var t=this.$refs.content.querySelector("input");t&&t.focus()},genButton:function(t,e){return this.$createElement(o.default,{props:{flat:!0,color:"primary",light:!0},on:{click:t}},e)},genActions:function(){var t=this;return this.$createElement("div",{class:"v-small-dialog__actions"},[this.genButton(this.cancel,this.cancelText),this.genButton(function(){t.save(t.returnValue),t.$emit("save")},this.saveText)])},genContent:function(){var t=this;return this.$createElement("div",{on:{keydown:function(e){var n=t.$refs.content.querySelector("input");e.keyCode===s.keyCodes.esc&&t.cancel(),e.keyCode===s.keyCodes.enter&&n&&(t.save(n.value),t.$emit("save"))}},ref:"content"},[this.$slots.input])}},render:function(t){var e=this;return t(a.default,{staticClass:"v-small-dialog",class:this.themeClasses,props:{contentClass:"v-small-dialog__content",transition:this.transition,origin:"top right",right:!0,value:this.isActive,closeOnClick:!this.persistent,closeOnContentClick:!1,lazy:this.lazy,light:this.light,dark:this.dark},on:{input:function(t){return e.isActive=t}}},[t("a",{slot:"activator"},this.$slots.default),this.genContent(),this.large?this.genActions():null])}}},"./src/components/VDataTable/index.js": /*!********************************************!*\ !*** ./src/components/VDataTable/index.js ***! \********************************************/ /*! exports provided: VDataTable, VEditDialog, VTableOverflow, default */function(t,e,n){"use strict";n.r(e),n.d(e,"VTableOverflow",function(){return o});var i=n(/*! ../../util/helpers */"./src/util/helpers.ts"),r=n(/*! ./VDataTable */"./src/components/VDataTable/VDataTable.js");n.d(e,"VDataTable",function(){return r.default});var s=n(/*! ./VEditDialog */"./src/components/VDataTable/VEditDialog.js");n.d(e,"VEditDialog",function(){return s.default});var o=Object(i.createSimpleFunctional)("v-table__overflow");e.default={$_vuetify_subcomponents:{VDataTable:r.default,VEditDialog:s.default,VTableOverflow:o}}},"./src/components/VDataTable/mixins/body.js": /*!**************************************************!*\ !*** ./src/components/VDataTable/mixins/body.js ***! \**************************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ../../transitions/expand-transition */"./src/components/transitions/expand-transition.js");e.default={methods:{genTBody:function(){var t=this.genItems();return this.$createElement("tbody",t)},genExpandedRow:function(t){var e=[];if(this.isExpanded(t.item)){var n=this.$createElement("div",{class:"v-datatable__expand-content",key:t.item[this.itemKey]},[this.$scopedSlots.expand(t)]);e.push(n)}var r=this.$createElement("transition-group",{class:"v-datatable__expand-col",attrs:{colspan:this.headerColumns},props:{tag:"td"},on:Object(i.default)("v-datatable__expand-col--expanded")},e);return this.genTR([r],{class:"v-datatable__expand-row"})},genFilteredItems:function(){if(!this.$scopedSlots.items)return null;for(var t=[],e=0,n=this.filteredItems.length;e<n;++e){var i=this.filteredItems[e],r=this.createProps(i,e),s=this.$scopedSlots.items(r);if(t.push(this.hasTag(s,"td")?this.genTR(s,{key:this.itemKey?r.item[this.itemKey]:e,attrs:{active:this.isSelected(i)}}):s),this.$scopedSlots.expand){var o=this.genExpandedRow(r);t.push(o)}}return t},genEmptyItems:function(t){return this.hasTag(t,"tr")?t:this.hasTag(t,"td")?this.genTR(t):this.genTR([this.$createElement("td",{class:{"text-xs-center":"string"==typeof t},attrs:{colspan:this.headerColumns}},t)])}}}},"./src/components/VDataTable/mixins/foot.js": /*!**************************************************!*\ !*** ./src/components/VDataTable/mixins/foot.js ***! \**************************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e),e.default={methods:{genTFoot:function(){if(!this.$slots.footer)return null;var t=this.$slots.footer,e=this.hasTag(t,"td")?this.genTR(t):t;return this.$createElement("tfoot",[e])},genActionsFooter:function(){return this.hideActions?null:this.$createElement("div",{class:this.classes},this.genActions())}}}},"./src/components/VDataTable/mixins/head.js": /*!**************************************************!*\ !*** ./src/components/VDataTable/mixins/head.js ***! \**************************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ../../../util/console */"./src/util/console.ts"),r=n(/*! ../../VCheckbox */"./src/components/VCheckbox/index.js"),s=n(/*! ../../VIcon */"./src/components/VIcon/index.ts"),o=function(t,e){var n="function"==typeof Symbol&&t[Symbol.iterator];if(!n)return t;var i,r,s=n.call(t),o=[];try{for(;(void 0===e||e-- >0)&&!(i=s.next()).done;)o.push(i.value)}catch(t){r={error:t}}finally{try{i&&!i.done&&(n=s.return)&&n.call(s)}finally{if(r)throw r.error}}return o},a=function(){for(var t=[],e=0;e<arguments.length;e++)t=t.concat(o(arguments[e]));return t};e.default={props:{sortIcon:{type:String,default:"$vuetify.icons.sort"}},methods:{genTHead:function(){var t=this;if(!this.hideHeaders){var e=[];if(this.$scopedSlots.headers){var n=this.$scopedSlots.headers({headers:this.headers,indeterminate:this.indeterminate,all:this.everyItem});e=[this.hasTag(n,"th")?this.genTR(n):n,this.genTProgress()]}else{n=this.headers.map(function(e,n){return t.genHeader(e,t.headerKey?e[t.headerKey]:n)});var i=this.$createElement(r.default,{props:{dark:this.dark,light:this.light,color:!0===this.selectAll?"":this.selectAll,hideDetails:!0,inputValue:this.everyItem,indeterminate:this.indeterminate},on:{change:this.toggle}});this.hasSelectAll&&n.unshift(this.$createElement("th",[i])),e=[this.genTR(n),this.genTProgress()]}return this.$createElement("thead",[e])}},genHeader:function(t,e){var n=[this.$scopedSlots.headerCell?this.$scopedSlots.headerCell({header:t}):t[this.headerText]];return this.$createElement.apply(this,a(["th"],this.genHeaderData(t,n,e)))},genHeaderData:function(t,e,n){var i=["column"],r={key:n,attrs:{role:"columnheader",scope:"col",width:t.width||null,"aria-label":t[this.headerText]||"","aria-sort":"none"}};return null==t.sortable||t.sortable?this.genHeaderSortingData(t,e,r,i):r.attrs["aria-label"]+=": Not sorted.",i.push("text-xs-"+(t.align||"left")),Array.isArray(t.class)?i.push.apply(i,a(t.class)):t.class&&i.push(t.class),r.class=i,[r,e]},genHeaderSortingData:function(t,e,n,r){var o=this;"value"in t||Object(i.consoleWarn)("Headers must have a value property that corresponds to a value in the v-model array",this),n.attrs.tabIndex=0,n.on={click:function(){o.expanded={},o.sort(t.value)},keydown:function(e){32===e.keyCode&&(e.preventDefault(),o.sort(t.value))}},r.push("sortable");var a=this.$createElement(s.default,{props:{small:!0}},this.sortIcon);t.align&&"left"!==t.align?e.unshift(a):e.push(a);var l=this.computedPagination;l.sortBy===t.value?(r.push("active"),l.descending?(r.push("desc"),n.attrs["aria-sort"]="descending",n.attrs["aria-label"]+=": Sorted descending. Activate to remove sorting."):(r.push("asc"),n.attrs["aria-sort"]="ascending",n.attrs["aria-label"]+=": Sorted ascending. Activate to sort descending.")):n.attrs["aria-label"]+=": Not sorted. Activate to sort ascending."}}}},"./src/components/VDataTable/mixins/progress.js": /*!******************************************************!*\ !*** ./src/components/VDataTable/mixins/progress.js ***! \******************************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e),e.default={methods:{genTProgress:function(){var t=this.$createElement("th",{staticClass:"column",attrs:{colspan:this.headerColumns}},[this.genProgress()]);return this.genTR([t],{staticClass:"v-datatable__progress"})}}}},"./src/components/VDatePicker/VDatePicker.js": /*!***************************************************!*\ !*** ./src/components/VDatePicker/VDatePicker.js ***! \***************************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./VDatePickerTitle */"./src/components/VDatePicker/VDatePickerTitle.js"),r=n(/*! ./VDatePickerHeader */"./src/components/VDatePicker/VDatePickerHeader.js"),s=n(/*! ./VDatePickerDateTable */"./src/components/VDatePicker/VDatePickerDateTable.js"),o=n(/*! ./VDatePickerMonthTable */"./src/components/VDatePicker/VDatePickerMonthTable.js"),a=n(/*! ./VDatePickerYears */"./src/components/VDatePicker/VDatePickerYears.js"),l=n(/*! ../../mixins/picker */"./src/mixins/picker.js"),c=n(/*! ./util */"./src/components/VDatePicker/util/index.js"),u=n(/*! ./util/isDateAllowed */"./src/components/VDatePicker/util/isDateAllowed.js"),h=n(/*! ../../util/console */"./src/util/console.ts"),d=function(t,e){var n="function"==typeof Symbol&&t[Symbol.iterator];if(!n)return t;var i,r,s=n.call(t),o=[];try{for(;(void 0===e||e-- >0)&&!(i=s.next()).done;)o.push(i.value)}catch(t){r={error:t}}finally{try{i&&!i.done&&(n=s.return)&&n.call(s)}finally{if(r)throw r.error}}return o};e.default={name:"v-date-picker",mixins:[l.default],props:{allowedDates:Function,dayFormat:{type:Function,default:null},events:{type:[Array,Object,Function],default:function(){return null}},eventColor:{type:[String,Function,Object],default:"warning"},firstDayOfWeek:{type:[String,Number],default:0},headerDateFormat:{type:Function,default:null},locale:{type:String,default:"en-us"},max:String,min:String,monthFormat:{type:Function,default:null},multiple:Boolean,nextIcon:{type:String,default:"$vuetify.icons.next"},pickerDate:String,prevIcon:{type:String,default:"$vuetify.icons.prev"},reactive:Boolean,readonly:Boolean,scrollable:Boolean,showCurrent:{type:[Boolean,String],default:!0},titleDateFormat:{type:Function,default:null},type:{type:String,default:"date",validator:function(t){return["date","month"].includes(t)}},value:[Array,String],weekdayFormat:{type:Function,default:null},yearFormat:{type:Function,default:null},yearIcon:String},data:function(){var t=this,e=new Date;return{activePicker:this.type.toUpperCase(),inputDay:null,inputMonth:null,inputYear:null,isReversing:!1,now:e,tableDate:function(){if(t.pickerDate)return t.pickerDate;var n=(t.multiple?t.value[t.value.length-1]:t.value)||e.getFullYear()+"-"+(e.getMonth()+1),i="date"===t.type?"month":"year";return t.sanitizeDateString(n,i)}()}},computed:{lastValue:function(){return this.multiple?this.value[this.value.length-1]:this.value},selectedMonths:function(){return this.value&&this.value.length&&"month"!==this.type?this.multiple?this.value.map(function(t){return t.substr(0,7)}):this.value.substr(0,7):this.value},current:function(){return!0===this.showCurrent?this.sanitizeDateString(this.now.getFullYear()+"-"+(this.now.getMonth()+1)+"-"+this.now.getDate(),this.type):this.showCurrent||null},inputDate:function(){return"date"===this.type?this.inputYear+"-"+Object(c.pad)(this.inputMonth+1)+"-"+Object(c.pad)(this.inputDay):this.inputYear+"-"+Object(c.pad)(this.inputMonth+1)},tableMonth:function(){return(this.pickerDate||this.tableDate).split("-")[1]-1},tableYear:function(){return 1*(this.pickerDate||this.tableDate).split("-")[0]},minMonth:function(){return this.min?this.sanitizeDateString(this.min,"month"):null},maxMonth:function(){return this.max?this.sanitizeDateString(this.max,"month"):null},minYear:function(){return this.min?this.sanitizeDateString(this.min,"year"):null},maxYear:function(){return this.max?this.sanitizeDateString(this.max,"year"):null},formatters:function(){return{year:this.yearFormat||Object(c.createNativeLocaleFormatter)(this.locale,{year:"numeric",timeZone:"UTC"},{length:4}),titleDate:this.titleDateFormat||(this.multiple?this.defaultTitleMultipleDateFormatter:this.defaultTitleDateFormatter)}},defaultTitleMultipleDateFormatter:function(){var t=this;return this.value.length<2?function(e){return e.length?t.defaultTitleDateFormatter(e[0]):"0 selected"}:function(t){return t.length+" selected"}},defaultTitleDateFormatter:function(){var t=Object(c.createNativeLocaleFormatter)(this.locale,{year:{year:"numeric",timeZone:"UTC"},month:{month:"long",timeZone:"UTC"},date:{weekday:"short",month:"short",day:"numeric",timeZone:"UTC"}}[this.type],{start:0,length:{date:10,month:7,year:4}[this.type]});return this.landscape?function(e){return t(e).replace(/([^\d\s])([\d])/g,function(t,e,n){return e+" "+n}).replace(", ",",<br>")}:t}},watch:{tableDate:function(t,e){var n="month"===this.type?"year":"month";this.isReversing=this.sanitizeDateString(t,n)<this.sanitizeDateString(e,n),this.$emit("update:pickerDate",t)},pickerDate:function(t){t?this.tableDate=t:this.lastValue&&"date"===this.type?this.tableDate=this.sanitizeDateString(this.lastValue,"month"):this.lastValue&&"month"===this.type&&(this.tableDate=this.sanitizeDateString(this.lastValue,"year"))},value:function(t,e){this.checkMultipleProp(),this.setInputDate(),this.multiple||!this.value||this.pickerDate?this.multiple&&this.value.length&&!e.length&&!this.pickerDate&&(this.tableDate=this.sanitizeDateString(this.inputDate,"month"===this.type?"year":"month")):this.tableDate=this.sanitizeDateString(this.inputDate,"month"===this.type?"year":"month")},type:function(t){var e=this;if(this.activePicker=t.toUpperCase(),this.value&&this.value.length){var n=(this.multiple?this.value:[this.value]).map(function(n){return e.sanitizeDateString(n,t)}).filter(this.isDateAllowed);this.$emit("input",this.multiple?n:n[0])}}},created:function(){this.checkMultipleProp(),this.pickerDate!==this.tableDate&&this.$emit("update:pickerDate",this.tableDate),this.setInputDate()},methods:{emitInput:function(t){var e=this.multiple?-1===this.value.indexOf(t)?this.value.concat([t]):this.value.filter(function(e){return e!==t}):t;this.$emit("input",e),this.multiple||this.$emit("change",t)},checkMultipleProp:function(){if(null!=this.value){var t=this.value.constructor.name,e=this.multiple?"Array":"String";t!==e&&Object(h.consoleWarn)("Value must be "+(this.multiple?"an":"a")+" "+e+", got "+t,this)}},isDateAllowed:function(t){return Object(u.default)(t,this.min,this.max,this.allowedDates)},yearClick:function(t){this.inputYear=t,"month"===this.type?this.tableDate=""+t:this.tableDate=t+"-"+Object(c.pad)(this.tableMonth+1),this.activePicker="MONTH",this.reactive&&!this.multiple&&this.isDateAllowed(this.inputDate)&&this.$emit("input",this.inputDate)},monthClick:function(t){this.inputYear=parseInt(t.split("-")[0],10),this.inputMonth=parseInt(t.split("-")[1],10)-1,"date"===this.type?(this.tableDate=t,this.activePicker="DATE",this.reactive&&!this.multiple&&this.isDateAllowed(this.inputDate)&&this.$emit("input",this.inputDate)):this.emitInput(this.inputDate)},dateClick:function(t){this.inputYear=parseInt(t.split("-")[0],10),this.inputMonth=parseInt(t.split("-")[1],10)-1,this.inputDay=parseInt(t.split("-")[2],10),this.emitInput(this.inputDate)},genPickerTitle:function(){var t=this;return this.$createElement(i.default,{props:{date:this.value?this.formatters.titleDate(this.value):"",selectingYear:"YEAR"===this.activePicker,year:this.formatters.year(""+this.inputYear),yearIcon:this.yearIcon,value:this.multiple?this.value[0]:this.value},slot:"title",style:this.readonly?{"pointer-events":"none"}:void 0,on:{"update:selectingYear":function(e){return t.activePicker=e?"YEAR":t.type.toUpperCase()}}})},genTableHeader:function(){var t=this;return this.$createElement(r.default,{props:{nextIcon:this.nextIcon,color:this.color,dark:this.dark,disabled:this.readonly,format:this.headerDateFormat,light:this.light,locale:this.locale,min:"DATE"===this.activePicker?this.minMonth:this.minYear,max:"DATE"===this.activePicker?this.maxMonth:this.maxYear,prevIcon:this.prevIcon,value:"DATE"===this.activePicker?this.tableYear+"-"+Object(c.pad)(this.tableMonth+1):""+this.tableYear},on:{toggle:function(){return t.activePicker="DATE"===t.activePicker?"MONTH":"YEAR"},input:function(e){return t.tableDate=e}}})},genDateTable:function(){var t=this;return this.$createElement(s.default,{props:{allowedDates:this.allowedDates,color:this.color,current:this.current,dark:this.dark,disabled:this.readonly,events:this.events,eventColor:this.eventColor,firstDayOfWeek:this.firstDayOfWeek,format:this.dayFormat,light:this.light,locale:this.locale,min:this.min,max:this.max,tableDate:this.tableYear+"-"+Object(c.pad)(this.tableMonth+1),scrollable:this.scrollable,value:this.value,weekdayFormat:this.weekdayFormat},ref:"table",on:{input:this.dateClick,tableDate:function(e){return t.tableDate=e}}})},genMonthTable:function(){var t=this;return this.$createElement(o.default,{props:{allowedDates:"month"===this.type?this.allowedDates:null,color:this.color,current:this.current?this.sanitizeDateString(this.current,"month"):null,dark:this.dark,disabled:this.readonly,format:this.monthFormat,light:this.light,locale:this.locale,min:this.minMonth,max:this.maxMonth,scrollable:this.scrollable,value:this.selectedMonths,tableDate:""+this.tableYear},ref:"table",on:{input:this.monthClick,tableDate:function(e){return t.tableDate=e}}})},genYears:function(){return this.$createElement(a.default,{props:{color:this.color,format:this.yearFormat,locale:this.locale,min:this.minYear,max:this.maxYear,value:""+this.tableYear},on:{input:this.yearClick}})},genPickerBody:function(){var t="YEAR"===this.activePicker?[this.genYears()]:[this.genTableHeader(),"DATE"===this.activePicker?this.genDateTable():this.genMonthTable()];return this.$createElement("div",{key:this.activePicker,style:this.readonly?{"pointer-events":"none"}:void 0},t)},sanitizeDateString:function(t,e){var n=d(t.split("-"),3),i=n[0],r=n[1],s=void 0===r?1:r,o=n[2],a=void 0===o?1:o;return(i+"-"+Object(c.pad)(s)+"-"+Object(c.pad)(a)).substr(0,{date:10,month:7,year:4}[e])},setInputDate:function(){if(this.lastValue){var t=this.lastValue.split("-");this.inputYear=parseInt(t[0],10),this.inputMonth=parseInt(t[1],10)-1,"date"===this.type&&(this.inputDay=parseInt(t[2],10))}else this.inputYear=this.inputYear||this.now.getFullYear(),this.inputMonth=null==this.inputMonth?this.inputMonth:this.now.getMonth(),this.inputDay=this.inputDay||this.now.getDate()}},render:function(){return this.genPicker("v-picker--date")}}},"./src/components/VDatePicker/VDatePickerDateTable.js": /*!************************************************************!*\ !*** ./src/components/VDatePicker/VDatePickerDateTable.js ***! \************************************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ../../mixins/colorable */"./src/mixins/colorable.ts"),r=n(/*! ./mixins/date-picker-table */"./src/components/VDatePicker/mixins/date-picker-table.js"),s=n(/*! ../../mixins/themeable */"./src/mixins/themeable.ts"),o=n(/*! ./util */"./src/components/VDatePicker/util/index.js"),a=n(/*! ../../util/helpers */"./src/util/helpers.ts");e.default={name:"v-date-picker-date-table",mixins:[i.default,r.default,s.default],props:{events:{type:[Array,Object,Function],default:function(){return null}},eventColor:{type:[String,Function,Object],default:"warning"},firstDayOfWeek:{type:[String,Number],default:0},weekdayFormat:{type:Function,default:null}},computed:{formatter:function(){return this.format||Object(o.createNativeLocaleFormatter)(this.locale,{day:"numeric",timeZone:"UTC"},{start:8,length:2})},weekdayFormatter:function(){return this.weekdayFormat||Object(o.createNativeLocaleFormatter)(this.locale,{weekday:"narrow",timeZone:"UTC"})},weekDays:function(){var t=this,e=parseInt(this.firstDayOfWeek,10);return this.weekdayFormatter?Object(a.createRange)(7).map(function(n){return t.weekdayFormatter("2017-01-"+(e+n+15))}):Object(a.createRange)(7).map(function(t){return["S","M","T","W","T","F","S"][(t+e)%7]})}},methods:{calculateTableDate:function(t){return Object(o.monthChange)(this.tableDate,Math.sign(t||1))},genTHead:function(){var t=this,e=this.weekDays.map(function(e){return t.$createElement("th",e)});return this.$createElement("thead",this.genTR(e))},genEvent:function(t){var e;return e="string"==typeof this.eventColor?this.eventColor:"function"==typeof this.eventColor?this.eventColor(t):this.eventColor[t],this.$createElement("div",this.setBackgroundColor(e||this.color||"accent",{staticClass:"v-date-picker-table__event"}))},weekDaysBeforeFirstDayOfTheMonth:function(){return(new Date(this.displayedYear+"-"+Object(o.pad)(this.displayedMonth+1)+"-01T00:00:00+00:00").getUTCDay()-parseInt(this.firstDayOfWeek)+7)%7},isEvent:function(t){return Array.isArray(this.events)?this.events.indexOf(t)>-1:this.events instanceof Function&&this.events(t)},genTBody:function(){for(var t=[],e=new Date(this.displayedYear,this.displayedMonth+1,0).getDate(),n=[],i=this.weekDaysBeforeFirstDayOfTheMonth();i--;)n.push(this.$createElement("td"));for(i=1;i<=e;i++){var r=this.displayedYear+"-"+Object(o.pad)(this.displayedMonth+1)+"-"+Object(o.pad)(i);n.push(this.$createElement("td",[this.genButton(r,!0),this.isEvent(r)?this.genEvent(r):null])),n.length%7==0&&(t.push(this.genTR(n)),n=[])}return n.length&&t.push(this.genTR(n)),this.$createElement("tbody",t)},genTR:function(t){return[this.$createElement("tr",t)]}},render:function(){return this.genTable("v-date-picker-table v-date-picker-table--date",[this.genTHead(),this.genTBody()])}}},"./src/components/VDatePicker/VDatePickerHeader.js": /*!*********************************************************!*\ !*** ./src/components/VDatePicker/VDatePickerHeader.js ***! \*********************************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_date-picker-header.styl */"./src/stylus/components/_date-picker-header.styl");var i=n(/*! ../VBtn */"./src/components/VBtn/index.ts"),r=n(/*! ../VIcon */"./src/components/VIcon/index.ts"),s=n(/*! ../../mixins/colorable */"./src/mixins/colorable.ts"),o=n(/*! ../../mixins/themeable */"./src/mixins/themeable.ts"),a=n(/*! ./util */"./src/components/VDatePicker/util/index.js"),l=function(t,e){var n="function"==typeof Symbol&&t[Symbol.iterator];if(!n)return t;var i,r,s=n.call(t),o=[];try{for(;(void 0===e||e-- >0)&&!(i=s.next()).done;)o.push(i.value)}catch(t){r={error:t}}finally{try{i&&!i.done&&(n=s.return)&&n.call(s)}finally{if(r)throw r.error}}return o};e.default={name:"v-date-picker-header",mixins:[s.default,o.default],props:{disabled:Boolean,format:{type:Function,default:null},locale:{type:String,default:"en-us"},min:String,max:String,nextIcon:{type:String,default:"$vuetify.icons.next"},prevIcon:{type:String,default:"$vuetify.icons.prev"},value:{type:[Number,String],required:!0}},data:function(){return{isReversing:!1}},computed:{formatter:function(){return this.format?this.format:String(this.value).split("-")[1]?Object(a.createNativeLocaleFormatter)(this.locale,{month:"long",year:"numeric",timeZone:"UTC"},{length:7}):Object(a.createNativeLocaleFormatter)(this.locale,{year:"numeric",timeZone:"UTC"},{length:4})}},watch:{value:function(t,e){this.isReversing=t<e}},methods:{genBtn:function(t){var e=this,n=this.disabled||t<0&&this.min&&this.calculateChange(t)<this.min||t>0&&this.max&&this.calculateChange(t)>this.max;return this.$createElement(i.default,{props:{dark:this.dark,disabled:n,icon:!0,light:this.light},nativeOn:{click:function(n){n.stopPropagation(),e.$emit("input",e.calculateChange(t))}}},[this.$createElement(r.default,t<0==!this.$vuetify.rtl?this.prevIcon:this.nextIcon)])},calculateChange:function(t){var e=l(String(this.value).split("-").map(function(t){return 1*t}),2),n=e[0];return null==e[1]?""+(n+t):Object(a.monthChange)(String(this.value),t)},genHeader:function(){var t=this,e=!this.disabled&&(this.color||"accent"),n=this.$createElement("strong",this.setTextColor(e,{key:String(this.value),on:{click:function(){return t.$emit("toggle")}}}),[this.$slots.default||this.formatter(String(this.value))]),i=this.$createElement("transition",{props:{name:this.isReversing===!this.$vuetify.rtl?"tab-reverse-transition":"tab-transition"}},[n]);return this.$createElement("div",{staticClass:"v-date-picker-header__value",class:{"v-date-picker-header__value--disabled":this.disabled}},[i])}},render:function(){return this.$createElement("div",{staticClass:"v-date-picker-header",class:this.themeClasses},[this.genBtn(-1),this.genHeader(),this.genBtn(1)])}}},"./src/components/VDatePicker/VDatePickerMonthTable.js": /*!*************************************************************!*\ !*** ./src/components/VDatePicker/VDatePickerMonthTable.js ***! \*************************************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ../../mixins/colorable */"./src/mixins/colorable.ts"),r=n(/*! ./mixins/date-picker-table */"./src/components/VDatePicker/mixins/date-picker-table.js"),s=n(/*! ../../mixins/themeable */"./src/mixins/themeable.ts"),o=n(/*! ./util */"./src/components/VDatePicker/util/index.js");e.default={name:"v-date-picker-month-table",mixins:[i.default,r.default,s.default],computed:{formatter:function(){return this.format||Object(o.createNativeLocaleFormatter)(this.locale,{month:"short",timeZone:"UTC"},{start:5,length:2})}},methods:{calculateTableDate:function(t){return""+(parseInt(this.tableDate,10)+Math.sign(t||1))},genTBody:function(){for(var t=this,e=[],n=Array(3).fill(null),i=12/n.length,r=function(i){var r=n.map(function(e,r){var s=i*n.length+r;return t.$createElement("td",{key:s},[t.genButton(t.displayedYear+"-"+Object(o.pad)(s+1),!1)])});e.push(s.$createElement("tr",{key:i},r))},s=this,a=0;a<i;a++)r(a);return this.$createElement("tbody",e)}},render:function(){return this.genTable("v-date-picker-table v-date-picker-table--month",[this.genTBody()])}}},"./src/components/VDatePicker/VDatePickerTitle.js": /*!********************************************************!*\ !*** ./src/components/VDatePicker/VDatePickerTitle.js ***! \********************************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_date-picker-title.styl */"./src/stylus/components/_date-picker-title.styl");var i=n(/*! ../VIcon */"./src/components/VIcon/index.ts"),r=n(/*! ../../mixins/picker-button */"./src/mixins/picker-button.js");e.default={name:"v-date-picker-title",mixins:[r.default],props:{date:{type:String,default:""},selectingYear:Boolean,year:{type:[Number,String],default:""},yearIcon:{type:String},value:{type:String}},data:function(){return{isReversing:!1}},computed:{computedTransition:function(){return this.isReversing?"picker-reverse-transition":"picker-transition"}},watch:{value:function(t,e){this.isReversing=t<e}},methods:{genYearIcon:function(){return this.$createElement(i.default,{props:{dark:!0}},this.yearIcon)},getYearBtn:function(){return this.genPickerButton("selectingYear",!0,[this.year,this.yearIcon?this.genYearIcon():null],!1,"v-date-picker-title__year")},genTitleText:function(){return this.$createElement("transition",{props:{name:this.computedTransition}},[this.$createElement("div",{domProps:{innerHTML:this.date||"&nbsp;"},key:this.value})])},genTitleDate:function(t){return this.genPickerButton("selectingYear",!1,this.genTitleText(t),!1,"v-date-picker-title__date")}},render:function(t){return t("div",{staticClass:"v-date-picker-title"},[this.getYearBtn(),this.genTitleDate()])}}},"./src/components/VDatePicker/VDatePickerYears.js": /*!********************************************************!*\ !*** ./src/components/VDatePicker/VDatePickerYears.js ***! \********************************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_date-picker-years.styl */"./src/stylus/components/_date-picker-years.styl");var i=n(/*! ../../mixins/colorable */"./src/mixins/colorable.ts"),r=n(/*! ./util */"./src/components/VDatePicker/util/index.js");e.default={name:"v-date-picker-years",mixins:[i.default],props:{format:{type:Function,default:null},locale:{type:String,default:"en-us"},min:[Number,String],max:[Number,String],value:[Number,String]},data:function(){return{defaultColor:"primary"}},computed:{formatter:function(){return this.format||Object(r.createNativeLocaleFormatter)(this.locale,{year:"numeric",timeZone:"UTC"},{length:4})}},mounted:function(){var t=this.$el.getElementsByClassName("active")[0];this.$el.scrollTop=t?t.offsetTop-this.$el.offsetHeight/2+t.offsetHeight/2:this.$el.scrollHeight/2-this.$el.offsetHeight/2},methods:{genYearItem:function(t){var e=this,n=this.formatter(""+t),i=parseInt(this.value,10)===t,r=i&&(this.color||"primary");return this.$createElement("li",this.setTextColor(r,{key:t,class:{active:i},on:{click:function(){return e.$emit("input",t)}}}),n)},genYearItems:function(){for(var t=[],e=this.value?parseInt(this.value,10):(new Date).getFullYear(),n=this.max?parseInt(this.max,10):e+100,i=Math.min(n,this.min?parseInt(this.min,10):e-100),r=n;r>=i;r--)t.push(this.genYearItem(r));return t}},render:function(){return this.$createElement("ul",{staticClass:"v-date-picker-years",ref:"years"},this.genYearItems())}}},"./src/components/VDatePicker/index.js": /*!*********************************************!*\ !*** ./src/components/VDatePicker/index.js ***! \*********************************************/ /*! exports provided: VDatePicker, VDatePickerTitle, VDatePickerHeader, VDatePickerDateTable, VDatePickerMonthTable, VDatePickerYears, default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./VDatePicker */"./src/components/VDatePicker/VDatePicker.js");n.d(e,"VDatePicker",function(){return i.default});var r=n(/*! ./VDatePickerTitle */"./src/components/VDatePicker/VDatePickerTitle.js");n.d(e,"VDatePickerTitle",function(){return r.default});var s=n(/*! ./VDatePickerHeader */"./src/components/VDatePicker/VDatePickerHeader.js");n.d(e,"VDatePickerHeader",function(){return s.default});var o=n(/*! ./VDatePickerDateTable */"./src/components/VDatePicker/VDatePickerDateTable.js");n.d(e,"VDatePickerDateTable",function(){return o.default});var a=n(/*! ./VDatePickerMonthTable */"./src/components/VDatePicker/VDatePickerMonthTable.js");n.d(e,"VDatePickerMonthTable",function(){return a.default});var l=n(/*! ./VDatePickerYears */"./src/components/VDatePicker/VDatePickerYears.js");n.d(e,"VDatePickerYears",function(){return l.default}),e.default={$_vuetify_subcomponents:{VDatePicker:i.default,VDatePickerTitle:r.default,VDatePickerHeader:s.default,VDatePickerDateTable:o.default,VDatePickerMonthTable:a.default,VDatePickerYears:l.default}}},"./src/components/VDatePicker/mixins/date-picker-table.js": /*!****************************************************************!*\ !*** ./src/components/VDatePicker/mixins/date-picker-table.js ***! \****************************************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../../stylus/components/_date-picker-table.styl */"./src/stylus/components/_date-picker-table.styl");var i=n(/*! ../../../directives/touch */"./src/directives/touch.ts"),r=n(/*! .././util/isDateAllowed */"./src/components/VDatePicker/util/isDateAllowed.js"),s=function(){return(s=Object.assign||function(t){for(var e,n=1,i=arguments.length;n<i;n++)for(var r in e=arguments[n])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t}).apply(this,arguments)};e.default={directives:{Touch:i.default},props:{allowedDates:Function,current:String,disabled:Boolean,format:{type:Function,default:null},locale:{type:String,default:"en-us"},min:String,max:String,scrollable:Boolean,tableDate:{type:String,required:!0},value:[String,Array]},data:function(){return{isReversing:!1}},computed:{computedTransition:function(){return this.isReversing===!this.$vuetify.rtl?"tab-reverse-transition":"tab-transition"},displayedMonth:function(){return this.tableDate.split("-")[1]-1},displayedYear:function(){return 1*this.tableDate.split("-")[0]}},watch:{tableDate:function(t,e){this.isReversing=t<e}},methods:{genButtonClasses:function(t,e,n,i){return s({"v-btn--active":n,"v-btn--flat":!n,"v-btn--icon":n&&t&&e,"v-btn--floating":e,"v-btn--depressed":!e&&n,"v-btn--disabled":!t||this.disabled&&n,"v-btn--outline":i&&!n},this.themeClasses)},genButton:function(t,e){var n=this,i=Object(r.default)(t,this.min,this.max,this.allowedDates),s=t===this.value||Array.isArray(this.value)&&-1!==this.value.indexOf(t),o=t===this.current,a=s?this.setBackgroundColor:this.setTextColor,l=(s||o)&&(this.color||"accent");return this.$createElement("button",a(l,{staticClass:"v-btn",class:this.genButtonClasses(i,e,s,o),attrs:{type:"button"},domProps:{disabled:!i,innerHTML:'<div class="v-btn__content">'+this.formatter(t)+"</div>"},on:this.disabled||!i?{}:{click:function(){return n.$emit("input",t)}}}))},wheel:function(t){t.preventDefault(),this.$emit("tableDate",this.calculateTableDate(t.deltaY))},touch:function(t){this.$emit("tableDate",this.calculateTableDate(t))},genTable:function(t,e){var n=this,i=this.$createElement("transition",{props:{name:this.computedTransition}},[this.$createElement("table",{key:this.tableDate},e)]),r={name:"touch",value:{left:function(t){return t.offsetX<-15&&n.touch(1)},right:function(t){return t.offsetX>15&&n.touch(-1)}}};return this.$createElement("div",{staticClass:t,class:this.themeClasses,on:this.scrollable?{wheel:this.wheel}:void 0,directives:[r]},[i])}}}},"./src/components/VDatePicker/util/createNativeLocaleFormatter.js": /*!************************************************************************!*\ !*** ./src/components/VDatePicker/util/createNativeLocaleFormatter.js ***! \************************************************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./pad */"./src/components/VDatePicker/util/pad.js"),r=function(t,e){var n="function"==typeof Symbol&&t[Symbol.iterator];if(!n)return t;var i,r,s=n.call(t),o=[];try{for(;(void 0===e||e-- >0)&&!(i=s.next()).done;)o.push(i.value)}catch(t){r={error:t}}finally{try{i&&!i.done&&(n=s.return)&&n.call(s)}finally{if(r)throw r.error}}return o};e.default=function(t,e,n){var s=void 0===n?{start:0,length:0}:n,o=s.start,a=s.length,l=function(t){var e=r(t.trim().split(" ")[0].split("-"),3),n=e[0],s=e[1],o=e[2];return[n,Object(i.default)(s||1),Object(i.default)(o||1)].join("-")};try{var c=new Intl.DateTimeFormat(t||void 0,e);return function(t){return c.format(new Date(l(t)+"T00:00:00+00:00"))}}catch(t){return o||a?function(t){return l(t).substr(o,a)}:null}}},"./src/components/VDatePicker/util/index.js": /*!**************************************************!*\ !*** ./src/components/VDatePicker/util/index.js ***! \**************************************************/ /*! exports provided: createNativeLocaleFormatter, monthChange, pad */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./createNativeLocaleFormatter */"./src/components/VDatePicker/util/createNativeLocaleFormatter.js");n.d(e,"createNativeLocaleFormatter",function(){return i.default});var r=n(/*! ./monthChange */"./src/components/VDatePicker/util/monthChange.js");n.d(e,"monthChange",function(){return r.default});var s=n(/*! ./pad */"./src/components/VDatePicker/util/pad.js");n.d(e,"pad",function(){return s.default})},"./src/components/VDatePicker/util/isDateAllowed.js": /*!**********************************************************!*\ !*** ./src/components/VDatePicker/util/isDateAllowed.js ***! \**********************************************************/ /*! exports provided: default */function(t,e,n){"use strict";function i(t,e,n,i){return(!i||i(t))&&(!e||t>=e)&&(!n||t<=n)}n.r(e),n.d(e,"default",function(){return i})},"./src/components/VDatePicker/util/monthChange.js": /*!********************************************************!*\ !*** ./src/components/VDatePicker/util/monthChange.js ***! \********************************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./pad */"./src/components/VDatePicker/util/pad.js"),r=function(t,e){var n="function"==typeof Symbol&&t[Symbol.iterator];if(!n)return t;var i,r,s=n.call(t),o=[];try{for(;(void 0===e||e-- >0)&&!(i=s.next()).done;)o.push(i.value)}catch(t){r={error:t}}finally{try{i&&!i.done&&(n=s.return)&&n.call(s)}finally{if(r)throw r.error}}return o};e.default=function(t,e){var n=r(t.split("-").map(function(t){return 1*t}),2),s=n[0],o=n[1];return o+e===0?s-1+"-12":o+e===13?s+1+"-01":s+"-"+Object(i.default)(o+e)}},"./src/components/VDatePicker/util/pad.js": /*!************************************************!*\ !*** ./src/components/VDatePicker/util/pad.js ***! \************************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);e.default=function(t,e){return void 0===e&&(e=2),n=t,i=e,r="0",i>>=0,n=String(n),r=String(r),n.length>i?String(n):((i-=n.length)>r.length&&(r+=r.repeat(i/r.length)),r.slice(0,i)+String(n));var n,i,r}},"./src/components/VDialog/VDialog.js": /*!*******************************************!*\ !*** ./src/components/VDialog/VDialog.js ***! \*******************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_dialogs.styl */"./src/stylus/components/_dialogs.styl");var i=n(/*! ../../mixins/dependent */"./src/mixins/dependent.ts"),r=n(/*! ../../mixins/detachable */"./src/mixins/detachable.js"),s=n(/*! ../../mixins/overlayable */"./src/mixins/overlayable.js"),o=n(/*! ../../mixins/returnable */"./src/mixins/returnable.ts"),a=n(/*! ../../mixins/stackable */"./src/mixins/stackable.js"),l=n(/*! ../../mixins/toggleable */"./src/mixins/toggleable.ts"),c=n(/*! ../../directives/click-outside */"./src/directives/click-outside.ts"),u=n(/*! ../../util/helpers */"./src/util/helpers.ts"),h=n(/*! ../../util/ThemeProvider */"./src/util/ThemeProvider.ts"),d=function(){return(d=Object.assign||function(t){for(var e,n=1,i=arguments.length;n<i;n++)for(var r in e=arguments[n])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t}).apply(this,arguments)};e.default={name:"v-dialog",directives:{ClickOutside:c.default},mixins:[i.default,r.default,s.default,o.default,a.default,l.default],props:{disabled:Boolean,persistent:Boolean,fullscreen:Boolean,fullWidth:Boolean,noClickAnimation:Boolean,light:Boolean,dark:Boolean,maxWidth:{type:[String,Number],default:"none"},origin:{type:String,default:"center center"},width:{type:[String,Number],default:"auto"},scrollable:Boolean,transition:{type:[String,Boolean],default:"dialog-transition"}},data:function(){return{animate:!1,animateTimeout:null,stackClass:"v-dialog__content--active",stackMinZIndex:200}},computed:{classes:function(){var t;return(t={})[("v-dialog "+this.contentClass).trim()]=!0,t["v-dialog--active"]=this.isActive,t["v-dialog--persistent"]=this.persistent,t["v-dialog--fullscreen"]=this.fullscreen,t["v-dialog--scrollable"]=this.scrollable,t["v-dialog--animated"]=this.animate,t},contentClasses:function(){return{"v-dialog__content":!0,"v-dialog__content--active":this.isActive}}},watch:{isActive:function(t){t?this.show():(this.removeOverlay(),this.unbind())},fullscreen:function(t){t?this.hideScroll():this.showScroll()}},mounted:function(){this.isBooted=this.isActive,this.isActive&&this.show()},beforeDestroy:function(){"undefined"!=typeof window&&this.unbind()},methods:{animateClick:function(){var t=this;this.animate=!1,this.$nextTick(function(){t.animate=!0,clearTimeout(t.animateTimeout),t.animateTimeout=setTimeout(function(){return t.animate=!1},150)})},closeConditional:function(t){return!(this.$refs.content.contains(t.target)||!this.isActive)&&(this.persistent?(this.noClickAnimation||this.overlay!==t.target||this.animateClick(),!1):Object(u.getZIndex)(this.$refs.content)>=this.getMaxZIndex())},hideScroll:function(){this.fullscreen?document.documentElement.classList.add("overflow-y-hidden"):s.default.methods.hideScroll.call(this)},show:function(){!this.fullscreen&&!this.hideOverlay&&this.genOverlay(),this.fullscreen&&this.hideScroll(),this.$refs.content.focus(),this.$listeners.keydown&&this.bind()},bind:function(){window.addEventListener("keydown",this.onKeydown)},unbind:function(){window.removeEventListener("keydown",this.onKeydown)},onKeydown:function(t){this.$emit("keydown",t)}},render:function(t){var e=this,n=[],i={class:this.classes,ref:"dialog",directives:[{name:"click-outside",value:function(){return e.isActive=!1},args:{closeConditional:this.closeConditional,include:this.getOpenDependentElements}},{name:"show",value:this.isActive}],on:{click:function(t){t.stopPropagation()}}};this.fullscreen||(i.style={maxWidth:"none"===this.maxWidth?void 0:Object(u.convertToUnit)(this.maxWidth),width:"auto"===this.width?void 0:Object(u.convertToUnit)(this.width)}),this.$slots.activator&&n.push(t("div",{staticClass:"v-dialog__activator",class:{"v-dialog__activator--disabled":this.disabled},on:{click:function(t){t.stopPropagation(),e.disabled||(e.isActive=!e.isActive)}}},[this.$slots.activator]));var r=t("div",i,this.showLazyContent(this.$slots.default));return this.transition&&(r=t("transition",{props:{name:this.transition,origin:this.origin}},[r])),n.push(t("div",{class:this.contentClasses,attrs:d({tabIndex:"-1"},this.getScopeIdAttrs()),style:{zIndex:this.activeZIndex},ref:"content"},[this.$createElement(h.default,{props:{root:!0,light:this.light,dark:this.dark}},[r])])),t("div",{staticClass:"v-dialog__container",style:{display:!this.$slots.activator||this.fullWidth?"block":"inline-block"}},n)}}},"./src/components/VDialog/index.js": /*!*****************************************!*\ !*** ./src/components/VDialog/index.js ***! \*****************************************/ /*! exports provided: VDialog, default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./VDialog */"./src/components/VDialog/VDialog.js");n.d(e,"VDialog",function(){return i.default}),e.default=i.default},"./src/components/VDivider/VDivider.ts": /*!*********************************************!*\ !*** ./src/components/VDivider/VDivider.ts ***! \*********************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_dividers.styl */"./src/stylus/components/_dividers.styl");var i=n(/*! ../../mixins/themeable */"./src/mixins/themeable.ts"),r=function(){return(r=Object.assign||function(t){for(var e,n=1,i=arguments.length;n<i;n++)for(var r in e=arguments[n])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t}).apply(this,arguments)};e.default=i.default.extend({name:"v-divider",props:{inset:Boolean,vertical:Boolean},render:function(t){return t("hr",{class:r({"v-divider":!0,"v-divider--inset":this.inset,"v-divider--vertical":this.vertical},this.themeClasses),attrs:this.$attrs,on:this.$listeners})}})},"./src/components/VDivider/index.ts": /*!******************************************!*\ !*** ./src/components/VDivider/index.ts ***! \******************************************/ /*! exports provided: VDivider, default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./VDivider */"./src/components/VDivider/VDivider.ts");n.d(e,"VDivider",function(){return i.default}),e.default=i.default},"./src/components/VExpansionPanel/VExpansionPanel.ts": /*!***********************************************************!*\ !*** ./src/components/VExpansionPanel/VExpansionPanel.ts ***! \***********************************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_expansion-panel.styl */"./src/stylus/components/_expansion-panel.styl");var i=n(/*! ../../mixins/themeable */"./src/mixins/themeable.ts"),r=n(/*! ../../mixins/registrable */"./src/mixins/registrable.ts"),s=n(/*! ../../util/mixins */"./src/util/mixins.ts"),o=function(){return(o=Object.assign||function(t){for(var e,n=1,i=arguments.length;n<i;n++)for(var r in e=arguments[n])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t}).apply(this,arguments)};e.default=Object(s.default)(i.default,Object(r.provide)("expansionPanel")).extend({name:"v-expansion-panel",provide:function(){return{expansionPanel:this}},props:{disabled:Boolean,readonly:Boolean,expand:Boolean,focusable:Boolean,inset:Boolean,popout:Boolean,value:{type:[Number,Array],default:function(){return null}}},data:function(){return{items:[],open:[]}},computed:{classes:function(){return o({"v-expansion-panel--focusable":this.focusable,"v-expansion-panel--popout":this.popout,"v-expansion-panel--inset":this.inset},this.themeClasses)}},watch:{expand:function(t){var e=-1;if(!t){var n=this.open.reduce(function(t,e){return e?t+1:t},0),i=Array(this.items.length).fill(!1);1===n&&(e=this.open.indexOf(!0)),e>-1&&(i[e]=!0),this.open=i}this.$emit("input",t?this.open:e>-1?e:null)},value:function(t){this.updateFromValue(t)}},mounted:function(){null!==this.value&&this.updateFromValue(this.value)},methods:{updateFromValue:function(t){if(!Array.isArray(t)||this.expand){var e=Array(this.items.length).fill(!1);"number"==typeof t?e[t]=!0:null!==t&&(e=t),this.updatePanels(e)}},updatePanels:function(t){this.open=t;for(var e=0;e<this.items.length;e++){var n=t&&t[e];this.items[e].toggle(n)}},panelClick:function(t){for(var e=this.expand?this.open.slice():Array(this.items.length).fill(!1),n=0;n<this.items.length;n++)this.items[n]._uid===t&&(e[n]=!this.open[n],!this.expand&&this.$emit("input",e[n]?n:null));this.updatePanels(e),this.expand&&this.$emit("input",e)},register:function(t){this.items.push(t),this.open.push(!1)},unregister:function(t){var e=this.items.findIndex(function(e){return e._uid===t._uid});this.items.splice(e,1),this.open.splice(e,1)}},render:function(t){return t("ul",{staticClass:"v-expansion-panel",class:this.classes},this.$slots.default)}})},"./src/components/VExpansionPanel/VExpansionPanelContent.ts": /*!******************************************************************!*\ !*** ./src/components/VExpansionPanel/VExpansionPanelContent.ts ***! \******************************************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ../transitions */"./src/components/transitions/index.js"),r=n(/*! ../../mixins/bootable */"./src/mixins/bootable.ts"),s=n(/*! ../../mixins/toggleable */"./src/mixins/toggleable.ts"),o=n(/*! ../../mixins/rippleable */"./src/mixins/rippleable.ts"),a=n(/*! ../../mixins/registrable */"./src/mixins/registrable.ts"),l=n(/*! ../VIcon */"./src/components/VIcon/index.ts"),c=n(/*! ../../util/mixins */"./src/util/mixins.ts"),u=n(/*! ../../util/console */"./src/util/console.ts"),h=function(t,e){var n="function"==typeof Symbol&&t[Symbol.iterator];if(!n)return t;var i,r,s=n.call(t),o=[];try{for(;(void 0===e||e-- >0)&&!(i=s.next()).done;)o.push(i.value)}catch(t){r={error:t}}finally{try{i&&!i.done&&(n=s.return)&&n.call(s)}finally{if(r)throw r.error}}return o},d=function(){for(var t=[],e=0;e<arguments.length;e++)t=t.concat(h(arguments[e]));return t};e.default=Object(c.default)(r.default,s.default,o.default,Object(a.inject)("expansionPanel","v-expansion-panel-content","v-expansion-panel")).extend({name:"v-expansion-panel-content",props:{disabled:Boolean,readonly:Boolean,expandIcon:{type:String,default:"$vuetify.icons.expand"},hideActions:Boolean,ripple:{type:[Boolean,Object],default:!1}},data:function(){return{height:"auto"}},computed:{containerClasses:function(){return{"v-expansion-panel__container--active":this.isActive,"v-expansion-panel__container--disabled":this.isDisabled}},isDisabled:function(){return this.expansionPanel.disabled||this.disabled},isReadonly:function(){return this.expansionPanel.readonly||this.readonly}},mounted:function(){this.expansionPanel.register(this),void 0!==this.value&&Object(u.consoleWarn)("v-model has been deprecated",this)},beforeDestroy:function(){this.expansionPanel.unregister(this)},methods:{onKeydown:function(t){13===t.keyCode&&this.$el===document.activeElement&&this.expansionPanel.panelClick(this._uid)},onHeaderClick:function(){this.isReadonly||this.expansionPanel.panelClick(this._uid)},genBody:function(){return this.$createElement("div",{ref:"body",class:"v-expansion-panel__body",directives:[{name:"show",value:this.isActive}]},this.showLazyContent(this.$slots.default))},genHeader:function(){var t=d(this.$slots.header);return this.hideActions||t.push(this.genIcon()),this.$createElement("div",{staticClass:"v-expansion-panel__header",directives:[{name:"ripple",value:this.ripple}],on:{click:this.onHeaderClick}},t)},genIcon:function(){var t=this.$slots.actions||[this.$createElement(l.default,this.expandIcon)];return this.$createElement("transition",{attrs:{name:"fade-transition"}},[this.$createElement("div",{staticClass:"v-expansion-panel__header__icon",directives:[{name:"show",value:!this.isDisabled}]},t)])},toggle:function(t){var e=this;t&&(this.isBooted=!0),this.$nextTick(function(){return e.isActive=t})}},render:function(t){var e=[];return this.$slots.header&&e.push(this.genHeader()),e.push(t(i.VExpandTransition,[this.genBody()])),t("li",{staticClass:"v-expansion-panel__container",class:this.containerClasses,attrs:{tabindex:this.isReadonly||this.isDisabled?null:0},on:{keydown:this.onKeydown}},e)}})},"./src/components/VExpansionPanel/index.ts": /*!*************************************************!*\ !*** ./src/components/VExpansionPanel/index.ts ***! \*************************************************/ /*! exports provided: VExpansionPanel, VExpansionPanelContent, default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./VExpansionPanel */"./src/components/VExpansionPanel/VExpansionPanel.ts");n.d(e,"VExpansionPanel",function(){return i.default});var r=n(/*! ./VExpansionPanelContent */"./src/components/VExpansionPanel/VExpansionPanelContent.ts");n.d(e,"VExpansionPanelContent",function(){return r.default}),e.default={$_vuetify_subcomponents:{VExpansionPanel:i.default,VExpansionPanelContent:r.default}}},"./src/components/VFooter/VFooter.js": /*!*******************************************!*\ !*** ./src/components/VFooter/VFooter.js ***! \*******************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_footer.styl */"./src/stylus/components/_footer.styl");var i=n(/*! ../../mixins/applicationable */"./src/mixins/applicationable.ts"),r=n(/*! ../../mixins/colorable */"./src/mixins/colorable.ts"),s=n(/*! ../../mixins/themeable */"./src/mixins/themeable.ts"),o=function(){return(o=Object.assign||function(t){for(var e,n=1,i=arguments.length;n<i;n++)for(var r in e=arguments[n])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t}).apply(this,arguments)};e.default={name:"v-footer",mixins:[Object(i.default)(null,["height","inset"]),r.default,s.default],props:{height:{default:32,type:[Number,String]},inset:Boolean},computed:{applicationProperty:function(){return this.inset?"insetFooter":"footer"},computedMarginBottom:function(){if(this.app)return this.$vuetify.application.bottom},computedPaddingLeft:function(){return this.app&&this.inset?this.$vuetify.application.left:0},computedPaddingRight:function(){return this.app?this.$vuetify.application.right:0},styles:function(){var t={height:isNaN(this.height)?this.height:this.height+"px"};return this.computedPaddingLeft&&(t.paddingLeft=this.computedPaddingLeft+"px"),this.computedPaddingRight&&(t.paddingRight=this.computedPaddingRight+"px"),this.computedMarginBottom&&(t.marginBottom=this.computedMarginBottom+"px"),t}},methods:{updateApplication:function(){var t=parseInt(this.height);return isNaN(t)?this.$el?this.$el.clientHeight:0:t}},render:function(t){return t("footer",this.setBackgroundColor(this.color,{staticClass:"v-footer",class:o({"v-footer--absolute":this.absolute,"v-footer--fixed":!this.absolute&&(this.app||this.fixed),"v-footer--inset":this.inset},this.themeClasses),style:this.styles,ref:"content"}),this.$slots.default)}}},"./src/components/VFooter/index.js": /*!*****************************************!*\ !*** ./src/components/VFooter/index.js ***! \*****************************************/ /*! exports provided: VFooter, default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./VFooter */"./src/components/VFooter/VFooter.js");n.d(e,"VFooter",function(){return i.default}),e.default=i.default},"./src/components/VForm/VForm.js": /*!***************************************!*\ !*** ./src/components/VForm/VForm.js ***! \***************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_forms.styl */"./src/stylus/components/_forms.styl");var i=n(/*! ../../mixins/registrable */"./src/mixins/registrable.ts");e.default={name:"v-form",mixins:[Object(i.provide)("form")],inheritAttrs:!1,props:{value:Boolean,lazyValidation:Boolean},data:function(){return{inputs:[],watchers:[],errorBag:{}}},watch:{errorBag:{handler:function(){var t=Object.values(this.errorBag).includes(!0);this.$emit("input",!t)},deep:!0,immediate:!0}},methods:{watchInput:function(t){var e=this,n=function(t){return t.$watch("hasError",function(n){e.$set(e.errorBag,t._uid,n)},{immediate:!0})},i={_uid:t._uid,valid:void 0,shouldValidate:void 0};return this.lazyValidation?i.shouldValidate=t.$watch("shouldValidate",function(r){r&&(e.errorBag.hasOwnProperty(t._uid)||(i.valid=n(t)))}):i.valid=n(t),i},validate:function(){return!this.inputs.filter(function(t){return!t.validate(!0)}).length},reset:function(){for(var t=this,e=this.inputs.length;e--;)this.inputs[e].reset();this.lazyValidation&&setTimeout(function(){t.errorBag={}},0)},resetValidation:function(){for(var t=this,e=this.inputs.length;e--;)this.inputs[e].resetValidation();this.lazyValidation&&setTimeout(function(){t.errorBag={}},0)},register:function(t){var e=this.watchInput(t);this.inputs.push(t),this.watchers.push(e)},unregister:function(t){var e=this.inputs.find(function(e){return e._uid===t._uid});if(e){var n=this.watchers.find(function(t){return t._uid===e._uid});n.valid&&n.valid(),n.shouldValidate&&n.shouldValidate(),this.watchers=this.watchers.filter(function(t){return t._uid!==e._uid}),this.inputs=this.inputs.filter(function(t){return t._uid!==e._uid}),this.$delete(this.errorBag,e._uid)}}},render:function(t){var e=this;return t("form",{staticClass:"v-form",attrs:Object.assign({novalidate:!0},this.$attrs),on:{submit:function(t){return e.$emit("submit",t)}}},this.$slots.default)}}},"./src/components/VForm/index.js": /*!***************************************!*\ !*** ./src/components/VForm/index.js ***! \***************************************/ /*! exports provided: VForm, default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./VForm */"./src/components/VForm/VForm.js");n.d(e,"VForm",function(){return i.default}),e.default=i.default},"./src/components/VGrid/VContainer.js": /*!********************************************!*\ !*** ./src/components/VGrid/VContainer.js ***! \********************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_grid.styl */"./src/stylus/components/_grid.styl");var i=n(/*! ./grid */"./src/components/VGrid/grid.js");e.default=Object(i.default)("container")},"./src/components/VGrid/VContent.js": /*!******************************************!*\ !*** ./src/components/VGrid/VContent.js ***! \******************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_content.styl */"./src/stylus/components/_content.styl");var i=n(/*! ../../mixins/ssr-bootable */"./src/mixins/ssr-bootable.ts");e.default={name:"v-content",mixins:[i.default],props:{tag:{type:String,default:"main"}},computed:{styles:function(){var t=this.$vuetify.application,e=t.bar;return{paddingTop:t.top+e+"px",paddingRight:t.right+"px",paddingBottom:t.footer+t.insetFooter+t.bottom+"px",paddingLeft:t.left+"px"}}},render:function(t){var e={staticClass:"v-content",style:this.styles,ref:"content"};return t(this.tag,e,[t("div",{staticClass:"v-content__wrap"},this.$slots.default)])}}},"./src/components/VGrid/VFlex.js": /*!***************************************!*\ !*** ./src/components/VGrid/VFlex.js ***! \***************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_grid.styl */"./src/stylus/components/_grid.styl");var i=n(/*! ./grid */"./src/components/VGrid/grid.js");e.default=Object(i.default)("flex")},"./src/components/VGrid/VLayout.js": /*!*****************************************!*\ !*** ./src/components/VGrid/VLayout.js ***! \*****************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_grid.styl */"./src/stylus/components/_grid.styl");var i=n(/*! ./grid */"./src/components/VGrid/grid.js");e.default=Object(i.default)("layout")},"./src/components/VGrid/grid.js": /*!**************************************!*\ !*** ./src/components/VGrid/grid.js ***! \**************************************/ /*! exports provided: default */function(t,e,n){"use strict";function i(t){return{name:"v-"+t,functional:!0,props:{id:String,tag:{type:String,default:"div"}},render:function(e,n){var i=n.props,r=n.data,s=n.children;if(r.staticClass=(t+" "+(r.staticClass||"")).trim(),r.attrs){var o=Object.keys(r.attrs).filter(function(t){if("slot"===t)return!1;var e=r.attrs[t];return e||"string"==typeof e});o.length&&(r.staticClass+=" "+o.join(" ")),delete r.attrs}return i.id&&(r.domProps=r.domProps||{},r.domProps.id=i.id),e(i.tag,r,s)}}}n.r(e),n.d(e,"default",function(){return i})},"./src/components/VGrid/index.js": /*!***************************************!*\ !*** ./src/components/VGrid/index.js ***! \***************************************/ /*! exports provided: VContainer, VContent, VFlex, VLayout, VSpacer, default */function(t,e,n){"use strict";n.r(e),n.d(e,"VSpacer",function(){return l});var i=n(/*! ../../util/helpers */"./src/util/helpers.ts"),r=n(/*! ./VContainer */"./src/components/VGrid/VContainer.js");n.d(e,"VContainer",function(){return r.default});var s=n(/*! ./VContent */"./src/components/VGrid/VContent.js");n.d(e,"VContent",function(){return s.default});var o=n(/*! ./VFlex */"./src/components/VGrid/VFlex.js");n.d(e,"VFlex",function(){return o.default});var a=n(/*! ./VLayout */"./src/components/VGrid/VLayout.js");n.d(e,"VLayout",function(){return a.default});var l=Object(i.createSimpleFunctional)("spacer","div","v-spacer");e.default={$_vuetify_subcomponents:{VContainer:r.default,VContent:s.default,VFlex:o.default,VLayout:a.default,VSpacer:l}}},"./src/components/VHover/VHover.ts": /*!*****************************************!*\ !*** ./src/components/VHover/VHover.ts ***! \*****************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ../../mixins/delayable */"./src/mixins/delayable.ts"),r=n(/*! ../../mixins/toggleable */"./src/mixins/toggleable.ts"),s=n(/*! ../../util/mixins */"./src/util/mixins.ts"),o=n(/*! ../../util/console */"./src/util/console.ts");e.default=Object(s.default)(i.default,r.default).extend({name:"v-hover",props:{disabled:{type:Boolean,default:!1},value:{type:Boolean,default:void 0}},methods:{onMouseEnter:function(){var t=this;this.runDelay("open",function(){t.isActive=!0})},onMouseLeave:function(){var t=this;this.runDelay("close",function(){t.isActive=!1})}},render:function(){return this.$scopedSlots.default||void 0!==this.value?(this.$scopedSlots.default?t=this.$scopedSlots.default({hover:this.isActive}):1===this.$slots.default.length&&(t=this.$slots.default[0]),!t||"string"==typeof t||Array.isArray(t)?(Object(o.consoleWarn)("v-hover should only contain a single element",this),t):(this.disabled||this._g(t.data,{mouseenter:this.onMouseEnter,mouseleave:this.onMouseLeave}),t)):(Object(o.consoleWarn)("v-hover is missing a default scopedSlot or bound value",this),null);var t}})},"./src/components/VHover/index.ts": /*!****************************************!*\ !*** ./src/components/VHover/index.ts ***! \****************************************/ /*! exports provided: VHover, default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./VHover */"./src/components/VHover/VHover.ts");n.d(e,"VHover",function(){return i.default}),e.default=i.default},"./src/components/VIcon/VIcon.ts": /*!***************************************!*\ !*** ./src/components/VIcon/VIcon.ts ***! \***************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_icons.styl */"./src/stylus/components/_icons.styl");var i,r=n(/*! ../../mixins/colorable */"./src/mixins/colorable.ts"),s=n(/*! ../../mixins/sizeable */"./src/mixins/sizeable.ts"),o=n(/*! ../../mixins/themeable */"./src/mixins/themeable.ts"),a=n(/*! ../../util/helpers */"./src/util/helpers.ts"),l=n(/*! vue */"vue"),c=n.n(l),u=n(/*! ../../util/mixins */"./src/util/mixins.ts"),h=function(){return(h=Object.assign||function(t){for(var e,n=1,i=arguments.length;n<i;n++)for(var r in e=arguments[n])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t}).apply(this,arguments)};!function(t){t.small="16px",t.default="24px",t.medium="28px",t.large="36px",t.xLarge="40px"}(i||(i={}));var d=Object(u.default)(r.default,s.default,o.default).extend({name:"v-icon",props:{disabled:Boolean,left:Boolean,right:Boolean},render:function(t){var e,n={small:this.small,medium:this.medium,large:this.large,xLarge:this.xLarge},r=Object(a.keys)(n).find(function(t){return n[t]&&!!t}),s=r&&i[r]||Object(a.convertToUnit)(this.size),o=[],l={staticClass:"v-icon",attrs:h({"aria-hidden":!0},this.$attrs),on:this.$listeners};s&&(l.style={fontSize:s});var c="";this.$slots.default&&(c=this.$slots.default[0].text);var u="material-icons",d=(c=Object(a.remapInternalIcon)(this,c)).indexOf("-"),p=d>-1;return p?function(t){return["fas","far","fal","fab"].some(function(e){return t.includes(e)})}(u=c.slice(0,d))&&(u=""):o.push(c),l.class=h(((e={"v-icon--disabled":this.disabled,"v-icon--left":this.left,"v-icon--link":this.$listeners.click||this.$listeners["!click"],"v-icon--right":this.right})[u]=!0,e[c]=p,e),this.themeClasses),t("i",this.setTextColor(this.color,l),o)}});e.default=c.a.extend({name:"v-icon",$_wrapperFor:d,functional:!0,render:function(t,e){var n=e.data,i=e.children,r="";return n.domProps&&(r=n.domProps.textContent||n.domProps.innerHTML||r,delete n.domProps.textContent,delete n.domProps.innerHTML),t(d,n,r?[r]:i)}})},"./src/components/VIcon/index.ts": /*!***************************************!*\ !*** ./src/components/VIcon/index.ts ***! \***************************************/ /*! exports provided: VIcon, default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./VIcon */"./src/components/VIcon/VIcon.ts");n.d(e,"VIcon",function(){return i.default}),e.default=i.default},"./src/components/VImg/VImg.ts": /*!*************************************!*\ !*** ./src/components/VImg/VImg.ts ***! \*************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_images.styl */"./src/stylus/components/_images.styl");var i=n(/*! ../VResponsive */"./src/components/VResponsive/index.ts"),r=n(/*! ../../util/console */"./src/util/console.ts");e.default=i.default.extend({name:"v-img",props:{alt:String,contain:Boolean,src:{type:[String,Object],default:""},gradient:String,lazySrc:String,srcset:String,sizes:String,position:{type:String,default:"center center"},transition:{type:[Boolean,String],default:"fade-transition"}},data:function(){return{currentSrc:"",image:null,isLoading:!0,calculatedAspectRatio:void 0}},computed:{computedAspectRatio:function(){return this.normalisedSrc.aspect},normalisedSrc:function(){return"string"==typeof this.src?{src:this.src,srcset:this.srcset,lazySrc:this.lazySrc,aspect:Number(this.aspectRatio||this.calculatedAspectRatio)}:{src:this.src.src,srcset:this.srcset||this.src.srcset,lazySrc:this.lazySrc||this.src.lazySrc,aspect:Number(this.aspectRatio||this.src.aspect||this.calculatedAspectRatio)}},__cachedImage:function(){if(!this.normalisedSrc.src&&!this.normalisedSrc.lazySrc)return[];var t=[],e=this.isLoading?this.normalisedSrc.lazySrc:this.currentSrc;this.gradient&&t.push("linear-gradient("+this.gradient+")"),e&&t.push('url("'+e+'")');var n=this.$createElement("div",{staticClass:"v-image__image",class:{"v-image__image--preload":this.isLoading,"v-image__image--contain":this.contain,"v-image__image--cover":!this.contain},style:{backgroundImage:t.join(", "),backgroundPosition:this.position},key:+this.isLoading});return this.transition?this.$createElement("transition",{attrs:{name:this.transition,mode:"in-out"}},[n]):n}},watch:{src:function(){this.isLoading?this.loadImage():this.init()},"$vuetify.breakpoint.width":"getSrc"},beforeMount:function(){this.init()},methods:{init:function(){if(this.normalisedSrc.lazySrc){var t=new Image;t.src=this.normalisedSrc.lazySrc,this.pollForSize(t,null)}this.normalisedSrc.src&&this.loadImage()},onLoad:function(){this.getSrc(),this.isLoading=!1,this.$emit("load",this.src)},onError:function(t){Object(r.consoleError)("Image load failed\n\nsrc: "+this.normalisedSrc.src+(t.message?"\nOriginal error: "+t.message:""),this),this.$emit("error",this.src)},getSrc:function(){this.image&&(this.currentSrc=this.image.currentSrc||this.image.src)},loadImage:function(){var t=this,e=new Image;this.image=e,e.onload=function(){e.decode?e.decode().catch(function(e){Object(r.consoleWarn)("Failed to decode image, trying to render anyway\n\nsrc: "+t.normalisedSrc.src+(e.message?"\nOriginal error: "+e.message:""),t)}).then(t.onLoad):t.onLoad()},e.onerror=this.onError,e.src=this.normalisedSrc.src,this.sizes&&(e.sizes=this.sizes),this.normalisedSrc.srcset&&(e.srcset=this.normalisedSrc.srcset),this.aspectRatio||this.pollForSize(e),this.getSrc()},pollForSize:function(t,e){var n=this;void 0===e&&(e=100);!function i(){var r=t.naturalHeight,s=t.naturalWidth;r||s?n.calculatedAspectRatio=s/r:null!=e&&setTimeout(i,e)}()},__genPlaceholder:function(){if(this.$slots.placeholder){var t=this.isLoading?[this.$createElement("div",{staticClass:"v-image__placeholder"},this.$slots.placeholder)]:[];return this.transition?this.$createElement("transition",{attrs:{name:this.transition}},t):t[0]}}},render:function(t){var e=i.default.options.render.call(this,t);return e.data.staticClass+=" v-image",e.data.attrs={role:this.alt?"img":void 0,"aria-label":this.alt},e.children=[this.__cachedSizer,this.__cachedImage,this.__genPlaceholder(),this.genContent()],t(e.tag,e.data,e.children)}})},"./src/components/VImg/index.ts": /*!**************************************!*\ !*** ./src/components/VImg/index.ts ***! \**************************************/ /*! exports provided: VImg, default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./VImg */"./src/components/VImg/VImg.ts");n.d(e,"VImg",function(){return i.default}),e.default=i.default},"./src/components/VInput/VInput.js": /*!*****************************************!*\ !*** ./src/components/VInput/VInput.js ***! \*****************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_inputs.styl */"./src/stylus/components/_inputs.styl");var i=n(/*! ../VIcon */"./src/components/VIcon/index.ts"),r=n(/*! ../VLabel */"./src/components/VLabel/index.js"),s=n(/*! ../VMessages */"./src/components/VMessages/index.js"),o=n(/*! ../../mixins/colorable */"./src/mixins/colorable.ts"),a=n(/*! ../../mixins/themeable */"./src/mixins/themeable.ts"),l=n(/*! ../../mixins/validatable */"./src/mixins/validatable.js"),c=n(/*! ../../util/helpers */"./src/util/helpers.ts"),u=n(/*! ../../util/console */"./src/util/console.ts"),h=function(){return(h=Object.assign||function(t){for(var e,n=1,i=arguments.length;n<i;n++)for(var r in e=arguments[n])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t}).apply(this,arguments)};e.default={name:"v-input",mixins:[o.default,a.default,l.default],props:{appendIcon:String,appendIconCb:Function,backgroundColor:{type:String,default:""},disabled:Boolean,height:[Number,String],hideDetails:Boolean,hint:String,label:String,persistentHint:Boolean,prependIcon:String,prependIconCb:Function,readonly:Boolean,value:{required:!1}},data:function(t){return{lazyValue:t.value,hasMouseDown:!1,isFocused:!1}},computed:{classesInput:function(){return h({},this.classes,{"v-input--has-state":this.hasState,"v-input--hide-details":this.hideDetails,"v-input--is-label-active":this.isLabelActive,"v-input--is-dirty":this.isDirty,"v-input--is-disabled":this.disabled,"v-input--is-focused":this.isFocused,"v-input--is-loading":!1!==this.loading&&void 0!==this.loading,"v-input--is-readonly":this.readonly},this.themeClasses)},directivesInput:function(){return[]},hasHint:function(){return!this.hasMessages&&this.hint&&(this.persistentHint||this.isFocused)},hasLabel:function(){return Boolean(this.$slots.label||this.label)},internalValue:{get:function(){return this.lazyValue},set:function(t){this.lazyValue=t,this.$emit(this.$_modelEvent,t)}},isDirty:function(){return!!this.lazyValue},isDisabled:function(){return Boolean(this.disabled||this.readonly)},isLabelActive:function(){return this.isDirty}},watch:{value:function(t){this.lazyValue=t}},beforeCreate:function(){this.$_modelEvent=this.$options.model&&this.$options.model.event||"input"},methods:{genContent:function(){return[this.genPrependSlot(),this.genControl(),this.genAppendSlot()]},genControl:function(){return this.$createElement("div",{staticClass:"v-input__control"},[this.genInputSlot(),this.genMessages()])},genDefaultSlot:function(){return[this.genLabel(),this.$slots.default]},genIcon:function(t,e,n){var r=this;void 0===n&&(n=!0);var s=this[t+"Icon"],o="click:"+Object(c.kebabCase)(t);e=e||this[t+"IconCb"],n&&t&&e&&Object(u.deprecate)(":"+t+"-icon-cb","@"+o,this);var a={props:{color:this.validationState,dark:this.dark,disabled:this.disabled,light:this.light},on:this.$listeners[o]||e?{click:function(t){t.preventDefault(),t.stopPropagation(),r.$emit(o,t),e&&e(t)},mouseup:function(t){t.preventDefault(),t.stopPropagation()}}:null};return this.$createElement("div",{staticClass:"v-input__icon v-input__icon--"+Object(c.kebabCase)(t),key:""+t+s},[this.$createElement(i.default,a,s)])},genInputSlot:function(){return this.$createElement("div",this.setBackgroundColor(this.backgroundColor,{staticClass:"v-input__slot",style:{height:Object(c.convertToUnit)(this.height)},directives:this.directivesInput,on:{click:this.onClick,mousedown:this.onMouseDown,mouseup:this.onMouseUp},ref:"input-slot"}),[this.genDefaultSlot()])},genLabel:function(){return this.hasLabel?this.$createElement(r.default,{props:{color:this.validationState,dark:this.dark,focused:this.hasState,for:this.$attrs.id,light:this.light}},this.$slots.label||this.label):null},genMessages:function(){if(this.hideDetails)return null;var t=this.hasHint?[this.hint]:this.validations;return this.$createElement(s.default,{props:{color:this.hasHint?"":this.validationState,dark:this.dark,light:this.light,value:this.hasMessages||this.hasHint?t:[]}})},genSlot:function(t,e,n){if(!n.length)return null;var i=t+"-"+e;return this.$createElement("div",{staticClass:"v-input__"+i,ref:i},n)},genPrependSlot:function(){var t=[];return this.$slots.prepend?t.push(this.$slots.prepend):this.prependIcon&&t.push(this.genIcon("prepend")),this.genSlot("prepend","outer",t)},genAppendSlot:function(){var t=[];return this.$slots.append?t.push(this.$slots.append):this.appendIcon&&t.push(this.genIcon("append")),this.genSlot("append","outer",t)},onClick:function(t){this.$emit("click",t)},onMouseDown:function(t){this.hasMouseDown=!0,this.$emit("mousedown",t)},onMouseUp:function(t){this.hasMouseDown=!1,this.$emit("mouseup",t)}},render:function(t){return t("div",this.setTextColor(this.validationState,{staticClass:"v-input",attrs:this.attrsInput,class:this.classesInput}),this.genContent())}}},"./src/components/VInput/index.js": /*!****************************************!*\ !*** ./src/components/VInput/index.js ***! \****************************************/ /*! exports provided: VInput, default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./VInput */"./src/components/VInput/VInput.js");n.d(e,"VInput",function(){return i.default}),e.default=i.default},"./src/components/VItemGroup/VItem.ts": /*!********************************************!*\ !*** ./src/components/VItemGroup/VItem.ts ***! \********************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ../../mixins/groupable */"./src/mixins/groupable.ts"),r=n(/*! ../../util/mixins */"./src/util/mixins.ts"),s=n(/*! ../../util/console */"./src/util/console.ts");e.default=Object(r.default)(Object(i.factory)("itemGroup","v-item","v-item-group")).extend({name:"v-item",props:{value:{required:!1}},render:function(){var t,e;return this.$scopedSlots.default?(this.$scopedSlots.default&&(e=this.$scopedSlots.default({active:this.isActive,toggle:this.toggle})),!e||"string"==typeof e||Array.isArray(e)?(Object(s.consoleWarn)("v-item should only contain a single element",this),e):(e.data=e.data||{},e.data.class=[e.data.class,(t={},t[this.activeClass]=this.isActive,t)],e)):(Object(s.consoleWarn)("v-item is missing a default scopedSlot",this),null)}})},"./src/components/VItemGroup/VItemGroup.ts": /*!*************************************************!*\ !*** ./src/components/VItemGroup/VItemGroup.ts ***! \*************************************************/ /*! exports provided: BaseItemGroup, default */function(t,e,n){"use strict";n.r(e),n.d(e,"BaseItemGroup",function(){return l});n(/*! ../../stylus/components/_item-group.styl */"./src/stylus/components/_item-group.styl");var i=n(/*! ../../mixins/proxyable */"./src/mixins/proxyable.ts"),r=n(/*! ../../mixins/themeable */"./src/mixins/themeable.ts"),s=n(/*! ../../util/mixins */"./src/util/mixins.ts"),o=n(/*! ../../util/console */"./src/util/console.ts"),a=function(){return(a=Object.assign||function(t){for(var e,n=1,i=arguments.length;n<i;n++)for(var r in e=arguments[n])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t}).apply(this,arguments)},l=Object(s.default)(i.default,r.default).extend({name:"base-item-group",props:{activeClass:{type:String,default:"v-item--active"},mandatory:Boolean,max:{type:[Number,String],default:null},multiple:Boolean},data:function(){return{internalLazyValue:void 0!==this.value?this.value:this.multiple?[]:void 0,items:[]}},computed:{classes:function(){return a({},this.themeClasses)},selectedItems:function(){var t=this;return this.items.filter(function(e,n){return t.toggleMethod(t.getValue(e,n))})},selectedValues:function(){return Array.isArray(this.internalValue)?this.internalValue:[this.internalValue]},toggleMethod:function(){var t=this;if(!this.multiple)return function(e){return t.internalValue===e};var e=this.internalValue;return Array.isArray(e)?function(t){return e.includes(t)}:function(){return!1}}},watch:{internalValue:"updateItemsState"},created:function(){this.multiple&&!Array.isArray(this.internalValue)&&Object(o.consoleWarn)("Model must be bound to an array if the multiple property is true.",this)},mounted:function(){this.$nextTick(this.init)},methods:{getValue:function(t,e){return null==t.value||""===t.value?e:t.value},init:function(){this.updateItemsState()},onClick:function(t,e){this.updateInternalValue(this.getValue(t,e))},register:function(t){var e=this,n=this.items.push(t)-1;t.$on("change",function(){return e.onClick(t,n)}),this.updateItem(t,n)},unregister:function(t){var e=this.items.indexOf(t),n=this.getValue(t,e);if(this.items.splice(e,1),!(this.selectedValues.indexOf(n)<0)){if(!this.mandatory)return this.updateInternalValue(n);this.multiple&&Array.isArray(this.internalValue)?this.internalValue=this.internalValue.filter(function(t){return t!==n}):this.internalValue=void 0,this.selectedItems.length||this.updateMandatory(!0)}},updateItem:function(t,e){var n=this.getValue(t,e);t.isActive=this.toggleMethod(n)},updateItemsState:function(){if(this.mandatory&&!this.selectedItems.length)return this.updateMandatory();this.items.forEach(this.updateItem)},updateInternalValue:function(t){this.multiple?this.updateMultiple(t):this.updateSingle(t)},updateMandatory:function(t){if(this.items.length){var e=t?this.items.length-1:0;this.updateInternalValue(this.getValue(this.items[e],e))}},updateMultiple:function(t){var e=(Array.isArray(this.internalValue)?this.internalValue:[]).slice(),n=e.findIndex(function(e){return e===t});this.mandatory&&n>-1&&e.length-1<1||null!=this.max&&n<0&&e.length+1>this.max||(n>-1?e.splice(n,1):e.push(t),this.internalValue=e)},updateSingle:function(t){var e=t===this.internalValue;this.mandatory&&e||(this.internalValue=e?void 0:t)}},render:function(t){return t("div",{staticClass:"v-item-group",class:this.classes},this.$slots.default)}});e.default=l.extend({name:"v-item-group",provide:function(){return{itemGroup:this}}})},"./src/components/VItemGroup/index.ts": /*!********************************************!*\ !*** ./src/components/VItemGroup/index.ts ***! \********************************************/ /*! exports provided: VItem, VItemGroup, default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./VItem */"./src/components/VItemGroup/VItem.ts");n.d(e,"VItem",function(){return i.default});var r=n(/*! ./VItemGroup */"./src/components/VItemGroup/VItemGroup.ts");n.d(e,"VItemGroup",function(){return r.default}),e.default={$_vuetify_subcomponents:{VItem:i.default,VItemGroup:r.default}}},"./src/components/VJumbotron/VJumbotron.js": /*!*************************************************!*\ !*** ./src/components/VJumbotron/VJumbotron.js ***! \*************************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_jumbotrons.styl */"./src/stylus/components/_jumbotrons.styl");var i=n(/*! ../../mixins/colorable */"./src/mixins/colorable.ts"),r=n(/*! ../../mixins/routable */"./src/mixins/routable.ts"),s=n(/*! ../../mixins/themeable */"./src/mixins/themeable.ts"),o=n(/*! ../../util/console */"./src/util/console.ts");e.default={name:"v-jumbotron",mixins:[i.default,r.default,s.default],props:{gradient:String,height:{type:[Number,String],default:"400px"},src:String,tag:{type:String,default:"div"}},computed:{backgroundStyles:function(){var t={};return this.gradient&&(t.background="linear-gradient("+this.gradient+")"),t},classes:function(){return this.themeClasses},styles:function(){return{height:this.height}}},mounted:function(){Object(o.deprecate)("v-jumbotron",this.src?"v-img":"v-responsive",this)},methods:{genBackground:function(){return this.$createElement("div",this.setBackgroundColor(this.color,{staticClass:"v-jumbotron__background",style:this.backgroundStyles}))},genContent:function(){return this.$createElement("div",{staticClass:"v-jumbotron__content"},this.$slots.default)},genImage:function(){return this.src?this.$slots.img?this.$slots.img({src:this.src}):this.$createElement("img",{staticClass:"v-jumbotron__image",attrs:{src:this.src}}):null},genWrapper:function(){return this.$createElement("div",{staticClass:"v-jumbotron__wrapper"},[this.genImage(),this.genBackground(),this.genContent()])}},render:function(t){var e=this.generateRouteLink(this.classes),n=e.tag,i=e.data;return i.staticClass="v-jumbotron",i.style=this.styles,t(n,i,[this.genWrapper()])}}},"./src/components/VJumbotron/index.js": /*!********************************************!*\ !*** ./src/components/VJumbotron/index.js ***! \********************************************/ /*! exports provided: VJumbotron, default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./VJumbotron */"./src/components/VJumbotron/VJumbotron.js");n.d(e,"VJumbotron",function(){return i.default}),e.default=i.default},"./src/components/VLabel/VLabel.js": /*!*****************************************!*\ !*** ./src/components/VLabel/VLabel.js ***! \*****************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_labels.styl */"./src/stylus/components/_labels.styl");var i=n(/*! ../../mixins/colorable */"./src/mixins/colorable.ts"),r=n(/*! ../../mixins/themeable */"./src/mixins/themeable.ts"),s=n(/*! ../../util/helpers */"./src/util/helpers.ts"),o=function(){return(o=Object.assign||function(t){for(var e,n=1,i=arguments.length;n<i;n++)for(var r in e=arguments[n])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t}).apply(this,arguments)};e.default={name:"v-label",functional:!0,mixins:[r.default],props:{absolute:Boolean,color:{type:[Boolean,String],default:"primary"},disabled:Boolean,focused:Boolean,for:String,left:{type:[Number,String],default:0},right:{type:[Number,String],default:"auto"},value:Boolean},render:function(t,e){var n=e.children,a=e.listeners,l=e.props,c={staticClass:"v-label",class:o({"v-label--active":l.value,"v-label--is-disabled":l.disabled},Object(r.functionalThemeClasses)(e)),attrs:{for:l.for,"aria-hidden":!l.for},on:a,style:{left:Object(s.convertToUnit)(l.left),right:Object(s.convertToUnit)(l.right),position:l.absolute?"absolute":"relative"}};return t("label",i.default.options.methods.setTextColor(l.focused&&l.color,c),n)}}},"./src/components/VLabel/index.js": /*!****************************************!*\ !*** ./src/components/VLabel/index.js ***! \****************************************/ /*! exports provided: VLabel, default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./VLabel */"./src/components/VLabel/VLabel.js");n.d(e,"VLabel",function(){return i.default}),e.default=i.default},"./src/components/VList/VList.js": /*!***************************************!*\ !*** ./src/components/VList/VList.js ***! \***************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_lists.styl */"./src/stylus/components/_lists.styl");var i=n(/*! ../../mixins/themeable */"./src/mixins/themeable.ts"),r=n(/*! ../../mixins/registrable */"./src/mixins/registrable.ts"),s=function(){return(s=Object.assign||function(t){for(var e,n=1,i=arguments.length;n<i;n++)for(var r in e=arguments[n])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t}).apply(this,arguments)};e.default={name:"v-list",mixins:[Object(r.provide)("list"),i.default],provide:function(){return{listClick:this.listClick}},props:{dense:Boolean,expand:Boolean,subheader:Boolean,threeLine:Boolean,twoLine:Boolean},data:function(){return{groups:[]}},computed:{classes:function(){return s({"v-list--dense":this.dense,"v-list--subheader":this.subheader,"v-list--two-line":this.twoLine,"v-list--three-line":this.threeLine},this.themeClasses)}},methods:{register:function(t,e){this.groups.push({uid:t,cb:e})},unregister:function(t){var e=this.groups.findIndex(function(e){return e.uid===t});e>-1&&this.groups.splice(e,1)},listClick:function(t){if(!this.expand)for(var e=this.groups.length;e--;)this.groups[e].cb(t)}},render:function(t){return t("div",{staticClass:"v-list",class:this.classes},[this.$slots.default])}}},"./src/components/VList/VListGroup.js": /*!********************************************!*\ !*** ./src/components/VList/VListGroup.js ***! \********************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ../../components/VIcon */"./src/components/VIcon/index.ts"),r=n(/*! ../../mixins/bootable */"./src/mixins/bootable.ts"),s=n(/*! ../../mixins/toggleable */"./src/mixins/toggleable.ts"),o=n(/*! ../../mixins/registrable */"./src/mixins/registrable.ts"),a=n(/*! ../transitions */"./src/components/transitions/index.js");e.default={name:"v-list-group",mixins:[r.default,Object(o.inject)("list","v-list-group","v-list"),s.default],inject:["listClick"],props:{activeClass:{type:String,default:"primary--text"},appendIcon:{type:String,default:"$vuetify.icons.expand"},disabled:Boolean,group:String,noAction:Boolean,prependIcon:String,subGroup:Boolean},data:function(){return{groups:[]}},computed:{groupClasses:function(){return{"v-list__group--active":this.isActive,"v-list__group--disabled":this.disabled}},headerClasses:function(){return{"v-list__group__header--active":this.isActive,"v-list__group__header--sub-group":this.subGroup}},itemsClasses:function(){return{"v-list__group__items--no-action":this.noAction}}},watch:{isActive:function(t){!this.subGroup&&t&&this.listClick(this._uid)},$route:function(t){var e=this.matchRoute(t.path);this.group&&(e&&this.isActive!==e&&this.listClick(this._uid),this.isActive=e)}},mounted:function(){this.list.register(this._uid,this.toggle),this.group&&this.$route&&null==this.value&&(this.isActive=this.matchRoute(this.$route.path))},beforeDestroy:function(){this.list.unregister(this._uid)},methods:{click:function(){this.disabled||(this.isActive=!this.isActive)},genIcon:function(t){return this.$createElement(i.default,t)},genAppendIcon:function(){var t=!this.subGroup&&this.appendIcon;return t||this.$slots.appendIcon?this.$createElement("div",{staticClass:"v-list__group__header__append-icon"},[this.$slots.appendIcon||this.genIcon(t)]):null},genGroup:function(){return this.$createElement("div",{staticClass:"v-list__group__header",class:this.headerClasses,on:Object.assign({},{click:this.click},this.$listeners),ref:"item"},[this.genPrependIcon(),this.$slots.activator,this.genAppendIcon()])},genItems:function(){return this.$createElement("div",{staticClass:"v-list__group__items",class:this.itemsClasses,directives:[{name:"show",value:this.isActive}],ref:"group"},this.showLazyContent(this.$slots.default))},genPrependIcon:function(){var t,e=this.prependIcon?this.prependIcon:!!this.subGroup&&"$vuetify.icons.subgroup";return e||this.$slots.prependIcon?this.$createElement("div",{staticClass:"v-list__group__header__prepend-icon",class:(t={},t[this.activeClass]=this.isActive,t)},[this.$slots.prependIcon||this.genIcon(e)]):null},toggle:function(t){this.isActive=this._uid===t},matchRoute:function(t){return!!this.group&&null!==t.match(this.group)}},render:function(t){return t("div",{staticClass:"v-list__group",class:this.groupClasses},[this.genGroup(),t(a.VExpandTransition,[this.genItems()])])}}},"./src/components/VList/VListTile.js": /*!*******************************************!*\ !*** ./src/components/VList/VListTile.js ***! \*******************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ../../mixins/colorable */"./src/mixins/colorable.ts"),r=n(/*! ../../mixins/routable */"./src/mixins/routable.ts"),s=n(/*! ../../mixins/toggleable */"./src/mixins/toggleable.ts"),o=n(/*! ../../mixins/themeable */"./src/mixins/themeable.ts"),a=n(/*! ../../directives/ripple */"./src/directives/ripple.ts"),l=function(){return(l=Object.assign||function(t){for(var e,n=1,i=arguments.length;n<i;n++)for(var r in e=arguments[n])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t}).apply(this,arguments)};e.default={name:"v-list-tile",directives:{Ripple:a.default},mixins:[i.default,r.default,s.default,o.default],inheritAttrs:!1,props:{activeClass:{type:String,default:"primary--text"},avatar:Boolean,inactive:Boolean,tag:String},data:function(){return{proxyClass:"v-list__tile--active"}},computed:{listClasses:function(){return this.disabled?{"v-list--disabled":!0}:void 0},classes:function(){var t;return l({"v-list__tile":!0,"v-list__tile--link":this.isLink&&!this.inactive,"v-list__tile--avatar":this.avatar,"v-list__tile--disabled":this.disabled,"v-list__tile--active":!this.to&&this.isActive},this.themeClasses,((t={})[this.activeClass]=this.isActive,t))},isLink:function(){return this.href||this.to||this.$listeners&&(this.$listeners.click||this.$listeners["!click"])}},render:function(t){var e=!this.inactive&&this.isLink?this.generateRouteLink(this.classes):{tag:this.tag||"div",data:{class:this.classes}},n=e.tag,i=e.data;return i.attrs=Object.assign({},i.attrs,this.$attrs),t("div",this.setTextColor(!this.disabled&&this.color,{class:this.listClasses,attrs:{disabled:this.disabled},on:l({},this.$listeners)}),[t(n,i,this.$slots.default)])}}},"./src/components/VList/VListTileAction.js": /*!*************************************************!*\ !*** ./src/components/VList/VListTileAction.js ***! \*************************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e),e.default={name:"v-list-tile-action",functional:!0,render:function(t,e){var n=e.data,i=e.children,r=void 0===i?[]:i;return n.staticClass=n.staticClass?"v-list__tile__action "+n.staticClass:"v-list__tile__action",r.filter(function(t){return!1===t.isComment&&" "!==t.text}).length>1&&(n.staticClass+=" v-list__tile__action--stack"),t("div",n,r)}}},"./src/components/VList/VListTileAvatar.js": /*!*************************************************!*\ !*** ./src/components/VList/VListTileAvatar.js ***! \*************************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ../VAvatar */"./src/components/VAvatar/index.ts");e.default={name:"v-list-tile-avatar",functional:!0,props:{color:String,size:{type:[Number,String],default:40},tile:Boolean},render:function(t,e){var n=e.data,r=e.children,s=e.props;return n.staticClass=("v-list__tile__avatar "+(n.staticClass||"")).trim(),t("div",n,[t(i.default,{props:{color:s.color,size:s.size,tile:s.tile}},[r])])}}},"./src/components/VList/index.js": /*!***************************************!*\ !*** ./src/components/VList/index.js ***! \***************************************/ /*! exports provided: VList, VListGroup, VListTile, VListTileAction, VListTileAvatar, VListTileActionText, VListTileContent, VListTileTitle, VListTileSubTitle, default */function(t,e,n){"use strict";n.r(e),n.d(e,"VListTileActionText",function(){return c}),n.d(e,"VListTileContent",function(){return u}),n.d(e,"VListTileTitle",function(){return h}),n.d(e,"VListTileSubTitle",function(){return d});var i=n(/*! ../../util/helpers */"./src/util/helpers.ts"),r=n(/*! ./VList */"./src/components/VList/VList.js");n.d(e,"VList",function(){return r.default});var s=n(/*! ./VListGroup */"./src/components/VList/VListGroup.js");n.d(e,"VListGroup",function(){return s.default});var o=n(/*! ./VListTile */"./src/components/VList/VListTile.js");n.d(e,"VListTile",function(){return o.default});var a=n(/*! ./VListTileAction */"./src/components/VList/VListTileAction.js");n.d(e,"VListTileAction",function(){return a.default});var l=n(/*! ./VListTileAvatar */"./src/components/VList/VListTileAvatar.js");n.d(e,"VListTileAvatar",function(){return l.default});var c=Object(i.createSimpleFunctional)("v-list__tile__action-text","span"),u=Object(i.createSimpleFunctional)("v-list__tile__content","div"),h=Object(i.createSimpleFunctional)("v-list__tile__title","div"),d=Object(i.createSimpleFunctional)("v-list__tile__sub-title","div");e.default={$_vuetify_subcomponents:{VList:r.default,VListGroup:s.default,VListTile:o.default,VListTileAction:a.default,VListTileActionText:c,VListTileAvatar:l.default,VListTileContent:u,VListTileSubTitle:d,VListTileTitle:h}}},"./src/components/VMenu/VMenu.js": /*!***************************************!*\ !*** ./src/components/VMenu/VMenu.js ***! \***************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_menus.styl */"./src/stylus/components/_menus.styl");var i=n(/*! vue */"vue"),r=n.n(i),s=n(/*! ../../mixins/delayable */"./src/mixins/delayable.ts"),o=n(/*! ../../mixins/dependent */"./src/mixins/dependent.ts"),a=n(/*! ../../mixins/detachable */"./src/mixins/detachable.js"),l=n(/*! ../../mixins/menuable.js */"./src/mixins/menuable.js"),c=n(/*! ../../mixins/returnable */"./src/mixins/returnable.ts"),u=n(/*! ../../mixins/toggleable */"./src/mixins/toggleable.ts"),h=n(/*! ../../mixins/themeable */"./src/mixins/themeable.ts"),d=n(/*! ./mixins/menu-activator */"./src/components/VMenu/mixins/menu-activator.js"),p=n(/*! ./mixins/menu-generators */"./src/components/VMenu/mixins/menu-generators.js"),f=n(/*! ./mixins/menu-keyable */"./src/components/VMenu/mixins/menu-keyable.js"),m=n(/*! ./mixins/menu-position */"./src/components/VMenu/mixins/menu-position.js"),v=n(/*! ../../directives/click-outside */"./src/directives/click-outside.ts"),g=n(/*! ../../directives/resize */"./src/directives/resize.ts"),_=n(/*! ../../util/helpers */"./src/util/helpers.ts"),b=n(/*! ../../util/ThemeProvider */"./src/util/ThemeProvider.ts");e.default=r.a.extend({name:"v-menu",provide:function(){return{theme:this.theme}},directives:{ClickOutside:v.default,Resize:g.default},mixins:[d.default,o.default,s.default,a.default,p.default,f.default,l.default,m.default,c.default,u.default,h.default],props:{auto:Boolean,closeOnClick:{type:Boolean,default:!0},closeOnContentClick:{type:Boolean,default:!0},disabled:Boolean,fullWidth:Boolean,maxHeight:{default:"auto"},offsetX:Boolean,offsetY:Boolean,openOnClick:{type:Boolean,default:!0},openOnHover:Boolean,origin:{type:String,default:"top left"},transition:{type:[Boolean,String],default:"v-menu-transition"}},data:function(){return{defaultOffset:8,maxHeightAutoDefault:"200px",startIndex:3,stopIndex:0,hasJustFocused:!1,resizeTimeout:null}},computed:{calculatedLeft:function(){return this.auto?this.calcXOverflow(this.calcLeftAuto())+"px":this.calcLeft()},calculatedMaxHeight:function(){return this.auto?"200px":Object(_.convertToUnit)(this.maxHeight)},calculatedMaxWidth:function(){return isNaN(this.maxWidth)?this.maxWidth:this.maxWidth+"px"},calculatedMinWidth:function(){if(this.minWidth)return isNaN(this.minWidth)?this.minWidth:this.minWidth+"px";var t=this.dimensions.activator.width+this.nudgeWidth+(this.auto?16:0),e=isNaN(parseInt(this.calculatedMaxWidth))?t:parseInt(this.calculatedMaxWidth);return Math.min(e,t)+"px"},calculatedTop:function(){return!this.auto||this.isAttached?this.calcTop():this.calcYOverflow(this.calcTopAuto())+"px"},styles:function(){return{maxHeight:this.calculatedMaxHeight,minWidth:this.calculatedMinWidth,maxWidth:this.calculatedMaxWidth,top:this.calculatedTop,left:this.calculatedLeft,transformOrigin:this.origin,zIndex:this.zIndex||this.activeZIndex}},tileHeight:function(){return this.dense?36:48}},watch:{activator:function(t,e){this.removeActivatorEvents(e),this.addActivatorEvents(t)},isContentActive:function(t){this.hasJustFocused=t}},methods:{activate:function(){this.getTiles(),this.updateDimensions(),requestAnimationFrame(this.startTransition),setTimeout(this.calculateScroll,50)},closeConditional:function(){return this.isActive&&this.closeOnClick},onResize:function(){this.isActive&&(this.$refs.content.offsetWidth,this.updateDimensions(),clearTimeout(this.resizeTimeout),this.resizeTimeout=setTimeout(this.updateDimensions,100))}},render:function(t){return t("div",{staticClass:"v-menu",class:{"v-menu--inline":!this.fullWidth&&this.$slots.activator},directives:[{arg:500,name:"resize",value:this.onResize}],on:{keydown:this.onKeyDown}},[this.genActivator(),this.$createElement(b.default,{props:{root:!0,light:this.light,dark:this.dark}},[this.genTransition()])])}})},"./src/components/VMenu/index.js": /*!***************************************!*\ !*** ./src/components/VMenu/index.js ***! \***************************************/ /*! exports provided: VMenu, default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./VMenu */"./src/components/VMenu/VMenu.js");n.d(e,"VMenu",function(){return i.default}),e.default=i.default},"./src/components/VMenu/mixins/menu-activator.js": /*!*******************************************************!*\ !*** ./src/components/VMenu/mixins/menu-activator.js ***! \*******************************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e),e.default={methods:{activatorClickHandler:function(t){this.disabled||(this.openOnClick&&!this.isActive?(this.getActivator().focus(),this.isActive=!0,this.absoluteX=t.clientX,this.absoluteY=t.clientY):this.closeOnClick&&this.isActive&&(this.getActivator().blur(),this.isActive=!1))},mouseEnterHandler:function(){var t=this;this.runDelay("open",function(){t.hasJustFocused||(t.hasJustFocused=!0,t.isActive=!0)})},mouseLeaveHandler:function(t){var e=this;this.runDelay("close",function(){e.$refs.content.contains(t.relatedTarget)||requestAnimationFrame(function(){e.isActive=!1,e.callDeactivate()})})},addActivatorEvents:function(t){void 0===t&&(t=null),t&&t.addEventListener("click",this.activatorClickHandler)},removeActivatorEvents:function(t){void 0===t&&(t=null),t&&t.removeEventListener("click",this.activatorClickHandler)}}}},"./src/components/VMenu/mixins/menu-generators.js": /*!********************************************************!*\ !*** ./src/components/VMenu/mixins/menu-generators.js ***! \********************************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);var i=function(){return(i=Object.assign||function(t){for(var e,n=1,i=arguments.length;n<i;n++)for(var r in e=arguments[n])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t}).apply(this,arguments)},r=function(t,e){var n="function"==typeof Symbol&&t[Symbol.iterator];if(!n)return t;var i,r,s=n.call(t),o=[];try{for(;(void 0===e||e-- >0)&&!(i=s.next()).done;)o.push(i.value)}catch(t){r={error:t}}finally{try{i&&!i.done&&(n=s.return)&&n.call(s)}finally{if(r)throw r.error}}return o},s=function(){for(var t=[],e=0;e<arguments.length;e++)t=t.concat(r(arguments[e]));return t};e.default={methods:{genActivator:function(){if(!this.$slots.activator)return null;var t={staticClass:"v-menu__activator",class:{"v-menu__activator--active":this.hasJustFocused||this.isActive,"v-menu__activator--disabled":this.disabled},ref:"activator",on:{}};return this.openOnHover?(t.on.mouseenter=this.mouseEnterHandler,t.on.mouseleave=this.mouseLeaveHandler):this.openOnClick&&(t.on.click=this.activatorClickHandler),this.$createElement("div",t,this.$slots.activator)},genTransition:function(){return this.transition?this.$createElement("transition",{props:{name:this.transition}},[this.genContent()]):this.genContent()},genDirectives:function(){var t=this,e=!this.openOnHover&&this.closeOnClick?[{name:"click-outside",value:function(){return t.isActive=!1},args:{closeConditional:this.closeConditional,include:function(){return s([t.$el],t.getOpenDependentElements())}}}]:[];return e.push({name:"show",value:this.isContentActive}),e},genContent:function(){var t,e=this,n={attrs:this.getScopeIdAttrs(),staticClass:"v-menu__content",class:i({},this.rootThemeClasses,(t={"v-menu__content--auto":this.auto,menuable__content__active:this.isActive},t[this.contentClass.trim()]=!0,t)),style:this.styles,directives:this.genDirectives(),ref:"content",on:{click:function(t){t.stopPropagation(),t.target.getAttribute("disabled")||e.closeOnContentClick&&(e.isActive=!1)}}};return!this.disabled&&this.openOnHover&&(n.on.mouseenter=this.mouseEnterHandler),this.openOnHover&&(n.on.mouseleave=this.mouseLeaveHandler),this.$createElement("div",n,this.showLazyContent(this.$slots.default))}}}},"./src/components/VMenu/mixins/menu-keyable.js": /*!*****************************************************!*\ !*** ./src/components/VMenu/mixins/menu-keyable.js ***! \*****************************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ../../../util/helpers */"./src/util/helpers.ts");e.default={data:function(){return{listIndex:-1,tiles:[]}},watch:{isActive:function(t){t||(this.listIndex=-1)},listIndex:function(t,e){if(t in this.tiles){var n=this.tiles[t];n.classList.add("v-list__tile--highlighted"),this.$refs.content.scrollTop=n.offsetTop-n.clientHeight}e in this.tiles&&this.tiles[e].classList.remove("v-list__tile--highlighted")}},methods:{onKeyDown:function(t){if([i.keyCodes.down,i.keyCodes.up,i.keyCodes.enter].includes(t.keyCode)&&t.preventDefault(),[i.keyCodes.esc,i.keyCodes.tab].includes(t.keyCode))return this.isActive=!1;this.changeListIndex(t)},changeListIndex:function(t){this.getTiles(),t.keyCode===i.keyCodes.down&&this.listIndex<this.tiles.length-1?this.listIndex++:t.keyCode===i.keyCodes.up&&this.listIndex>-1?this.listIndex--:t.keyCode===i.keyCodes.enter&&-1!==this.listIndex&&this.tiles[this.listIndex].click()},getTiles:function(){this.tiles=this.$refs.content.querySelectorAll(".v-list__tile")}}}},"./src/components/VMenu/mixins/menu-position.js": /*!******************************************************!*\ !*** ./src/components/VMenu/mixins/menu-position.js ***! \******************************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e),e.default={methods:{calculateScroll:function(){if(null!==this.selectedIndex){var t=0;this.selectedIndex>=this.stopIndex?t=this.$refs.content.scrollHeight:this.selectedIndex>this.startIndex&&(t=this.selectedIndex*this.tileHeight+this.tileHeight/2+this.defaultOffset/2-100),this.$refs.content&&(this.$refs.content.scrollTop=t)}},calcLeftAuto:function(){return this.isAttached?0:parseInt(this.dimensions.activator.left-2*this.defaultOffset)},calcTopAuto:function(){var t=Array.from(this.tiles).findIndex(function(t){return t.classList.contains("v-list__tile--active")});if(-1===t)return this.selectedIndex=null,this.computedTop;this.selectedIndex=t,this.stopIndex=this.tiles.length>4?this.tiles.length-4:this.tiles.length;var e,n=this.defaultOffset;return t>this.startIndex&&t<this.stopIndex?e=1.5*this.tileHeight:t>=this.stopIndex?(n*=2,e=(t-this.stopIndex)*this.tileHeight):e=t*this.tileHeight,this.computedTop+n-e-this.tileHeight/2}}}},"./src/components/VMessages/VMessages.js": /*!***********************************************!*\ !*** ./src/components/VMessages/VMessages.js ***! \***********************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_messages.styl */"./src/stylus/components/_messages.styl");var i=n(/*! ../../mixins/colorable */"./src/mixins/colorable.ts"),r=n(/*! ../../mixins/themeable */"./src/mixins/themeable.ts");e.default={name:"v-messages",mixins:[i.default,r.default],props:{value:{type:Array,default:function(){return[]}}},methods:{genChildren:function(){return this.$createElement("transition-group",{staticClass:"v-messages__wrapper",attrs:{name:"message-transition",tag:"div"}},this.value.map(this.genMessage))},genMessage:function(t,e){return this.$createElement("div",{staticClass:"v-messages__message",key:e,domProps:{innerHTML:t}})}},render:function(t){return t("div",this.setTextColor(this.color,{staticClass:"v-messages",class:this.themeClasses}),[this.genChildren()])}}},"./src/components/VMessages/index.js": /*!*******************************************!*\ !*** ./src/components/VMessages/index.js ***! \*******************************************/ /*! exports provided: VMessages, default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./VMessages */"./src/components/VMessages/VMessages.js");n.d(e,"VMessages",function(){return i.default}),e.default=i.default},"./src/components/VNavigationDrawer/VNavigationDrawer.js": /*!***************************************************************!*\ !*** ./src/components/VNavigationDrawer/VNavigationDrawer.js ***! \***************************************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_navigation-drawer.styl */"./src/stylus/components/_navigation-drawer.styl");var i=n(/*! ../../mixins/applicationable */"./src/mixins/applicationable.ts"),r=n(/*! ../../mixins/dependent */"./src/mixins/dependent.ts"),s=n(/*! ../../mixins/overlayable */"./src/mixins/overlayable.js"),o=n(/*! ../../mixins/ssr-bootable */"./src/mixins/ssr-bootable.ts"),a=n(/*! ../../mixins/themeable */"./src/mixins/themeable.ts"),l=n(/*! ../../directives/click-outside */"./src/directives/click-outside.ts"),c=n(/*! ../../directives/resize */"./src/directives/resize.ts"),u=n(/*! ../../directives/touch */"./src/directives/touch.ts"),h=n(/*! ../../util/helpers */"./src/util/helpers.ts"),d=function(){return(d=Object.assign||function(t){for(var e,n=1,i=arguments.length;n<i;n++)for(var r in e=arguments[n])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t}).apply(this,arguments)};e.default={name:"v-navigation-drawer",directives:{ClickOutside:l.default,Resize:c.default,Touch:u.default},mixins:[Object(i.default)(null,["miniVariant","right","width"]),r.default,s.default,o.default,a.default],props:{clipped:Boolean,disableRouteWatcher:Boolean,disableResizeWatcher:Boolean,height:{type:[Number,String],default:"100%"},floating:Boolean,miniVariant:Boolean,miniVariantWidth:{type:[Number,String],default:80},mobileBreakPoint:{type:[Number,String],default:1264},permanent:Boolean,right:Boolean,stateless:Boolean,temporary:Boolean,touchless:Boolean,width:{type:[Number,String],default:300},value:{required:!1}},data:function(){return{isActive:!1,touchArea:{left:0,right:0}}},computed:{applicationProperty:function(){return this.right?"right":"left"},calculatedTransform:function(){return this.isActive?0:this.right?this.calculatedWidth:-this.calculatedWidth},calculatedWidth:function(){return this.miniVariant?this.miniVariantWidth:this.width},classes:function(){return d({"v-navigation-drawer":!0,"v-navigation-drawer--absolute":this.absolute,"v-navigation-drawer--clipped":this.clipped,"v-navigation-drawer--close":!this.isActive,"v-navigation-drawer--fixed":!this.absolute&&(this.app||this.fixed),"v-navigation-drawer--floating":this.floating,"v-navigation-drawer--is-mobile":this.isMobile,"v-navigation-drawer--mini-variant":this.miniVariant,"v-navigation-drawer--open":this.isActive,"v-navigation-drawer--right":this.right,"v-navigation-drawer--temporary":this.temporary},this.themeClasses)},hasApp:function(){return this.app&&!this.isMobile&&!this.temporary},isMobile:function(){return!this.stateless&&!this.permanent&&!this.temporary&&this.$vuetify.breakpoint.width<parseInt(this.mobileBreakPoint,10)},marginTop:function(){if(!this.hasApp)return 0;var t=this.$vuetify.application.bar;return t+=this.clipped?this.$vuetify.application.top:0,t},maxHeight:function(){if(!this.hasApp)return null;var t=this.$vuetify.application.bottom+this.$vuetify.application.footer+this.$vuetify.application.bar;return this.clipped?t+this.$vuetify.application.top:t},reactsToClick:function(){return!this.stateless&&!this.permanent&&(this.isMobile||this.temporary)},reactsToMobile:function(){return!(this.disableResizeWatcher||this.stateless||this.permanent||this.temporary)},reactsToRoute:function(){return!this.disableRouteWatcher&&!this.stateless&&(this.temporary||this.isMobile)},resizeIsDisabled:function(){return this.disableResizeWatcher||this.stateless},showOverlay:function(){return this.isActive&&(this.isMobile||this.temporary)},styles:function(){var t={height:Object(h.convertToUnit)(this.height),marginTop:this.marginTop+"px",maxHeight:"calc(100% - "+ +this.maxHeight+"px)",transform:"translateX("+this.calculatedTransform+"px)",width:this.calculatedWidth+"px"};return t}},watch:{$route:function(){this.reactsToRoute&&this.closeConditional()&&(this.isActive=!1)},isActive:function(t){this.$emit("input",t),this.callUpdate()},isMobile:function(t,e){!t&&this.isActive&&!this.temporary&&this.removeOverlay(),null!=e&&!this.resizeIsDisabled&&this.reactsToMobile&&(this.isActive=!t,this.callUpdate())},permanent:function(t){t&&(this.isActive=!0),this.callUpdate()},showOverlay:function(t){t?this.genOverlay():this.removeOverlay()},temporary:function(){this.callUpdate()},value:function(t){if(!this.permanent)return null==t?this.init():void(t!==this.isActive&&(this.isActive=t))}},beforeMount:function(){this.init()},methods:{calculateTouchArea:function(){if(this.$el.parentNode){var t=this.$el.parentNode.getBoundingClientRect();this.touchArea={left:t.left+50,right:t.right-50}}},closeConditional:function(){return this.isActive&&this.reactsToClick},genDirectives:function(){var t=this,e=[{name:"click-outside",value:function(){return t.isActive=!1},args:{closeConditional:this.closeConditional,include:this.getOpenDependentElements}}];return!this.touchless&&e.push({name:"touch",value:{parent:!0,left:this.swipeLeft,right:this.swipeRight}}),e},init:function(){this.permanent?this.isActive=!0:this.stateless||null!=this.value?this.isActive=this.value:this.temporary||(this.isActive=!this.isMobile)},swipeRight:function(t){this.isActive&&!this.right||(this.calculateTouchArea(),Math.abs(t.touchendX-t.touchstartX)<100||(!this.right&&t.touchstartX<=this.touchArea.left?this.isActive=!0:this.right&&this.isActive&&(this.isActive=!1)))},swipeLeft:function(t){this.isActive&&this.right||(this.calculateTouchArea(),Math.abs(t.touchendX-t.touchstartX)<100||(this.right&&t.touchstartX>=this.touchArea.right?this.isActive=!0:!this.right&&this.isActive&&(this.isActive=!1)))},updateApplication:function(){return!this.isActive||this.temporary||this.isMobile?0:this.calculatedWidth}},render:function(t){var e=this;return t("aside",{class:this.classes,style:this.styles,directives:this.genDirectives(),on:{click:function(){e.miniVariant&&e.$emit("update:miniVariant",!1)},transitionend:function(t){if(t.target===t.currentTarget){e.$emit("transitionend",t);var n=document.createEvent("UIEvents");n.initUIEvent("resize",!0,!1,window,0),window.dispatchEvent(n)}}}},[this.$slots.default,t("div",{class:"v-navigation-drawer__border"})])}}},"./src/components/VNavigationDrawer/index.js": /*!***************************************************!*\ !*** ./src/components/VNavigationDrawer/index.js ***! \***************************************************/ /*! exports provided: VNavigationDrawer, default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./VNavigationDrawer */"./src/components/VNavigationDrawer/VNavigationDrawer.js");n.d(e,"VNavigationDrawer",function(){return i.default}),e.default=i.default},"./src/components/VOverflowBtn/VOverflowBtn.js": /*!*****************************************************!*\ !*** ./src/components/VOverflowBtn/VOverflowBtn.js ***! \*****************************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_overflow-buttons.styl */"./src/stylus/components/_overflow-buttons.styl");var i=n(/*! ../VSelect/VSelect */"./src/components/VSelect/VSelect.js"),r=n(/*! ../VAutocomplete */"./src/components/VAutocomplete/index.js"),s=n(/*! ../VTextField/VTextField */"./src/components/VTextField/VTextField.js"),o=n(/*! ../VBtn */"./src/components/VBtn/index.ts"),a=n(/*! ../../util/console */"./src/util/console.ts");e.default={name:"v-overflow-btn",extends:r.default,props:{segmented:Boolean,editable:Boolean,transition:i.default.props.transition},computed:{classes:function(){return Object.assign(r.default.computed.classes.call(this),{"v-overflow-btn":!0,"v-overflow-btn--segmented":this.segmented,"v-overflow-btn--editable":this.editable})},isAnyValueAllowed:function(){return this.editable||r.default.computed.isAnyValueAllowed.call(this)},isSingle:function(){return!0},computedItems:function(){return this.segmented?this.allItems:this.filteredItems},$_menuProps:function(){var t=r.default.computed.$_menuProps.call(this);return t.transition=t.transition||"v-menu-transition",t}},methods:{genSelections:function(){return this.editable?r.default.methods.genSelections.call(this):i.default.methods.genSelections.call(this)},genCommaSelection:function(t,e,n){return this.segmented?this.genSegmentedBtn(t):i.default.methods.genCommaSelection.call(this,t,e,n)},genInput:function(){var t=s.default.methods.genInput.call(this);return t.data.domProps.value=this.editable?this.internalSearch:"",t.data.attrs.readonly=!this.isAnyValueAllowed,t},genLabel:function(){if(this.editable&&this.isFocused)return null;var t=s.default.methods.genLabel.call(this);return t?(t.data.style={},t):t},genSegmentedBtn:function(t){var e=this,n=this.getValue(t),i=this.computedItems.find(function(t){return e.getValue(t)===n})||t;return i.text&&i.callback?this.$createElement(o.default,{props:{flat:!0},on:{click:function(t){t.stopPropagation(),i.callback(t)}}},[i.text]):(Object(a.consoleWarn)("When using 'segmented' prop without a selection slot, items must contain both a text and callback property",this),null)},setSelectedItems:function(){null==this.internalValue?this.selectedItems=[]:this.selectedItems=[this.internalValue]}}}},"./src/components/VOverflowBtn/index.js": /*!**********************************************!*\ !*** ./src/components/VOverflowBtn/index.js ***! \**********************************************/ /*! exports provided: VOverflowBtn, default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./VOverflowBtn */"./src/components/VOverflowBtn/VOverflowBtn.js");n.d(e,"VOverflowBtn",function(){return i.default}),e.default=i.default},"./src/components/VPagination/VPagination.ts": /*!***************************************************!*\ !*** ./src/components/VPagination/VPagination.ts ***! \***************************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_pagination.styl */"./src/stylus/components/_pagination.styl");var i=n(/*! ../VIcon */"./src/components/VIcon/index.ts"),r=n(/*! ../../directives/resize */"./src/directives/resize.ts"),s=n(/*! ../../util/mixins */"./src/util/mixins.ts"),o=n(/*! ../../mixins/colorable */"./src/mixins/colorable.ts"),a=n(/*! ../../mixins/themeable */"./src/mixins/themeable.ts"),l=function(){return(l=Object.assign||function(t){for(var e,n=1,i=arguments.length;n<i;n++)for(var r in e=arguments[n])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t}).apply(this,arguments)},c=function(t,e){var n="function"==typeof Symbol&&t[Symbol.iterator];if(!n)return t;var i,r,s=n.call(t),o=[];try{for(;(void 0===e||e-- >0)&&!(i=s.next()).done;)o.push(i.value)}catch(t){r={error:t}}finally{try{i&&!i.done&&(n=s.return)&&n.call(s)}finally{if(r)throw r.error}}return o},u=function(){for(var t=[],e=0;e<arguments.length;e++)t=t.concat(c(arguments[e]));return t};e.default=Object(s.default)(o.default,a.default).extend({name:"v-pagination",directives:{Resize:r.default},props:{circle:Boolean,disabled:Boolean,length:{type:Number,default:0,validator:function(t){return t%1==0}},totalVisible:[Number,String],nextIcon:{type:String,default:"$vuetify.icons.next"},prevIcon:{type:String,default:"$vuetify.icons.prev"},value:{type:Number,default:0}},data:function(){return{maxButtons:0,selected:null}},computed:{classes:function(){return l({"v-pagination":!0,"v-pagination--circle":this.circle,"v-pagination--disabled":this.disabled},this.themeClasses)},items:function(){var t=parseInt(this.totalVisible,10)||this.maxButtons;if(this.length<=t)return this.range(1,this.length);var e=t%2==0?1:0,n=Math.floor(t/2),i=this.length-n+1+e;if(this.value>n&&this.value<i){var r=this.value-n+2,s=this.value+n-2-e;return u([1,"..."],this.range(r,s),["...",this.length])}if(this.value===n){s=this.value+n-1-e;return u(this.range(1,s),["...",this.length])}if(this.value===i){r=this.value-n+1;return u([1,"..."],this.range(r,this.length))}return u(this.range(1,n),["..."],this.range(i,this.length))}},watch:{value:function(){this.init()}},mounted:function(){this.init()},methods:{init:function(){var t=this;this.selected=null,this.$nextTick(this.onResize),setTimeout(function(){return t.selected=t.value},100)},onResize:function(){var t=this.$el&&this.$el.parentElement?this.$el.parentElement.clientWidth:window.innerWidth;this.maxButtons=Math.floor((t-96)/42)},next:function(t){t.preventDefault(),this.$emit("input",this.value+1),this.$emit("next")},previous:function(t){t.preventDefault(),this.$emit("input",this.value-1),this.$emit("previous")},range:function(t,e){for(var n=[],i=t=t>0?t:1;i<=e;i++)n.push(i);return n},genIcon:function(t,e,n,r){return t("li",[t("button",{staticClass:"v-pagination__navigation",class:{"v-pagination__navigation--disabled":n},on:n?{}:{click:r}},[t(i.default,[e])])])},genItem:function(t,e){var n=this,i=e===this.value&&(this.color||"primary");return t("button",this.setBackgroundColor(i,{staticClass:"v-pagination__item",class:{"v-pagination__item--active":e===this.value},on:{click:function(){return n.$emit("input",e)}}}),[e.toString()])},genItems:function(t){var e=this;return this.items.map(function(n,i){return t("li",{key:i},[isNaN(Number(n))?t("span",{class:"v-pagination__more"},[n.toString()]):e.genItem(t,n)])})}},render:function(t){var e=[this.genIcon(t,this.$vuetify.rtl?this.nextIcon:this.prevIcon,this.value<=1,this.previous),this.genItems(t),this.genIcon(t,this.$vuetify.rtl?this.prevIcon:this.nextIcon,this.value>=this.length,this.next)];return t("ul",{directives:[{modifiers:{quiet:!0},name:"resize",value:this.onResize}],class:this.classes},e)}})},"./src/components/VPagination/index.ts": /*!*********************************************!*\ !*** ./src/components/VPagination/index.ts ***! \*********************************************/ /*! exports provided: VPagination, default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./VPagination */"./src/components/VPagination/VPagination.ts");n.d(e,"VPagination",function(){return i.default}),e.default=i.default},"./src/components/VParallax/VParallax.ts": /*!***********************************************!*\ !*** ./src/components/VParallax/VParallax.ts ***! \***********************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_parallax.styl */"./src/stylus/components/_parallax.styl");var i=n(/*! ../../mixins/translatable */"./src/mixins/translatable.ts"),r=n(/*! ../../util/mixins */"./src/util/mixins.ts");e.default=Object(r.default)(i.default).extend({name:"v-parallax",props:{alt:String,height:{type:[String,Number],default:500},src:String},data:function(){return{isBooted:!1}},computed:{styles:function(){return{display:"block",opacity:this.isBooted?1:0,transform:"translate(-50%, "+this.parallax+"px)"}}},watch:{parallax:function(){this.isBooted=!0}},mounted:function(){this.init()},methods:{init:function(){var t=this,e=this.$refs.img;e&&(e.complete?(this.translate(),this.listeners()):e.addEventListener("load",function(){t.translate(),t.listeners()},!1))},objHeight:function(){return this.$refs.img.naturalHeight}},render:function(t){var e={staticClass:"v-parallax__image",style:this.styles,attrs:{src:this.src},ref:"img"};this.alt&&(e.attrs.alt=this.alt);var n=t("div",{staticClass:"v-parallax__image-container"},[t("img",e)]),i=t("div",{staticClass:"v-parallax__content"},this.$slots.default);return t("div",{staticClass:"v-parallax",style:{height:this.height+"px"},on:this.$listeners},[n,i])}})},"./src/components/VParallax/index.ts": /*!*******************************************!*\ !*** ./src/components/VParallax/index.ts ***! \*******************************************/ /*! exports provided: VParallax, default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./VParallax */"./src/components/VParallax/VParallax.ts");n.d(e,"VParallax",function(){return i.default}),e.default=i.default},"./src/components/VPicker/VPicker.js": /*!*******************************************!*\ !*** ./src/components/VPicker/VPicker.js ***! \*******************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_pickers.styl */"./src/stylus/components/_pickers.styl"),n(/*! ../../stylus/components/_cards.styl */"./src/stylus/components/_cards.styl");var i=n(/*! ../../mixins/colorable */"./src/mixins/colorable.ts"),r=n(/*! ../../mixins/themeable */"./src/mixins/themeable.ts"),s=n(/*! ../../util/helpers */"./src/util/helpers.ts"),o=function(){return(o=Object.assign||function(t){for(var e,n=1,i=arguments.length;n<i;n++)for(var r in e=arguments[n])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t}).apply(this,arguments)};e.default={name:"v-picker",mixins:[i.default,r.default],props:{fullWidth:Boolean,landscape:Boolean,transition:{type:String,default:"fade-transition"},width:{type:[Number,String],default:290}},computed:{computedTitleColor:function(){var t=this.isDark?null:this.color||"primary";return this.color||t}},methods:{genTitle:function(){return this.$createElement("div",this.setBackgroundColor(this.computedTitleColor,{staticClass:"v-picker__title",class:{"v-picker__title--landscape":this.landscape}}),this.$slots.title)},genBodyTransition:function(){return this.$createElement("transition",{props:{name:this.transition}},this.$slots.default)},genBody:function(){return this.$createElement("div",{staticClass:"v-picker__body",class:this.themeClasses,style:this.fullWidth?void 0:{width:Object(s.convertToUnit)(this.width)}},[this.genBodyTransition()])},genActions:function(){return this.$createElement("div",{staticClass:"v-picker__actions v-card__actions"},this.$slots.actions)}},render:function(t){return t("div",{staticClass:"v-picker v-card",class:o({"v-picker--landscape":this.landscape,"v-picker--full-width":this.fullWidth},this.themeClasses)},[this.$slots.title?this.genTitle():null,this.genBody(),this.$slots.actions?this.genActions():null])}}},"./src/components/VPicker/index.js": /*!*****************************************!*\ !*** ./src/components/VPicker/index.js ***! \*****************************************/ /*! exports provided: VPicker, default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./VPicker */"./src/components/VPicker/VPicker.js");n.d(e,"VPicker",function(){return i.default}),e.default=i.default},"./src/components/VProgressCircular/VProgressCircular.ts": /*!***************************************************************!*\ !*** ./src/components/VProgressCircular/VProgressCircular.ts ***! \***************************************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_progress-circular.styl */"./src/stylus/components/_progress-circular.styl");var i=n(/*! ../../mixins/colorable */"./src/mixins/colorable.ts"),r=n(/*! ../../util/mixins */"./src/util/mixins.ts");e.default=Object(r.default)(i.default).extend({name:"v-progress-circular",props:{button:Boolean,indeterminate:Boolean,rotate:{type:Number,default:0},size:{type:[Number,String],default:32},width:{type:Number,default:4},value:{type:[Number,String],default:0}},computed:{calculatedSize:function(){return Number(this.size)+(this.button?8:0)},circumference:function(){return 2*Math.PI*this.radius},classes:function(){return{"v-progress-circular--indeterminate":this.indeterminate,"v-progress-circular--button":this.button}},normalizedValue:function(){return this.value<0?0:this.value>100?100:parseInt(this.value,10)},radius:function(){return 20},strokeDashArray:function(){return Math.round(1e3*this.circumference)/1e3},strokeDashOffset:function(){return(100-this.normalizedValue)/100*this.circumference+"px"},strokeWidth:function(){return this.width/+this.size*this.viewBoxSize*2},styles:function(){return{height:this.calculatedSize+"px",width:this.calculatedSize+"px"}},svgStyles:function(){return{transform:"rotate("+this.rotate+"deg)"}},viewBoxSize:function(){return this.radius/(1-this.width/+this.size)}},methods:{genCircle:function(t,e,n){return t("circle",{class:"v-progress-circular__"+e,attrs:{fill:"transparent",cx:2*this.viewBoxSize,cy:2*this.viewBoxSize,r:this.radius,"stroke-width":this.strokeWidth,"stroke-dasharray":this.strokeDashArray,"stroke-dashoffset":n}})},genSvg:function(t){var e=[this.indeterminate||this.genCircle(t,"underlay",0),this.genCircle(t,"overlay",this.strokeDashOffset)];return t("svg",{style:this.svgStyles,attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:this.viewBoxSize+" "+this.viewBoxSize+" "+2*this.viewBoxSize+" "+2*this.viewBoxSize}},e)}},render:function(t){var e=t("div",{staticClass:"v-progress-circular__info"},[this.$slots.default]),n=this.genSvg(t);return t("div",this.setTextColor(this.color,{staticClass:"v-progress-circular",attrs:{role:"progressbar","aria-valuemin":0,"aria-valuemax":100,"aria-valuenow":this.indeterminate?void 0:this.normalizedValue},class:this.classes,style:this.styles,on:this.$listeners}),[n,e])}})},"./src/components/VProgressCircular/index.ts": /*!***************************************************!*\ !*** ./src/components/VProgressCircular/index.ts ***! \***************************************************/ /*! exports provided: VProgressCircular, default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./VProgressCircular */"./src/components/VProgressCircular/VProgressCircular.ts");n.d(e,"VProgressCircular",function(){return i.default}),e.default=i.default},"./src/components/VProgressLinear/VProgressLinear.ts": /*!***********************************************************!*\ !*** ./src/components/VProgressLinear/VProgressLinear.ts ***! \***********************************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_progress-linear.styl */"./src/stylus/components/_progress-linear.styl");var i=n(/*! ../../mixins/colorable */"./src/mixins/colorable.ts"),r=n(/*! ../../util/helpers */"./src/util/helpers.ts"),s=n(/*! ../../util/mixins */"./src/util/mixins.ts"),o=n(/*! ../transitions */"./src/components/transitions/index.js");e.default=Object(s.default)(i.default).extend({name:"v-progress-linear",props:{active:{type:Boolean,default:!0},backgroundColor:{type:String,default:null},backgroundOpacity:{type:[Number,String],default:null},bufferValue:{type:[Number,String],default:100},color:{type:String,default:"primary"},height:{type:[Number,String],default:7},indeterminate:Boolean,query:Boolean,value:{type:[Number,String],default:0}},computed:{backgroundStyle:function(){var t=null==this.backgroundOpacity?this.backgroundColor?1:.3:parseFloat(this.backgroundOpacity);return{height:this.active?Object(r.convertToUnit)(this.height):0,opacity:t,width:this.normalizedBufer+"%"}},effectiveWidth:function(){return this.normalizedBufer?100*+this.normalizedValue/+this.normalizedBufer:0},normalizedBufer:function(){return this.bufferValue<0?0:this.bufferValue>100?100:parseInt(this.bufferValue,10)},normalizedValue:function(){return this.value<0?0:this.value>100?100:parseInt(this.value,10)},styles:function(){var t={};return this.active||(t.height=0),this.indeterminate||100===parseInt(this.normalizedBufer,10)||(t.width=this.normalizedBufer+"%"),t}},methods:{genDeterminate:function(t){return t("div",this.setBackgroundColor(this.color,{ref:"front",staticClass:"v-progress-linear__bar__determinate",style:{width:this.effectiveWidth+"%"}}))},genBar:function(t,e){var n;return t("div",this.setBackgroundColor(this.color,{staticClass:"v-progress-linear__bar__indeterminate",class:(n={},n[e]=!0,n)}))},genIndeterminate:function(t){return t("div",{ref:"front",staticClass:"v-progress-linear__bar__indeterminate",class:{"v-progress-linear__bar__indeterminate--active":this.active}},[this.genBar(t,"long"),this.genBar(t,"short")])}},render:function(t){var e=t(o.VFadeTransition,this.indeterminate?[this.genIndeterminate(t)]:[]),n=t(o.VSlideXTransition,this.indeterminate?[]:[this.genDeterminate(t)]),i=t("div",{staticClass:"v-progress-linear__bar",style:this.styles},[e,n]),s=t("div",this.setBackgroundColor(this.backgroundColor||this.color,{staticClass:"v-progress-linear__background",style:this.backgroundStyle}));return t("div",{staticClass:"v-progress-linear",attrs:{role:"progressbar","aria-valuemin":0,"aria-valuemax":this.normalizedBufer,"aria-valuenow":this.indeterminate?void 0:this.normalizedValue},class:{"v-progress-linear--query":this.query},style:{height:Object(r.convertToUnit)(this.height)},on:this.$listeners},[s,i])}})},"./src/components/VProgressLinear/index.ts": /*!*************************************************!*\ !*** ./src/components/VProgressLinear/index.ts ***! \*************************************************/ /*! exports provided: VProgressLinear, default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./VProgressLinear */"./src/components/VProgressLinear/VProgressLinear.ts");n.d(e,"VProgressLinear",function(){return i.default}),e.default=i.default},"./src/components/VRadioGroup/VRadio.js": /*!**********************************************!*\ !*** ./src/components/VRadioGroup/VRadio.js ***! \**********************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_radios.styl */"./src/stylus/components/_radios.styl");var i=n(/*! ../VIcon */"./src/components/VIcon/index.ts"),r=n(/*! ../VLabel */"./src/components/VLabel/index.js"),s=n(/*! ../../mixins/colorable */"./src/mixins/colorable.ts"),o=n(/*! ../../mixins/rippleable */"./src/mixins/rippleable.ts"),a=n(/*! ../../mixins/themeable */"./src/mixins/themeable.ts"),l=n(/*! ../../mixins/selectable */"./src/mixins/selectable.js"),c=n(/*! ../../mixins/registrable */"./src/mixins/registrable.ts"),u=function(){return(u=Object.assign||function(t){for(var e,n=1,i=arguments.length;n<i;n++)for(var r in e=arguments[n])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t}).apply(this,arguments)},h=function(t,e){var n="function"==typeof Symbol&&t[Symbol.iterator];if(!n)return t;var i,r,s=n.call(t),o=[];try{for(;(void 0===e||e-- >0)&&!(i=s.next()).done;)o.push(i.value)}catch(t){r={error:t}}finally{try{i&&!i.done&&(n=s.return)&&n.call(s)}finally{if(r)throw r.error}}return o},d=function(){for(var t=[],e=0;e<arguments.length;e++)t=t.concat(h(arguments[e]));return t};e.default={name:"v-radio",mixins:[s.default,o.default,Object(c.inject)("radio","v-radio","v-radio-group"),a.default],inheritAttrs:!1,props:{color:{type:String,default:"accent"},disabled:Boolean,label:String,onIcon:{type:String,default:"$vuetify.icons.radioOn"},offIcon:{type:String,default:"$vuetify.icons.radioOff"},readonly:Boolean,value:null},data:function(){return{isActive:!1,isFocused:!1,parentError:!1}},computed:{computedData:function(){return this.setTextColor(!this.parentError&&this.isActive&&this.color,{staticClass:"v-radio",class:u({"v-radio--is-disabled":this.isDisabled,"v-radio--is-focused":this.isFocused},this.themeClasses)})},computedColor:function(){return this.isActive?this.color:this.radio.validationState||!1},computedIcon:function(){return this.isActive?this.onIcon:this.offIcon},hasState:function(){return this.isActive||!!this.radio.validationState},isDisabled:function(){return this.disabled||!!this.radio.disabled},isReadonly:function(){return this.readonly||!!this.radio.readonly}},mounted:function(){this.radio.register(this)},beforeDestroy:function(){this.radio.unregister(this)},methods:{genInput:function(){for(var t,e=[],n=0;n<arguments.length;n++)e[n]=arguments[n];return(t=l.default.methods.genInput).call.apply(t,d([this],e))},genLabel:function(){return this.$createElement(r.default,{on:{click:this.onChange},attrs:{for:this.id},props:{color:this.radio.validationState||!1,dark:this.dark,focused:this.hasState,light:this.light}},this.$slots.label||this.label)},genRadio:function(){return this.$createElement("div",{staticClass:"v-input--selection-controls__input"},[this.genInput("radio",u({name:this.radio.name||!!this.radio._uid&&"v-radio-"+this.radio._uid,value:this.value},this.$attrs)),!this.isDisabled&&this.genRipple(this.setTextColor(this.computedColor)),this.$createElement(i.default,this.setTextColor(this.computedColor,{props:{dark:this.dark,light:this.light}}),this.computedIcon)])},onFocus:function(){this.isFocused=!0},onBlur:function(t){this.isFocused=!1,this.$emit("blur",t)},onChange:function(){this.isDisabled||this.isReadonly||this.isDisabled||this.isActive&&this.radio.mandatory||this.$emit("change",this.value)},onKeydown:function(){}},render:function(t){return t("div",this.computedData,[this.genRadio(),this.genLabel()])}}},"./src/components/VRadioGroup/VRadioGroup.js": /*!***************************************************!*\ !*** ./src/components/VRadioGroup/VRadioGroup.js ***! \***************************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_selection-controls.styl */"./src/stylus/components/_selection-controls.styl"),n(/*! ../../stylus/components/_radio-group.styl */"./src/stylus/components/_radio-group.styl");var i=n(/*! ../VInput */"./src/components/VInput/index.js"),r=n(/*! ../../mixins/comparable */"./src/mixins/comparable.ts"),s=n(/*! ../../mixins/registrable */"./src/mixins/registrable.ts");e.default={name:"v-radio-group",extends:i.default,mixins:[r.default,Object(s.provide)("radio")],model:{prop:"value",event:"change"},provide:function(){return{radio:this}},props:{column:{type:Boolean,default:!0},height:{type:[Number,String],default:"auto"},mandatory:{type:Boolean,default:!0},name:String,row:Boolean,value:{default:null}},data:function(){return{internalTabIndex:-1,radios:[]}},computed:{classes:function(){return{"v-input--selection-controls v-input--radio-group":!0,"v-input--radio-group--column":this.column&&!this.row,"v-input--radio-group--row":this.row}}},watch:{hasError:"setErrorState",internalValue:"setActiveRadio"},mounted:function(){this.setErrorState(this.hasError),this.setActiveRadio()},methods:{genDefaultSlot:function(){return this.$createElement("div",{staticClass:"v-input--radio-group__input",attrs:{role:"radiogroup"}},i.default.methods.genDefaultSlot.call(this))},onRadioChange:function(t){this.disabled||(this.hasInput=!0,this.internalValue=t,this.setActiveRadio(),this.$nextTick(this.validate))},onRadioBlur:function(t){t.relatedTarget&&t.relatedTarget.classList.contains("v-radio")||(this.hasInput=!0,this.$emit("blur",t))},register:function(t){t.isActive=this.valueComparator(this.internalValue,t.value),t.$on("change",this.onRadioChange),t.$on("blur",this.onRadioBlur),this.radios.push(t)},setErrorState:function(t){for(var e=this.radios.length;--e>=0;)this.radios[e].parentError=t},setActiveRadio:function(){for(var t=this.radios.length;--t>=0;){var e=this.radios[t];e.isActive=this.valueComparator(this.internalValue,e.value)}},unregister:function(t){t.$off("change",this.onRadioChange),t.$off("blur",this.onRadioBlur);var e=this.radios.findIndex(function(e){return e===t});e>-1&&this.radios.splice(e,1)}}}},"./src/components/VRadioGroup/index.js": /*!*********************************************!*\ !*** ./src/components/VRadioGroup/index.js ***! \*********************************************/ /*! exports provided: VRadioGroup, VRadio, default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./VRadioGroup */"./src/components/VRadioGroup/VRadioGroup.js");n.d(e,"VRadioGroup",function(){return i.default});var r=n(/*! ./VRadio */"./src/components/VRadioGroup/VRadio.js");n.d(e,"VRadio",function(){return r.default}),e.default={$_vuetify_subcomponents:{VRadioGroup:i.default,VRadio:r.default}}},"./src/components/VRangeSlider/VRangeSlider.js": /*!*****************************************************!*\ !*** ./src/components/VRangeSlider/VRangeSlider.js ***! \*****************************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_range-sliders.styl */"./src/stylus/components/_range-sliders.styl");var i=n(/*! ../VSlider */"./src/components/VSlider/index.js"),r=n(/*! ../../util/helpers */"./src/util/helpers.ts");e.default={name:"v-range-slider",extends:i.default,props:{value:{type:Array,default:function(){return[]}}},data:function(t){return{activeThumb:null,lazyValue:t.value.length?t.value:[0,0]}},computed:{classes:function(){return Object.assign({},{"v-input--range-slider":!0},i.default.computed.classes.call(this))},internalValue:{get:function(){return this.lazyValue},set:function(t){var e=this,n=this.min,i=this.max,s=t.map(function(t){return e.roundValue(Math.min(Math.max(t,n),i))});(s[0]>s[1]||s[1]<s[0])&&(null!==this.activeThumb&&(this.activeThumb=1===this.activeThumb?0:1),s=[s[1],s[0]]),this.lazyValue=s,Object(r.deepEqual)(s,this.value)||this.$emit("input",s),this.validate()}},inputWidth:function(){var t=this;return this.internalValue.map(function(e){return(t.roundValue(e)-t.min)/(t.max-t.min)*100})},isDirty:function(){var t=this;return this.internalValue.some(function(e){return e!==t.min})||this.alwaysDirty},trackFillStyles:function(){var t=i.default.computed.trackFillStyles.call(this),e=Math.abs(this.inputWidth[0]-this.inputWidth[1]);return t.width="calc("+e+"% - "+this.trackPadding+"px)",t[this.$vuetify.rtl?"right":"left"]=this.inputWidth[0]+"%",t},trackPadding:function(){return this.isDirty||this.internalValue[0]?0:i.default.computed.trackPadding.call(this)}},methods:{getIndexOfClosestValue:function(t,e){return Math.abs(t[0]-e)<Math.abs(t[1]-e)?0:1},genInput:function(){var t=this;return Object(r.createRange)(2).map(function(e){var n=i.default.methods.genInput.call(t);return n.data.attrs.value=t.internalValue[e],n.data.on.focus=function(n){t.activeThumb=e,i.default.methods.onFocus.call(t,n)},n})},genChildren:function(){var t=this;return[this.genInput(),this.genTrackContainer(),this.genSteps(),Object(r.createRange)(2).map(function(e){var n=t.internalValue[e],i=t.inputWidth[e],r=(t.isFocused||t.isActive)&&t.activeThumb===e;return t.genThumbContainer(n,i,r,function(n){t.isActive=!0,t.activeThumb=e,t.onThumbMouseDown(n)})})]},onSliderClick:function(t){this.isActive||(this.isFocused=!0,this.onMouseMove(t,!0),this.$emit("change",this.internalValue))},onMouseMove:function(t,e){void 0===e&&(e=!1);var n=this.parseMouseMove(t),i=n.value;n.isInsideTrack&&(e&&(this.activeThumb=this.getIndexOfClosestValue(this.internalValue,i)),this.setInternalValue(i))},onKeyDown:function(t){var e=this.parseKeyDown(t,this.internalValue[this.activeThumb]);null!=e&&this.setInternalValue(e)},setInternalValue:function(t){var e=this;this.internalValue=this.internalValue.map(function(n,i){return i===e.activeThumb?t:Number(n)})}}}},"./src/components/VRangeSlider/index.js": /*!**********************************************!*\ !*** ./src/components/VRangeSlider/index.js ***! \**********************************************/ /*! exports provided: VRangeSlider, default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./VRangeSlider */"./src/components/VRangeSlider/VRangeSlider.js");n.d(e,"VRangeSlider",function(){return i.default}),e.default=i.default},"./src/components/VRating/VRating.ts": /*!*******************************************!*\ !*** ./src/components/VRating/VRating.ts ***! \*******************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_rating.styl */"./src/stylus/components/_rating.styl");var i=n(/*! ../VIcon */"./src/components/VIcon/index.ts"),r=n(/*! ../../mixins/colorable */"./src/mixins/colorable.ts"),s=n(/*! ../../mixins/delayable */"./src/mixins/delayable.ts"),o=n(/*! ../../mixins/sizeable */"./src/mixins/sizeable.ts"),a=n(/*! ../../mixins/rippleable */"./src/mixins/rippleable.ts"),l=n(/*! ../../mixins/themeable */"./src/mixins/themeable.ts"),c=n(/*! ../../util/helpers */"./src/util/helpers.ts"),u=n(/*! ../../util/mixins */"./src/util/mixins.ts");e.default=Object(u.default)(r.default,s.default,a.default,o.default,l.default).extend({name:"v-rating",props:{backgroundColor:{type:String,default:"accent"},color:{type:String,default:"primary"},dense:Boolean,emptyIcon:{type:String,default:"$vuetify.icons.ratingEmpty"},fullIcon:{type:String,default:"$vuetify.icons.ratingFull"},halfIcon:{type:String,default:"$vuetify.icons.ratingHalf"},halfIncrements:Boolean,length:{type:[Number,String],default:5},clearable:Boolean,readonly:Boolean,hover:Boolean,value:{type:Number,default:0}},data:function(){return{hoverIndex:-1,internalValue:this.value}},computed:{directives:function(){return this.readonly||!this.ripple?[]:[{name:"ripple",value:{circle:!0}}]},iconProps:function(){var t=this.$props,e=t.dark,n=t.medium,i=t.large,r=t.light,s=t.small;return{dark:e,medium:n,large:i,light:r,size:t.size,small:s,xLarge:t.xLarge}},isHovering:function(){return this.hover&&this.hoverIndex>=0}},watch:{internalValue:function(t){t!==this.value&&this.$emit("input",t)},value:function(t){this.internalValue=t}},methods:{createClickFn:function(t){var e=this;return function(n){if(!e.readonly){var i=e.genHoverIndex(n,t);e.clearable&&e.internalValue===i?e.internalValue=0:e.internalValue=i}}},createProps:function(t){var e={index:t,value:this.internalValue,click:this.createClickFn(t),isFilled:Math.floor(this.internalValue)>t,isHovered:Math.floor(this.hoverIndex)>t};return this.halfIncrements&&(e.isHalfHovered=!e.isHovered&&(this.hoverIndex-t)%1>0,e.isHalfFilled=!e.isFilled&&(this.internalValue-t)%1>0),e},genHoverIndex:function(t,e){return e+(this.isHalfEvent(t)?.5:1)},getIconName:function(t){var e=this.isHovering?t.isHovered:t.isFilled,n=this.isHovering?t.isHalfHovered:t.isHalfFilled;return e?this.fullIcon:n?this.halfIcon:this.emptyIcon},getColor:function(t){if(this.isHovering){if(t.isHovered||t.isHalfHovered)return this.color}else if(t.isFilled||t.isHalfFilled)return this.color;return this.backgroundColor},isHalfEvent:function(t){if(this.halfIncrements){var e=t.target&&t.target.getBoundingClientRect();if(e&&t.offsetX<e.width/2)return!0}return!1},onMouseEnter:function(t,e){var n=this;this.runDelay("open",function(){n.hoverIndex=n.genHoverIndex(t,e)})},onMouseLeave:function(){var t=this;this.runDelay("close",function(){return t.hoverIndex=-1})},genItem:function(t){var e=this,n=this.createProps(t);if(this.$scopedSlots.item)return this.$scopedSlots.item(n);var r={click:n.click};return this.hover&&(r.mouseenter=function(n){return e.onMouseEnter(n,t)},r.mouseleave=this.onMouseLeave,this.halfIncrements&&(r.mousemove=function(n){return e.onMouseEnter(n,t)})),this.$createElement(i.default,this.setTextColor(this.getColor(n),{directives:this.directives,props:this.iconProps,on:r}),[this.getIconName(n)])}},render:function(t){var e=this,n=Object(c.createRange)(Number(this.length)).map(function(t){return e.genItem(t)});return t("div",{staticClass:"v-rating",class:{"v-rating--readonly":this.readonly,"v-rating--dense":this.dense}},n)}})},"./src/components/VRating/index.ts": /*!*****************************************!*\ !*** ./src/components/VRating/index.ts ***! \*****************************************/ /*! exports provided: VRating, default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./VRating */"./src/components/VRating/VRating.ts");n.d(e,"VRating",function(){return i.default}),e.default=i.default},"./src/components/VResponsive/VResponsive.ts": /*!***************************************************!*\ !*** ./src/components/VResponsive/VResponsive.ts ***! \***************************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_responsive.styl */"./src/stylus/components/_responsive.styl");var i=n(/*! ../../mixins/measurable */"./src/mixins/measurable.ts"),r=n(/*! ../../util/mixins */"./src/util/mixins.ts"),s=n(/*! ../../util/helpers */"./src/util/helpers.ts");e.default=Object(r.default)(i.default).extend({name:"v-responsive",props:{aspectRatio:[String,Number]},computed:{computedAspectRatio:function(){return Number(this.aspectRatio)},aspectStyle:function(){return this.computedAspectRatio?{paddingBottom:1/this.computedAspectRatio*100+"%"}:void 0},__cachedSizer:function(){return this.aspectStyle?this.$createElement("div",{style:this.aspectStyle,staticClass:"v-responsive__sizer"}):[]}},methods:{genContent:function(){return this.$createElement("div",{staticClass:"v-responsive__content"},this.$slots.default)}},render:function(t){return t("div",{staticClass:"v-responsive",style:{height:Object(s.convertToUnit)(this.height),maxHeight:Object(s.convertToUnit)(this.maxHeight),maxWidth:Object(s.convertToUnit)(this.maxWidth),width:Object(s.convertToUnit)(this.width)},on:this.$listeners},[this.__cachedSizer,this.genContent()])}})},"./src/components/VResponsive/index.ts": /*!*********************************************!*\ !*** ./src/components/VResponsive/index.ts ***! \*********************************************/ /*! exports provided: VResponsive, default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./VResponsive */"./src/components/VResponsive/VResponsive.ts");n.d(e,"VResponsive",function(){return i.default}),e.default=i.default},"./src/components/VSelect/VSelect.js": /*!*******************************************!*\ !*** ./src/components/VSelect/VSelect.js ***! \*******************************************/ /*! exports provided: defaultMenuProps, default */function(t,e,n){"use strict";n.r(e),n.d(e,"defaultMenuProps",function(){return f});n(/*! ../../stylus/components/_text-fields.styl */"./src/stylus/components/_text-fields.styl"),n(/*! ../../stylus/components/_select.styl */"./src/stylus/components/_select.styl");var i=n(/*! ../VChip */"./src/components/VChip/index.ts"),r=n(/*! ../VMenu */"./src/components/VMenu/index.js"),s=n(/*! ./VSelectList */"./src/components/VSelect/VSelectList.js"),o=n(/*! ../VTextField/VTextField */"./src/components/VTextField/VTextField.js"),a=n(/*! ../../mixins/comparable */"./src/mixins/comparable.ts"),l=n(/*! ../../mixins/filterable */"./src/mixins/filterable.ts"),c=n(/*! ../../directives/click-outside */"./src/directives/click-outside.ts"),u=n(/*! ../../util/helpers */"./src/util/helpers.ts"),h=n(/*! ../../util/console */"./src/util/console.ts"),d=function(){return(d=Object.assign||function(t){for(var e,n=1,i=arguments.length;n<i;n++)for(var r in e=arguments[n])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t}).apply(this,arguments)},p=function(t){var e="function"==typeof Symbol&&t[Symbol.iterator],n=0;return e?e.call(t):{next:function(){return t&&n>=t.length&&(t=void 0),{value:t&&t[n++],done:!t}}}},f={closeOnClick:!1,closeOnContentClick:!1,openOnClick:!1,maxHeight:300};e.default={name:"v-select",directives:{ClickOutside:c.default},extends:o.default,mixins:[a.default,l.default],props:{appendIcon:{type:String,default:"$vuetify.icons.dropdown"},appendIconCb:Function,attach:{type:null,default:!1},browserAutocomplete:{type:String,default:"on"},cacheItems:Boolean,chips:Boolean,clearable:Boolean,deletableChips:Boolean,dense:Boolean,hideSelected:Boolean,items:{type:Array,default:function(){return[]}},itemAvatar:{type:[String,Array,Function],default:"avatar"},itemDisabled:{type:[String,Array,Function],default:"disabled"},itemText:{type:[String,Array,Function],default:"text"},itemValue:{type:[String,Array,Function],default:"value"},menuProps:{type:[String,Array,Object],default:function(){return f}},multiple:Boolean,openOnClear:Boolean,returnObject:Boolean,searchInput:{default:null},smallChips:Boolean},data:function(t){return{attrsInput:{role:"combobox"},cachedItems:t.cacheItems?t.items:[],content:null,isBooted:!1,isMenuActive:!1,lastItem:20,lazyValue:void 0!==t.value?t.value:t.multiple?[]:void 0,selectedIndex:-1,selectedItems:[]}},computed:{allItems:function(){return this.filterDuplicates(this.cachedItems.concat(this.items))},classes:function(){return Object.assign({},o.default.computed.classes.call(this),{"v-select":!0,"v-select--chips":this.hasChips,"v-select--chips--small":this.smallChips,"v-select--is-menu-active":this.isMenuActive})},computedItems:function(){return this.allItems},counterValue:function(){return this.multiple?this.selectedItems.length:(this.getText(this.selectedItems[0])||"").toString().length},directives:function(){return this.isFocused?[{name:"click-outside",value:this.blur,args:{closeConditional:this.closeConditional}}]:void 0},dynamicHeight:function(){return"auto"},hasChips:function(){return this.chips||this.smallChips},hasSlot:function(){return Boolean(this.hasChips||this.$scopedSlots.selection)},isDirty:function(){return this.selectedItems.length>0},listData:function(){return{props:{action:this.multiple&&!this.isHidingSelected,color:this.color,dense:this.dense,hideSelected:this.hideSelected,items:this.virtualizedItems,noDataText:this.$vuetify.t(this.noDataText),selectedItems:this.selectedItems,itemAvatar:this.itemAvatar,itemDisabled:this.itemDisabled,itemValue:this.itemValue,itemText:this.itemText},on:{select:this.selectItem},scopedSlots:{item:this.$scopedSlots.item}}},staticList:function(){return(this.$slots["no-data"]||this.$slots["prepend-item"]||this.$slots["append-item"])&&Object(h.consoleError)("assert: staticList should not be called if slots are used"),this.$createElement(s.default,this.listData)},virtualizedItems:function(){return this.$_menuProps.auto?this.computedItems:this.computedItems.slice(0,this.lastItem)},menuCanShow:function(){return!0},$_menuProps:function(){var t;return t="string"==typeof this.menuProps?this.menuProps.split(","):this.menuProps,Array.isArray(t)&&(t=t.reduce(function(t,e){return t[e.trim()]=!0,t},{})),d({},f,{value:this.menuCanShow&&this.isMenuActive,nudgeBottom:this.nudgeBottom?this.nudgeBottom:t.offsetY?1:0},t)}},watch:{internalValue:function(t){this.initialValue=t,this.setSelectedItems()},isBooted:function(){var t=this;this.$nextTick(function(){t.content&&t.content.addEventListener&&t.content.addEventListener("scroll",t.onScroll,!1)})},isMenuActive:function(t){t&&(this.isBooted=!0)},items:{immediate:!0,handler:function(t){this.cacheItems&&(this.cachedItems=this.filterDuplicates(this.cachedItems.concat(t))),this.setSelectedItems()}}},mounted:function(){this.content=this.$refs.menu&&this.$refs.menu.$refs.content},methods:{blur:function(){this.isMenuActive=!1,this.isFocused=!1,this.$refs.input&&this.$refs.input.blur(),this.selectedIndex=-1},activateMenu:function(){this.isMenuActive=!0},clearableCallback:function(){var t=this;this.setValue(this.multiple?[]:void 0),this.$nextTick(function(){return t.$refs.input.focus()}),this.openOnClear&&(this.isMenuActive=!0)},closeConditional:function(t){return!(!this.content||this.content.contains(t.target)||!this.$el||this.$el.contains(t.target)||t.target===this.$el)},filterDuplicates:function(t){for(var e=new Map,n=0;n<t.length;++n){var i=t[n],r=this.getValue(i);!e.has(r)&&e.set(r,i)}return Array.from(e.values())},findExistingIndex:function(t){var e=this,n=this.getValue(t);return(this.internalValue||[]).findIndex(function(t){return e.valueComparator(e.getValue(t),n)})},genChipSelection:function(t,e){var n=this,r=this.disabled||this.readonly||this.getDisabled(t),s=function(t,e){r||(t.stopPropagation(),n.onFocus(),e&&e())};return this.$createElement(i.default,{staticClass:"v-chip--select-multi",props:{close:this.deletableChips&&!r,disabled:r,selected:e===this.selectedIndex,small:this.smallChips},on:{click:function(t){s(t,function(){n.selectedIndex=e})},focus:s,input:function(){return n.onChipInput(t)}},key:this.getValue(t)},this.getText(t))},genCommaSelection:function(t,e,n){var i=JSON.stringify(this.getValue(t)),r=e===this.selectedIndex&&this.color,s=this.disabled||this.getDisabled(t);return this.$createElement("div",this.setTextColor(r,{staticClass:"v-select__selection v-select__selection--comma",class:{"v-select__selection--disabled":s},key:i}),this.getText(t)+(n?"":", "))},genDefaultSlot:function(){var t=this.genSelections(),e=this.genInput();return Array.isArray(t)?t.push(e):(t.children=t.children||[],t.children.push(e)),[this.$createElement("div",{staticClass:"v-select__slot",directives:this.directives},[this.genLabel(),this.prefix?this.genAffix("prefix"):null,t,this.suffix?this.genAffix("suffix"):null,this.genClearIcon(),this.genIconSlot(),this.genProgress()]),this.genMenu()]},genInput:function(){var t=o.default.methods.genInput.call(this);return t.data.domProps.value=null,t.data.attrs.readonly=!0,t.data.attrs["aria-readonly"]=String(this.readonly),t},genList:function(){return this.$slots["no-data"]||this.$slots["prepend-item"]||this.$slots["append-item"]?this.genListWithSlot():this.staticList},genListWithSlot:function(){var t=this,e=["prepend-item","no-data","append-item"].filter(function(e){return t.$slots[e]}).map(function(e){return t.$createElement("template",{slot:e},t.$slots[e])});return this.$createElement(s.default,d({},this.listData),e)},genMenu:function(){var t,e,n=this,i=this.$_menuProps;i.activator=this.$refs["input-slot"];var s=Object.keys(r.default.options.props),o=Object.keys(this.$attrs).reduce(function(t,e){return s.includes(Object(u.camelize)(e))&&t.push(e),t},[]);try{for(var a=p(o),l=a.next();!l.done;l=a.next()){var c=l.value;i[Object(u.camelize)(c)]=this.$attrs[c]}}catch(e){t={error:e}}finally{try{l&&!l.done&&(e=a.return)&&e.call(a)}finally{if(t)throw t.error}}if(o.length){var d=o.length>1,f=o.reduce(function(t,e){return t[Object(u.camelize)(e)]=n.$attrs[e],t},{}),m=o.map(function(t){return"'"+t+"'"}).join(", "),v=d?"\n":"'",g=Object.keys(f).every(function(t){var e=r.default.options.props[t],n=f[t];return!0===n||(e.type||e)===Boolean&&""===n});f=g?Object.keys(f).join(", "):JSON.stringify(f,null,d?2:0).replace(/"([^(")"]+)":/g,"$1:").replace(/"/g,"'"),Object(h.consoleWarn)(m+" "+(d?"are":"is")+" deprecated, use "+v+':menu-props="'+f+'"'+v+" instead",this)}return""===this.attach||!0===this.attach||"attach"===this.attach?i.attach=this.$el:i.attach=this.attach,this.$createElement(r.default,{props:i,on:{input:function(t){n.isMenuActive=t,n.isFocused=t}},ref:"menu"},[this.genList()])},genSelections:function(){var t,e=this.selectedItems.length,n=new Array(e);for(t=this.$scopedSlots.selection?this.genSlotSelection:this.hasChips?this.genChipSelection:this.genCommaSelection;e--;)n[e]=t(this.selectedItems[e],e,e===n.length-1);return this.$createElement("div",{staticClass:"v-select__selections"},n)},genSlotSelection:function(t,e){return this.$scopedSlots.selection({parent:this,item:t,index:e,selected:e===this.selectedIndex,disabled:this.disabled||this.readonly})},getMenuIndex:function(){return this.$refs.menu?this.$refs.menu.listIndex:-1},getDisabled:function(t){return Object(u.getPropertyFromItem)(t,this.itemDisabled,!1)},getText:function(t){return Object(u.getPropertyFromItem)(t,this.itemText,t)},getValue:function(t){return Object(u.getPropertyFromItem)(t,this.itemValue,this.getText(t))},onBlur:function(t){this.$emit("blur",t)},onChipInput:function(t){this.multiple?this.selectItem(t):this.setValue(null),0===this.selectedItems.length&&(this.isMenuActive=!0),this.selectedIndex=-1},onClick:function(){this.isDisabled||(this.isMenuActive=!0,this.isFocused||(this.isFocused=!0,this.$emit("focus")))},onEnterDown:function(){this.onBlur()},onEscDown:function(t){t.preventDefault(),this.isMenuActive=!1},onKeyDown:function(t){var e=t.keyCode;return!this.isMenuActive&&[u.keyCodes.enter,u.keyCodes.space,u.keyCodes.up,u.keyCodes.down].includes(e)&&this.activateMenu(),this.isMenuActive&&this.$refs.menu&&this.$refs.menu.changeListIndex(t),e===u.keyCodes.enter?this.onEnterDown(t):e===u.keyCodes.esc?this.onEscDown(t):e===u.keyCodes.tab?this.onTabDown(t):void 0},onMouseUp:function(t){var e=this,n=this.$refs["append-inner"];this.isMenuActive&&n&&(n===t.target||n.contains(t.target))?this.$nextTick(function(){return e.isMenuActive=!e.isMenuActive}):this.isEnclosed&&!this.isDisabled&&(this.isMenuActive=!0),o.default.methods.onMouseUp.call(this,t)},onScroll:function(){var t=this;if(this.isMenuActive){if(this.lastItem>=this.computedItems.length)return;this.content.scrollHeight-(this.content.scrollTop+this.content.clientHeight)<200&&(this.lastItem+=20)}else requestAnimationFrame(function(){return t.content.scrollTop=0})},onTabDown:function(t){var e=this.getMenuIndex(),n=this.$refs.menu.tiles[e];n&&n.className.indexOf("v-list__tile--highlighted")>-1&&this.isMenuActive&&e>-1?(t.preventDefault(),t.stopPropagation(),n.click()):o.default.methods.onBlur.call(this,t)},selectItem:function(t){var e=this;if(this.multiple){var n=(this.internalValue||[]).slice(),i=this.findExistingIndex(t);-1!==i?n.splice(i,1):n.push(t),this.setValue(n.map(function(t){return e.returnObject?t:e.getValue(t)})),this.$nextTick(function(){e.$refs.menu&&e.$refs.menu.updateDimensions()})}else this.setValue(this.returnObject?t:this.getValue(t)),this.isMenuActive=!1},setMenuIndex:function(t){this.$refs.menu&&(this.$refs.menu.listIndex=t)},setSelectedItems:function(){var t,e,n=this,i=[],r=this.multiple&&Array.isArray(this.internalValue)?this.internalValue:[this.internalValue],s=function(t){var e=o.allItems.findIndex(function(e){return n.valueComparator(n.getValue(e),n.getValue(t))});e>-1&&i.push(o.allItems[e])},o=this;try{for(var a=p(r),l=a.next();!l.done;l=a.next()){s(l.value)}}catch(e){t={error:e}}finally{try{l&&!l.done&&(e=a.return)&&e.call(a)}finally{if(t)throw t.error}}this.selectedItems=i},setValue:function(t){this.internalValue=t,this.$emit("change",t)}}}},"./src/components/VSelect/VSelectList.js": /*!***********************************************!*\ !*** ./src/components/VSelect/VSelectList.js ***! \***********************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_cards.styl */"./src/stylus/components/_cards.styl");var i=n(/*! ../VCheckbox */"./src/components/VCheckbox/index.js"),r=n(/*! ../VDivider */"./src/components/VDivider/index.ts"),s=n(/*! ../VSubheader */"./src/components/VSubheader/index.js"),o=n(/*! ../VList */"./src/components/VList/index.js"),a=n(/*! ../../mixins/colorable */"./src/mixins/colorable.ts"),l=n(/*! ../../mixins/themeable */"./src/mixins/themeable.ts"),c=n(/*! ../../util/helpers */"./src/util/helpers.ts"),u=function(t){var e="function"==typeof Symbol&&t[Symbol.iterator],n=0;return e?e.call(t):{next:function(){return t&&n>=t.length&&(t=void 0),{value:t&&t[n++],done:!t}}}};e.default={name:"v-select-list",mixins:[a.default,l.default],props:{action:Boolean,dense:Boolean,hideSelected:Boolean,items:{type:Array,default:function(){return[]}},itemAvatar:{type:[String,Array,Function],default:"avatar"},itemDisabled:{type:[String,Array,Function],default:"disabled"},itemText:{type:[String,Array,Function],default:"text"},itemValue:{type:[String,Array,Function],default:"value"},noDataText:String,noFilter:Boolean,searchInput:{default:null},selectedItems:{type:Array,default:function(){return[]}}},computed:{parsedItems:function(){var t=this;return this.selectedItems.map(function(e){return t.getValue(e)})},tileActiveClass:function(){return Object.keys(this.setTextColor(this.color).class||{}).join(" ")},staticNoDataTile:function(){return this.$createElement(o.VListTile,{on:{mousedown:function(t){return t.preventDefault()}}},[this.genTileContent(this.noDataText)])}},methods:{genAction:function(t,e){var n=this,r={on:{click:function(e){e.stopPropagation(),n.$emit("select",t)}}};return this.$createElement(o.VListTileAction,r,[this.$createElement(i.default,{props:{color:this.color,inputValue:e}})])},genDivider:function(t){return this.$createElement(r.default,{props:t})},genFilteredText:function(t){if(t=(t||"").toString(),!this.searchInput||this.noFilter)return Object(c.escapeHTML)(t);var e=this.getMaskedCharacters(t),n=e.start,i=e.middle,r=e.end;return""+Object(c.escapeHTML)(n)+this.genHighlight(i)+Object(c.escapeHTML)(r)},genHeader:function(t){return this.$createElement(s.default,{props:t},t.header)},genHighlight:function(t){return'<span class="v-list__tile__mask">'+Object(c.escapeHTML)(t)+"</span>"},getMaskedCharacters:function(t){var e=(this.searchInput||"").toString().toLowerCase(),n=t.toLowerCase().indexOf(e);return n<0?{start:"",middle:t,end:""}:{start:t.slice(0,n),middle:t.slice(n,n+e.length),end:t.slice(n+e.length)}},genTile:function(t,e,n,i){var r=this;void 0===e&&(e=null),void 0===n&&(n=!1),void 0===i&&(i=this.hasItem(t)),t===Object(t)&&(n=this.getAvatar(t),e=null!==e?e:this.getDisabled(t));var s={on:{mousedown:function(t){t.preventDefault()},click:function(){return e||r.$emit("select",t)}},props:{activeClass:this.tileActiveClass,avatar:n,disabled:e,ripple:!0,value:i}};if(!this.$scopedSlots.item)return this.$createElement(o.VListTile,s,[this.action&&!this.hideSelected&&this.items.length>0?this.genAction(t,i):null,this.genTileContent(t)]);var a=this.$scopedSlots.item({parent:this,item:t,tile:s});return this.needsTile(a)?this.$createElement(o.VListTile,s,[a]):a},genTileContent:function(t){var e=this.genFilteredText(this.getText(t));return this.$createElement(o.VListTileContent,[this.$createElement(o.VListTileTitle,{domProps:{innerHTML:e}})])},hasItem:function(t){return this.parsedItems.indexOf(this.getValue(t))>-1},needsTile:function(t){return null==t.componentOptions||"v-list-tile"!==t.componentOptions.Ctor.options.name},getAvatar:function(t){return Boolean(Object(c.getPropertyFromItem)(t,this.itemAvatar,!1))},getDisabled:function(t){return Boolean(Object(c.getPropertyFromItem)(t,this.itemDisabled,!1))},getText:function(t){return String(Object(c.getPropertyFromItem)(t,this.itemText,t))},getValue:function(t){return Object(c.getPropertyFromItem)(t,this.itemValue,this.getText(t))}},render:function(){var t,e,n=[];try{for(var i=u(this.items),r=i.next();!r.done;r=i.next()){var s=r.value;this.hideSelected&&this.hasItem(s)||(null==s?n.push(this.genTile(s)):s.header?n.push(this.genHeader(s)):s.divider?n.push(this.genDivider(s)):n.push(this.genTile(s)))}}catch(e){t={error:e}}finally{try{r&&!r.done&&(e=i.return)&&e.call(i)}finally{if(t)throw t.error}}return n.length||n.push(this.$slots["no-data"]||this.staticNoDataTile),this.$slots["prepend-item"]&&n.unshift(this.$slots["prepend-item"]),this.$slots["append-item"]&&n.push(this.$slots["append-item"]),this.$createElement("div",{staticClass:"v-select-list v-card",class:this.themeClasses},[this.$createElement(o.VList,{props:{dense:this.dense}},n)])}}},"./src/components/VSelect/index.js": /*!*****************************************!*\ !*** ./src/components/VSelect/index.js ***! \*****************************************/ /*! exports provided: VSelect, default */function(t,e,n){"use strict";n.r(e),n.d(e,"VSelect",function(){return u});var i=n(/*! ./VSelect */"./src/components/VSelect/VSelect.js"),r=n(/*! ../VOverflowBtn */"./src/components/VOverflowBtn/index.js"),s=n(/*! ../VAutocomplete */"./src/components/VAutocomplete/index.js"),o=n(/*! ../VCombobox */"./src/components/VCombobox/index.js"),a=n(/*! ../../util/rebuildFunctionalSlots */"./src/util/rebuildFunctionalSlots.js"),l=n(/*! ../../util/dedupeModelListeners */"./src/util/dedupeModelListeners.ts"),c=n(/*! ../../util/console */"./src/util/console.ts"),u={functional:!0,$_wrapperFor:i.default,props:{autocomplete:Boolean,combobox:Boolean,multiple:Boolean,tags:Boolean,editable:Boolean,overflow:Boolean,segmented:Boolean},render:function(t,e){var n=e.props,h=e.data,d=e.slots,p=e.parent;Object(l.default)(h);var f=Object(a.default)(d(),t);return n.autocomplete&&Object(c.deprecate)("<v-select autocomplete>","<v-autocomplete>",u,p),n.combobox&&Object(c.deprecate)("<v-select combobox>","<v-combobox>",u,p),n.tags&&Object(c.deprecate)("<v-select tags>","<v-combobox multiple>",u,p),n.overflow&&Object(c.deprecate)("<v-select overflow>","<v-overflow-btn>",u,p),n.segmented&&Object(c.deprecate)("<v-select segmented>","<v-overflow-btn segmented>",u,p),n.editable&&Object(c.deprecate)("<v-select editable>","<v-overflow-btn editable>",u,p),n.combobox||n.tags?(h.attrs.multiple=n.tags,t(o.default,h,f)):n.autocomplete?(h.attrs.multiple=n.multiple,t(s.default,h,f)):n.overflow||n.segmented||n.editable?(h.attrs.segmented=n.segmented,h.attrs.editable=n.editable,t(r.default,h,f)):(h.attrs.multiple=n.multiple,t(i.default,h,f))}};e.default=u},"./src/components/VSlider/VSlider.js": /*!*******************************************!*\ !*** ./src/components/VSlider/VSlider.js ***! \*******************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_sliders.styl */"./src/stylus/components/_sliders.styl");var i=n(/*! ../transitions */"./src/components/transitions/index.js"),r=n(/*! ../VInput */"./src/components/VInput/index.js"),s=n(/*! ../../directives/click-outside */"./src/directives/click-outside.ts"),o=n(/*! ../../util/helpers */"./src/util/helpers.ts"),a=n(/*! ../../util/console */"./src/util/console.ts"),l=n(/*! ../../mixins/loadable */"./src/mixins/loadable.ts"),c=function(){return(c=Object.assign||function(t){for(var e,n=1,i=arguments.length;n<i;n++)for(var r in e=arguments[n])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t}).apply(this,arguments)};e.default={name:"v-slider",directives:{ClickOutside:s.default},extends:r.default,mixins:[l.default],props:{alwaysDirty:Boolean,inverseLabel:Boolean,label:String,min:{type:[Number,String],default:0},max:{type:[Number,String],default:100},range:Boolean,step:{type:[Number,String],default:1},ticks:{type:[Boolean,String],default:!1,validator:function(t){return"boolean"==typeof t||"always"===t}},tickLabels:{type:Array,default:function(){return[]}},tickSize:{type:[Number,String],default:1},thumbColor:{type:String,default:null},thumbLabel:{type:[Boolean,String],default:null,validator:function(t){return"boolean"==typeof t||"always"===t}},thumbSize:{type:[Number,String],default:32},trackColor:{type:String,default:null},value:[Number,String]},data:function(t){return{app:{},isActive:!1,keyPressed:0,lazyValue:void 0!==t.value?t.value:Number(t.min),oldValue:null}},computed:{classes:function(){return{"v-input--slider":!0,"v-input--slider--ticks":this.showTicks,"v-input--slider--inverse-label":this.inverseLabel,"v-input--slider--ticks-labels":this.tickLabels.length>0,"v-input--slider--thumb-label":this.thumbLabel||this.$scopedSlots.thumbLabel}},showTicks:function(){return this.tickLabels.length>0||!this.disabled&&this.stepNumeric&&!!this.ticks},showThumbLabel:function(){return!this.disabled&&(!!this.thumbLabel||""===this.thumbLabel||this.$scopedSlots["thumb-label"])},computedColor:function(){return this.disabled?null:this.validationState||this.color||"primary"},computedTrackColor:function(){return this.disabled?null:this.trackColor||null},computedThumbColor:function(){return this.disabled||!this.isDirty?null:this.validationState||this.thumbColor||this.color||"primary"},internalValue:{get:function(){return this.lazyValue},set:function(t){var e=this.min,n=this.max,i=this.roundValue(Math.min(Math.max(t,e),n));i!==this.lazyValue&&(this.lazyValue=i,this.$emit("input",i),this.validate())}},stepNumeric:function(){return this.step>0?parseFloat(this.step):0},trackFillStyles:function(){var t=this.$vuetify.rtl?"auto":0,e=this.$vuetify.rtl?0:"auto",n=this.inputWidth+"%";return this.disabled&&(n="calc("+this.inputWidth+"% - 8px)"),{transition:this.trackTransition,left:t,right:e,width:n}},trackPadding:function(){return this.isActive||this.inputWidth>0||this.disabled?0:7},trackStyles:function(){var t=this.disabled?"calc("+this.inputWidth+"% + 8px)":this.trackPadding+"px",e=this.$vuetify.rtl?"auto":t,n=this.$vuetify.rtl?t:"auto",i=this.disabled?"calc("+(100-this.inputWidth)+"% - 8px)":"100%";return{transition:this.trackTransition,left:e,right:n,width:i}},tickStyles:function(){var t=Number(this.tickSize);return{"border-width":t+"px","border-radius":t>1?"50%":null,transform:t>1?"translateX(-"+t+"px) translateY(-"+(t-1)+"px)":null}},trackTransition:function(){return this.keyPressed>=2?"none":""},numTicks:function(){return Math.ceil((this.max-this.min)/this.stepNumeric)},inputWidth:function(){return(this.roundValue(this.internalValue)-this.min)/(this.max-this.min)*100},isDirty:function(){return this.internalValue>this.min||this.alwaysDirty}},watch:{min:function(t){t>this.internalValue&&this.$emit("input",parseFloat(t))},max:function(t){t<this.internalValue&&this.$emit("input",parseFloat(t))},value:function(t){this.internalValue=t}},mounted:function(){this.app=document.querySelector("[data-app]")||Object(a.consoleWarn)("Missing v-app or a non-body wrapping element with the [data-app] attribute",this)},methods:{genDefaultSlot:function(){var t=[this.genLabel()],e=this.genSlider();return this.inverseLabel?t.unshift(e):t.push(e),t.push(this.genProgress()),t},genListeners:function(){return{blur:this.onBlur,click:this.onSliderClick,focus:this.onFocus,keydown:this.onKeyDown,keyup:this.onKeyUp}},genInput:function(){return this.$createElement("input",{attrs:c({"aria-label":this.label,name:this.name,role:"slider",tabindex:this.disabled?-1:this.$attrs.tabindex,value:this.internalValue,readonly:!0,"aria-readonly":String(this.readonly),"aria-valuemin":this.min,"aria-valuemax":this.max,"aria-valuenow":this.internalValue},this.$attrs),on:this.genListeners(),ref:"input"})},genSlider:function(){return this.$createElement("div",{staticClass:"v-slider",class:{"v-slider--is-active":this.isActive},directives:[{name:"click-outside",value:this.onBlur}]},this.genChildren())},genChildren:function(){return[this.genInput(),this.genTrackContainer(),this.genSteps(),this.genThumbContainer(this.internalValue,this.inputWidth,this.isFocused||this.isActive,this.onThumbMouseDown)]},genSteps:function(){var t=this;if(!this.step||!this.showTicks)return null;var e=Object(o.createRange)(this.numTicks+1).map(function(e){var n=[];return t.tickLabels[e]&&n.push(t.$createElement("span",t.tickLabels[e])),t.$createElement("span",{key:e,staticClass:"v-slider__ticks",class:{"v-slider__ticks--always-show":"always"===t.ticks||t.tickLabels.length>0},style:c({},t.tickStyles,{left:e*(100/t.numTicks)+"%"})},n)});return this.$createElement("div",{staticClass:"v-slider__ticks-container"},e)},genThumb:function(){return this.$createElement("div",this.setBackgroundColor(this.computedThumbColor,{staticClass:"v-slider__thumb"}))},genThumbContainer:function(t,e,n,i){var r=[this.genThumb()],s=this.getLabel(t);return this.showThumbLabel&&r.push(this.genThumbLabel(s)),this.$createElement("div",this.setTextColor(this.computedThumbColor,{staticClass:"v-slider__thumb-container",class:{"v-slider__thumb-container--is-active":n,"v-slider__thumb-container--show-label":this.showThumbLabel},style:{transition:this.trackTransition,left:(this.$vuetify.rtl?100-e:e)+"%"},on:{touchstart:i,mousedown:i}}),r)},genThumbLabel:function(t){var e=Object(o.convertToUnit)(this.thumbSize);return this.$createElement(i.VScaleTransition,{props:{origin:"bottom center"}},[this.$createElement("div",{staticClass:"v-slider__thumb-label__container",directives:[{name:"show",value:this.isFocused||this.isActive||"always"===this.thumbLabel}]},[this.$createElement("div",this.setBackgroundColor(this.computedThumbColor,{staticClass:"v-slider__thumb-label",style:{height:e,width:e}}),[t])])])},genTrackContainer:function(){var t=[this.$createElement("div",this.setBackgroundColor(this.computedTrackColor,{staticClass:"v-slider__track",style:this.trackStyles})),this.$createElement("div",this.setBackgroundColor(this.computedColor,{staticClass:"v-slider__track-fill",style:this.trackFillStyles}))];return this.$createElement("div",{staticClass:"v-slider__track__container",ref:"track"},t)},getLabel:function(t){return this.$scopedSlots["thumb-label"]?this.$scopedSlots["thumb-label"]({value:t}):this.$createElement("span",t)},onBlur:function(t){2!==this.keyPressed&&(this.isActive=!1,this.isFocused=!1,this.$emit("blur",t))},onFocus:function(t){this.isFocused=!0,this.$emit("focus",t)},onThumbMouseDown:function(t){this.oldValue=this.internalValue,this.keyPressed=2;var e={passive:!0};this.isActive=!0,this.isFocused=!1,"touches"in t?(this.app.addEventListener("touchmove",this.onMouseMove,e),Object(o.addOnceEventListener)(this.app,"touchend",this.onSliderMouseUp)):(this.app.addEventListener("mousemove",this.onMouseMove,e),Object(o.addOnceEventListener)(this.app,"mouseup",this.onSliderMouseUp)),this.$emit("start",this.internalValue)},onSliderMouseUp:function(){this.keyPressed=0;var t={passive:!0};this.isActive=!1,this.isFocused=!1,this.app.removeEventListener("touchmove",this.onMouseMove,t),this.app.removeEventListener("mousemove",this.onMouseMove,t),this.$emit("end",this.internalValue),Object(o.deepEqual)(this.oldValue,this.internalValue)||this.$emit("change",this.internalValue)},onMouseMove:function(t){var e=this.parseMouseMove(t),n=e.value;e.isInsideTrack&&this.setInternalValue(n)},onKeyDown:function(t){if(!this.disabled&&!this.readonly){var e=this.parseKeyDown(t);null!=e&&(this.setInternalValue(e),this.$emit("change",e))}},onKeyUp:function(){this.keyPressed=0},onSliderClick:function(t){this.isFocused=!0,this.onMouseMove(t),this.$emit("change",this.internalValue)},parseMouseMove:function(t){var e=this.$refs.track.getBoundingClientRect(),n=e.left,i=e.width,r="touches"in t?t.touches[0].clientX:t.clientX,s=Math.min(Math.max((r-n)/i,0),1)||0;this.$vuetify.rtl&&(s=1-s);var o=r>=n-8&&r<=n+i+8;return{value:parseFloat(this.min)+s*(this.max-this.min),isInsideTrack:o}},parseKeyDown:function(t,e){if(void 0===e&&(e=this.internalValue),!this.disabled){var n=o.keyCodes.pageup,i=o.keyCodes.pagedown,r=o.keyCodes.end,s=o.keyCodes.home,a=o.keyCodes.left,l=o.keyCodes.right,c=o.keyCodes.down,u=o.keyCodes.up;if([n,i,r,s,a,l,c,u].includes(t.keyCode)){t.preventDefault();var h=this.stepNumeric||1,d=(this.max-this.min)/h;if([a,l,c,u].includes(t.keyCode))this.keyPressed+=1,e+=((this.$vuetify.rtl?[a,u]:[l,u]).includes(t.keyCode)?1:-1)*h*(t.shiftKey?3:t.ctrlKey?2:1);else if(t.keyCode===s)e=parseFloat(this.min);else if(t.keyCode===r)e=parseFloat(this.max);else{e-=(t.keyCode===i?1:-1)*h*(d>100?d/10:10)}return e}}},roundValue:function(t){if(!this.stepNumeric)return t;var e=this.step.toString().trim(),n=e.indexOf(".")>-1?e.length-e.indexOf(".")-1:0,i=this.min%this.stepNumeric,r=Math.round((t-i)/this.stepNumeric)*this.stepNumeric+i;return parseFloat(Math.min(r,this.max).toFixed(n))},setInternalValue:function(t){this.internalValue=t}}}},"./src/components/VSlider/index.js": /*!*****************************************!*\ !*** ./src/components/VSlider/index.js ***! \*****************************************/ /*! exports provided: VSlider, default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./VSlider */"./src/components/VSlider/VSlider.js");n.d(e,"VSlider",function(){return i.default}),e.default=i.default},"./src/components/VSnackbar/VSnackbar.ts": /*!***********************************************!*\ !*** ./src/components/VSnackbar/VSnackbar.ts ***! \***********************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_snackbars.styl */"./src/stylus/components/_snackbars.styl");var i=n(/*! ../../mixins/colorable */"./src/mixins/colorable.ts"),r=n(/*! ../../mixins/toggleable */"./src/mixins/toggleable.ts"),s=n(/*! ../../mixins/positionable */"./src/mixins/positionable.ts"),o=n(/*! ../../util/mixins */"./src/util/mixins.ts");e.default=Object(o.default)(i.default,r.default,Object(s.factory)(["absolute","top","bottom","left","right"])).extend({name:"v-snackbar",props:{autoHeight:Boolean,multiLine:Boolean,timeout:{type:Number,default:6e3},vertical:Boolean},data:function(){return{activeTimeout:-1}},computed:{classes:function(){return{"v-snack--active":this.isActive,"v-snack--absolute":this.absolute,"v-snack--auto-height":this.autoHeight,"v-snack--bottom":this.bottom||!this.top,"v-snack--left":this.left,"v-snack--multi-line":this.multiLine&&!this.vertical,"v-snack--right":this.right,"v-snack--top":this.top,"v-snack--vertical":this.vertical}}},watch:{isActive:function(){this.setTimeout()}},mounted:function(){this.setTimeout()},methods:{setTimeout:function(){var t=this;window.clearTimeout(this.activeTimeout),this.isActive&&this.timeout&&(this.activeTimeout=window.setTimeout(function(){t.isActive=!1},this.timeout))}},render:function(t){var e=[];return this.isActive&&e.push(t("div",{staticClass:"v-snack",class:this.classes,on:this.$listeners},[t("div",this.setBackgroundColor(this.color,{staticClass:"v-snack__wrapper"}),[t("div",{staticClass:"v-snack__content"},this.$slots.default)])])),t("transition",{attrs:{name:"v-snack-transition"}},e)}})},"./src/components/VSnackbar/index.ts": /*!*******************************************!*\ !*** ./src/components/VSnackbar/index.ts ***! \*******************************************/ /*! exports provided: VSnackbar, default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./VSnackbar */"./src/components/VSnackbar/VSnackbar.ts");n.d(e,"VSnackbar",function(){return i.default}),e.default=i.default},"./src/components/VSpeedDial/VSpeedDial.js": /*!*************************************************!*\ !*** ./src/components/VSpeedDial/VSpeedDial.js ***! \*************************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_speed-dial.styl */"./src/stylus/components/_speed-dial.styl");var i=n(/*! ../../mixins/toggleable */"./src/mixins/toggleable.ts"),r=n(/*! ../../mixins/positionable */"./src/mixins/positionable.ts"),s=n(/*! ../../mixins/transitionable */"./src/mixins/transitionable.ts"),o=n(/*! ../../directives/click-outside */"./src/directives/click-outside.ts");e.default={name:"v-speed-dial",directives:{ClickOutside:o.default},mixins:[r.default,i.default,s.default],props:{direction:{type:String,default:"top",validator:function(t){return["top","right","bottom","left"].includes(t)}},openOnHover:Boolean,transition:{type:String,default:"scale-transition"}},computed:{classes:function(){var t;return(t={"v-speed-dial":!0,"v-speed-dial--top":this.top,"v-speed-dial--right":this.right,"v-speed-dial--bottom":this.bottom,"v-speed-dial--left":this.left,"v-speed-dial--absolute":this.absolute,"v-speed-dial--fixed":this.fixed})["v-speed-dial--direction-"+this.direction]=!0,t}},render:function(t){var e=this,n=[],i={class:this.classes,directives:[{name:"click-outside",value:function(){return e.isActive=!1}}],on:{click:function(){return e.isActive=!e.isActive}}};this.openOnHover&&(i.on.mouseenter=function(){return e.isActive=!0},i.on.mouseleave=function(){return e.isActive=!1}),this.isActive&&(n=(this.$slots.default||[]).map(function(t,e){return t.key=e,t}));var r=t("transition-group",{class:"v-speed-dial__list",props:{name:this.transition,mode:this.mode,origin:this.origin,tag:"div"}},n);return t("div",i,[this.$slots.activator,r])}}},"./src/components/VSpeedDial/index.js": /*!********************************************!*\ !*** ./src/components/VSpeedDial/index.js ***! \********************************************/ /*! exports provided: VSpeedDial, default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./VSpeedDial */"./src/components/VSpeedDial/VSpeedDial.js");n.d(e,"VSpeedDial",function(){return i.default}),e.default=i.default},"./src/components/VStepper/VStepper.js": /*!*********************************************!*\ !*** ./src/components/VStepper/VStepper.js ***! \*********************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_steppers.styl */"./src/stylus/components/_steppers.styl");var i=n(/*! ../../mixins/registrable */"./src/mixins/registrable.ts"),r=n(/*! ../../mixins/themeable */"./src/mixins/themeable.ts"),s=function(){return(s=Object.assign||function(t){for(var e,n=1,i=arguments.length;n<i;n++)for(var r in e=arguments[n])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t}).apply(this,arguments)};e.default={name:"v-stepper",mixins:[Object(i.provide)("stepper"),r.default],provide:function(){return{stepClick:this.stepClick,isVertical:this.vertical}},props:{nonLinear:Boolean,altLabels:Boolean,vertical:Boolean,value:[Number,String]},data:function(){return{inputValue:null,isBooted:!1,steps:[],content:[],isReverse:!1}},computed:{classes:function(){return s({"v-stepper":!0,"v-stepper--is-booted":this.isBooted,"v-stepper--vertical":this.vertical,"v-stepper--alt-labels":this.altLabels,"v-stepper--non-linear":this.nonLinear},this.themeClasses)}},watch:{inputValue:function(t,e){this.isReverse=Number(t)<Number(e);for(var n=this.steps.length;--n>=0;)this.steps[n].toggle(this.inputValue);for(n=this.content.length;--n>=0;)this.content[n].toggle(this.inputValue,this.isReverse);this.$emit("input",this.inputValue),e&&(this.isBooted=!0)},value:function(){var t=this;this.$nextTick(function(){return t.inputValue=t.value})}},mounted:function(){this.inputValue=this.value||this.steps[0].step||1},methods:{register:function(t){"v-stepper-step"===t.$options.name?this.steps.push(t):"v-stepper-content"===t.$options.name&&(t.isVertical=this.vertical,this.content.push(t))},unregister:function(t){"v-stepper-step"===t.$options.name?this.steps=this.steps.filter(function(e){return e!==t}):"v-stepper-content"===t.$options.name&&(t.isVertical=this.vertical,this.content=this.content.filter(function(e){return e!==t}))},stepClick:function(t){var e=this;this.$nextTick(function(){return e.inputValue=t})}},render:function(t){return t("div",{class:this.classes},this.$slots.default)}}},"./src/components/VStepper/VStepperContent.js": /*!****************************************************!*\ !*** ./src/components/VStepper/VStepperContent.js ***! \****************************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ../transitions */"./src/components/transitions/index.js"),r=n(/*! ../../mixins/registrable */"./src/mixins/registrable.ts"),s=n(/*! ../../util/helpers */"./src/util/helpers.ts");e.default={name:"v-stepper-content",mixins:[Object(r.inject)("stepper","v-stepper-content","v-stepper")],inject:{isVerticalProvided:{from:"isVertical"}},props:{step:{type:[Number,String],required:!0}},data:function(){return{height:0,isActive:null,isReverse:!1,isVertical:this.isVerticalProvided}},computed:{classes:function(){return{"v-stepper__content":!0}},computedTransition:function(){return this.isReverse?i.VTabReverseTransition:i.VTabTransition},styles:function(){return this.isVertical?{height:Object(s.convertToUnit)(this.height)}:{}},wrapperClasses:function(){return{"v-stepper__wrapper":!0}}},watch:{isActive:function(t,e){if(t&&null==e)return this.height="auto";this.isVertical&&(this.isActive?this.enter():this.leave())}},mounted:function(){this.$refs.wrapper.addEventListener("transitionend",this.onTransition,!1),this.stepper&&this.stepper.register(this)},beforeDestroy:function(){this.$refs.wrapper.removeEventListener("transitionend",this.onTransition,!1),this.stepper&&this.stepper.unregister(this)},methods:{onTransition:function(t){this.isActive&&"height"===t.propertyName&&(this.height="auto")},enter:function(){var t=this,e=0;requestAnimationFrame(function(){e=t.$refs.wrapper.scrollHeight}),this.height=0,setTimeout(function(){return t.isActive&&(t.height=e||"auto")},450)},leave:function(){var t=this;this.height=this.$refs.wrapper.clientHeight,setTimeout(function(){return t.height=0},10)},toggle:function(t,e){this.isActive=t.toString()===this.step.toString(),this.isReverse=e}},render:function(t){var e={class:this.classes},n={class:this.wrapperClasses,style:this.styles,ref:"wrapper"};this.isVertical||(e.directives=[{name:"show",value:this.isActive}]);var i=t("div",e,[t("div",n,[this.$slots.default])]);return t(this.computedTransition,{on:this.$listeners},[i])}}},"./src/components/VStepper/VStepperStep.js": /*!*************************************************!*\ !*** ./src/components/VStepper/VStepperStep.js ***! \*************************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ../VIcon */"./src/components/VIcon/index.ts"),r=n(/*! ../../mixins/colorable */"./src/mixins/colorable.ts"),s=n(/*! ../../mixins/registrable */"./src/mixins/registrable.ts"),o=n(/*! ../../directives/ripple */"./src/directives/ripple.ts");e.default={name:"v-stepper-step",directives:{Ripple:o.default},mixins:[r.default,Object(s.inject)("stepper","v-stepper-step","v-stepper")],inject:["stepClick"],props:{color:{type:String,default:"primary"},complete:Boolean,completeIcon:{type:String,default:"$vuetify.icons.complete"},editIcon:{type:String,default:"$vuetify.icons.edit"},errorIcon:{type:String,default:"$vuetify.icons.error"},editable:Boolean,rules:{type:Array,default:function(){return[]}},step:[Number,String]},data:function(){return{isActive:!1,isInactive:!0}},computed:{classes:function(){return{"v-stepper__step":!0,"v-stepper__step--active":this.isActive,"v-stepper__step--editable":this.editable,"v-stepper__step--inactive":this.isInactive,"v-stepper__step--error":this.hasError,"v-stepper__step--complete":this.complete,"error--text":this.hasError}},hasError:function(){return this.rules.some(function(t){return!0!==t()})}},mounted:function(){this.stepper&&this.stepper.register(this)},beforeDestroy:function(){this.stepper&&this.stepper.unregister(this)},methods:{click:function(t){t.stopPropagation(),this.editable&&this.stepClick(this.step)},toggle:function(t){this.isActive=t.toString()===this.step.toString(),this.isInactive=Number(t)<Number(this.step)}},render:function(t){var e,n={class:this.classes,directives:[{name:"ripple",value:this.editable}],on:{click:this.click}};e=this.hasError?[t(i.default,{},this.errorIcon)]:this.complete?this.editable?[t(i.default,{},this.editIcon)]:[t(i.default,{},this.completeIcon)]:this.step;var r=!(this.hasError||!this.complete&&!this.isActive)&&this.color;return t("div",n,[t("span",this.setBackgroundColor(r,{staticClass:"v-stepper__step__step"}),e),t("div",{staticClass:"v-stepper__label"},this.$slots.default)])}}},"./src/components/VStepper/index.js": /*!******************************************!*\ !*** ./src/components/VStepper/index.js ***! \******************************************/ /*! exports provided: VStepper, VStepperContent, VStepperStep, VStepperHeader, VStepperItems, default */function(t,e,n){"use strict";n.r(e),n.d(e,"VStepperHeader",function(){return a}),n.d(e,"VStepperItems",function(){return l});var i=n(/*! ../../util/helpers */"./src/util/helpers.ts"),r=n(/*! ./VStepper */"./src/components/VStepper/VStepper.js");n.d(e,"VStepper",function(){return r.default});var s=n(/*! ./VStepperStep */"./src/components/VStepper/VStepperStep.js");n.d(e,"VStepperStep",function(){return s.default});var o=n(/*! ./VStepperContent */"./src/components/VStepper/VStepperContent.js");n.d(e,"VStepperContent",function(){return o.default});var a=Object(i.createSimpleFunctional)("v-stepper__header"),l=Object(i.createSimpleFunctional)("v-stepper__items");e.default={$_vuetify_subcomponents:{VStepper:r.default,VStepperContent:o.default,VStepperStep:s.default,VStepperHeader:a,VStepperItems:l}}},"./src/components/VSubheader/VSubheader.js": /*!*************************************************!*\ !*** ./src/components/VSubheader/VSubheader.js ***! \*************************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_subheaders.styl */"./src/stylus/components/_subheaders.styl");var i=n(/*! ../../mixins/themeable */"./src/mixins/themeable.ts"),r=function(){return(r=Object.assign||function(t){for(var e,n=1,i=arguments.length;n<i;n++)for(var r in e=arguments[n])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t}).apply(this,arguments)};e.default={name:"v-subheader",mixins:[i.default],props:{inset:Boolean},render:function(t){return t("div",{staticClass:"v-subheader",class:r({"v-subheader--inset":this.inset},this.themeClasses),attrs:this.$attrs,on:this.$listeners},this.$slots.default)}}},"./src/components/VSubheader/index.js": /*!********************************************!*\ !*** ./src/components/VSubheader/index.js ***! \********************************************/ /*! exports provided: VSubheader, default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./VSubheader */"./src/components/VSubheader/VSubheader.js");n.d(e,"VSubheader",function(){return i.default}),e.default=i.default},"./src/components/VSwitch/VSwitch.js": /*!*******************************************!*\ !*** ./src/components/VSwitch/VSwitch.js ***! \*******************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_selection-controls.styl */"./src/stylus/components/_selection-controls.styl"),n(/*! ../../stylus/components/_switch.styl */"./src/stylus/components/_switch.styl");var i=n(/*! ../../mixins/selectable */"./src/mixins/selectable.js"),r=n(/*! ../../directives/touch */"./src/directives/touch.ts"),s=n(/*! ../transitions */"./src/components/transitions/index.js"),o=n(/*! ../VProgressCircular/VProgressCircular */"./src/components/VProgressCircular/VProgressCircular.ts"),a=n(/*! ../../util/helpers */"./src/util/helpers.ts"),l=function(){return(l=Object.assign||function(t){for(var e,n=1,i=arguments.length;n<i;n++)for(var r in e=arguments[n])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t}).apply(this,arguments)};e.default={name:"v-switch",directives:{Touch:r.default},mixins:[i.default],props:{loading:{type:[Boolean,String],default:!1}},computed:{classes:function(){return{"v-input--selection-controls v-input--switch":!0}},switchData:function(){return this.setTextColor(this.loading?void 0:this.computedColor,{class:this.themeClasses})}},methods:{genDefaultSlot:function(){return[this.genSwitch(),this.genLabel()]},genSwitch:function(){return this.$createElement("div",{staticClass:"v-input--selection-controls__input"},[this.genInput("checkbox",this.$attrs),!this.disabled&&this.genRipple(this.setTextColor(this.computedColor,{directives:[{name:"touch",value:{left:this.onSwipeLeft,right:this.onSwipeRight}}]})),this.$createElement("div",l({staticClass:"v-input--switch__track"},this.switchData)),this.$createElement("div",l({staticClass:"v-input--switch__thumb"},this.switchData),[this.genProgress()])])},genProgress:function(){return this.$createElement(s.VFabTransition,{},[!1===this.loading?null:this.$slots.progress||this.$createElement(o.default,{props:{color:!0===this.loading||""===this.loading?this.color||"primary":this.loading,size:16,width:2,indeterminate:!0}})])},onSwipeLeft:function(){this.isActive&&this.onChange()},onSwipeRight:function(){this.isActive||this.onChange()},onKeydown:function(t){(t.keyCode===a.keyCodes.left&&this.isActive||t.keyCode===a.keyCodes.right&&!this.isActive)&&this.onChange()}}}},"./src/components/VSwitch/index.js": /*!*****************************************!*\ !*** ./src/components/VSwitch/index.js ***! \*****************************************/ /*! exports provided: VSwitch, default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./VSwitch */"./src/components/VSwitch/VSwitch.js");n.d(e,"VSwitch",function(){return i.default}),e.default=i.default},"./src/components/VSystemBar/VSystemBar.js": /*!*************************************************!*\ !*** ./src/components/VSystemBar/VSystemBar.js ***! \*************************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_system-bars.styl */"./src/stylus/components/_system-bars.styl");var i=n(/*! ../../mixins/applicationable */"./src/mixins/applicationable.ts"),r=n(/*! ../../mixins/colorable */"./src/mixins/colorable.ts"),s=n(/*! ../../mixins/themeable */"./src/mixins/themeable.ts"),o=function(){return(o=Object.assign||function(t){for(var e,n=1,i=arguments.length;n<i;n++)for(var r in e=arguments[n])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t}).apply(this,arguments)};e.default={name:"v-system-bar",mixins:[Object(i.default)("bar",["height","window"]),r.default,s.default],props:{height:{type:[Number,String],validator:function(t){return!isNaN(parseInt(t))}},lightsOut:Boolean,status:Boolean,window:Boolean},computed:{classes:function(){return o({"v-system-bar--lights-out":this.lightsOut,"v-system-bar--absolute":this.absolute,"v-system-bar--fixed":!this.absolute&&(this.app||this.fixed),"v-system-bar--status":this.status,"v-system-bar--window":this.window},this.themeClasses)},computedHeight:function(){return this.height?parseInt(this.height):this.window?32:24}},methods:{updateApplication:function(){return this.computedHeight}},render:function(t){var e={staticClass:"v-system-bar",class:this.classes,style:{height:this.computedHeight+"px"}};return t("div",this.setBackgroundColor(this.color,e),this.$slots.default)}}},"./src/components/VSystemBar/index.js": /*!********************************************!*\ !*** ./src/components/VSystemBar/index.js ***! \********************************************/ /*! exports provided: VSystemBar, default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./VSystemBar */"./src/components/VSystemBar/VSystemBar.js");n.d(e,"VSystemBar",function(){return i.default}),e.default=i.default},"./src/components/VTabs/VTab.js": /*!**************************************!*\ !*** ./src/components/VTabs/VTab.js ***! \**************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ../../mixins/groupable */"./src/mixins/groupable.ts"),r=n(/*! ../../mixins/routable */"./src/mixins/routable.ts"),s=n(/*! ../../mixins/themeable */"./src/mixins/themeable.ts"),o=n(/*! ../../util/helpers */"./src/util/helpers.ts"),a=function(){return(a=Object.assign||function(t){for(var e,n=1,i=arguments.length;n<i;n++)for(var r in e=arguments[n])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t}).apply(this,arguments)};e.default={name:"v-tab",mixins:[r.default,Object(i.factory)("tabGroup"),s.default],props:{ripple:{type:[Boolean,Object],default:!0}},computed:{isDark:function(){return this.tabGroup&&this.tabGroup.selfIsDark},classes:function(){return a({"v-tabs__item":!0,"v-tabs__item--disabled":this.disabled},this.groupClasses)},value:function(){var t=this.to||this.href||"";this.$router&&this.to===Object(this.to)&&(t=this.$router.resolve(this.to,this.$route,this.append).href);return t.replace("#","")}},watch:{$route:"onRouteChange"},mounted:function(){this.onRouteChange()},methods:{click:function(t){this.href&&this.href.indexOf("#")>-1&&t.preventDefault(),this.$emit("click",t),this.to||this.toggle()},onRouteChange:function(){var t=this;if(this.to&&this.$refs.link){var e="_vnode.data.class."+this.activeClass;this.$nextTick(function(){Object(o.getObjectValueByPath)(t.$refs.link,e)&&t.toggle()})}}},render:function(t){var e=this.generateRouteLink(this.classes),n=e.data,i=this.disabled?"div":e.tag;return n.ref="link",t("div",{staticClass:"v-tabs__div"},[t(i,n,this.$slots.default)])}}},"./src/components/VTabs/VTabItem.js": /*!******************************************!*\ !*** ./src/components/VTabs/VTabItem.js ***! \******************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ../VWindow/VWindowItem */"./src/components/VWindow/VWindowItem.ts"),r=n(/*! ../../util/console */"./src/util/console.ts");e.default=i.default.extend({name:"v-tab-item",props:{id:String},render:function(t){var e=i.default.options.render.call(this,t);return this.id&&(Object(r.deprecate)("id","value",this),e.data.domProps=e.data.domProps||{},e.data.domProps.id=this.id),e}})},"./src/components/VTabs/VTabs.js": /*!***************************************!*\ !*** ./src/components/VTabs/VTabs.js ***! \***************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_tabs.styl */"./src/stylus/components/_tabs.styl");var i=n(/*! ../VItemGroup/VItemGroup */"./src/components/VItemGroup/VItemGroup.ts"),r=n(/*! ./mixins/tabs-computed */"./src/components/VTabs/mixins/tabs-computed.js"),s=n(/*! ./mixins/tabs-generators */"./src/components/VTabs/mixins/tabs-generators.js"),o=n(/*! ./mixins/tabs-props */"./src/components/VTabs/mixins/tabs-props.js"),a=n(/*! ./mixins/tabs-touch */"./src/components/VTabs/mixins/tabs-touch.js"),l=n(/*! ./mixins/tabs-watchers */"./src/components/VTabs/mixins/tabs-watchers.js"),c=n(/*! ../../mixins/colorable */"./src/mixins/colorable.ts"),u=n(/*! ../../mixins/ssr-bootable */"./src/mixins/ssr-bootable.ts"),h=n(/*! ../../mixins/themeable */"./src/mixins/themeable.ts"),d=n(/*! ../../directives/resize */"./src/directives/resize.ts"),p=n(/*! ../../directives/touch */"./src/directives/touch.ts"),f=n(/*! ../../util/console */"./src/util/console.ts"),m=n(/*! ../../util/ThemeProvider */"./src/util/ThemeProvider.ts");e.default=i.BaseItemGroup.extend({name:"v-tabs",directives:{Resize:d.default,Touch:p.default},mixins:[c.default,u.default,r.default,o.default,s.default,a.default,l.default,h.default],provide:function(){return{tabGroup:this,tabProxy:this.tabProxy,registerItems:this.registerItems,unregisterItems:this.unregisterItems}},data:function(){return{bar:[],content:[],isOverflowing:!1,nextIconVisible:!1,prevIconVisible:!1,resizeTimeout:null,scrollOffset:0,sliderWidth:null,sliderLeft:null,startX:0,tabItems:null,transitionTime:300,widths:{bar:0,container:0,wrapper:0}}},watch:{items:"onResize",tabs:"onResize"},methods:{checkIcons:function(){this.prevIconVisible=this.checkPrevIcon(),this.nextIconVisible=this.checkNextIcon()},checkPrevIcon:function(){return this.scrollOffset>0},checkNextIcon:function(){return this.widths.container>this.scrollOffset+this.widths.wrapper},callSlider:function(){var t=this;if(this.hideSlider||!this.activeTab)return!1;var e=this.activeTab;this.$nextTick(function(){e&&e.$el&&(t.sliderWidth=e.$el.scrollWidth,t.sliderLeft=e.$el.offsetLeft)})},init:function(){i.BaseItemGroup.options.methods.init.call(this),this.$listeners.input&&Object(f.deprecate)("@input","@change",this),setTimeout(this.onResize,33)},onResize:function(){this._isDestroyed||(this.setWidths(),clearTimeout(this.resizeTimeout),this.resizeTimeout=setTimeout(this.updateTabsView,this.transitionTime))},overflowCheck:function(t,e){this.isOverflowing&&e(t)},scrollTo:function(t){this.scrollOffset=this.newOffset(t)},setOverflow:function(){this.isOverflowing=this.widths.bar<this.widths.container},setWidths:function(){var t=this.$refs.bar?this.$refs.bar.clientWidth:0,e=this.$refs.container?this.$refs.container.clientWidth:0,n=this.$refs.wrapper?this.$refs.wrapper.clientWidth:0;this.widths={bar:t,container:e,wrapper:n},this.setOverflow()},parseNodes:function(){for(var t=[],e=[],n=[],i=[],r=(this.$slots.default||[]).length,s=0;s<r;s++){var o=this.$slots.default[s];if(o.componentOptions)switch(o.componentOptions.Ctor.options.name){case"v-tabs-slider":n.push(o);break;case"v-tabs-items":e.push(o);break;case"v-tab-item":t.push(o);break;default:i.push(o)}else i.push(o)}return{tab:i,slider:n,items:e,item:t}},registerItems:function(t){this.tabItems=t,t(this.internalValue)},unregisterItems:function(){this.tabItems=null},updateTabsView:function(){this.callSlider(),this.scrollIntoView(),this.checkIcons()},scrollIntoView:function(){if(this.activeTab){if(!this.isOverflowing)return this.scrollOffset=0;var t=this.widths.wrapper+this.scrollOffset,e=this.activeTab.$el,n=e.clientWidth,i=e.offsetLeft,r=n+i,s=.3*n;this.activeTab===this.items[this.items.length-1]&&(s=0),i<this.scrollOffset?this.scrollOffset=Math.max(i-s,0):t<r&&(this.scrollOffset-=t-r-s)}},tabProxy:function(t){this.internalValue=t}},render:function(t){var e=this.parseNodes(),n=e.tab,i=e.slider,r=e.items,s=e.item;return t("div",{staticClass:"v-tabs",directives:[{name:"resize",modifiers:{quiet:!0},value:this.onResize}]},[this.genBar([this.hideSlider?null:this.genSlider(i),n]),t(m.default,{props:{dark:this.theme.isDark,light:!this.theme.isDark}},[this.genItems(r,s)])])}})},"./src/components/VTabs/VTabsItems.js": /*!********************************************!*\ !*** ./src/components/VTabs/VTabsItems.js ***! \********************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ../VWindow/VWindow */"./src/components/VWindow/VWindow.ts");e.default=i.default.extend({name:"v-tabs-items",inject:{registerItems:{default:null},tabProxy:{default:null},unregisterItems:{default:null}},props:{cycle:Boolean},watch:{internalValue:function(t){this.tabProxy&&this.tabProxy(t)}},created:function(){this.registerItems&&this.registerItems(this.changeModel)},beforeDestroy:function(){this.unregisterItems&&this.unregisterItems()},methods:{changeModel:function(t){this.internalValue=t},getValue:function(t,e){return t.id?t.id:i.default.options.methods.getValue.call(this,t,e)},next:function(){(this.cycle||this.internalIndex!==this.items.length-1)&&i.default.options.methods.next.call(this)},prev:function(){(this.cycle||0!==this.internalIndex)&&i.default.options.methods.prev.call(this)}}})},"./src/components/VTabs/VTabsSlider.js": /*!*********************************************!*\ !*** ./src/components/VTabs/VTabsSlider.js ***! \*********************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ../../mixins/colorable */"./src/mixins/colorable.ts");e.default={name:"v-tabs-slider",mixins:[i.default],render:function(t){return t("div",this.setBackgroundColor(this.color||"accent",{staticClass:"v-tabs__slider"}))}}},"./src/components/VTabs/index.js": /*!***************************************!*\ !*** ./src/components/VTabs/index.js ***! \***************************************/ /*! exports provided: VTabs, VTab, VTabItem, VTabsItems, VTabsSlider, default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./VTabs */"./src/components/VTabs/VTabs.js");n.d(e,"VTabs",function(){return i.default});var r=n(/*! ./VTab */"./src/components/VTabs/VTab.js");n.d(e,"VTab",function(){return r.default});var s=n(/*! ./VTabsItems */"./src/components/VTabs/VTabsItems.js");n.d(e,"VTabsItems",function(){return s.default});var o=n(/*! ./VTabItem */"./src/components/VTabs/VTabItem.js");n.d(e,"VTabItem",function(){return o.default});var a=n(/*! ./VTabsSlider */"./src/components/VTabs/VTabsSlider.js");n.d(e,"VTabsSlider",function(){return a.default}),e.default={$_vuetify_subcomponents:{VTabs:i.default,VTab:r.default,VTabsItems:s.default,VTabItem:o.default,VTabsSlider:a.default}}},"./src/components/VTabs/mixins/tabs-computed.js": /*!******************************************************!*\ !*** ./src/components/VTabs/mixins/tabs-computed.js ***! \******************************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e),e.default={computed:{activeTab:function(){if(this.selectedItems.length)return this.selectedItems[0]},containerStyles:function(){return this.height?{height:parseInt(this.height,10)+"px"}:null},hasArrows:function(){return(this.showArrows||!this.isMobile)&&this.isOverflowing},isMobile:function(){return this.$vuetify.breakpoint.width<this.mobileBreakPoint},sliderStyles:function(){return{left:this.sliderLeft+"px",transition:null!=this.sliderLeft?null:"none",width:this.sliderWidth+"px"}}}}},"./src/components/VTabs/mixins/tabs-generators.js": /*!********************************************************!*\ !*** ./src/components/VTabs/mixins/tabs-generators.js ***! \********************************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ../VTabsItems */"./src/components/VTabs/VTabsItems.js"),r=n(/*! ../VTabsSlider */"./src/components/VTabs/VTabsSlider.js"),s=n(/*! ../../VIcon */"./src/components/VIcon/index.ts");e.default={methods:{genBar:function(t){return this.$createElement("div",this.setBackgroundColor(this.color,{staticClass:"v-tabs__bar",class:this.themeClasses,ref:"bar"}),[this.genTransition("prev"),this.genWrapper(this.genContainer(t)),this.genTransition("next")])},genContainer:function(t){return this.$createElement("div",{staticClass:"v-tabs__container",class:{"v-tabs__container--align-with-title":this.alignWithTitle,"v-tabs__container--centered":this.centered,"v-tabs__container--fixed-tabs":this.fixedTabs,"v-tabs__container--grow":this.grow,"v-tabs__container--icons-and-text":this.iconsAndText,"v-tabs__container--overflow":this.isOverflowing,"v-tabs__container--right":this.right},style:this.containerStyles,ref:"container"},t)},genIcon:function(t){var e=this;return this.hasArrows&&this[t+"IconVisible"]?this.$createElement(s.default,{staticClass:"v-tabs__icon v-tabs__icon--"+t,props:{disabled:!this[t+"IconVisible"]},on:{click:function(){return e.scrollTo(t)}}},this[t+"Icon"]):null},genItems:function(t,e){return t.length>0?t:e.length?this.$createElement(i.default,e):null},genTransition:function(t){return this.$createElement("transition",{props:{name:"fade-transition"}},[this.genIcon(t)])},genWrapper:function(t){var e=this;return this.$createElement("div",{staticClass:"v-tabs__wrapper",class:{"v-tabs__wrapper--show-arrows":this.hasArrows},ref:"wrapper",directives:[{name:"touch",value:{start:function(t){return e.overflowCheck(t,e.onTouchStart)},move:function(t){return e.overflowCheck(t,e.onTouchMove)},end:function(t){return e.overflowCheck(t,e.onTouchEnd)}}}]},[t])},genSlider:function(t){return t.length||(t=[this.$createElement(r.default,{props:{color:this.sliderColor}})]),this.$createElement("div",{staticClass:"v-tabs__slider-wrapper",style:this.sliderStyles},t)}}}},"./src/components/VTabs/mixins/tabs-props.js": /*!***************************************************!*\ !*** ./src/components/VTabs/mixins/tabs-props.js ***! \***************************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e),e.default={props:{activeClass:{type:String,default:"v-tabs__item--active"},alignWithTitle:Boolean,centered:Boolean,fixedTabs:Boolean,grow:Boolean,height:{type:[Number,String],default:void 0,validator:function(t){return!isNaN(parseInt(t))}},hideSlider:Boolean,iconsAndText:Boolean,mandatory:{type:Boolean,default:!0},mobileBreakPoint:{type:[Number,String],default:1264,validator:function(t){return!isNaN(parseInt(t))}},nextIcon:{type:String,default:"$vuetify.icons.next"},prevIcon:{type:String,default:"$vuetify.icons.prev"},right:Boolean,showArrows:Boolean,sliderColor:{type:String,default:"accent"},value:[Number,String]}}},"./src/components/VTabs/mixins/tabs-touch.js": /*!***************************************************!*\ !*** ./src/components/VTabs/mixins/tabs-touch.js ***! \***************************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e),e.default={methods:{newOffset:function(t){var e=this.$refs.wrapper.clientWidth;return"prev"===t?Math.max(this.scrollOffset-e,0):Math.min(this.scrollOffset+e,this.$refs.container.clientWidth-e)},onTouchStart:function(t){this.startX=this.scrollOffset+t.touchstartX,this.$refs.container.style.transition="none",this.$refs.container.style.willChange="transform"},onTouchMove:function(t){this.scrollOffset=this.startX-t.touchmoveX},onTouchEnd:function(){var t=this.$refs.container,e=this.$refs.wrapper,n=t.clientWidth-e.clientWidth;t.style.transition=null,t.style.willChange=null,this.scrollOffset<0||!this.isOverflowing?this.scrollOffset=0:this.scrollOffset>=n&&(this.scrollOffset=n)}}}},"./src/components/VTabs/mixins/tabs-watchers.js": /*!******************************************************!*\ !*** ./src/components/VTabs/mixins/tabs-watchers.js ***! \******************************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e),e.default={watch:{activeTab:function(t,e){this.setOverflow(),t&&(this.tabItems&&this.tabItems(this.getValue(t,this.items.indexOf(t))),null!=e&&this.updateTabsView())},alignWithTitle:"callSlider",centered:"callSlider",fixedTabs:"callSlider",hasArrows:function(t){t||(this.scrollOffset=0)},internalValue:function(t){this.$listeners.input&&this.$emit("input",t)},lazyValue:"updateTabs",right:"callSlider","$vuetify.application.left":"onResize","$vuetify.application.right":"onResize",scrollOffset:function(t){this.$refs.container.style.transform="translateX("+-t+"px)",this.hasArrows&&(this.prevIconVisible=this.checkPrevIcon(),this.nextIconVisible=this.checkNextIcon())}}}},"./src/components/VTextField/VTextField.js": /*!*************************************************!*\ !*** ./src/components/VTextField/VTextField.js ***! \*************************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_text-fields.styl */"./src/stylus/components/_text-fields.styl");var i=n(/*! ../VInput */"./src/components/VInput/index.js"),r=n(/*! ../VCounter */"./src/components/VCounter/index.js"),s=n(/*! ../VLabel */"./src/components/VLabel/index.js"),o=n(/*! ../../mixins/maskable */"./src/mixins/maskable.js"),a=n(/*! ../../mixins/loadable */"./src/mixins/loadable.ts"),l=n(/*! ../../directives/ripple */"./src/directives/ripple.ts"),c=n(/*! ../../util/helpers */"./src/util/helpers.ts"),u=n(/*! ../../util/console */"./src/util/console.ts"),h=function(){return(h=Object.assign||function(t){for(var e,n=1,i=arguments.length;n<i;n++)for(var r in e=arguments[n])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t}).apply(this,arguments)},d=["color","file","time","date","datetime-local","week","month"];e.default={name:"v-text-field",directives:{Ripple:l.default},extends:i.default,mixins:[o.default,a.default],inheritAttrs:!1,props:{appendOuterIcon:String,appendOuterIconCb:Function,autofocus:Boolean,box:Boolean,browserAutocomplete:String,clearable:Boolean,clearIcon:{type:String,default:"$vuetify.icons.clear"},clearIconCb:Function,color:{type:String,default:"primary"},counter:[Boolean,Number,String],flat:Boolean,fullWidth:Boolean,label:String,outline:Boolean,placeholder:String,prefix:String,prependInnerIcon:String,prependInnerIconCb:Function,reverse:Boolean,singleLine:Boolean,solo:Boolean,soloInverted:Boolean,suffix:String,textarea:Boolean,type:{type:String,default:"text"}},data:function(){return{badInput:!1,initialValue:null,internalChange:!1,isClearing:!1}},computed:{classes:function(){return{"v-text-field":!0,"v-text-field--full-width":this.fullWidth,"v-text-field--prefix":this.prefix,"v-text-field--single-line":this.isSingle,"v-text-field--solo":this.isSolo,"v-text-field--solo-inverted":this.soloInverted,"v-text-field--solo-flat":this.flat,"v-text-field--box":this.box,"v-text-field--enclosed":this.isEnclosed,"v-text-field--reverse":this.reverse,"v-text-field--outline":this.hasOutline}},counterValue:function(){return(this.internalValue||"").toString().length},directivesInput:function(){return[]},hasOutline:function(){return this.outline||this.textarea},internalValue:{get:function(){return this.lazyValue},set:function(t){this.mask?(this.lazyValue=this.unmaskText(this.maskText(this.unmaskText(t))),this.setSelectionRange()):(this.lazyValue=t,this.$emit("input",this.lazyValue))}},isDirty:function(){return null!=this.lazyValue&&this.lazyValue.toString().length>0||this.badInput},isEnclosed:function(){return this.box||this.isSolo||this.hasOutline||this.fullWidth},isLabelActive:function(){return this.isDirty||d.includes(this.type)},isSingle:function(){return this.isSolo||this.singleLine},isSolo:function(){return this.solo||this.soloInverted},labelPosition:function(){var t=this.prefix&&!this.labelValue?16:0;return!this.$vuetify.rtl!=!this.reverse?{left:"auto",right:t}:{left:t,right:"auto"}},showLabel:function(){return this.hasLabel&&(!this.isSingle||!this.isLabelActive&&!this.placeholder)},labelValue:function(){return!this.isSingle&&Boolean(this.isFocused||this.isLabelActive||this.placeholder)}},watch:{isFocused:function(t){this.hasColor=t,t?this.initialValue=this.lazyValue:this.initialValue!==this.lazyValue&&this.$emit("change",this.lazyValue)},value:function(t){var e=this;if(this.mask&&!this.internalChange){var n=this.maskText(this.unmaskText(t));this.lazyValue=this.unmaskText(n),String(t)!==this.lazyValue&&this.$nextTick(function(){e.$refs.input.value=n,e.$emit("input",e.lazyValue)})}else this.lazyValue=t}},mounted:function(){this.autofocus&&this.onFocus()},methods:{focus:function(){this.onFocus()},blur:function(){this.$refs.input?this.$refs.input.blur():this.onBlur()},clearableCallback:function(){var t=this;this.internalValue=null,this.$nextTick(function(){return t.$refs.input.focus()})},genAppendSlot:function(){var t=[];return this.$slots["append-outer"]?t.push(this.$slots["append-outer"]):this.appendOuterIcon&&t.push(this.genIcon("appendOuter")),this.genSlot("append","outer",t)},genPrependInnerSlot:function(){var t=[];return this.$slots["prepend-inner"]?t.push(this.$slots["prepend-inner"]):this.prependInnerIcon&&t.push(this.genIcon("prependInner")),this.genSlot("prepend","inner",t)},genIconSlot:function(){var t=[];return this.$slots.append?t.push(this.$slots.append):this.appendIcon&&t.push(this.genIcon("append")),this.genSlot("append","inner",t)},genInputSlot:function(){var t=i.default.methods.genInputSlot.call(this),e=this.genPrependInnerSlot();return e&&t.children.unshift(e),t},genClearIcon:function(){if(!this.clearable)return null;var t=!!this.isDirty&&"clear";return this.clearIconCb&&Object(u.deprecate)(":clear-icon-cb","@click:clear",this),this.genSlot("append","inner",[this.genIcon(t,!this.$listeners["click:clear"]&&this.clearIconCb||this.clearableCallback,!1)])},genCounter:function(){if(!1===this.counter||null==this.counter)return null;var t=!0===this.counter?this.$attrs.maxlength:this.counter;return this.$createElement(r.default,{props:{dark:this.dark,light:this.light,max:t,value:this.counterValue}})},genDefaultSlot:function(){return[this.genTextFieldSlot(),this.genClearIcon(),this.genIconSlot(),this.genProgress()]},genLabel:function(){if(!this.showLabel)return null;var t={props:{absolute:!0,color:this.validationState,dark:this.dark,disabled:this.disabled,focused:!this.isSingle&&(this.isFocused||!!this.validationState),left:this.labelPosition.left,light:this.light,right:this.labelPosition.right,value:this.labelValue}};return this.$attrs.id&&(t.props.for=this.$attrs.id),this.$createElement(s.default,t,this.$slots.label||this.label)},genInput:function(){var t=Object.assign({},this.$listeners);delete t.change;var e={style:{},domProps:{value:this.maskText(this.lazyValue)},attrs:h({"aria-label":(!this.$attrs||!this.$attrs.id)&&this.label},this.$attrs,{autofocus:this.autofocus,disabled:this.disabled,readonly:this.readonly,type:this.type}),on:Object.assign(t,{blur:this.onBlur,input:this.onInput,focus:this.onFocus,keydown:this.onKeyDown}),ref:"input"};return this.placeholder&&(e.attrs.placeholder=this.placeholder),this.mask&&(e.attrs.maxlength=this.masked.length),this.browserAutocomplete&&(e.attrs.autocomplete=this.browserAutocomplete),this.$createElement("input",e)},genMessages:function(){return this.hideDetails?null:this.$createElement("div",{staticClass:"v-text-field__details"},[i.default.methods.genMessages.call(this),this.genCounter()])},genTextFieldSlot:function(){return this.$createElement("div",{staticClass:"v-text-field__slot"},[this.genLabel(),this.prefix?this.genAffix("prefix"):null,this.genInput(),this.suffix?this.genAffix("suffix"):null])},genAffix:function(t){return this.$createElement("div",{class:"v-text-field__"+t,ref:t},this[t])},onBlur:function(t){this.isFocused=!1,this.internalChange=!1,this.$emit("blur",t)},onClick:function(){this.isFocused||this.disabled||this.$refs.input.focus()},onFocus:function(t){if(this.$refs.input)return document.activeElement!==this.$refs.input?this.$refs.input.focus():void(this.isFocused||(this.isFocused=!0,this.$emit("focus",t)))},onInput:function(t){this.internalChange=!0,this.mask&&this.resetSelections(t.target),this.internalValue=t.target.value,this.badInput=t.target.validity&&t.target.validity.badInput},onKeyDown:function(t){this.internalChange=!0,t.keyCode===c.keyCodes.enter&&this.$emit("change",this.internalValue),this.$emit("keydown",t)},onMouseDown:function(t){t.target!==this.$refs.input&&(t.preventDefault(),t.stopPropagation()),i.default.methods.onMouseDown.call(this,t)},onMouseUp:function(t){this.hasMouseDown&&this.focus(),i.default.methods.onMouseUp.call(this,t)}}}},"./src/components/VTextField/index.js": /*!********************************************!*\ !*** ./src/components/VTextField/index.js ***! \********************************************/ /*! exports provided: VTextField, default */function(t,e,n){"use strict";n.r(e),n.d(e,"VTextField",function(){return l});var i=n(/*! ./VTextField */"./src/components/VTextField/VTextField.js"),r=n(/*! ../VTextarea/VTextarea */"./src/components/VTextarea/VTextarea.js"),s=n(/*! ../../util/rebuildFunctionalSlots */"./src/util/rebuildFunctionalSlots.js"),o=n(/*! ../../util/dedupeModelListeners */"./src/util/dedupeModelListeners.ts"),a=n(/*! ../../util/console */"./src/util/console.ts"),l={functional:!0,$_wrapperFor:i.default,props:{textarea:Boolean,multiLine:Boolean},render:function(t,e){var n=e.props,c=e.data,u=e.slots,h=e.parent;Object(o.default)(c);var d=Object(s.default)(u(),t);return n.textarea&&Object(a.deprecate)("<v-text-field textarea>","<v-textarea outline>",l,h),n.multiLine&&Object(a.deprecate)("<v-text-field multi-line>","<v-textarea>",l,h),n.textarea||n.multiLine?(c.attrs.outline=n.textarea,t(r.default,c,d)):t(i.default,c,d)}};e.default=l},"./src/components/VTextarea/VTextarea.js": /*!***********************************************!*\ !*** ./src/components/VTextarea/VTextarea.js ***! \***********************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_textarea.styl */"./src/stylus/components/_textarea.styl");var i=n(/*! ../VTextField/VTextField */"./src/components/VTextField/VTextField.js"),r=n(/*! ../../util/console */"./src/util/console.ts"),s=function(){return(s=Object.assign||function(t){for(var e,n=1,i=arguments.length;n<i;n++)for(var r in e=arguments[n])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t}).apply(this,arguments)};e.default={name:"v-textarea",extends:i.default,props:{autoGrow:Boolean,noResize:Boolean,outline:Boolean,rowHeight:{type:[Number,String],default:24,validator:function(t){return!isNaN(parseFloat(t))}},rows:{type:[Number,String],default:5,validator:function(t){return!isNaN(parseInt(t,10))}}},computed:{classes:function(){return s({"v-textarea":!0,"v-textarea--auto-grow":this.autoGrow,"v-textarea--no-resize":this.noResizeHandle},i.default.computed.classes.call(this,null))},dynamicHeight:function(){return this.autoGrow?this.inputHeight:"auto"},isEnclosed:function(){return this.textarea||i.default.computed.isEnclosed.call(this)},noResizeHandle:function(){return this.noResize||this.autoGrow}},watch:{lazyValue:function(){!this.internalChange&&this.autoGrow&&this.$nextTick(this.calculateInputHeight)}},mounted:function(){var t=this;setTimeout(function(){t.autoGrow&&t.calculateInputHeight()},0),this.autoGrow&&this.noResize&&Object(r.consoleInfo)('"no-resize" is now implied when using "auto-grow", and can be removed',this)},methods:{calculateInputHeight:function(){var t=this.$refs.input;if(t){t.style.height=0;var e=t.scrollHeight,n=parseInt(this.rows,10)*parseFloat(this.rowHeight);t.style.height=Math.max(n,e)+"px"}},genInput:function(){var t=i.default.methods.genInput.call(this);return t.tag="textarea",delete t.data.attrs.type,t.data.attrs.rows=this.rows,t},onInput:function(t){i.default.methods.onInput.call(this,t),this.autoGrow&&this.calculateInputHeight()},onKeyDown:function(t){this.isFocused&&13===t.keyCode&&t.stopPropagation(),this.internalChange=!0,this.$emit("keydown",t)}}}},"./src/components/VTextarea/index.js": /*!*******************************************!*\ !*** ./src/components/VTextarea/index.js ***! \*******************************************/ /*! exports provided: VTextarea, default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./VTextarea */"./src/components/VTextarea/VTextarea.js");n.d(e,"VTextarea",function(){return i.default}),e.default=i.default},"./src/components/VTimePicker/VTimePicker.js": /*!***************************************************!*\ !*** ./src/components/VTimePicker/VTimePicker.js ***! \***************************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./VTimePickerTitle */"./src/components/VTimePicker/VTimePickerTitle.js"),r=n(/*! ./VTimePickerClock */"./src/components/VTimePicker/VTimePickerClock.js"),s=n(/*! ../../mixins/picker */"./src/mixins/picker.js"),o=n(/*! ../../util/helpers */"./src/util/helpers.ts"),a=n(/*! ../VDatePicker/util/pad */"./src/components/VDatePicker/util/pad.js"),l=function(t,e){var n="function"==typeof Symbol&&t[Symbol.iterator];if(!n)return t;var i,r,s=n.call(t),o=[];try{for(;(void 0===e||e-- >0)&&!(i=s.next()).done;)o.push(i.value)}catch(t){r={error:t}}finally{try{i&&!i.done&&(n=s.return)&&n.call(s)}finally{if(r)throw r.error}}return o},c=Object(o.createRange)(24),u=Object(o.createRange)(12),h=u.map(function(t){return t+12}),d=Object(o.createRange)(60);e.default={name:"v-time-picker",mixins:[s.default],props:{allowedHours:Function,allowedMinutes:Function,format:{type:String,default:"ampm",validator:function(t){return["ampm","24hr"].includes(t)}},min:String,max:String,readonly:Boolean,scrollable:Boolean,value:null},data:function(){return{inputHour:null,inputMinute:null,period:"am",selectingHour:!0}},computed:{isAllowedHourCb:function(){var t=this;if(!this.min&&!this.max)return this.allowedHours;var e=this.min?this.min.split(":")[0]:0,n=this.max?this.max.split(":")[0]:23;return function(i){return i>=1*e&&i<=1*n&&(!t.allowedHours||t.allowedHours(i))}},isAllowedMinuteCb:function(){var t=this,e=!this.allowedHours||this.allowedHours(this.inputHour);if(!this.min&&!this.max)return e?this.allowedMinutes:function(){return!1};var n=l(this.min?this.min.split(":"):[0,0],2),i=n[0],r=n[1],s=l(this.max?this.max.split(":"):[23,59],2),o=60*i+1*r,a=60*s[0]+1*s[1];return function(n){var i=60*t.inputHour+n;return i>=o&&i<=a&&e&&(!t.allowedMinutes||t.allowedMinutes(n))}},isAmPm:function(){return"ampm"===this.format}},watch:{value:"setInputData"},mounted:function(){this.setInputData(this.value)},methods:{emitValue:function(){null!=this.inputHour&&null!=this.inputMinute&&this.$emit("input",Object(a.default)(this.inputHour)+":"+Object(a.default)(this.inputMinute))},setPeriod:function(t){if(this.period=t,null!=this.inputHour){var e=this.inputHour+("am"===t?-12:12);this.inputHour=this.firstAllowed("hour",e),this.emitValue()}},setInputData:function(t){if(null==t)return this.inputHour=null,void(this.inputMinute=null);if(t instanceof Date)this.inputHour=t.getHours(),this.inputMinute=t.getMinutes();else{var e=l(t.trim().toLowerCase().match(/^(\d+):(\d+)(:\d+)?([ap]m)?$/,"")||[],5),n=e[1],i=e[2],r=e[4];this.inputHour=r?this.convert12to24(parseInt(n,10),r):parseInt(n,10),this.inputMinute=parseInt(i,10)}this.period=this.inputHour<12?"am":"pm"},convert24to12:function(t){return t?(t-1)%12+1:12},convert12to24:function(t,e){return t%12+("pm"===e?12:0)},onInput:function(t){this.selectingHour?this.inputHour=this.isAmPm?this.convert12to24(t,this.period):t:this.inputMinute=t,this.emitValue()},onChange:function(){this.selectingHour?this.selectingHour=!1:this.$emit("change",this.value)},firstAllowed:function(t,e){var n="hour"===t?this.isAllowedHourCb:this.isAllowedMinuteCb;if(!n)return e;var i="minute"===t?d:this.isAmPm?e<12?u:h:c;return((i.find(function(t){return n((t+e)%i.length+i[0])})||0)+e)%i.length+i[0]},genClock:function(){return this.$createElement(r.default,{props:{allowedValues:this.selectingHour?this.isAllowedHourCb:this.isAllowedMinuteCb,color:this.color,dark:this.dark,double:this.selectingHour&&!this.isAmPm,format:this.selectingHour?this.isAmPm?this.convert24to12:function(t){return t}:function(t){return Object(a.default)(t,2)},light:this.light,max:this.selectingHour?this.isAmPm&&"am"===this.period?11:23:59,min:this.selectingHour&&this.isAmPm&&"pm"===this.period?12:0,readonly:this.readonly,scrollable:this.scrollable,size:this.width-(!this.fullWidth&&this.landscape?80:20),step:this.selectingHour?1:5,value:this.selectingHour?this.inputHour:this.inputMinute},on:{input:this.onInput,change:this.onChange},ref:"clock"})},genPickerBody:function(){return this.$createElement("div",{staticClass:"v-time-picker-clock__container",key:this.selectingHour},[this.genClock()])},genPickerTitle:function(){var t=this;return this.$createElement(i.default,{props:{ampm:this.isAmPm,hour:this.inputHour,minute:this.inputMinute,period:this.period,readonly:this.readonly,selectingHour:this.selectingHour},on:{"update:selectingHour":function(e){return t.selectingHour=e},"update:period":this.setPeriod},ref:"title",slot:"title"})}},render:function(){return this.genPicker("v-picker--time")}}},"./src/components/VTimePicker/VTimePickerClock.js": /*!********************************************************!*\ !*** ./src/components/VTimePicker/VTimePickerClock.js ***! \********************************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_time-picker-clock.styl */"./src/stylus/components/_time-picker-clock.styl");var i=n(/*! ../../mixins/colorable */"./src/mixins/colorable.ts"),r=n(/*! ../../mixins/themeable */"./src/mixins/themeable.ts"),s=function(){return(s=Object.assign||function(t){for(var e,n=1,i=arguments.length;n<i;n++)for(var r in e=arguments[n])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t}).apply(this,arguments)};e.default={name:"v-time-picker-clock",mixins:[i.default,r.default],props:{allowedValues:Function,double:Boolean,format:{type:Function,default:function(t){return t}},max:{type:Number,required:!0},min:{type:Number,required:!0},scrollable:Boolean,readonly:Boolean,rotate:{type:Number,default:0},step:{type:Number,default:1},value:Number},data:function(){return{inputValue:this.value,isDragging:!1,valueOnMouseDown:null,valueOnMouseUp:null}},computed:{count:function(){return this.max-this.min+1},degreesPerUnit:function(){return 360/this.roundCount},degrees:function(){return this.degreesPerUnit*Math.PI/180},displayedValue:function(){return null==this.value?this.min:this.value},innerRadius:function(){return.62},roundCount:function(){return this.double?this.count/2:this.count}},watch:{value:function(t){this.inputValue=t}},methods:{wheel:function(t){t.preventDefault();var e=Math.sign(t.wheelDelta||1),n=this.displayedValue;do{n=((n+=e)-this.min+this.count)%this.count+this.min}while(!this.isAllowed(n)&&n!==this.displayedValue);n!==this.displayedValue&&this.update(n)},isInner:function(t){return this.double&&t-this.min>=this.roundCount},handScale:function(t){return this.isInner(t)?this.innerRadius:1},isAllowed:function(t){return!this.allowedValues||this.allowedValues(t)},genValues:function(){for(var t=[],e=this.min;e<=this.max;e+=this.step){var n=e===this.value&&(this.color||"accent");t.push(this.$createElement("span",this.setBackgroundColor(n,{staticClass:"v-time-picker-clock__item",class:{"v-time-picker-clock__item--active":e===this.displayedValue,"v-time-picker-clock__item--disabled":!this.isAllowed(e)},style:this.getTransform(e),domProps:{innerHTML:"<span>"+this.format(e)+"</span>"}})))}return t},genHand:function(){var t="scaleY("+this.handScale(this.displayedValue)+")",e=this.rotate+this.degreesPerUnit*(this.displayedValue-this.min),n=null!=this.value&&(this.color||"accent");return this.$createElement("div",this.setBackgroundColor(n,{staticClass:"v-time-picker-clock__hand",class:{"v-time-picker-clock__hand--inner":this.isInner(this.value)},style:{transform:"rotate("+e+"deg) "+t}}))},getTransform:function(t){var e=this.getPosition(t);return{left:50+50*e.x+"%",top:50+50*e.y+"%"}},getPosition:function(t){var e=this.rotate*Math.PI/180;return{x:Math.sin((t-this.min)*this.degrees+e)*this.handScale(t),y:-Math.cos((t-this.min)*this.degrees+e)*this.handScale(t)}},onMouseDown:function(t){t.preventDefault(),this.valueOnMouseDown=null,this.valueOnMouseUp=null,this.isDragging=!0,this.onDragMove(t)},onMouseUp:function(){this.isDragging=!1,null!==this.valueOnMouseUp&&this.isAllowed(this.valueOnMouseUp)&&this.$emit("change",this.valueOnMouseUp)},onDragMove:function(t){if(t.preventDefault(),this.isDragging||"click"===t.type){var e,n=this.$refs.clock.getBoundingClientRect(),i=n.width,r=n.top,s=n.left,o="touches"in t?t.touches[0]:t,a={x:i/2,y:-i/2},l={x:o.clientX-s,y:r-o.clientY},c=Math.round(this.angle(a,l)-this.rotate+360)%360,u=this.double&&this.euclidean(a,l)/i<(1+this.innerRadius)/4,h=Math.round(c/this.degreesPerUnit)+this.min+(u?this.roundCount:0);e=c>=360-this.degreesPerUnit/2?u?this.max:this.min:h,this.isAllowed(h)&&(null===this.valueOnMouseDown&&(this.valueOnMouseDown=e),this.valueOnMouseUp=e,this.update(e))}},update:function(t){this.inputValue!==t&&(this.inputValue=t,this.$emit("input",t))},euclidean:function(t,e){var n=e.x-t.x,i=e.y-t.y;return Math.sqrt(n*n+i*i)},angle:function(t,e){var n=2*Math.atan2(e.y-t.y-this.euclidean(t,e),e.x-t.x);return Math.abs(180*n/Math.PI)}},render:function(t){var e=this,n={staticClass:"v-time-picker-clock",class:s({"v-time-picker-clock--indeterminate":null==this.value},this.themeClasses),on:this.readonly?void 0:{mousedown:this.onMouseDown,mouseup:this.onMouseUp,mouseleave:function(){return e.isDragging&&e.onMouseUp()},touchstart:this.onMouseDown,touchend:this.onMouseUp,mousemove:this.onDragMove,touchmove:this.onDragMove},ref:"clock"};return!this.readonly&&this.scrollable&&(n.on.wheel=this.wheel),t("div",n,[t("div",{staticClass:"v-time-picker-clock__inner"},[this.genHand(),this.genValues()])])}}},"./src/components/VTimePicker/VTimePickerTitle.js": /*!********************************************************!*\ !*** ./src/components/VTimePicker/VTimePickerTitle.js ***! \********************************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_time-picker-title.styl */"./src/stylus/components/_time-picker-title.styl");var i=n(/*! ../../mixins/picker-button */"./src/mixins/picker-button.js"),r=n(/*! ../VDatePicker/util */"./src/components/VDatePicker/util/index.js");e.default={name:"v-time-picker-title",mixins:[i.default],props:{ampm:Boolean,hour:Number,minute:Number,period:{type:String,validator:function(t){return"am"===t||"pm"===t}},readonly:Boolean,selectingHour:Boolean},methods:{genTime:function(){var t=this.hour;this.ampm&&(t=t?(t-1)%12+1:12);var e=null==this.hour?"--":this.ampm?t:Object(r.pad)(t),n=null==this.minute?"--":Object(r.pad)(this.minute);return this.$createElement("div",{class:"v-time-picker-title__time"},[this.genPickerButton("selectingHour",!0,e),this.$createElement("span",":"),this.genPickerButton("selectingHour",!1,n)])},genAmPm:function(){return this.$createElement("div",{staticClass:"v-time-picker-title__ampm"},[this.genPickerButton("period","am","am",this.readonly),this.genPickerButton("period","pm","pm",this.readonly)])}},render:function(t){return t("div",{staticClass:"v-time-picker-title"},[this.genTime(),this.ampm?this.genAmPm():null])}}},"./src/components/VTimePicker/index.js": /*!*********************************************!*\ !*** ./src/components/VTimePicker/index.js ***! \*********************************************/ /*! exports provided: VTimePicker, VTimePickerClock, VTimePickerTitle, default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./VTimePicker */"./src/components/VTimePicker/VTimePicker.js");n.d(e,"VTimePicker",function(){return i.default});var r=n(/*! ./VTimePickerClock */"./src/components/VTimePicker/VTimePickerClock.js");n.d(e,"VTimePickerClock",function(){return r.default});var s=n(/*! ./VTimePickerTitle */"./src/components/VTimePicker/VTimePickerTitle.js");n.d(e,"VTimePickerTitle",function(){return s.default}),e.default={$_vuetify_subcomponents:{VTimePicker:i.default,VTimePickerClock:r.default,VTimePickerTitle:s.default}}},"./src/components/VTimeline/VTimeline.ts": /*!***********************************************!*\ !*** ./src/components/VTimeline/VTimeline.ts ***! \***********************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_timeline.styl */"./src/stylus/components/_timeline.styl");var i=n(/*! ../../util/mixins */"./src/util/mixins.ts"),r=n(/*! ../../mixins/themeable */"./src/mixins/themeable.ts"),s=function(){return(s=Object.assign||function(t){for(var e,n=1,i=arguments.length;n<i;n++)for(var r in e=arguments[n])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t}).apply(this,arguments)};e.default=Object(i.default)(r.default).extend({name:"v-timeline",props:{alignTop:Boolean,dense:Boolean},computed:{classes:function(){return s({"v-timeline--align-top":this.alignTop,"v-timeline--dense":this.dense},this.themeClasses)}},render:function(t){return t("div",{staticClass:"v-timeline",class:this.classes},this.$slots.default)}})},"./src/components/VTimeline/VTimelineItem.ts": /*!***************************************************!*\ !*** ./src/components/VTimeline/VTimelineItem.ts ***! \***************************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ../../util/mixins */"./src/util/mixins.ts"),r=n(/*! ../VIcon */"./src/components/VIcon/index.ts"),s=n(/*! ../../mixins/themeable */"./src/mixins/themeable.ts"),o=n(/*! ../../mixins/colorable */"./src/mixins/colorable.ts"),a=function(){return(a=Object.assign||function(t){for(var e,n=1,i=arguments.length;n<i;n++)for(var r in e=arguments[n])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t}).apply(this,arguments)};e.default=Object(i.default)(o.default,s.default).extend({name:"v-timeline-item",props:{color:{type:String,default:"primary"},fillDot:Boolean,hideDot:Boolean,icon:String,iconColor:String,large:Boolean,left:Boolean,right:Boolean,small:Boolean},computed:{hasIcon:function(){return!!this.icon||!!this.$slots.icon}},methods:{genBody:function(){return this.$createElement("div",{staticClass:"v-timeline-item__body"},this.$slots.default)},genIcon:function(){return this.$slots.icon?this.$slots.icon:this.$createElement(r.default,{props:{color:this.iconColor,dark:!this.theme.isDark,small:this.small}},this.icon)},genInnerDot:function(){var t=[];this.hasIcon&&t.push(this.genIcon());var e=this.setBackgroundColor(this.color);return this.$createElement("div",a({staticClass:"v-timeline-item__inner-dot"},e),t)},genDot:function(){return this.$createElement("div",{staticClass:"v-timeline-item__dot",class:{"v-timeline-item__dot--small":this.small,"v-timeline-item__dot--large":this.large}},[this.genInnerDot()])},genOpposite:function(){return this.$createElement("div",{staticClass:"v-timeline-item__opposite"},[this.$slots.opposite])}},render:function(t){var e=[this.genBody()];return this.hideDot||e.unshift(this.genDot()),this.$slots.opposite&&e.push(this.genOpposite()),t("div",{staticClass:"v-timeline-item",class:a({"v-timeline-item--fill-dot":this.fillDot,"v-timeline-item--left":this.left,"v-timeline-item--right":this.right},this.themeClasses)},e)}})},"./src/components/VTimeline/index.ts": /*!*******************************************!*\ !*** ./src/components/VTimeline/index.ts ***! \*******************************************/ /*! exports provided: VTimeline, VTimelineItem, default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./VTimeline */"./src/components/VTimeline/VTimeline.ts");n.d(e,"VTimeline",function(){return i.default});var r=n(/*! ./VTimelineItem */"./src/components/VTimeline/VTimelineItem.ts");n.d(e,"VTimelineItem",function(){return r.default}),e.default={$_vuetify_subcomponents:{VTimeline:i.default,VTimelineItem:r.default}}},"./src/components/VToolbar/VToolbar.js": /*!*********************************************!*\ !*** ./src/components/VToolbar/VToolbar.js ***! \*********************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_toolbar.styl */"./src/stylus/components/_toolbar.styl");var i=n(/*! ../../mixins/applicationable */"./src/mixins/applicationable.ts"),r=n(/*! ../../mixins/colorable */"./src/mixins/colorable.ts"),s=n(/*! ../../mixins/themeable */"./src/mixins/themeable.ts"),o=n(/*! ../../mixins/ssr-bootable */"./src/mixins/ssr-bootable.ts"),a=n(/*! ../../directives/scroll */"./src/directives/scroll.ts"),l=n(/*! ../../util/console */"./src/util/console.ts"),c=function(){return(c=Object.assign||function(t){for(var e,n=1,i=arguments.length;n<i;n++)for(var r in e=arguments[n])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t}).apply(this,arguments)};e.default={name:"v-toolbar",directives:{Scroll:a.default},mixins:[Object(i.default)("top",["clippedLeft","clippedRight","computedHeight","invertedScroll","manualScroll"]),r.default,o.default,s.default],props:{card:Boolean,clippedLeft:Boolean,clippedRight:Boolean,dense:Boolean,extended:Boolean,extensionHeight:{type:[Number,String],validator:function(t){return!isNaN(parseInt(t))}},flat:Boolean,floating:Boolean,height:{type:[Number,String],validator:function(t){return!isNaN(parseInt(t))}},invertedScroll:Boolean,manualScroll:Boolean,prominent:Boolean,scrollOffScreen:Boolean,scrollToolbarOffScreen:Boolean,scrollTarget:String,scrollThreshold:{type:Number,default:300},tabs:Boolean},data:function(){return{activeTimeout:null,currentScroll:0,heights:{mobileLandscape:48,mobile:56,desktop:64,dense:48},isActive:!0,isExtended:!1,isScrollingUp:!1,previousScroll:null,previousScrollDirection:null,savedScroll:0,target:null}},computed:{canScroll:function(){return this.scrollToolbarOffScreen?(Object(l.deprecate)("scrollToolbarOffScreen","scrollOffScreen",this),!0):this.scrollOffScreen||this.invertedScroll},computedContentHeight:function(){return this.height?parseInt(this.height):this.dense?this.heights.dense:this.prominent||this.$vuetify.breakpoint.mdAndUp?this.heights.desktop:this.$vuetify.breakpoint.smAndDown&&this.$vuetify.breakpoint.width>this.$vuetify.breakpoint.height?this.heights.mobileLandscape:this.heights.mobile},computedExtensionHeight:function(){return this.tabs?48:this.extensionHeight?parseInt(this.extensionHeight):this.computedContentHeight},computedHeight:function(){return this.isExtended?this.computedContentHeight+this.computedExtensionHeight:this.computedContentHeight},computedMarginTop:function(){return this.app?this.$vuetify.application.bar:0},classes:function(){return c({"v-toolbar":!0,"elevation-0":this.flat||!this.isActive&&!this.tabs&&this.canScroll,"v-toolbar--absolute":this.absolute,"v-toolbar--card":this.card,"v-toolbar--clipped":this.clippedLeft||this.clippedRight,"v-toolbar--dense":this.dense,"v-toolbar--extended":this.isExtended,"v-toolbar--fixed":!this.absolute&&(this.app||this.fixed),"v-toolbar--floating":this.floating,"v-toolbar--prominent":this.prominent},this.themeClasses)},computedPaddingLeft:function(){return!this.app||this.clippedLeft?0:this.$vuetify.application.left},computedPaddingRight:function(){return!this.app||this.clippedRight?0:this.$vuetify.application.right},computedTransform:function(){return this.isActive?0:this.canScroll?-this.computedContentHeight:-this.computedHeight},currentThreshold:function(){return Math.abs(this.currentScroll-this.savedScroll)},styles:function(){return{marginTop:this.computedMarginTop+"px",paddingRight:this.computedPaddingRight+"px",paddingLeft:this.computedPaddingLeft+"px",transform:"translateY("+this.computedTransform+"px)"}}},watch:{currentThreshold:function(t){if(this.invertedScroll)return this.isActive=this.currentScroll>this.scrollThreshold;t<this.scrollThreshold||!this.isBooted||(this.isActive=this.isScrollingUp,this.savedScroll=this.currentScroll)},isActive:function(){this.savedScroll=0},invertedScroll:function(t){this.isActive=!t},manualScroll:function(t){this.isActive=!t},isScrollingUp:function(){this.savedScroll=this.savedScroll||this.currentScroll}},created:function(){(this.invertedScroll||this.manualScroll)&&(this.isActive=!1)},mounted:function(){this.scrollTarget&&(this.target=document.querySelector(this.scrollTarget))},methods:{onScroll:function(){if(this.canScroll&&!this.manualScroll&&"undefined"!=typeof window){var t=this.target||window;this.currentScroll=this.scrollTarget?t.scrollTop:t.pageYOffset||document.documentElement.scrollTop,this.isScrollingUp=this.currentScroll<this.previousScroll,this.previousScroll=this.currentScroll}},updateApplication:function(){return this.invertedScroll||this.manualScroll?0:this.computedHeight}},render:function(t){this.isExtended=this.extended||!!this.$slots.extension;var e=[],n=this.setBackgroundColor(this.color,{class:this.classes,style:this.styles,on:this.$listeners});return n.directives=[{arg:this.scrollTarget,name:"scroll",value:this.onScroll}],e.push(t("div",{staticClass:"v-toolbar__content",style:{height:this.computedContentHeight+"px"},ref:"content"},this.$slots.default)),this.isExtended&&e.push(t("div",{staticClass:"v-toolbar__extension",style:{height:this.computedExtensionHeight+"px"}},this.$slots.extension)),t("nav",n,e)}}},"./src/components/VToolbar/VToolbarSideIcon.js": /*!*****************************************************!*\ !*** ./src/components/VToolbar/VToolbarSideIcon.js ***! \*****************************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ../../components/VBtn */"./src/components/VBtn/index.ts"),r=n(/*! ../../components/VIcon */"./src/components/VIcon/index.ts");e.default={name:"v-toolbar-side-icon",functional:!0,render:function(t,e){var n=e.slots,s=e.listeners,o=e.props,a=e.data,l=a.staticClass?a.staticClass+" v-toolbar__side-icon":"v-toolbar__side-icon",c=Object.assign(a,{staticClass:l,props:Object.assign(o,{icon:!0}),on:s}),u=n().default;return t(i.default,c,u||[t(r.default,"$vuetify.icons.menu")])}}},"./src/components/VToolbar/index.js": /*!******************************************!*\ !*** ./src/components/VToolbar/index.js ***! \******************************************/ /*! exports provided: VToolbar, VToolbarSideIcon, VToolbarTitle, VToolbarItems, default */function(t,e,n){"use strict";n.r(e),n.d(e,"VToolbarTitle",function(){return o}),n.d(e,"VToolbarItems",function(){return a});var i=n(/*! ../../util/helpers */"./src/util/helpers.ts"),r=n(/*! ./VToolbar */"./src/components/VToolbar/VToolbar.js");n.d(e,"VToolbar",function(){return r.default});var s=n(/*! ./VToolbarSideIcon */"./src/components/VToolbar/VToolbarSideIcon.js");n.d(e,"VToolbarSideIcon",function(){return s.default});var o=Object(i.createSimpleFunctional)("v-toolbar__title"),a=Object(i.createSimpleFunctional)("v-toolbar__items");e.default={$_vuetify_subcomponents:{VToolbar:r.default,VToolbarItems:a,VToolbarTitle:o,VToolbarSideIcon:s.default}}},"./src/components/VTooltip/VTooltip.js": /*!*********************************************!*\ !*** ./src/components/VTooltip/VTooltip.js ***! \*********************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_tooltips.styl */"./src/stylus/components/_tooltips.styl");var i=n(/*! ../../mixins/colorable */"./src/mixins/colorable.ts"),r=n(/*! ../../mixins/delayable */"./src/mixins/delayable.ts"),s=n(/*! ../../mixins/dependent */"./src/mixins/dependent.ts"),o=n(/*! ../../mixins/detachable */"./src/mixins/detachable.js"),a=n(/*! ../../mixins/menuable */"./src/mixins/menuable.js"),l=n(/*! ../../mixins/toggleable */"./src/mixins/toggleable.ts"),c=n(/*! ../../util/helpers */"./src/util/helpers.ts");e.default={name:"v-tooltip",mixins:[i.default,r.default,s.default,o.default,a.default,l.default],props:{closeDelay:{type:[Number,String],default:200},debounce:{type:[Number,String],default:0},disabled:Boolean,fixed:{type:Boolean,default:!0},openDelay:{type:[Number,String],default:200},tag:{type:String,default:"span"},transition:String,zIndex:{default:null}},data:function(){return{calculatedMinWidth:0,closeDependents:!1}},computed:{calculatedLeft:function(){var t=this.dimensions,e=t.activator,n=t.content,i=!(this.bottom||this.left||this.top||this.right),r=0;return this.top||this.bottom||i?r=e.left+e.width/2-n.width/2:(this.left||this.right)&&(r=e.left+(this.right?e.width:-n.width)+(this.right?10:-10)),this.nudgeLeft&&(r-=parseInt(this.nudgeLeft)),this.nudgeRight&&(r+=parseInt(this.nudgeRight)),this.calcXOverflow(r)+"px"},calculatedTop:function(){var t=this.dimensions,e=t.activator,n=t.content,i=0;return this.top||this.bottom?i=e.top+(this.bottom?e.height:-n.height)+(this.bottom?10:-10):(this.left||this.right)&&(i=e.top+e.height/2-n.height/2),this.nudgeTop&&(i-=parseInt(this.nudgeTop)),this.nudgeBottom&&(i+=parseInt(this.nudgeBottom)),this.calcYOverflow(i+this.pageYOffset)+"px"},classes:function(){return{"v-tooltip--top":this.top,"v-tooltip--right":this.right,"v-tooltip--bottom":this.bottom,"v-tooltip--left":this.left}},computedTransition:function(){return this.transition?this.transition:this.top?"slide-y-reverse-transition":this.right?"slide-x-transition":this.bottom?"slide-y-transition":this.left?"slide-x-reverse-transition":void 0},offsetY:function(){return this.top||this.bottom},offsetX:function(){return this.left||this.right},styles:function(){return{left:this.calculatedLeft,maxWidth:Object(c.convertToUnit)(this.maxWidth),opacity:this.isActive?.9:0,top:this.calculatedTop,zIndex:this.zIndex||this.activeZIndex}}},mounted:function(){this.value&&this.callActivate()},methods:{activate:function(){this.updateDimensions(),requestAnimationFrame(this.startTransition)}},render:function(t){var e,n=this,i=t("div",this.setBackgroundColor(this.color,{staticClass:"v-tooltip__content",class:(e={},e[this.contentClass]=!0,e.menuable__content__active=this.isActive,e),style:this.styles,attrs:this.getScopeIdAttrs(),directives:[{name:"show",value:this.isContentActive}],ref:"content"}),this.showLazyContent(this.$slots.default));return t(this.tag,{staticClass:"v-tooltip",class:this.classes},[t("transition",{props:{name:this.computedTransition}},[i]),t("span",{on:this.disabled?{}:{mouseenter:function(){n.runDelay("open",function(){return n.isActive=!0})},mouseleave:function(){n.runDelay("close",function(){return n.isActive=!1})}},ref:"activator"},this.$slots.activator)])}}},"./src/components/VTooltip/index.js": /*!******************************************!*\ !*** ./src/components/VTooltip/index.js ***! \******************************************/ /*! exports provided: VTooltip, default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./VTooltip */"./src/components/VTooltip/VTooltip.js");n.d(e,"VTooltip",function(){return i.default}),e.default=i.default},"./src/components/VTreeview/VTreeview.ts": /*!***********************************************!*\ !*** ./src/components/VTreeview/VTreeview.ts ***! \***********************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_treeview.styl */"./src/stylus/components/_treeview.styl");var i=n(/*! ./VTreeviewNode */"./src/components/VTreeview/VTreeviewNode.ts"),r=n(/*! ../../mixins/themeable */"./src/mixins/themeable.ts"),s=n(/*! ../../mixins/registrable */"./src/mixins/registrable.ts"),o=n(/*! ../../util/helpers */"./src/util/helpers.ts"),a=n(/*! ../../util/mixins */"./src/util/mixins.ts"),l=n(/*! ../../util/console */"./src/util/console.ts"),c=function(){return(c=Object.assign||function(t){for(var e,n=1,i=arguments.length;n<i;n++)for(var r in e=arguments[n])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t}).apply(this,arguments)},u=function(t,e){var n="function"==typeof Symbol&&t[Symbol.iterator];if(!n)return t;var i,r,s=n.call(t),o=[];try{for(;(void 0===e||e-- >0)&&!(i=s.next()).done;)o.push(i.value)}catch(t){r={error:t}}finally{try{i&&!i.done&&(n=s.return)&&n.call(s)}finally{if(r)throw r.error}}return o},h=function(){for(var t=[],e=0;e<arguments.length;e++)t=t.concat(u(arguments[e]));return t};function d(t){var e=Number(t);return isNaN(e)?t:e}e.default=Object(a.default)(Object(s.provide)("treeview"),r.default).extend({name:"v-treeview",provide:function(){return{treeview:this}},model:{prop:"value",event:"change"},props:c({active:{type:Array,default:function(){return[]}},items:{type:Array,default:function(){return[]}},hoverable:Boolean,multipleActive:Boolean,open:{type:Array,default:function(){return[]}},openAll:Boolean,value:{type:Array,default:function(){return[]}}},i.VTreeviewNodeProps),data:function(){return{nodes:{},selectedCache:new Set,activeCache:new Set,openCache:new Set}},watch:{items:{handler:function(){if(Object.keys(this.nodes).length!==this.countItems(this.items)){var t=h(this.selectedCache);this.selectedCache=new Set,this.activeCache=new Set,this.openCache=new Set,this.buildTree(this.items),Object(o.deepEqual)(t,h(this.selectedCache))||this.emitSelected()}},deep:!0},active:function(t){var e=this;Object(o.deepEqual)(h(this.activeCache),t)||(this.active.forEach(function(t){return e.updateActive(t,!0)}),this.emitActive())},value:function(t){var e=this;t&&!Object(o.deepEqual)(h(this.selectedCache),t)&&(this.value.forEach(function(t){return e.updateSelected(t,!0)}),this.emitSelected())},open:function(t){var e=this;Object(o.deepEqual)(h(this.openCache),t)||(this.openCache.forEach(function(t){return e.updateOpen(t,!1)}),this.open.forEach(function(t){return e.updateOpen(t,!0)}),this.emitOpen())}},created:function(){var t=this;this.buildTree(this.items),this.value.forEach(function(e){return t.updateSelected(e,!0)}),this.emitSelected(),this.active.forEach(function(e){return t.updateActive(e,!0)}),this.emitActive()},mounted:function(){var t=this;(this.$slots.prepend||this.$slots.append)&&Object(l.consoleWarn)("The prepend and append slots require a slot-scope attribute",this),this.openAll?Object.keys(this.nodes).forEach(function(e){return t.updateOpen(d(e),!0)}):this.open.forEach(function(e){return t.updateOpen(e,!0)}),this.emitOpen()},methods:{buildTree:function(t,e){var n=this;void 0===e&&(e=null);for(var i=0;i<t.length;i++){var r=t[i],s=Object(o.getObjectValueByPath)(r,this.itemKey),a=Object(o.getObjectValueByPath)(r,this.itemChildren,[]),l=this.nodes.hasOwnProperty(s)?this.nodes[s]:{isSelected:!1,isIndeterminate:!1,isActive:!1,isOpen:!1,vnode:null},c={vnode:l.vnode,parent:e,children:a.map(function(t){return Object(o.getObjectValueByPath)(t,n.itemKey)})};this.buildTree(a,s),!this.nodes.hasOwnProperty(s)&&null!==e&&this.nodes.hasOwnProperty(e)?(c.isSelected=this.nodes[e].isSelected,c.isIndeterminate=this.nodes[e].isIndeterminate):(c.isSelected=l.isSelected,c.isIndeterminate=l.isIndeterminate),c.isActive=l.isActive,c.isOpen=l.isOpen,this.nodes[s]=a.length?this.calculateState(c,this.nodes):c,this.nodes[s].isSelected&&this.selectedCache.add(s),this.nodes[s].isActive&&this.activeCache.add(s),this.nodes[s].isOpen&&this.openCache.add(s),this.updateVnodeState(s)}},countItems:function(t){for(var e=0,n=0;n<t.length;n++){var i=t[n];e+=1,e+=i.children?this.countItems(i.children):0}return e},calculateState:function(t,e){var n=t.children.reduce(function(t,n){return t[0]+=+Boolean(e[n].isSelected),t[1]+=+Boolean(e[n].isIndeterminate),t},[0,0]);return t.isSelected=!!t.children.length&&n[0]===t.children.length,t.isIndeterminate=!t.isSelected&&(n[0]>0||n[1]>0),t},emitOpen:function(){this.$emit("update:open",h(this.openCache))},emitSelected:function(){this.$emit("change",h(this.selectedCache))},emitActive:function(){this.$emit("update:active",h(this.activeCache))},getDescendants:function(t,e){void 0===e&&(e=[]);var n=this.nodes[t].children;e.push.apply(e,h(n));for(var i=0;i<n.length;i++)e=this.getDescendants(n[i],e);return e},getParents:function(t){for(var e=this.nodes[t].parent,n=[];null!==e;)n.push(e),e=this.nodes[e].parent;return n},register:function(t){var e=Object(o.getObjectValueByPath)(t.item,this.itemKey);this.nodes[e].vnode=t,this.updateVnodeState(e)},unregister:function(t){var e=Object(o.getObjectValueByPath)(t.item,this.itemKey);this.nodes[e].vnode=null},updateActive:function(t,e){var n=this;this.multipleActive||this.activeCache.forEach(function(t){n.nodes[t].isActive=!1,n.updateVnodeState(t),n.activeCache.delete(t)});var i=this.nodes[t];i&&(e&&this.activeCache.add(t),i.isActive=e,this.updateVnodeState(t))},updateSelected:function(t,e){var n=this;if(this.nodes.hasOwnProperty(t)){var i={},r=h([t],this.getDescendants(t));r.forEach(function(t){n.nodes[t].isSelected=e,n.nodes[t].isIndeterminate=!1,i[t]=e});var s=this.getParents(t);s.forEach(function(t){n.nodes[t]=n.calculateState(n.nodes[t],n.nodes),i[t]=n.nodes[t].isSelected}),h([t],r,s).forEach(this.updateVnodeState),Object.keys(i).forEach(function(t){!0===i[t]?n.selectedCache.add(d(t)):n.selectedCache.delete(d(t))})}},updateOpen:function(t,e){var n=this;if(this.nodes.hasOwnProperty(t)){var i=this.nodes[t];i.vnode&&!i.vnode.hasLoaded?i.vnode.checkChildren().then(function(){return n.updateOpen(t,e)}):(i.isOpen=e,i.isOpen?this.openCache.add(t):this.openCache.delete(t),this.updateVnodeState(t))}},updateVnodeState:function(t){var e=this.nodes[t];e&&e.vnode&&(e.vnode.isSelected=e.isSelected,e.vnode.isIndeterminate=e.isIndeterminate,e.vnode.isActive=e.isActive,e.vnode.isOpen=e.isOpen)}},render:function(t){var e=this.items.length?this.items.map(i.default.options.methods.genChild.bind(this)):this.$slots.default;return t("div",{staticClass:"v-treeview",class:c({"v-treeview--hoverable":this.hoverable},this.themeClasses)},e)}})},"./src/components/VTreeview/VTreeviewNode.ts": /*!***************************************************!*\ !*** ./src/components/VTreeview/VTreeviewNode.ts ***! \***************************************************/ /*! exports provided: VTreeviewNodeProps, default */function(t,e,n){"use strict";n.r(e),n.d(e,"VTreeviewNodeProps",function(){return u});var i=n(/*! ../transitions */"./src/components/transitions/index.js"),r=n(/*! ../VIcon */"./src/components/VIcon/index.ts"),s=n(/*! ./VTreeviewNode */"./src/components/VTreeview/VTreeviewNode.ts"),o=n(/*! ../../mixins/registrable */"./src/mixins/registrable.ts"),a=n(/*! ../../util/mixins */"./src/util/mixins.ts"),l=n(/*! ../../util/helpers */"./src/util/helpers.ts"),c=function(){return(c=Object.assign||function(t){for(var e,n=1,i=arguments.length;n<i;n++)for(var r in e=arguments[n])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t}).apply(this,arguments)},u={activatable:Boolean,activeClass:{type:String,default:"v-treeview-node--active"},selectable:Boolean,selectedColor:{type:String,default:"accent"},indeterminateIcon:{type:String,default:"$vuetify.icons.checkboxIndeterminate"},onIcon:{type:String,default:"$vuetify.icons.checkboxOn"},offIcon:{type:String,default:"$vuetify.icons.checkboxOff"},expandIcon:{type:String,default:"$vuetify.icons.subgroup"},loadingIcon:{type:String,default:"$vuetify.icons.loading"},itemKey:{type:String,default:"id"},itemText:{type:String,default:"name"},itemChildren:{type:String,default:"children"},loadChildren:Function,openOnClick:Boolean,transition:Boolean};e.default=Object(a.default)(Object(o.inject)("treeview")).extend({name:"v-treeview-node",inject:{treeview:{default:null}},props:c({item:{type:Object,default:function(){return null}}},u),data:function(){return{isOpen:!1,isSelected:!1,isIndeterminate:!1,isActive:!1,isLoading:!1,hasLoaded:!1}},computed:{key:function(){return Object(l.getObjectValueByPath)(this.item,this.itemKey)},children:function(){return Object(l.getObjectValueByPath)(this.item,this.itemChildren)},text:function(){return Object(l.getObjectValueByPath)(this.item,this.itemText)},scopedProps:function(){return{item:this.item,leaf:!this.children,selected:this.isSelected,indeterminate:this.isIndeterminate,active:this.isActive,open:this.isOpen}},computedIcon:function(){return this.isIndeterminate?this.indeterminateIcon:this.isSelected?this.onIcon:this.offIcon}},created:function(){this.treeview.register(this)},beforeDestroy:function(){this.treeview.unregister(this)},methods:{checkChildren:function(){var t=this;return new Promise(function(e){if(!t.children||t.children.length||!t.loadChildren||t.hasLoaded)return e();t.isLoading=!0,e(t.loadChildren(t.item))}).then(function(){t.isLoading=!1,t.hasLoaded=!0})},open:function(){this.isOpen=!this.isOpen,this.treeview.updateOpen(this.key,this.isOpen),this.treeview.emitOpen()},genLabel:function(){return this.$createElement("label",{slot:"label",staticClass:"v-treeview-node__label"},[this.text])},genContent:function(){var t=[this.$scopedSlots.prepend&&this.$scopedSlots.prepend(this.scopedProps),this.genLabel(),this.$scopedSlots.append&&this.$scopedSlots.append(this.scopedProps)];return this.$createElement("div",{staticClass:"v-treeview-node__content"},t)},genToggle:function(){var t=this;return this.$createElement(r.VIcon,{staticClass:"v-treeview-node__toggle",class:{"v-treeview-node__toggle--open":this.isOpen,"v-treeview-node__toggle--loading":this.isLoading},slot:"prepend",on:{click:function(e){e.stopPropagation(),t.isLoading||t.checkChildren().then(function(){return t.open()})}}},[this.isLoading?this.loadingIcon:this.expandIcon])},genCheckbox:function(){var t=this;return this.$createElement(r.VIcon,{staticClass:"v-treeview-node__checkbox",props:{color:this.isSelected?this.selectedColor:void 0},on:{click:function(e){e.stopPropagation(),t.isLoading||t.checkChildren().then(function(){t.$nextTick(function(){t.isSelected=!t.isSelected,t.isIndeterminate=!1,t.treeview.updateSelected(t.key,t.isSelected),t.treeview.emitSelected()})})}}},[this.computedIcon])},genNode:function(){var t=this,e=[this.genContent()];return this.selectable&&e.unshift(this.genCheckbox()),this.children&&e.unshift(this.genToggle()),this.$createElement("div",{staticClass:"v-treeview-node__root",on:{click:function(){t.openOnClick&&t.children?t.open():t.activatable&&(t.isActive=!t.isActive,t.treeview.updateActive(t.key,t.isActive),t.treeview.emitActive())}}},e)},genChild:function(t){return this.$createElement(s.default,{key:Object(l.getObjectValueByPath)(t,this.itemKey),props:{activatable:this.activatable,activeClass:this.activeClass,item:t,selectable:this.selectable,selectedColor:this.selectedColor,expandIcon:this.expandIcon,indeterminateIcon:this.indeterminateIcon,offIcon:this.offIcon,onIcon:this.onIcon,loadingIcon:this.loadingIcon,itemKey:this.itemKey,itemText:this.itemText,itemChildren:this.itemChildren,loadChildren:this.loadChildren,transition:this.transition,openOnClick:this.openOnClick},scopedSlots:this.$scopedSlots})},genChildrenWrapper:function(){if(!this.isOpen||!this.children)return null;var t=[this.children.map(this.genChild)];return this.$createElement("div",{staticClass:"v-treeview-node__children"},t)},genTransition:function(){return this.$createElement(i.VExpandTransition,[this.genChildrenWrapper()])}},render:function(t){var e,n=[this.genNode()];return this.transition?n.push(this.genTransition()):n.push(this.genChildrenWrapper()),t("div",{staticClass:"v-treeview-node",class:(e={},e[this.activeClass]=this.isActive,e["v-treeview-node--leaf"]=!this.children,e["v-treeview-node--click"]=this.openOnClick,e["v-treeview-node--selected"]=this.isSelected,e)},n)}})},"./src/components/VTreeview/index.ts": /*!*******************************************!*\ !*** ./src/components/VTreeview/index.ts ***! \*******************************************/ /*! exports provided: VTreeview, VTreeviewNode, default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./VTreeview */"./src/components/VTreeview/VTreeview.ts");n.d(e,"VTreeview",function(){return i.default});var r=n(/*! ./VTreeviewNode */"./src/components/VTreeview/VTreeviewNode.ts");n.d(e,"VTreeviewNode",function(){return r.default}),e.default={$_vuetify_subcomponents:{VTreeview:i.default,VTreeviewNode:r.default}}},"./src/components/VWindow/VWindow.ts": /*!*******************************************!*\ !*** ./src/components/VWindow/VWindow.ts ***! \*******************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../../stylus/components/_windows.styl */"./src/stylus/components/_windows.styl");var i=n(/*! ../VItemGroup/VItemGroup */"./src/components/VItemGroup/VItemGroup.ts"),r=n(/*! ../../directives/touch */"./src/directives/touch.ts");e.default=i.BaseItemGroup.extend({name:"v-window",provide:function(){return{windowGroup:this}},directives:{Touch:r.default},props:{mandatory:{type:Boolean,default:!0},reverse:{type:Boolean,default:void 0},touch:Object,touchless:Boolean,value:{required:!1},vertical:Boolean},data:function(){return{internalHeight:void 0,isActive:!1,isBooted:!1,isReverse:!1}},computed:{computedTransition:function(){return this.isBooted?"v-window-"+(this.vertical?"y":"x")+(this.internalReverse===!this.$vuetify.rtl?"-reverse":"")+"-transition":""},internalIndex:function(){var t=this;return this.items.findIndex(function(e,n){return t.internalValue===t.getValue(e,n)})},internalReverse:function(){return void 0!==this.reverse?this.reverse:this.isReverse}},watch:{internalIndex:"updateReverse"},methods:{genContainer:function(){return this.$createElement("div",{staticClass:"v-window__container",class:{"v-window__container--is-active":this.isActive},style:{height:this.internalHeight}},this.$slots.default)},init:function(){var t=this;i.BaseItemGroup.options.methods.init.call(this),this.$nextTick(function(){return t.isBooted=!0})},next:function(){this.isReverse=!1;var t=(this.internalIndex+1)%this.items.length,e=this.items[t];this.internalValue=this.getValue(e,t)},prev:function(){this.isReverse=!0;var t=(this.internalIndex+this.items.length-1)%this.items.length,e=this.items[t];this.internalValue=this.getValue(e,t)},updateReverse:function(t,e){this.isReverse=t<e}},render:function(t){var e={staticClass:"v-window",directives:[]};if(!this.touchless){var n=this.touch||{left:this.next,right:this.prev};e.directives.push({name:"touch",value:n})}return t("div",e,[this.genContainer()])}})},"./src/components/VWindow/VWindowItem.ts": /*!***********************************************!*\ !*** ./src/components/VWindow/VWindowItem.ts ***! \***********************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ../../mixins/bootable */"./src/mixins/bootable.ts"),r=n(/*! ../../mixins/groupable */"./src/mixins/groupable.ts"),s=n(/*! ../../directives/touch */"./src/directives/touch.ts"),o=n(/*! ../../util/helpers */"./src/util/helpers.ts"),a=n(/*! ../../util/mixins */"./src/util/mixins.ts");e.default=Object(a.default)(i.default,Object(r.factory)("windowGroup","v-window-item","v-window")).extend({name:"v-window-item",directives:{Touch:s.default},props:{reverseTransition:{type:[Boolean,String],default:void 0},transition:{type:[Boolean,String],default:void 0},value:{required:!1}},data:function(){return{isActive:!1,wasCancelled:!1}},computed:{computedTransition:function(){return this.windowGroup.internalReverse?void 0!==this.reverseTransition?this.reverseTransition||"":this.windowGroup.computedTransition:void 0!==this.transition?this.transition||"":this.windowGroup.computedTransition}},methods:{genDefaultSlot:function(){return this.$slots.default},onAfterEnter:function(){var t=this;this.wasCancelled?this.wasCancelled=!1:requestAnimationFrame(function(){t.windowGroup.internalHeight=void 0,t.windowGroup.isActive=!1})},onBeforeEnter:function(){this.windowGroup.isActive=!0},onBeforeLeave:function(t){this.windowGroup.internalHeight=Object(o.convertToUnit)(t.clientHeight)},onEnterCancelled:function(){this.wasCancelled=!0},onEnter:function(t,e){var n=this,i=this.windowGroup.isBooted;i&&Object(o.addOnceEventListener)(t,"transitionend",e),requestAnimationFrame(function(){n.windowGroup.internalHeight=Object(o.convertToUnit)(t.clientHeight),!i&&setTimeout(e,100)})}},render:function(t){var e=t("div",{staticClass:"v-window-item",directives:[{name:"show",value:this.isActive}],on:this.$listeners},this.showLazyContent(this.genDefaultSlot()));return t("transition",{props:{name:this.computedTransition},on:{afterEnter:this.onAfterEnter,beforeEnter:this.onBeforeEnter,beforeLeave:this.onBeforeLeave,enter:this.onEnter,enterCancelled:this.onEnterCancelled}},[e])}})},"./src/components/VWindow/index.ts": /*!*****************************************!*\ !*** ./src/components/VWindow/index.ts ***! \*****************************************/ /*! exports provided: VWindow, VWindowItem, default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./VWindow */"./src/components/VWindow/VWindow.ts");n.d(e,"VWindow",function(){return i.default});var r=n(/*! ./VWindowItem */"./src/components/VWindow/VWindowItem.ts");n.d(e,"VWindowItem",function(){return r.default}),e.default={$_vuetify_subcomponents:{VWindow:i.default,VWindowItem:r.default}}},"./src/components/Vuetify/index.ts": /*!*****************************************!*\ !*** ./src/components/Vuetify/index.ts ***! \*****************************************/ /*! exports provided: checkVueVersion, default */function(t,e,n){"use strict";n.r(e),n.d(e,"checkVueVersion",function(){return f});var i=n(/*! vue */"vue"),r=n.n(i),s=n(/*! ./mixins/application */"./src/components/Vuetify/mixins/application.ts"),o=n(/*! ./mixins/breakpoint */"./src/components/Vuetify/mixins/breakpoint.ts"),a=n(/*! ./mixins/theme */"./src/components/Vuetify/mixins/theme.ts"),l=n(/*! ./mixins/icons */"./src/components/Vuetify/mixins/icons.js"),c=n(/*! ./mixins/options */"./src/components/Vuetify/mixins/options.js"),u=n(/*! ./mixins/lang */"./src/components/Vuetify/mixins/lang.ts"),h=n(/*! ./util/goTo */"./src/components/Vuetify/util/goTo.js"),d=n(/*! ../../util/console */"./src/util/console.ts"),p={install:function(t,e){if(void 0===e&&(e={}),!this.installed){this.installed=!0,r.a!==t&&Object(d.consoleError)("Multiple instances of Vue detected\nSee https://github.com/vuetifyjs/vuetify/issues/4068\n\nIf you're seeing \"$attrs is readonly\", it's caused by this"),f(t);var n=Object(u.default)(e.lang);if(t.prototype.$vuetify=new t({mixins:[o.default],data:{application:s.default,dark:!1,icons:Object(l.default)(e.iconfont,e.icons),lang:n,options:Object(c.default)(e.options),rtl:e.rtl,theme:Object(a.default)(e.theme)},methods:{goTo:h.default,t:n.t.bind(n)}}),e.directives)for(var i in e.directives)t.directive(i,e.directives[i]);!function e(n){if(n){for(var i in n){var r=n[i];r&&!e(r.$_vuetify_subcomponents)&&t.component(i,r)}return!0}return!1}(e.components)}},version:"1.3.0"};function f(t,e){var n=e||"^2.5.10",i=n.split(".",3).map(function(t){return t.replace(/\D/g,"")}).map(Number),r=t.version.split(".",3).map(function(t){return parseInt(t,10)});r[0]===i[0]&&(r[1]>i[1]||r[1]===i[1]&&r[2]>=i[2])||Object(d.consoleWarn)("Vuetify requires Vue version "+n)}e.default=p},"./src/components/Vuetify/mixins/application.ts": /*!******************************************************!*\ !*** ./src/components/Vuetify/mixins/application.ts ***! \******************************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e),e.default={bar:0,bottom:0,footer:0,insetFooter:0,left:0,right:0,top:0,components:{bar:{},bottom:{},footer:{},insetFooter:{},left:{},right:{},top:{}},bind:function(t,e,n){var i;this.components[e]&&(this.components[e]=((i={})[t]=n,i),this.update(e))},unbind:function(t,e){null!=this.components[e][t]&&(delete this.components[e][t],this.update(e))},update:function(t){this[t]=Object.values(this.components[t]).reduce(function(t,e){return t+e},0)}}},"./src/components/Vuetify/mixins/breakpoint.ts": /*!*****************************************************!*\ !*** ./src/components/Vuetify/mixins/breakpoint.ts ***! \*****************************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);var i=n(/*! vue */"vue"),r=n.n(i);function s(){return"undefined"==typeof document?0:Math.max(document.documentElement.clientWidth,window.innerWidth||0)}function o(){return"undefined"==typeof document?0:Math.max(document.documentElement.clientHeight,window.innerHeight||0)}e.default=r.a.extend({data:function(){return{clientHeight:o(),clientWidth:s(),resizeTimeout:void 0}},computed:{breakpoint:function(){var t,e=this.clientWidth<600,n=this.clientWidth<960&&!e,i=this.clientWidth<1264&&!(n||e),r=this.clientWidth<1904&&!(i||n||e),s=this.clientWidth>=1904,o=e,a=n,l=(e||n)&&!(i||r||s),c=!e&&(n||i||r||s),u=i,h=(e||n||i)&&!(r||s),d=!(e||n)&&(i||r||s),p=r,f=(e||n||i||r)&&!s,m=!(e||n||i)&&(r||s),v=s;switch(!0){case e:t="xs";break;case n:t="sm";break;case i:t="md";break;case r:t="lg";break;default:t="xl"}return{xs:e,sm:n,md:i,lg:r,xl:s,name:t,xsOnly:o,smOnly:a,smAndDown:l,smAndUp:c,mdOnly:u,mdAndDown:h,mdAndUp:d,lgOnly:p,lgAndDown:f,lgAndUp:m,xlOnly:v,width:this.clientWidth,height:this.clientHeight}}},created:function(){"undefined"!=typeof window&&window.addEventListener("resize",this.onResize,{passive:!0})},beforeDestroy:function(){"undefined"!=typeof window&&window.removeEventListener("resize",this.onResize)},methods:{onResize:function(){clearTimeout(this.resizeTimeout),this.resizeTimeout=window.setTimeout(this.setDimensions,200)},setDimensions:function(){this.clientHeight=o(),this.clientWidth=s()}}})},"./src/components/Vuetify/mixins/icons.js": /*!************************************************!*\ !*** ./src/components/Vuetify/mixins/icons.js ***! \************************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e),n.d(e,"default",function(){return r});var i={md:{complete:"check",cancel:"cancel",close:"close",delete:"cancel",clear:"clear",success:"check_circle",info:"info",warning:"priority_high",error:"warning",prev:"chevron_left",next:"chevron_right",checkboxOn:"check_box",checkboxOff:"check_box_outline_blank",checkboxIndeterminate:"indeterminate_check_box",delimiter:"fiber_manual_record",sort:"arrow_upward",expand:"keyboard_arrow_down",menu:"menu",subgroup:"arrow_drop_down",dropdown:"arrow_drop_down",radioOn:"radio_button_checked",radioOff:"radio_button_unchecked",edit:"edit",ratingEmpty:"star_border",ratingFull:"star",ratingHalf:"star_half",loading:"cached"},mdi:{complete:"mdi-check",cancel:"mdi-close-circle",close:"mdi-close",delete:"mdi-close-circle",clear:"mdi-close",success:"mdi-check-circle",info:"mdi-information",warning:"mdi-exclamation",error:"mdi-alert",prev:"mdi-chevron-left",next:"mdi-chevron-right",checkboxOn:"mdi-checkbox-marked",checkboxOff:"mdi-checkbox-blank-outline",checkboxIndeterminate:"mdi-minus-box",delimiter:"mdi-circle",sort:"mdi-arrow-up",expand:"mdi-chevron-down",menu:"mdi-menu",subgroup:"mdi-menu-down",dropdown:"mdi-menu-down",radioOn:"mdi-radiobox-marked",radioOff:"mdi-radiobox-blank",edit:"mdi-pencil",ratingEmpty:"mdi-star-outline",ratingFull:"mdi-star",ratingHalf:"mdi-star-half"},fa:{complete:"fas fa-check",cancel:"fas fa-times-circle",close:"fas fa-times",delete:"fas fa-times-circle",clear:"fas fa-times-circle",success:"fas fa-check-circle",info:"fas fa-info-circle",warning:"fas fa-exclamation",error:"fas fa-exclamation-triangle",prev:"fas fa-chevron-left",next:"fas fa-chevron-right",checkboxOn:"fas fa-check-square",checkboxOff:"far fa-square",checkboxIndeterminate:"fas fa-minus-square",delimiter:"fas fa-circle",sort:"fas fa-sort-up",expand:"fas fa-chevron-down",menu:"fas fa-bars",subgroup:"fas fa-caret-down",dropdown:"fas fa-caret-down",radioOn:"far fa-dot-circle",radioOff:"far fa-circle",edit:"fas fa-edit",ratingEmpty:"far fa-star",ratingFull:"fas fa-star",ratingHalf:"fas fa-star-half"},fa4:{complete:"fa fa-check",cancel:"fa fa-times-circle",close:"fa fa-times",delete:"fa fa-times-circle",clear:"fa fa-times-circle",success:"fa fa-check-circle",info:"fa fa-info-circle",warning:"fa fa-exclamation",error:"fa fa-exclamation-triangle",prev:"fa fa-chevron-left",next:"fa fa-chevron-right",checkboxOn:"fa fa-check-square",checkboxOff:"fa fa-square-o",checkboxIndeterminate:"fa fa-minus-square",delimiter:"fa fa-circle",sort:"fa fa-sort-up",expand:"fa fa-chevron-down",menu:"fa fa-bars",subgroup:"fa fa-caret-down",dropdown:"fa fa-caret-down",radioOn:"fa fa-dot-circle",radioOff:"fa fa-circle-o",edit:"fa fa-pencil",ratingEmpty:"fa fa-star-o",ratingFull:"fa fa-star",ratingHalf:"fa fa-star-half-o"}};function r(t,e){return void 0===t&&(t="md"),void 0===e&&(e={}),Object.assign({},i[t]||i.md,e)}},"./src/components/Vuetify/mixins/lang.ts": /*!***********************************************!*\ !*** ./src/components/Vuetify/mixins/lang.ts ***! \***********************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e),n.d(e,"default",function(){return u});var i=n(/*! ../../../locale/en */"./src/locale/en.ts"),r=n(/*! ../../../util/helpers */"./src/util/helpers.ts"),s=n(/*! ../../../util/console */"./src/util/console.ts"),o=function(t,e){var n="function"==typeof Symbol&&t[Symbol.iterator];if(!n)return t;var i,r,s=n.call(t),o=[];try{for(;(void 0===e||e-- >0)&&!(i=s.next()).done;)o.push(i.value)}catch(t){r={error:t}}finally{try{i&&!i.done&&(n=s.return)&&n.call(s)}finally{if(r)throw r.error}}return o},a=function(){for(var t=[],e=0;e<arguments.length;e++)t=t.concat(o(arguments[e]));return t},l="$vuetify.",c=Symbol("Lang fallback");function u(t){return void 0===t&&(t={}),{locales:Object.assign({en:i.default},t.locales),current:t.current||"en",t:function(e){for(var n=[],o=1;o<arguments.length;o++)n[o-1]=arguments[o];return e.startsWith(l)?t.t?t.t.apply(t,a([e],n)):function t(e,n,o){void 0===o&&(o=!1);var a=n.replace(l,""),u=Object(r.getObjectValueByPath)(e,a,c);return u===c&&(o?(Object(s.consoleError)('Translation key "'+a+'" not found in fallback'),u=n):(Object(s.consoleWarn)('Translation key "'+a+'" not found, falling back to default'),u=t(i.default,n,!0))),u}(this.locales[this.current],e).replace(/\{(\d+)\}/g,function(t,e){return String(n[+e])}):e}}}},"./src/components/Vuetify/mixins/options.js": /*!**************************************************!*\ !*** ./src/components/Vuetify/mixins/options.js ***! \**************************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e),n.d(e,"default",function(){return r});var i={minifyTheme:null,themeCache:null,customProperties:!1,cspNonce:null};function r(t){return void 0===t&&(t={}),Object.assign({},i,t)}},"./src/components/Vuetify/mixins/theme.ts": /*!************************************************!*\ !*** ./src/components/Vuetify/mixins/theme.ts ***! \************************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e),n.d(e,"default",function(){return s});var i=function(){return(i=Object.assign||function(t){for(var e,n=1,i=arguments.length;n<i;n++)for(var r in e=arguments[n])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t}).apply(this,arguments)},r={primary:"#1976D2",secondary:"#424242",accent:"#82B1FF",error:"#FF5252",info:"#2196F3",success:"#4CAF50",warning:"#FFC107"};function s(t){return void 0===t&&(t={}),!1!==t&&i({},r,t)}},"./src/components/Vuetify/util/goTo.js": /*!*********************************************!*\ !*** ./src/components/Vuetify/util/goTo.js ***! \*********************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e),n.d(e,"default",function(){return o});var i=n(/*! ../../../util/easing-patterns */"./src/util/easing-patterns.js"),r={duration:500,offset:0,easing:"easeInOutCubic"};function s(t,e){var n,i;if(null!=(i=t)&&i._isVue&&(t=t.$el),t instanceof Element)n=t.getBoundingClientRect().top+window.pageYOffset;else if("string"==typeof t){var r=document.querySelector(t);if(!r)throw new TypeError('Target element "'+t+'" not found.');n=r.getBoundingClientRect().top+window.pageYOffset}else{if("number"!=typeof t){var s=null==t?t:t.constructor.name;throw new TypeError("Target must be a Selector/Number/DOMElement/VueComponent, received "+s+" instead.")}n=t}return Math.round(Math.min(Math.max(n+e.offset,0),Math.max(document.body.scrollHeight,document.documentElement.scrollHeight,document.body.offsetHeight,document.documentElement.offsetHeight,document.body.clientHeight,document.documentElement.clientHeight)-(window.innerHeight||(document.documentElement||document.body).clientHeight)))}function o(t,e){return new Promise(function(n,o){if("undefined"==typeof window)return o("Window is undefined");var a=Object.assign({},r,e),l=performance.now(),c=window.pageYOffset,u=s(t,a),h=u-c,d="function"==typeof a.easing?a.easing:i[a.easing];if(!d)throw new TypeError("Easing function '"+a.easing+"' not found.");window.requestAnimationFrame(function e(i){var r=Math.min(1,(i-l)/a.duration),s=Math.floor(c+h*d(r));if(window.scrollTo(0,s),Math.round(window.pageYOffset)===u||1===r)return n(t);window.requestAnimationFrame(e)})})}},"./src/components/index.ts": /*!*********************************!*\ !*** ./src/components/index.ts ***! \*********************************/ /*! exports provided: VApp, VAlert, VAutocomplete, VAvatar, VBadge, VBottomNav, VBottomSheet, VBreadcrumbs, VBreadcrumbsItem, VBreadcrumbsDivider, VBtn, VBtnToggle, VCard, VCardMedia, VCardTitle, VCardActions, VCardText, VCarousel, VCarouselItem, VCheckbox, VChip, VCombobox, VCounter, VDataIterator, VDataTable, VEditDialog, VTableOverflow, VDatePicker, VDatePickerTitle, VDatePickerHeader, VDatePickerDateTable, VDatePickerMonthTable, VDatePickerYears, VDialog, VDivider, VExpansionPanel, VExpansionPanelContent, VFooter, VForm, VContainer, VContent, VFlex, VLayout, VSpacer, VHover, VIcon, VImg, VInput, VItem, VItemGroup, VJumbotron, VLabel, VList, VListGroup, VListTile, VListTileAction, VListTileAvatar, VListTileActionText, VListTileContent, VListTileTitle, VListTileSubTitle, VMenu, VMessages, VNavigationDrawer, VOverflowBtn, VPagination, VParallax, VPicker, VProgressCircular, VProgressLinear, VRadioGroup, VRadio, VRangeSlider, VRating, VResponsive, VSelect, VSlider, VSnackbar, VSpeedDial, VStepper, VStepperContent, VStepperStep, VStepperHeader, VStepperItems, VSubheader, VSwitch, VSystemBar, VTabs, VTab, VTabItem, VTabsItems, VTabsSlider, VTextarea, VTextField, VTimeline, VTimelineItem, VTimePicker, VTimePickerClock, VTimePickerTitle, VToolbar, VToolbarSideIcon, VToolbarTitle, VToolbarItems, VTooltip, VTreeview, VTreeviewNode, VWindow, VWindowItem, VBottomSheetTransition, VCarouselTransition, VCarouselReverseTransition, VTabTransition, VTabReverseTransition, VMenuTransition, VFabTransition, VDialogTransition, VDialogBottomTransition, VFadeTransition, VScaleTransition, VScrollXTransition, VScrollXReverseTransition, VScrollYTransition, VScrollYReverseTransition, VSlideXTransition, VSlideXReverseTransition, VSlideYTransition, VSlideYReverseTransition, VExpandTransition, VRowExpandTransition */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./VApp */"./src/components/VApp/index.js");n.d(e,"VApp",function(){return i.VApp});var r=n(/*! ./VAlert */"./src/components/VAlert/index.ts");n.d(e,"VAlert",function(){return r.VAlert});var s=n(/*! ./VAutocomplete */"./src/components/VAutocomplete/index.js");n.d(e,"VAutocomplete",function(){return s.VAutocomplete});var o=n(/*! ./VAvatar */"./src/components/VAvatar/index.ts");n.d(e,"VAvatar",function(){return o.VAvatar});var a=n(/*! ./VBadge */"./src/components/VBadge/index.ts");n.d(e,"VBadge",function(){return a.VBadge});var l=n(/*! ./VBottomNav */"./src/components/VBottomNav/index.ts");n.d(e,"VBottomNav",function(){return l.VBottomNav});var c=n(/*! ./VBottomSheet */"./src/components/VBottomSheet/index.js");n.d(e,"VBottomSheet",function(){return c.VBottomSheet});var u=n(/*! ./VBreadcrumbs */"./src/components/VBreadcrumbs/index.ts");n.d(e,"VBreadcrumbs",function(){return u.VBreadcrumbs}),n.d(e,"VBreadcrumbsItem",function(){return u.VBreadcrumbsItem}),n.d(e,"VBreadcrumbsDivider",function(){return u.VBreadcrumbsDivider});var h=n(/*! ./VBtn */"./src/components/VBtn/index.ts");n.d(e,"VBtn",function(){return h.VBtn});var d=n(/*! ./VBtnToggle */"./src/components/VBtnToggle/index.ts");n.d(e,"VBtnToggle",function(){return d.VBtnToggle});var p=n(/*! ./VCard */"./src/components/VCard/index.ts");n.d(e,"VCard",function(){return p.VCard}),n.d(e,"VCardMedia",function(){return p.VCardMedia}),n.d(e,"VCardTitle",function(){return p.VCardTitle}),n.d(e,"VCardActions",function(){return p.VCardActions}),n.d(e,"VCardText",function(){return p.VCardText});var f=n(/*! ./VCarousel */"./src/components/VCarousel/index.ts");n.d(e,"VCarousel",function(){return f.VCarousel}),n.d(e,"VCarouselItem",function(){return f.VCarouselItem});var m=n(/*! ./VCheckbox */"./src/components/VCheckbox/index.js");n.d(e,"VCheckbox",function(){return m.VCheckbox});var v=n(/*! ./VChip */"./src/components/VChip/index.ts");n.d(e,"VChip",function(){return v.VChip});var g=n(/*! ./VCombobox */"./src/components/VCombobox/index.js");n.d(e,"VCombobox",function(){return g.VCombobox});var _=n(/*! ./VCounter */"./src/components/VCounter/index.js");n.d(e,"VCounter",function(){return _.VCounter});var b=n(/*! ./VDataIterator */"./src/components/VDataIterator/index.js");n.d(e,"VDataIterator",function(){return b.VDataIterator});var y=n(/*! ./VDataTable */"./src/components/VDataTable/index.js");n.d(e,"VDataTable",function(){return y.VDataTable}),n.d(e,"VEditDialog",function(){return y.VEditDialog}),n.d(e,"VTableOverflow",function(){return y.VTableOverflow});var x=n(/*! ./VDatePicker */"./src/components/VDatePicker/index.js");n.d(e,"VDatePicker",function(){return x.VDatePicker}),n.d(e,"VDatePickerTitle",function(){return x.VDatePickerTitle}),n.d(e,"VDatePickerHeader",function(){return x.VDatePickerHeader}),n.d(e,"VDatePickerDateTable",function(){return x.VDatePickerDateTable}),n.d(e,"VDatePickerMonthTable",function(){return x.VDatePickerMonthTable}),n.d(e,"VDatePickerYears",function(){return x.VDatePickerYears});var k=n(/*! ./VDialog */"./src/components/VDialog/index.js");n.d(e,"VDialog",function(){return k.VDialog});var w=n(/*! ./VDivider */"./src/components/VDivider/index.ts");n.d(e,"VDivider",function(){return w.VDivider});var C=n(/*! ./VExpansionPanel */"./src/components/VExpansionPanel/index.ts");n.d(e,"VExpansionPanel",function(){return C.VExpansionPanel}),n.d(e,"VExpansionPanelContent",function(){return C.VExpansionPanelContent});var S=n(/*! ./VFooter */"./src/components/VFooter/index.js");n.d(e,"VFooter",function(){return S.VFooter});var T=n(/*! ./VForm */"./src/components/VForm/index.js");n.d(e,"VForm",function(){return T.VForm});var V=n(/*! ./VGrid */"./src/components/VGrid/index.js");n.d(e,"VContainer",function(){return V.VContainer}),n.d(e,"VContent",function(){return V.VContent}),n.d(e,"VFlex",function(){return V.VFlex}),n.d(e,"VLayout",function(){return V.VLayout}),n.d(e,"VSpacer",function(){return V.VSpacer});var $=n(/*! ./VHover */"./src/components/VHover/index.ts");n.d(e,"VHover",function(){return $.VHover});var j=n(/*! ./VIcon */"./src/components/VIcon/index.ts");n.d(e,"VIcon",function(){return j.VIcon});var O=n(/*! ./VImg */"./src/components/VImg/index.ts");n.d(e,"VImg",function(){return O.VImg});var A=n(/*! ./VInput */"./src/components/VInput/index.js");n.d(e,"VInput",function(){return A.VInput});var I=n(/*! ./VItemGroup */"./src/components/VItemGroup/index.ts");n.d(e,"VItem",function(){return I.VItem}),n.d(e,"VItemGroup",function(){return I.VItemGroup});var D=n(/*! ./VJumbotron */"./src/components/VJumbotron/index.js");n.d(e,"VJumbotron",function(){return D.VJumbotron});var E=n(/*! ./VLabel */"./src/components/VLabel/index.js");n.d(e,"VLabel",function(){return E.VLabel});var P=n(/*! ./VList */"./src/components/VList/index.js");n.d(e,"VList",function(){return P.VList}),n.d(e,"VListGroup",function(){return P.VListGroup}),n.d(e,"VListTile",function(){return P.VListTile}),n.d(e,"VListTileAction",function(){return P.VListTileAction}),n.d(e,"VListTileAvatar",function(){return P.VListTileAvatar}),n.d(e,"VListTileActionText",function(){return P.VListTileActionText}),n.d(e,"VListTileContent",function(){return P.VListTileContent}),n.d(e,"VListTileTitle",function(){return P.VListTileTitle}),n.d(e,"VListTileSubTitle",function(){return P.VListTileSubTitle});var L=n(/*! ./VMenu */"./src/components/VMenu/index.js");n.d(e,"VMenu",function(){return L.VMenu});var B=n(/*! ./VMessages */"./src/components/VMessages/index.js");n.d(e,"VMessages",function(){return B.VMessages});var M=n(/*! ./VNavigationDrawer */"./src/components/VNavigationDrawer/index.js");n.d(e,"VNavigationDrawer",function(){return M.VNavigationDrawer});var F=n(/*! ./VOverflowBtn */"./src/components/VOverflowBtn/index.js");n.d(e,"VOverflowBtn",function(){return F.VOverflowBtn});var R=n(/*! ./VPagination */"./src/components/VPagination/index.ts");n.d(e,"VPagination",function(){return R.VPagination});var z=n(/*! ./VParallax */"./src/components/VParallax/index.ts");n.d(e,"VParallax",function(){return z.VParallax});var N=n(/*! ./VPicker */"./src/components/VPicker/index.js");n.d(e,"VPicker",function(){return N.VPicker});var q=n(/*! ./VProgressCircular */"./src/components/VProgressCircular/index.ts");n.d(e,"VProgressCircular",function(){return q.VProgressCircular});var H=n(/*! ./VProgressLinear */"./src/components/VProgressLinear/index.ts");n.d(e,"VProgressLinear",function(){return H.VProgressLinear});var W=n(/*! ./VRadioGroup */"./src/components/VRadioGroup/index.js");n.d(e,"VRadioGroup",function(){return W.VRadioGroup}),n.d(e,"VRadio",function(){return W.VRadio});var U=n(/*! ./VRangeSlider */"./src/components/VRangeSlider/index.js");n.d(e,"VRangeSlider",function(){return U.VRangeSlider});var K=n(/*! ./VRating */"./src/components/VRating/index.ts");n.d(e,"VRating",function(){return K.VRating});var G=n(/*! ./VResponsive */"./src/components/VResponsive/index.ts");n.d(e,"VResponsive",function(){return G.VResponsive});var Y=n(/*! ./VSelect */"./src/components/VSelect/index.js");n.d(e,"VSelect",function(){return Y.VSelect});var X=n(/*! ./VSlider */"./src/components/VSlider/index.js");n.d(e,"VSlider",function(){return X.VSlider});var Z=n(/*! ./VSnackbar */"./src/components/VSnackbar/index.ts");n.d(e,"VSnackbar",function(){return Z.VSnackbar});var J=n(/*! ./VSpeedDial */"./src/components/VSpeedDial/index.js");n.d(e,"VSpeedDial",function(){return J.VSpeedDial});var Q=n(/*! ./VStepper */"./src/components/VStepper/index.js");n.d(e,"VStepper",function(){return Q.VStepper}),n.d(e,"VStepperContent",function(){return Q.VStepperContent}),n.d(e,"VStepperStep",function(){return Q.VStepperStep}),n.d(e,"VStepperHeader",function(){return Q.VStepperHeader}),n.d(e,"VStepperItems",function(){return Q.VStepperItems});var tt=n(/*! ./VSubheader */"./src/components/VSubheader/index.js");n.d(e,"VSubheader",function(){return tt.VSubheader});var et=n(/*! ./VSwitch */"./src/components/VSwitch/index.js");n.d(e,"VSwitch",function(){return et.VSwitch});var nt=n(/*! ./VSystemBar */"./src/components/VSystemBar/index.js");n.d(e,"VSystemBar",function(){return nt.VSystemBar});var it=n(/*! ./VTabs */"./src/components/VTabs/index.js");n.d(e,"VTabs",function(){return it.VTabs}),n.d(e,"VTab",function(){return it.VTab}),n.d(e,"VTabItem",function(){return it.VTabItem}),n.d(e,"VTabsItems",function(){return it.VTabsItems}),n.d(e,"VTabsSlider",function(){return it.VTabsSlider});var rt=n(/*! ./VTextarea */"./src/components/VTextarea/index.js");n.d(e,"VTextarea",function(){return rt.VTextarea});var st=n(/*! ./VTextField */"./src/components/VTextField/index.js");n.d(e,"VTextField",function(){return st.VTextField});var ot=n(/*! ./VTimeline */"./src/components/VTimeline/index.ts");n.d(e,"VTimeline",function(){return ot.VTimeline}),n.d(e,"VTimelineItem",function(){return ot.VTimelineItem});var at=n(/*! ./VTimePicker */"./src/components/VTimePicker/index.js");n.d(e,"VTimePicker",function(){return at.VTimePicker}),n.d(e,"VTimePickerClock",function(){return at.VTimePickerClock}),n.d(e,"VTimePickerTitle",function(){return at.VTimePickerTitle});var lt=n(/*! ./VToolbar */"./src/components/VToolbar/index.js");n.d(e,"VToolbar",function(){return lt.VToolbar}),n.d(e,"VToolbarSideIcon",function(){return lt.VToolbarSideIcon}),n.d(e,"VToolbarTitle",function(){return lt.VToolbarTitle}),n.d(e,"VToolbarItems",function(){return lt.VToolbarItems});var ct=n(/*! ./VTooltip */"./src/components/VTooltip/index.js");n.d(e,"VTooltip",function(){return ct.VTooltip});var ut=n(/*! ./VTreeview */"./src/components/VTreeview/index.ts");n.d(e,"VTreeview",function(){return ut.VTreeview}),n.d(e,"VTreeviewNode",function(){return ut.VTreeviewNode});var ht=n(/*! ./VWindow */"./src/components/VWindow/index.ts");n.d(e,"VWindow",function(){return ht.VWindow}),n.d(e,"VWindowItem",function(){return ht.VWindowItem});var dt=n(/*! ./transitions */"./src/components/transitions/index.js");n.d(e,"VBottomSheetTransition",function(){return dt.VBottomSheetTransition}),n.d(e,"VCarouselTransition",function(){return dt.VCarouselTransition}),n.d(e,"VCarouselReverseTransition",function(){return dt.VCarouselReverseTransition}),n.d(e,"VTabTransition",function(){return dt.VTabTransition}),n.d(e,"VTabReverseTransition",function(){return dt.VTabReverseTransition}),n.d(e,"VMenuTransition",function(){return dt.VMenuTransition}),n.d(e,"VFabTransition",function(){return dt.VFabTransition}),n.d(e,"VDialogTransition",function(){return dt.VDialogTransition}),n.d(e,"VDialogBottomTransition",function(){return dt.VDialogBottomTransition}),n.d(e,"VFadeTransition",function(){return dt.VFadeTransition}),n.d(e,"VScaleTransition",function(){return dt.VScaleTransition}),n.d(e,"VScrollXTransition",function(){return dt.VScrollXTransition}),n.d(e,"VScrollXReverseTransition",function(){return dt.VScrollXReverseTransition}),n.d(e,"VScrollYTransition",function(){return dt.VScrollYTransition}),n.d(e,"VScrollYReverseTransition",function(){return dt.VScrollYReverseTransition}),n.d(e,"VSlideXTransition",function(){return dt.VSlideXTransition}),n.d(e,"VSlideXReverseTransition",function(){return dt.VSlideXReverseTransition}),n.d(e,"VSlideYTransition",function(){return dt.VSlideYTransition}),n.d(e,"VSlideYReverseTransition",function(){return dt.VSlideYReverseTransition}),n.d(e,"VExpandTransition",function(){return dt.VExpandTransition}),n.d(e,"VRowExpandTransition",function(){return dt.VRowExpandTransition})},"./src/components/transitions/expand-transition.js": /*!*********************************************************!*\ !*** ./src/components/transitions/expand-transition.js ***! \*********************************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ../../util/helpers */"./src/util/helpers.ts");e.default=function(t){return void 0===t&&(t=""),{enter:function(e,n){e._parent=e.parentNode,e._height=null!=e._height?e._height:e.style.height,Object(i.addOnceEventListener)(e,"transitionend",n),e.style.overflow="hidden",e.style.height=0,e.style.display="block",t&&e._parent.classList.add(t),setTimeout(function(){e.style.height=e._height||(e.scrollHeight?e.scrollHeight+"px":"auto")},100)},afterEnter:function(t){t.style.overflow=null,t._height||(t.style.height=null)},leave:function(t,e){Object(i.addOnceEventListener)(t,"transitionend",e),t.style.overflow="hidden",t._height||(t.style.height=t.scrollHeight+"px"),setTimeout(function(){return t.style.height=0},100)},afterLeave:function(e){t&&e._parent&&e._parent.classList.remove(t),e._height||(e.style.height=null)}}}},"./src/components/transitions/index.js": /*!*********************************************!*\ !*** ./src/components/transitions/index.js ***! \*********************************************/ /*! exports provided: VBottomSheetTransition, VCarouselTransition, VCarouselReverseTransition, VTabTransition, VTabReverseTransition, VMenuTransition, VFabTransition, VDialogTransition, VDialogBottomTransition, VFadeTransition, VScaleTransition, VScrollXTransition, VScrollXReverseTransition, VScrollYTransition, VScrollYReverseTransition, VSlideXTransition, VSlideXReverseTransition, VSlideYTransition, VSlideYReverseTransition, VExpandTransition, VRowExpandTransition, default */function(t,e,n){"use strict";n.r(e),n.d(e,"VBottomSheetTransition",function(){return s}),n.d(e,"VCarouselTransition",function(){return o}),n.d(e,"VCarouselReverseTransition",function(){return a}),n.d(e,"VTabTransition",function(){return l}),n.d(e,"VTabReverseTransition",function(){return c}),n.d(e,"VMenuTransition",function(){return u}),n.d(e,"VFabTransition",function(){return h}),n.d(e,"VDialogTransition",function(){return d}),n.d(e,"VDialogBottomTransition",function(){return p}),n.d(e,"VFadeTransition",function(){return f}),n.d(e,"VScaleTransition",function(){return m}),n.d(e,"VScrollXTransition",function(){return v}),n.d(e,"VScrollXReverseTransition",function(){return g}),n.d(e,"VScrollYTransition",function(){return _}),n.d(e,"VScrollYReverseTransition",function(){return b}),n.d(e,"VSlideXTransition",function(){return y}),n.d(e,"VSlideXReverseTransition",function(){return x}),n.d(e,"VSlideYTransition",function(){return k}),n.d(e,"VSlideYReverseTransition",function(){return w}),n.d(e,"VExpandTransition",function(){return C}),n.d(e,"VRowExpandTransition",function(){return S});var i=n(/*! ../../util/helpers */"./src/util/helpers.ts"),r=n(/*! ./expand-transition */"./src/components/transitions/expand-transition.js"),s=Object(i.createSimpleTransition)("bottom-sheet-transition"),o=Object(i.createSimpleTransition)("carousel-transition"),a=Object(i.createSimpleTransition)("carousel-reverse-transition"),l=Object(i.createSimpleTransition)("tab-transition"),c=Object(i.createSimpleTransition)("tab-reverse-transition"),u=Object(i.createSimpleTransition)("menu-transition"),h=Object(i.createSimpleTransition)("fab-transition","center center","out-in"),d=Object(i.createSimpleTransition)("dialog-transition"),p=Object(i.createSimpleTransition)("dialog-bottom-transition"),f=Object(i.createSimpleTransition)("fade-transition"),m=Object(i.createSimpleTransition)("scale-transition"),v=Object(i.createSimpleTransition)("scroll-x-transition"),g=Object(i.createSimpleTransition)("scroll-x-reverse-transition"),_=Object(i.createSimpleTransition)("scroll-y-transition"),b=Object(i.createSimpleTransition)("scroll-y-reverse-transition"),y=Object(i.createSimpleTransition)("slide-x-transition"),x=Object(i.createSimpleTransition)("slide-x-reverse-transition"),k=Object(i.createSimpleTransition)("slide-y-transition"),w=Object(i.createSimpleTransition)("slide-y-reverse-transition"),C=Object(i.createJavaScriptTransition)("expand-transition",Object(r.default)()),S=Object(i.createJavaScriptTransition)("row-expand-transition",Object(r.default)("datatable__expand-col--expanded"));e.default={$_vuetify_subcomponents:{VBottomSheetTransition:s,VCarouselTransition:o,VCarouselReverseTransition:a,VDialogTransition:d,VDialogBottomTransition:p,VFabTransition:h,VFadeTransition:f,VMenuTransition:u,VScaleTransition:m,VScrollXTransition:v,VScrollXReverseTransition:g,VScrollYTransition:_,VScrollYReverseTransition:b,VSlideXTransition:y,VSlideXReverseTransition:x,VSlideYTransition:k,VSlideYReverseTransition:w,VTabReverseTransition:c,VTabTransition:l,VExpandTransition:C,VRowExpandTransition:S}}},"./src/directives/click-outside.ts": /*!*****************************************!*\ !*** ./src/directives/click-outside.ts ***! \*****************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);var i=function(t){var e="function"==typeof Symbol&&t[Symbol.iterator],n=0;return e?e.call(t):{next:function(){return t&&n>=t.length&&(t=void 0),{value:t&&t[n++],done:!t}}}};function r(){return!1}function s(t,e,n){n.args=n.args||{};var s=n.args.closeConditional||r;if(t&&!1!==s(t)&&!("isTrusted"in t&&!t.isTrusted||"pointerType"in t&&!t.pointerType)){var a=(n.args.include||function(){return[]})();a.push(e),!function(t,e){var n,r,s=t.clientX,a=t.clientY;try{for(var l=i(e),c=l.next();!c.done;c=l.next()){var u=c.value;if(o(u,s,a))return!0}}catch(t){n={error:t}}finally{try{c&&!c.done&&(r=l.return)&&r.call(l)}finally{if(n)throw n.error}}return!1}(t,a)&&setTimeout(function(){s(t)&&n.value(t)},0)}}function o(t,e,n){var i=t.getBoundingClientRect();return e>=i.left&&e<=i.right&&n>=i.top&&n<=i.bottom}e.default={inserted:function(t,e){var n=function(n){return s(n,t,e)};(document.querySelector("[data-app]")||document.body).addEventListener("click",n,!0),t._clickOutside=n},unbind:function(t){if(t._clickOutside){var e=document.querySelector("[data-app]")||document.body;e&&e.removeEventListener("click",t._clickOutside,!0),delete t._clickOutside}}}},"./src/directives/index.ts": /*!*********************************!*\ !*** ./src/directives/index.ts ***! \*********************************/ /*! exports provided: ClickOutside, Ripple, Resize, Scroll, Touch, default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./click-outside */"./src/directives/click-outside.ts");n.d(e,"ClickOutside",function(){return i.default});var r=n(/*! ./resize */"./src/directives/resize.ts");n.d(e,"Resize",function(){return r.default});var s=n(/*! ./ripple */"./src/directives/ripple.ts");n.d(e,"Ripple",function(){return s.default});var o=n(/*! ./scroll */"./src/directives/scroll.ts");n.d(e,"Scroll",function(){return o.default});var a=n(/*! ./touch */"./src/directives/touch.ts");n.d(e,"Touch",function(){return a.default}),e.default={ClickOutside:i.default,Ripple:s.default,Resize:r.default,Scroll:o.default,Touch:a.default}},"./src/directives/resize.ts": /*!**********************************!*\ !*** ./src/directives/resize.ts ***! \**********************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e),e.default={inserted:function(t,e){var n=e.value,i=e.options||{passive:!0};window.addEventListener("resize",n,i),t._onResize={callback:n,options:i},e.modifiers&&e.modifiers.quiet||n()},unbind:function(t){if(t._onResize){var e=t._onResize,n=e.callback,i=e.options;window.removeEventListener("resize",n,i),delete t._onResize}}}},"./src/directives/ripple.ts": /*!**********************************!*\ !*** ./src/directives/ripple.ts ***! \**********************************/ /*! exports provided: default */function(t,e,n){"use strict";function i(t,e){t.style.transform=e,t.style.webkitTransform=e}function r(t,e){t.style.opacity=e.toString()}n.r(e);var s={show:function(t,e,n){if(void 0===n&&(n={}),e._ripple&&e._ripple.enabled){var s=document.createElement("span"),o=document.createElement("span");s.appendChild(o),s.className="v-ripple__container",n.class&&(s.className+=" "+n.class);var a=function(t,e,n){void 0===n&&(n={});var i=e.getBoundingClientRect(),r=t.clientX-i.left,s=t.clientY-i.top,o=0,a=.3;e._ripple&&e._ripple.circle?(a=.15,o=e.clientWidth/2,o=n.center?o:o+Math.sqrt(Math.pow(r-o,2)+Math.pow(s-o,2))/4):o=Math.sqrt(Math.pow(e.clientWidth,2)+Math.pow(e.clientHeight,2))/2;var l=(e.clientWidth-2*o)/2+"px",c=(e.clientHeight-2*o)/2+"px";return{radius:o,scale:a,x:n.center?l:r-o+"px",y:n.center?c:s-o+"px",centerX:l,centerY:c}}(t,e,n),l=a.radius,c=a.scale,u=a.x,h=a.y,d=a.centerX,p=a.centerY;o.className="v-ripple__animation",o.style.width=2*l+"px",o.style.height=o.style.width,e.appendChild(s),"static"===window.getComputedStyle(e).position&&(e.style.position="relative",e.dataset.previousPosition="static"),o.classList.add("v-ripple__animation--enter"),o.classList.add("v-ripple__animation--visible"),i(o,"translate("+u+", "+h+") scale3d("+c+","+c+","+c+")"),r(o,0),o.dataset.activated=String(performance.now()),setTimeout(function(){o.classList.remove("v-ripple__animation--enter"),o.classList.add("v-ripple__animation--in"),i(o,"translate("+d+", "+p+") scale3d(1,1,1)"),r(o,.25),setTimeout(function(){o.classList.remove("v-ripple__animation--in"),o.classList.add("v-ripple__animation--out"),r(o,0)},300)},0)}},hide:function(t){if(t&&t._ripple&&t._ripple.enabled){var e=t.getElementsByClassName("v-ripple__animation");if(0!==e.length){var n=e[e.length-1];if(!n.dataset.isHiding){n.dataset.isHiding="true";var i=performance.now()-Number(n.dataset.activated),r=Math.max(200-i,0);setTimeout(function(){n.classList.remove("v-ripple__animation--out"),setTimeout(function(){1===t.getElementsByClassName("v-ripple__animation").length&&t.dataset.previousPosition&&(t.style.position=t.dataset.previousPosition,delete t.dataset.previousPosition),n.parentNode&&t.removeChild(n.parentNode)},300)},r)}}}}};function o(t){return void 0===t||!!t}function a(t){var e={},n=t.currentTarget;n&&(e.center=n._ripple.centered,n._ripple.class&&(e.class=n._ripple.class),s.show(t,n,e))}function l(t){s.hide(t.currentTarget)}function c(t,e,n){var i=o(e.value);i||s.hide(t),t._ripple=t._ripple||{},t._ripple.enabled=i;var r=e.value||{};r.center&&(t._ripple.centered=!0),r.class&&(t._ripple.class=e.value.class),r.circle&&(t._ripple.circle=r.circle),i&&!n?("ontouchstart"in window&&(t.addEventListener("touchend",l,!1),t.addEventListener("touchcancel",l,!1)),t.addEventListener("mousedown",a,!1),t.addEventListener("mouseup",l,!1),t.addEventListener("mouseleave",l,!1),t.addEventListener("dragstart",l,!1)):!i&&n&&u(t)}function u(t){t.removeEventListener("mousedown",a,!1),t.removeEventListener("touchend",l,!1),t.removeEventListener("touchcancel",l,!1),t.removeEventListener("mouseup",l,!1),t.removeEventListener("mouseleave",l,!1),t.removeEventListener("dragstart",l,!1)}e.default={bind:function(t,e){c(t,e,!1)},unbind:function(t){delete t._ripple,u(t)},update:function(t,e){e.value!==e.oldValue&&c(t,e,o(e.oldValue))}}},"./src/directives/scroll.ts": /*!**********************************!*\ !*** ./src/directives/scroll.ts ***! \**********************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e),e.default={inserted:function(t,e){var n=e.value,i=e.options||{passive:!0},r=e.arg?document.querySelector(e.arg):window;r&&(r.addEventListener("scroll",n,i),t._onScroll={callback:n,options:i,target:r})},unbind:function(t){if(t._onScroll){var e=t._onScroll,n=e.callback,i=e.options;e.target.removeEventListener("scroll",n,i),delete t._onScroll}}}},"./src/directives/touch.ts": /*!*********************************!*\ !*** ./src/directives/touch.ts ***! \*********************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ../util/helpers */"./src/util/helpers.ts"),r=function(t){var e=t.touchstartX,n=t.touchendX,i=t.touchstartY,r=t.touchendY;t.offsetX=n-e,t.offsetY=r-i,Math.abs(t.offsetY)<.5*Math.abs(t.offsetX)&&(t.left&&n<e-16&&t.left(t),t.right&&n>e+16&&t.right(t)),Math.abs(t.offsetX)<.5*Math.abs(t.offsetY)&&(t.up&&r<i-16&&t.up(t),t.down&&r>i+16&&t.down(t))};function s(t){var e={touchstartX:0,touchstartY:0,touchendX:0,touchendY:0,touchmoveX:0,touchmoveY:0,offsetX:0,offsetY:0,left:t.left,right:t.right,up:t.up,down:t.down,start:t.start,move:t.move,end:t.end};return{touchstart:function(t){return function(t,e){var n=t.changedTouches[0];e.touchstartX=n.clientX,e.touchstartY=n.clientY,e.start&&e.start(Object.assign(t,e))}(t,e)},touchend:function(t){return function(t,e){var n=t.changedTouches[0];e.touchendX=n.clientX,e.touchendY=n.clientY,e.end&&e.end(Object.assign(t,e)),r(e)}(t,e)},touchmove:function(t){return function(t,e){var n=t.changedTouches[0];e.touchmoveX=n.clientX,e.touchmoveY=n.clientY,e.move&&e.move(Object.assign(t,e))}(t,e)}}}e.default={inserted:function(t,e,n){var r=e.value,o=r.parent?t.parentElement:t,a=r.options||{passive:!0};if(o){var l=s(e.value);o._touchHandlers=Object(o._touchHandlers),o._touchHandlers[n.context._uid]=l,Object(i.keys)(l).forEach(function(t){o.addEventListener(t,l[t],a)})}},unbind:function(t,e,n){var r=e.value.parent?t.parentElement:t;if(r&&r._touchHandlers){var s=r._touchHandlers[n.context._uid];Object(i.keys)(s).forEach(function(t){r.removeEventListener(t,s[t])}),delete r._touchHandlers[n.context._uid]}}}},"./src/index.ts": /*!**********************!*\ !*** ./src/index.ts ***! \**********************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ./stylus/app.styl */"./src/stylus/app.styl");var i=n(/*! ./components/Vuetify */"./src/components/Vuetify/index.ts"),r=n(/*! ./components */"./src/components/index.ts"),s=n(/*! ./directives */"./src/directives/index.ts"),o=function(){return(o=Object.assign||function(t){for(var e,n=1,i=arguments.length;n<i;n++)for(var r in e=arguments[n])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t}).apply(this,arguments)},a={install:function(t,e){t.use(i.default,o({components:r,directives:s.default},e))},version:"1.3.0"};"undefined"!=typeof window&&window.Vue&&window.Vue.use(a),e.default=a},"./src/locale/en.ts": /*!**************************!*\ !*** ./src/locale/en.ts ***! \**************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e),e.default={dataIterator:{rowsPerPageText:"Items per page:",rowsPerPageAll:"All",pageText:"{0}-{1} of {2}",noResultsText:"No matching records found",nextPage:"Next page",prevPage:"Previous page"},dataTable:{rowsPerPageText:"Rows per page:"},noDataText:"No data available"}},"./src/mixins/applicationable.ts": /*!***************************************!*\ !*** ./src/mixins/applicationable.ts ***! \***************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e),n.d(e,"default",function(){return s});var i=n(/*! ./positionable */"./src/mixins/positionable.ts"),r=n(/*! ../util/mixins */"./src/util/mixins.ts");function s(t,e){return void 0===e&&(e=[]),Object(r.default)(Object(i.factory)(["absolute","fixed"])).extend({name:"applicationable",props:{app:Boolean},computed:{applicationProperty:function(){return t}},watch:{app:function(t,e){e?this.removeApplication(!0):this.callUpdate()},applicationProperty:function(t,e){this.$vuetify.application.unbind(this._uid,e)}},activated:function(){this.callUpdate()},created:function(){for(var t=0,n=e.length;t<n;t++)this.$watch(e[t],this.callUpdate);this.callUpdate()},mounted:function(){this.callUpdate()},deactivated:function(){this.removeApplication()},destroyed:function(){this.removeApplication()},methods:{callUpdate:function(){this.app&&this.$vuetify.application.bind(this._uid,this.applicationProperty,this.updateApplication())},removeApplication:function(t){void 0===t&&(t=!1),(t||this.app)&&this.$vuetify.application.unbind(this._uid,this.applicationProperty)},updateApplication:function(){return 0}}})}},"./src/mixins/bootable.ts": /*!********************************!*\ !*** ./src/mixins/bootable.ts ***! \********************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);var i=n(/*! vue */"vue"),r=n.n(i);e.default=r.a.extend().extend({name:"bootable",props:{lazy:Boolean},data:function(){return{isBooted:!1}},computed:{hasContent:function(){return this.isBooted||!this.lazy||this.isActive}},watch:{isActive:function(){this.isBooted=!0}},methods:{showLazyContent:function(t){return this.hasContent?t:void 0}}})},"./src/mixins/button-group.ts": /*!************************************!*\ !*** ./src/mixins/button-group.ts ***! \************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ../components/VItemGroup/VItemGroup */"./src/components/VItemGroup/VItemGroup.ts");e.default=i.BaseItemGroup.extend({name:"button-group",provide:function(){return{btnToggle:this}},props:{activeClass:{type:String,default:"v-btn--active"}},computed:{classes:function(){return i.BaseItemGroup.options.computed.classes.call(this)}}})},"./src/mixins/colorable.ts": /*!*********************************!*\ !*** ./src/mixins/colorable.ts ***! \*********************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);var i=n(/*! vue */"vue"),r=n.n(i),s=function(){return(s=Object.assign||function(t){for(var e,n=1,i=arguments.length;n<i;n++)for(var r in e=arguments[n])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t}).apply(this,arguments)},o=function(t,e){var n="function"==typeof Symbol&&t[Symbol.iterator];if(!n)return t;var i,r,s=n.call(t),o=[];try{for(;(void 0===e||e-- >0)&&!(i=s.next()).done;)o.push(i.value)}catch(t){r={error:t}}finally{try{i&&!i.done&&(n=s.return)&&n.call(s)}finally{if(r)throw r.error}}return o};function a(t){return!!t&&!!t.match(/^(#|(rgb|hsl)a?\()/)}e.default=r.a.extend({name:"colorable",props:{color:String},methods:{setBackgroundColor:function(t,e){var n;return void 0===e&&(e={}),a(t)?e.style=s({},e.style,{"background-color":""+t,"border-color":""+t}):t&&(e.class=s({},e.class,((n={})[t]=!0,n))),e},setTextColor:function(t,e){var n;if(void 0===e&&(e={}),a(t))e.style=s({},e.style,{color:""+t,"caret-color":""+t});else if(t){var i=o(t.toString().trim().split(" ",2),2),r=i[0],l=i[1];e.class=s({},e.class,((n={})[r+"--text"]=!0,n)),l&&(e.class["text--"+l]=!0)}return e}}})},"./src/mixins/comparable.ts": /*!**********************************!*\ !*** ./src/mixins/comparable.ts ***! \**********************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);var i=n(/*! vue */"vue"),r=n.n(i),s=n(/*! ../util/helpers */"./src/util/helpers.ts");e.default=r.a.extend({name:"comparable",props:{valueComparator:{type:Function,default:s.deepEqual}}})},"./src/mixins/data-iterable.js": /*!*************************************!*\ !*** ./src/mixins/data-iterable.js ***! \*************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ../components/VBtn */"./src/components/VBtn/index.ts"),r=n(/*! ../components/VIcon */"./src/components/VIcon/index.ts"),s=n(/*! ../components/VSelect */"./src/components/VSelect/index.js"),o=n(/*! ./filterable */"./src/mixins/filterable.ts"),a=n(/*! ./themeable */"./src/mixins/themeable.ts"),l=n(/*! ./loadable */"./src/mixins/loadable.ts"),c=n(/*! ../util/helpers */"./src/util/helpers.ts"),u=n(/*! ../util/console */"./src/util/console.ts"),h=function(t,e){var n="function"==typeof Symbol&&t[Symbol.iterator];if(!n)return t;var i,r,s=n.call(t),o=[];try{for(;(void 0===e||e-- >0)&&!(i=s.next()).done;)o.push(i.value)}catch(t){r={error:t}}finally{try{i&&!i.done&&(n=s.return)&&n.call(s)}finally{if(r)throw r.error}}return o},d=function(){for(var t=[],e=0;e<arguments.length;e++)t=t.concat(h(arguments[e]));return t};e.default={name:"data-iterable",mixins:[o.default,l.default,a.default],props:{expand:Boolean,hideActions:Boolean,disableInitialSort:Boolean,mustSort:Boolean,noResultsText:{type:String,default:"$vuetify.dataIterator.noResultsText"},nextIcon:{type:String,default:"$vuetify.icons.next"},prevIcon:{type:String,default:"$vuetify.icons.prev"},rowsPerPageItems:{type:Array,default:function(){return[5,10,25,{text:"$vuetify.dataIterator.rowsPerPageAll",value:-1}]}},rowsPerPageText:{type:String,default:"$vuetify.dataIterator.rowsPerPageText"},selectAll:[Boolean,String],search:{required:!1},filter:{type:Function,default:function(t,e){return null!=t&&"boolean"!=typeof t&&-1!==t.toString().toLowerCase().indexOf(e)}},customFilter:{type:Function,default:function(t,e,n){return""===(e=e.toString().toLowerCase()).trim()?t:t.filter(function(t){return Object.keys(t).some(function(i){return n(t[i],e)})})}},customSort:{type:Function,default:function(t,e,n){return null===e?t:t.sort(function(t,i){var r,s,o=Object(c.getObjectValueByPath)(t,e),a=Object(c.getObjectValueByPath)(i,e);return n&&(o=(r=h([a,o],2))[0],a=r[1]),isNaN(o)||isNaN(a)?null===o&&null===a?0:(o=(s=h([o,a].map(function(t){return(t||"").toString().toLocaleLowerCase()}),2))[0])>(a=s[1])?1:o<a?-1:0:o-a})}},value:{type:Array,default:function(){return[]}},items:{type:Array,required:!0,default:function(){return[]}},totalItems:{type:Number,default:null},itemKey:{type:String,default:"id"},pagination:{type:Object,default:function(){}}},data:function(){return{searchLength:0,defaultPagination:{descending:!1,page:1,rowsPerPage:5,sortBy:null,totalItems:0},expanded:{},actionsClasses:"v-data-iterator__actions",actionsRangeControlsClasses:"v-data-iterator__actions__range-controls",actionsSelectClasses:"v-data-iterator__actions__select",actionsPaginationClasses:"v-data-iterator__actions__pagination"}},computed:{computedPagination:function(){return this.hasPagination?this.pagination:this.defaultPagination},computedRowsPerPageItems:function(){var t=this;return this.rowsPerPageItems.map(function(e){return Object(c.isObject)(e)?Object.assign({},e,{text:t.$vuetify.t(e.text)}):{value:e,text:Number(e).toLocaleString(t.$vuetify.lang.current)}})},hasPagination:function(){var t=this.pagination||{};return Object.keys(t).length>0},hasSelectAll:function(){return void 0!==this.selectAll&&!1!==this.selectAll},itemsLength:function(){return this.hasSearch?this.searchLength:this.totalItems||this.items.length},indeterminate:function(){return this.hasSelectAll&&this.someItems&&!this.everyItem},everyItem:function(){var t=this;return this.filteredItems.length&&this.filteredItems.every(function(e){return t.isSelected(e)})},someItems:function(){var t=this;return this.filteredItems.some(function(e){return t.isSelected(e)})},getPage:function(){var t=this.computedPagination.rowsPerPage;return t===Object(t)?t.value:t},pageStart:function(){return-1===this.getPage?0:(this.computedPagination.page-1)*this.getPage},pageStop:function(){return-1===this.getPage?this.itemsLength:this.computedPagination.page*this.getPage},filteredItems:function(){return this.filteredItemsImpl()},selected:function(){for(var t={},e=0;e<this.value.length;e++){t[Object(c.getObjectValueByPath)(this.value[e],this.itemKey)]=!0}return t},hasSearch:function(){return null!=this.search}},watch:{search:function(){var t=this;this.$nextTick(function(){t.updatePagination({page:1,totalItems:t.itemsLength})})},"computedPagination.sortBy":"resetPagination","computedPagination.descending":"resetPagination"},methods:{initPagination:function(){this.rowsPerPageItems.length?this.defaultPagination.rowsPerPage=this.rowsPerPageItems[0]:Object(u.consoleWarn)("The prop 'rows-per-page-items' can not be empty",this),this.defaultPagination.totalItems=this.items.length,this.updatePagination(Object.assign({},this.defaultPagination,this.pagination))},updatePagination:function(t){var e=this.hasPagination?this.pagination:this.defaultPagination,n=Object.assign({},e,t);this.$emit("update:pagination",n),this.hasPagination||(this.defaultPagination=n)},isSelected:function(t){return this.selected[Object(c.getObjectValueByPath)(t,this.itemKey)]},isExpanded:function(t){return this.expanded[Object(c.getObjectValueByPath)(t,this.itemKey)]},filteredItemsImpl:function(){for(var t=[],e=0;e<arguments.length;e++)t[e]=arguments[e];if(this.totalItems)return this.items;var n=this.items.slice();return this.hasSearch&&(n=this.customFilter.apply(this,d([n,this.search,this.filter],t)),this.searchLength=n.length),n=this.customSort(n,this.computedPagination.sortBy,this.computedPagination.descending),this.hideActions&&!this.hasPagination?n:n.slice(this.pageStart,this.pageStop)},resetPagination:function(){1!==this.computedPagination.page&&this.updatePagination({page:1})},sort:function(t){var e=this.computedPagination,n=e.sortBy,i=e.descending;null===n?this.updatePagination({sortBy:t,descending:!1}):n!==t||i?n!==t?this.updatePagination({sortBy:t,descending:!1}):this.mustSort?this.updatePagination({sortBy:t,descending:!1}):this.updatePagination({sortBy:null,descending:null}):this.updatePagination({descending:!0})},toggle:function(t){for(var e=this,n=Object.assign({},this.selected),i=0;i<this.filteredItems.length;i++){var r=Object(c.getObjectValueByPath)(this.filteredItems[i],this.itemKey);n[r]=t}this.$emit("input",this.items.filter(function(t){var i=Object(c.getObjectValueByPath)(t,e.itemKey);return n[i]}))},createProps:function(t,e){var n=this,i={item:t,index:e},r=this.itemKey,s=Object(c.getObjectValueByPath)(t,r);return Object.defineProperty(i,"selected",{get:function(){return n.selected[s]},set:function(e){null==s&&Object(u.consoleWarn)('"'+r+'" attribute must be defined for item',n);var i=n.value.slice();e?i.push(t):i=i.filter(function(t){return Object(c.getObjectValueByPath)(t,r)!==s}),n.$emit("input",i)}}),Object.defineProperty(i,"expanded",{get:function(){return n.expanded[s]},set:function(t){if(null==s&&Object(u.consoleWarn)('"'+r+'" attribute must be defined for item',n),!n.expand)for(var e in n.expanded)n.expanded.hasOwnProperty(e)&&n.$set(n.expanded,e,!1);n.$set(n.expanded,s,t)}}),i},genItems:function(){if(!this.itemsLength&&!this.items.length){var t=this.$slots["no-data"]||this.$vuetify.t(this.noDataText);return[this.genEmptyItems(t)]}if(!this.filteredItems.length){var e=this.$slots["no-results"]||this.$vuetify.t(this.noResultsText);return[this.genEmptyItems(e)]}return this.genFilteredItems()},genPrevIcon:function(){var t=this;return this.$createElement(i.default,{props:{disabled:1===this.computedPagination.page,icon:!0,flat:!0},on:{click:function(){var e=t.computedPagination.page;t.updatePagination({page:e-1})}},attrs:{"aria-label":this.$vuetify.t("$vuetify.dataIterator.prevPage")}},[this.$createElement(r.default,this.$vuetify.rtl?this.nextIcon:this.prevIcon)])},genNextIcon:function(){var t=this,e=this.computedPagination,n=e.rowsPerPage<0||e.page*e.rowsPerPage>=this.itemsLength||this.pageStop<0;return this.$createElement(i.default,{props:{disabled:n,icon:!0,flat:!0},on:{click:function(){var e=t.computedPagination.page;t.updatePagination({page:e+1})}},attrs:{"aria-label":this.$vuetify.t("$vuetify.dataIterator.nextPage")}},[this.$createElement(r.default,this.$vuetify.rtl?this.prevIcon:this.nextIcon)])},genSelect:function(){var t=this;return this.$createElement("div",{class:this.actionsSelectClasses},[this.$vuetify.t(this.rowsPerPageText),this.$createElement(s.default,{attrs:{"aria-label":this.$vuetify.t(this.rowsPerPageText)},props:{items:this.computedRowsPerPageItems,value:this.computedPagination.rowsPerPage,hideDetails:!0,menuProps:{auto:!0,dark:this.dark,light:this.light,minWidth:"75px"}},on:{input:function(e){t.updatePagination({page:1,rowsPerPage:e})}}})])},genPagination:function(){var t,e=this,n="–";if(this.itemsLength){var i=this.itemsLength<this.pageStop||this.pageStop<0?this.itemsLength:this.pageStop;n=this.$scopedSlots.pageText?this.$scopedSlots.pageText({pageStart:this.pageStart+1,pageStop:i,itemsLength:this.itemsLength}):(t=this.$vuetify).t.apply(t,d(["$vuetify.dataIterator.pageText"],[this.pageStart+1,i,this.itemsLength].map(function(t){return Number(t).toLocaleString(e.$vuetify.lang.current)})))}return this.$createElement("div",{class:this.actionsPaginationClasses},[n])},genActions:function(){var t=this.$createElement("div",{class:this.actionsRangeControlsClasses},[this.genPagination(),this.genPrevIcon(),this.genNextIcon()]);return[this.$createElement("div",{class:this.actionsClasses},[this.$slots["actions-prepend"]?this.$createElement("div",{},this.$slots["actions-prepend"]):null,this.rowsPerPageItems.length>1?this.genSelect():null,t,this.$slots["actions-append"]?this.$createElement("div",{},this.$slots["actions-append"]):null])]}}}},"./src/mixins/delayable.ts": /*!*********************************!*\ !*** ./src/mixins/delayable.ts ***! \*********************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);var i=n(/*! vue */"vue"),r=n.n(i);e.default=r.a.extend({name:"delayable",props:{openDelay:{type:[Number,String],default:0},closeDelay:{type:[Number,String],default:0}},data:function(){return{openTimeout:void 0,closeTimeout:void 0}},methods:{clearDelay:function(){clearTimeout(this.openTimeout),clearTimeout(this.closeTimeout)},runDelay:function(t,e){this.clearDelay();var n=parseInt(this[t+"Delay"],10);this[t+"Timeout"]=setTimeout(e,n)}}})},"./src/mixins/dependent.ts": /*!*********************************!*\ !*** ./src/mixins/dependent.ts ***! \*********************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ../util/mixins */"./src/util/mixins.ts"),r=function(t,e){var n="function"==typeof Symbol&&t[Symbol.iterator];if(!n)return t;var i,r,s=n.call(t),o=[];try{for(;(void 0===e||e-- >0)&&!(i=s.next()).done;)o.push(i.value)}catch(t){r={error:t}}finally{try{i&&!i.done&&(n=s.return)&&n.call(s)}finally{if(r)throw r.error}}return o},s=function(){for(var t=[],e=0;e<arguments.length;e++)t=t.concat(r(arguments[e]));return t};e.default=Object(i.default)().extend({name:"dependent",data:function(){return{closeDependents:!0,isActive:!1,isDependent:!0}},watch:{isActive:function(t){if(!t)for(var e=this.getOpenDependents(),n=0;n<e.length;n++)e[n].isActive=!1}},methods:{getOpenDependents:function(){return this.closeDependents?function t(e){for(var n=[],i=0;i<e.length;i++){var r=e[i];r.isActive&&r.isDependent?n.push(r):n.push.apply(n,s(t(r.$children)))}return n}(this.$children):[]},getOpenDependentElements:function(){for(var t=[],e=this.getOpenDependents(),n=0;n<e.length;n++)t.push.apply(t,s(e[n].getClickableDependentElements()));return t},getClickableDependentElements:function(){var t=[this.$el];return this.$refs.content&&t.push(this.$refs.content),t.push.apply(t,s(this.getOpenDependentElements())),t}}})},"./src/mixins/detachable.js": /*!**********************************!*\ !*** ./src/mixins/detachable.js ***! \**********************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ./bootable */"./src/mixins/bootable.ts"),r=n(/*! ../util/console */"./src/util/console.ts"),s="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t};e.default={name:"detachable",mixins:[i.default],props:{attach:{type:null,default:!1,validator:function(t){var e=void 0===t?"undefined":s(t);return"boolean"===e||"string"===e||t.nodeType===Node.ELEMENT_NODE}},contentClass:{default:""}},data:function(){return{hasDetached:!1}},watch:{attach:function(){this.hasDetached=!1,this.initDetach()},hasContent:"initDetach"},mounted:function(){!this.lazy&&this.initDetach()},deactivated:function(){this.isActive=!1},beforeDestroy:function(){if(this.$refs.content)try{this.$refs.content.parentNode.removeChild(this.$refs.content)}catch(t){console.log(t)}},methods:{getScopeIdAttrs:function(){var t,e=this.$vnode&&this.$vnode.context.$options._scopeId;return e&&((t={})[e]="",t)},initDetach:function(){var t;this._isDestroyed||!this.$refs.content||this.hasDetached||""===this.attach||!0===this.attach||"attach"===this.attach||((t=!1===this.attach?document.querySelector("[data-app]"):"string"==typeof this.attach?document.querySelector(this.attach):this.attach)?(t.insertBefore(this.$refs.content,t.firstChild),this.hasDetached=!0):Object(r.consoleWarn)("Unable to locate target "+(this.attach||"[data-app]"),this))}}}},"./src/mixins/filterable.ts": /*!**********************************!*\ !*** ./src/mixins/filterable.ts ***! \**********************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);var i=n(/*! vue */"vue"),r=n.n(i);e.default=r.a.extend({name:"filterable",props:{noDataText:{type:String,default:"$vuetify.noDataText"}}})},"./src/mixins/groupable.ts": /*!*********************************!*\ !*** ./src/mixins/groupable.ts ***! \*********************************/ /*! exports provided: factory, default */function(t,e,n){"use strict";n.r(e),n.d(e,"factory",function(){return r});var i=n(/*! ./registrable */"./src/mixins/registrable.ts");function r(t,e,n){return Object(i.inject)(t,e,n).extend({name:"groupable",props:{activeClass:{type:String,default:function(){if(this[t])return this[t].activeClass}},disabled:Boolean},data:function(){return{isActive:!1}},computed:{groupClasses:function(){var t;return this.activeClass?((t={})[this.activeClass]=this.isActive,t):{}}},created:function(){this[t]&&this[t].register(this)},beforeDestroy:function(){this[t]&&this[t].unregister(this)},methods:{toggle:function(){this.$emit("change")}}})}var s=r("itemGroup");e.default=s},"./src/mixins/loadable.ts": /*!********************************!*\ !*** ./src/mixins/loadable.ts ***! \********************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);var i=n(/*! vue */"vue"),r=n.n(i),s=n(/*! ../components/VProgressLinear */"./src/components/VProgressLinear/index.ts");e.default=r.a.extend().extend({name:"loadable",props:{loading:{type:[Boolean,String],default:!1}},methods:{genProgress:function(){return!1===this.loading?null:this.$slots.progress||this.$createElement(s.default,{props:{color:!0===this.loading||""===this.loading?this.color||"primary":this.loading,height:2,indeterminate:!0}})}}})},"./src/mixins/maskable.js": /*!********************************!*\ !*** ./src/mixins/maskable.js ***! \********************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ../util/mask */"./src/util/mask.js");e.default={name:"maskable",props:{dontFillMaskBlanks:Boolean,mask:{type:[Object,String],default:null},returnMaskedValue:Boolean},data:function(){return{selection:0,lazySelection:0,preDefined:{"credit-card":"#### - #### - #### - ####",date:"##/##/####","date-with-time":"##/##/#### ##:##",phone:"(###) ### - ####",social:"###-##-####",time:"##:##","time-with-seconds":"##:##:##"}}},computed:{masked:function(){return(this.preDefined[this.mask]||this.mask||"").split("")}},watch:{mask:function(){var t=this;if(this.$refs.input){for(var e=this.$refs.input.value,n=this.maskText(Object(i.unmaskText)(this.lazyValue)),r=0,s=this.selection,o=0;o<s;o++)Object(i.isMaskDelimiter)(e[o])||r++;if(s=0,n)for(o=0;o<n.length&&(Object(i.isMaskDelimiter)(n[o])||r--,s++,!(r<=0));o++);this.$nextTick(function(){t.$refs.input.value=n,t.setCaretPosition(s)})}}},beforeMount:function(){if(this.mask&&null!=this.value&&this.returnMaskedValue){var t=this.maskText(this.value);t!==this.value&&this.$emit("input",t)}},methods:{setCaretPosition:function(t){var e=this;this.selection=t,window.setTimeout(function(){e.$refs.input&&e.$refs.input.setSelectionRange(e.selection,e.selection)},0)},updateRange:function(){if(this.$refs.input){var t=this.maskText(this.lazyValue),e=0;if(this.$refs.input.value=t,t)for(var n=0;n<t.length&&!(this.lazySelection<=0);n++)Object(i.isMaskDelimiter)(t[n])||this.lazySelection--,e++;this.setCaretPosition(e),this.$emit("input",this.returnMaskedValue?this.$refs.input.value:this.lazyValue)}},maskText:function(t){return this.mask?Object(i.maskText)(t,this.masked,this.dontFillMaskBlanks):t},unmaskText:function(t){return this.mask&&!this.returnMaskedValue?Object(i.unmaskText)(t):t},setSelectionRange:function(){this.$nextTick(this.updateRange)},resetSelections:function(t){if(t.selectionEnd){this.selection=t.selectionEnd,this.lazySelection=0;for(var e=0;e<this.selection;e++)Object(i.isMaskDelimiter)(t.value[e])||this.lazySelection++}}}}},"./src/mixins/measurable.ts": /*!**********************************!*\ !*** ./src/mixins/measurable.ts ***! \**********************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);var i=n(/*! vue */"vue"),r=n.n(i);e.default=r.a.extend({name:"measurable",props:{height:[Number,String],maxHeight:[Number,String],maxWidth:[Number,String],width:[Number,String]}})},"./src/mixins/menuable.js": /*!********************************!*\ !*** ./src/mixins/menuable.js ***! \********************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);var i=n(/*! vue */"vue"),r=n.n(i),s=n(/*! ./positionable */"./src/mixins/positionable.ts"),o=n(/*! ./stackable */"./src/mixins/stackable.js"),a="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},l={activator:{top:0,left:0,bottom:0,right:0,width:0,height:0,offsetTop:0,scrollHeight:0},content:{top:0,left:0,bottom:0,right:0,width:0,height:0,offsetTop:0,scrollHeight:0},hasWindow:!1};e.default=r.a.extend({name:"menuable",mixins:[s.default,o.default],props:{activator:{default:null,validator:function(t){return["string","object"].includes(void 0===t?"undefined":a(t))}},allowOverflow:Boolean,inputActivator:Boolean,light:Boolean,dark:Boolean,maxWidth:{type:[Number,String],default:"auto"},minWidth:[Number,String],nudgeBottom:{type:[Number,String],default:0},nudgeLeft:{type:[Number,String],default:0},nudgeRight:{type:[Number,String],default:0},nudgeTop:{type:[Number,String],default:0},nudgeWidth:{type:[Number,String],default:0},offsetOverflow:Boolean,positionX:{type:Number,default:null},positionY:{type:Number,default:null},zIndex:{type:[Number,String],default:null}},data:function(){return{absoluteX:0,absoluteY:0,dimensions:Object.assign({},l),isContentActive:!1,pageYOffset:0,stackClass:"v-menu__content--active",stackMinZIndex:6}},computed:{computedLeft:function(){var t=this.dimensions.activator,e=this.dimensions.content,n=t.width<e.width?e.width:t.width,i=0;return i+=this.left?t.left-(n-t.width):t.left,this.offsetX&&(i+=this.left?-t.width:t.width),this.nudgeLeft&&(i-=parseInt(this.nudgeLeft)),this.nudgeRight&&(i+=parseInt(this.nudgeRight)),i},computedTop:function(){var t=this.dimensions.activator,e=this.dimensions.content,n=this.top?t.bottom-e.height:t.top;return this.isAttached||(n+=this.pageYOffset),this.offsetY&&(n+=this.top?-t.height:t.height),this.nudgeTop&&(n-=parseInt(this.nudgeTop)),this.nudgeBottom&&(n+=parseInt(this.nudgeBottom)),n},hasActivator:function(){return!!this.$slots.activator||this.activator||this.inputActivator},isAttached:function(){return!1!==this.attach}},watch:{disabled:function(t){t&&this.callDeactivate()},isActive:function(t){this.disabled||(t?this.callActivate():this.callDeactivate())}},beforeMount:function(){this.checkForWindow()},methods:{absolutePosition:function(){return{offsetTop:0,scrollHeight:0,top:this.positionY||this.absoluteY,bottom:this.positionY||this.absoluteY,left:this.positionX||this.absoluteX,right:this.positionX||this.absoluteX,height:0,width:0}},activate:function(){},calcLeft:function(){return(this.isAttached?this.computedLeft:this.calcXOverflow(this.computedLeft))+"px"},calcTop:function(){return(this.isAttached?this.computedTop:this.calcYOverflow(this.computedTop))+"px"},calcXOverflow:function(t){var e=isNaN(parseInt(this.maxWidth))?0:parseInt(this.maxWidth),n=this.getInnerWidth(),i=Math.max(this.dimensions.content.width,e),r=t+i-n;return(!this.left||this.right)&&r>0&&(t=n-i-(n>600?30:12)),t<0&&(t=12),t},calcYOverflow:function(t){var e=this.getInnerHeight(),n=this.pageYOffset+e,i=this.dimensions.activator,r=this.dimensions.content.height,s=n<t+r;return s&&this.offsetOverflow&&i.top>r?t=this.pageYOffset+(i.top-r):s&&!this.allowOverflow?t=n-r-12:t<this.pageYOffset&&!this.allowOverflow&&(t=this.pageYOffset+12),t<12?12:t},callActivate:function(){this.hasWindow&&this.activate()},callDeactivate:function(){this.isContentActive=!1,this.deactivate()},checkForWindow:function(){this.hasWindow||(this.hasWindow="undefined"!=typeof window)},checkForPageYOffset:function(){this.hasWindow&&(this.pageYOffset=this.getOffsetTop())},deactivate:function(){},getActivator:function(){return this.inputActivator?this.$el.querySelector(".v-input__slot"):this.activator?"string"==typeof this.activator?document.querySelector(this.activator):this.activator:this.$refs.activator.children.length>0?this.$refs.activator.children[0]:this.$refs.activator},getInnerHeight:function(){return this.hasWindow?window.innerHeight||document.documentElement.clientHeight:0},getInnerWidth:function(){return this.hasWindow?window.innerWidth:0},getOffsetTop:function(){return this.hasWindow?window.pageYOffset||document.documentElement.scrollTop:0},getRoundedBoundedClientRect:function(t){var e=t.getBoundingClientRect();return{top:Math.round(e.top),left:Math.round(e.left),bottom:Math.round(e.bottom),right:Math.round(e.right),width:Math.round(e.width),height:Math.round(e.height)}},measure:function(t,e){if(!(t=e?t.querySelector(e):t)||!this.hasWindow)return null;var n=this.getRoundedBoundedClientRect(t);if(this.isAttached){var i=window.getComputedStyle(t);n.left=parseInt(i.marginLeft),n.top=parseInt(i.marginTop)}return n},sneakPeek:function(t){var e=this;requestAnimationFrame(function(){var n=e.$refs.content;if(!n||e.isShown(n))return t();n.style.display="inline-block",t(),n.style.display="none"})},startTransition:function(){var t=this;requestAnimationFrame(function(){return t.isContentActive=!0})},isShown:function(t){return"none"!==t.style.display},updateDimensions:function(){var t=this;this.checkForWindow(),this.checkForPageYOffset();var e={};e.activator=!this.hasActivator||this.absolute?this.absolutePosition():this.measure(this.getActivator()),this.sneakPeek(function(){e.content=t.measure(t.$refs.content),t.dimensions=e})}}})},"./src/mixins/overlayable.js": /*!***********************************!*\ !*** ./src/mixins/overlayable.js ***! \***********************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);n(/*! ../stylus/components/_overlay.styl */"./src/stylus/components/_overlay.styl");var i=n(/*! ../util/helpers */"./src/util/helpers.ts");e.default={name:"overlayable",props:{hideOverlay:Boolean},data:function(){return{overlay:null,overlayOffset:0,overlayTimeout:null,overlayTransitionDuration:650}},beforeDestroy:function(){this.removeOverlay()},methods:{genOverlay:function(){var t=this;if(!this.isActive||this.hideOverlay||this.isActive&&this.overlayTimeout||this.overlay)return clearTimeout(this.overlayTimeout),this.overlay&&this.overlay.classList.add("v-overlay--active");this.overlay=document.createElement("div"),this.overlay.className="v-overlay",this.absolute&&(this.overlay.className+=" v-overlay--absolute"),this.hideScroll();var e=this.absolute?this.$el.parentNode:document.querySelector("[data-app]");return e&&e.insertBefore(this.overlay,e.firstChild),this.overlay.clientHeight,requestAnimationFrame(function(){t.overlay&&(t.overlay.className+=" v-overlay--active",void 0!==t.activeZIndex&&(t.overlay.style.zIndex=t.activeZIndex-1))}),!0},removeOverlay:function(){var t=this;if(!this.overlay)return this.showScroll();this.overlay.classList.remove("v-overlay--active"),this.overlayTimeout=setTimeout(function(){try{t.overlay&&t.overlay.parentNode&&t.overlay.parentNode.removeChild(t.overlay),t.overlay=null,t.showScroll()}catch(t){console.log(t)}clearTimeout(t.overlayTimeout),t.overlayTimeout=null},this.overlayTransitionDuration)},scrollListener:function(t){if("keydown"===t.type){if(["INPUT","TEXTAREA","SELECT"].includes(t.target.tagName)||t.target.isContentEditable)return;var e=[i.keyCodes.up,i.keyCodes.pageup],n=[i.keyCodes.down,i.keyCodes.pagedown];if(e.includes(t.keyCode))t.deltaY=-1;else{if(!n.includes(t.keyCode))return;t.deltaY=1}}(t.target===this.overlay||"keydown"!==t.type&&t.target===document.body||this.checkPath(t))&&t.preventDefault()},hasScrollbar:function(t){if(!t||t.nodeType!==Node.ELEMENT_NODE)return!1;var e=window.getComputedStyle(t);return["auto","scroll"].includes(e["overflow-y"])&&t.scrollHeight>t.clientHeight},shouldScroll:function(t,e){return 0===t.scrollTop&&e<0||t.scrollTop+t.clientHeight===t.scrollHeight&&e>0},isInside:function(t,e){return t===e||null!==t&&t!==document.body&&this.isInside(t.parentNode,e)},checkPath:function(t){var e=t.path||this.composedPath(t),n=t.deltaY||-t.wheelDelta;if("keydown"===t.type&&e[0]===document.body){var i=this.$refs.dialog,r=window.getSelection().anchorNode;return!this.hasScrollbar(i)||!this.isInside(r,i)||this.shouldScroll(i,n)}for(var s=0;s<e.length;s++){var o=e[s];if(o===document)return!0;if(o===document.documentElement)return!0;if(o===this.$refs.content)return!0;if(this.hasScrollbar(o))return this.shouldScroll(o,n)}return!0},composedPath:function(t){if(t.composedPath)return t.composedPath();for(var e=[],n=t.target;n;){if(e.push(n),"HTML"===n.tagName)return e.push(document),e.push(window),e;n=n.parentElement}},hideScroll:function(){this.$vuetify.breakpoint.smAndDown?document.documentElement.classList.add("overflow-y-hidden"):(window.addEventListener("wheel",this.scrollListener),window.addEventListener("keydown",this.scrollListener))},showScroll:function(){document.documentElement.classList.remove("overflow-y-hidden"),window.removeEventListener("wheel",this.scrollListener),window.removeEventListener("keydown",this.scrollListener)}}}},"./src/mixins/picker-button.js": /*!*************************************!*\ !*** ./src/mixins/picker-button.js ***! \*************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e),e.default={methods:{genPickerButton:function(t,e,n,i,r){var s=this;void 0===i&&(i=!1),void 0===r&&(r="");var o=this[t]===e;return this.$createElement("div",{staticClass:("v-picker__title__btn "+r).trim(),class:{"v-picker__title__btn--active":o,"v-picker__title__btn--readonly":i},on:o||i?void 0:{click:function(n){n.stopPropagation(),s.$emit("update:"+t,e)}}},Array.isArray(n)?n:[n])}}}},"./src/mixins/picker.js": /*!******************************!*\ !*** ./src/mixins/picker.js ***! \******************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ../components/VPicker */"./src/components/VPicker/index.js"),r=n(/*! ./colorable */"./src/mixins/colorable.ts"),s=n(/*! ./themeable */"./src/mixins/themeable.ts");e.default={name:"picker",mixins:[r.default,s.default],props:{fullWidth:Boolean,headerColor:String,landscape:Boolean,noTitle:Boolean,width:{type:[Number,String],default:290}},methods:{genPickerTitle:function(){},genPickerBody:function(){},genPickerActionsSlot:function(){return this.$scopedSlots.default?this.$scopedSlots.default({save:this.save,cancel:this.cancel}):this.$slots.default},genPicker:function(t){return this.$createElement(i.default,{staticClass:t,props:{color:this.headerColor||this.color,dark:this.dark,fullWidth:this.fullWidth,landscape:this.landscape,light:this.light,width:this.width}},[this.noTitle?null:this.genPickerTitle(),this.genPickerBody(),this.$createElement("template",{slot:"actions"},[this.genPickerActionsSlot()])])}}}},"./src/mixins/positionable.ts": /*!************************************!*\ !*** ./src/mixins/positionable.ts ***! \************************************/ /*! exports provided: factory, default */function(t,e,n){"use strict";n.r(e),n.d(e,"factory",function(){return a});var i=n(/*! vue */"vue"),r=n.n(i),s=n(/*! ../util/helpers */"./src/util/helpers.ts"),o={absolute:Boolean,bottom:Boolean,fixed:Boolean,left:Boolean,right:Boolean,top:Boolean};function a(t){return void 0===t&&(t=[]),r.a.extend({name:"positionable",props:t.length?Object(s.filterObjectOnKeys)(o,t):o})}e.default=a()},"./src/mixins/proxyable.ts": /*!*********************************!*\ !*** ./src/mixins/proxyable.ts ***! \*********************************/ /*! exports provided: factory, default */function(t,e,n){"use strict";n.r(e),n.d(e,"factory",function(){return s});var i=n(/*! vue */"vue"),r=n.n(i);function s(t,e){var n,i;return void 0===t&&(t="value"),void 0===e&&(e="change"),r.a.extend({name:"proxyable",model:{prop:t,event:e},props:(n={},n[t]={required:!1},n),data:function(){return{internalLazyValue:this[t]}},computed:{internalValue:{get:function(){return this.internalLazyValue},set:function(t){t!==this.internalLazyValue&&(this.internalLazyValue=t,this.$emit(e,t))}}},watch:(i={},i[t]=function(t){this.internalLazyValue=t},i)})}var o=s();e.default=o},"./src/mixins/registrable.ts": /*!***********************************!*\ !*** ./src/mixins/registrable.ts ***! \***********************************/ /*! exports provided: inject, provide */function(t,e,n){"use strict";n.r(e),n.d(e,"inject",function(){return a}),n.d(e,"provide",function(){return l});var i=n(/*! vue */"vue"),r=n.n(i),s=n(/*! ../util/console */"./src/util/console.ts");function o(t,e){return function(){return Object(s.consoleWarn)("The "+t+" component must be used inside a "+e)}}function a(t,e,n){var i,s=e&&n?{register:o(e,n),unregister:o(e,n)}:null;return r.a.extend({name:"registrable-inject",inject:(i={},i[t]={default:s},i)})}function l(t){return r.a.extend({name:"registrable-provide",methods:{register:null,unregister:null},provide:function(){var e;return(e={})[t]={register:this.register,unregister:this.unregister},e}})}},"./src/mixins/returnable.ts": /*!**********************************!*\ !*** ./src/mixins/returnable.ts ***! \**********************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);var i=n(/*! vue */"vue"),r=n.n(i);e.default=r.a.extend({name:"returnable",props:{returnValue:null},data:function(){return{isActive:!1,originalValue:null}},watch:{isActive:function(t){t?this.originalValue=this.returnValue:this.$emit("update:returnValue",this.originalValue)}},methods:{save:function(t){this.originalValue=t,this.isActive=!1}}})},"./src/mixins/rippleable.ts": /*!**********************************!*\ !*** ./src/mixins/rippleable.ts ***! \**********************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ../directives/ripple */"./src/directives/ripple.ts"),r=n(/*! vue */"vue"),s=n.n(r);e.default=s.a.extend({name:"rippleable",directives:{Ripple:i.default},props:{ripple:{type:[Boolean,Object],default:!0}},methods:{genRipple:function(t){return void 0===t&&(t={}),this.ripple?(t.staticClass="v-input--selection-controls__ripple",t.directives=t.directives||[],t.directives.push({name:"ripple",value:{center:!0}}),t.on=Object.assign({click:this.onChange},this.$listeners),this.$createElement("div",t)):null},onChange:function(){}}})},"./src/mixins/routable.ts": /*!********************************!*\ !*** ./src/mixins/routable.ts ***! \********************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);var i=n(/*! vue */"vue"),r=n.n(i),s=n(/*! ../directives/ripple */"./src/directives/ripple.ts"),o=function(){return(o=Object.assign||function(t){for(var e,n=1,i=arguments.length;n<i;n++)for(var r in e=arguments[n])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t}).apply(this,arguments)};e.default=r.a.extend({name:"routable",directives:{Ripple:s.default},props:{activeClass:String,append:Boolean,disabled:Boolean,exact:{type:Boolean,default:void 0},exactActiveClass:String,href:[String,Object],to:[String,Object],nuxt:Boolean,replace:Boolean,ripple:[Boolean,Object],tag:String,target:String},computed:{computedRipple:function(){return!(!this.ripple||this.disabled)&&this.ripple}},methods:{click:function(t){},generateRouteLink:function(t){var e,n,i=this.exact,r=((e={attrs:{disabled:this.disabled},class:t,props:{},directives:[{name:"ripple",value:this.computedRipple}]})[this.to?"nativeOn":"on"]=o({},this.$listeners,{click:this.click}),e);if(void 0===this.exact&&(i="/"===this.to||this.to===Object(this.to)&&"/"===this.to.path),this.to){var s=this.activeClass,a=this.exactActiveClass||s;this.proxyClass&&(s+=" "+this.proxyClass,a+=" "+this.proxyClass),n=this.nuxt?"nuxt-link":"router-link",Object.assign(r.props,{to:this.to,exact:i,activeClass:s,exactActiveClass:a,append:this.append,replace:this.replace})}else"a"===(n=(this.href?"a":this.tag)||"a")&&this.href&&(r.attrs.href=this.href);return this.target&&(r.attrs.target=this.target),{tag:n,data:r}}}})},"./src/mixins/selectable.js": /*!**********************************!*\ !*** ./src/mixins/selectable.js ***! \**********************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ../components/VInput */"./src/components/VInput/index.js"),r=n(/*! ./rippleable */"./src/mixins/rippleable.ts"),s=n(/*! ./comparable */"./src/mixins/comparable.ts");e.default={name:"selectable",extends:i.default,mixins:[r.default,s.default],model:{prop:"inputValue",event:"change"},props:{color:{type:String,default:"accent"},id:String,inputValue:null,falseValue:null,trueValue:null,multiple:{type:Boolean,default:null},label:String},data:function(t){return{lazyValue:t.inputValue}},computed:{computedColor:function(){return this.isActive?this.color:this.validationState},isMultiple:function(){return!0===this.multiple||null===this.multiple&&Array.isArray(this.internalValue)},isActive:function(){var t=this,e=this.value,n=this.internalValue;return this.isMultiple?!!Array.isArray(n)&&n.some(function(n){return t.valueComparator(n,e)}):void 0===this.trueValue||void 0===this.falseValue?e?this.valueComparator(e,n):Boolean(n):this.valueComparator(n,this.trueValue)},isDirty:function(){return this.isActive}},watch:{inputValue:function(t){this.lazyValue=t}},methods:{genLabel:function(){if(!this.hasLabel)return null;var t=i.default.methods.genLabel.call(this);return t.data.on={click:this.onChange},t},genInput:function(t,e){return this.$createElement("input",{attrs:Object.assign({"aria-label":this.label,"aria-checked":this.isActive.toString(),disabled:this.isDisabled,id:this.id,role:t,type:t,value:this.inputValue},e),domProps:{checked:this.isActive},on:{blur:this.onBlur,change:this.onChange,focus:this.onFocus,keydown:this.onKeydown},ref:"input"})},onBlur:function(){this.isFocused=!1},onChange:function(){var t=this;if(!this.isDisabled){var e=this.value,n=this.internalValue;if(this.isMultiple){Array.isArray(n)||(n=[]);var i=n.length;(n=n.filter(function(n){return!t.valueComparator(n,e)})).length===i&&n.push(e)}else n=void 0!==this.trueValue&&void 0!==this.falseValue?this.valueComparator(n,this.trueValue)?this.falseValue:this.trueValue:e?this.valueComparator(n,e)?null:e:!n;this.validate(!0,n),this.internalValue=n}},onFocus:function(){this.isFocused=!0},onKeydown:function(t){}}}},"./src/mixins/sizeable.ts": /*!********************************!*\ !*** ./src/mixins/sizeable.ts ***! \********************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);var i=n(/*! vue */"vue"),r=n.n(i);e.default=r.a.extend({name:"sizeable",props:{large:Boolean,medium:Boolean,size:{type:[Number,String]},small:Boolean,xLarge:Boolean}})},"./src/mixins/ssr-bootable.ts": /*!************************************!*\ !*** ./src/mixins/ssr-bootable.ts ***! \************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);var i=n(/*! vue */"vue"),r=n.n(i);e.default=r.a.extend({name:"ssr-bootable",data:function(){return{isBooted:!1}},mounted:function(){var t=this;window.requestAnimationFrame(function(){t.$el.setAttribute("data-booted","true"),t.isBooted=!0})}})},"./src/mixins/stackable.js": /*!*********************************!*\ !*** ./src/mixins/stackable.js ***! \*********************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ../util/helpers */"./src/util/helpers.ts"),r=function(t,e){var n="function"==typeof Symbol&&t[Symbol.iterator];if(!n)return t;var i,r,s=n.call(t),o=[];try{for(;(void 0===e||e-- >0)&&!(i=s.next()).done;)o.push(i.value)}catch(t){r={error:t}}finally{try{i&&!i.done&&(n=s.return)&&n.call(s)}finally{if(r)throw r.error}}return o},s=function(){for(var t=[],e=0;e<arguments.length;e++)t=t.concat(r(arguments[e]));return t};e.default={name:"stackable",data:function(){return{stackBase:null,stackClass:"unpecified",stackElement:null,stackExclude:null,stackMinZIndex:0}},computed:{activeZIndex:function(){if("undefined"==typeof window)return 0;var t=this.stackElement||this.$refs.content,e=this.isActive?this.getMaxZIndex(this.stackExclude||[t])+2:Object(i.getZIndex)(t);return null==e?e:parseInt(e)}},methods:{getMaxZIndex:function(t){void 0===t&&(t=[]);for(var e=this.stackBase||this.$el,n=[this.stackMinZIndex,Object(i.getZIndex)(e)],r=s(document.getElementsByClassName(this.stackClass)),o=0;o<r.length;o++)t.includes(r[o])||n.push(Object(i.getZIndex)(r[o]));return Math.max.apply(Math,s(n))}}}},"./src/mixins/themeable.ts": /*!*********************************!*\ !*** ./src/mixins/themeable.ts ***! \*********************************/ /*! exports provided: functionalThemeClasses, default */function(t,e,n){"use strict";n.r(e),n.d(e,"functionalThemeClasses",function(){return s});var i=n(/*! vue */"vue"),r=function(){return(r=Object.assign||function(t){for(var e,n=1,i=arguments.length;n<i;n++)for(var r in e=arguments[n])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t}).apply(this,arguments)};function s(t){var e=r({},t.props,t.injections),n=o.options.computed.isDark.call(e);return o.options.computed.themeClasses.call({isDark:n})}var o=n.n(i).a.extend().extend({name:"themeable",provide:function(){return{theme:this.themeableProvide}},inject:{theme:{default:{isDark:!1}}},props:{dark:{type:Boolean,default:null},light:{type:Boolean,default:null}},data:function(){return{themeableProvide:{isDark:!1}}},computed:{isDark:function(){return!0===this.dark||!0!==this.light&&this.theme.isDark},themeClasses:function(){return{"theme--dark":this.isDark,"theme--light":!this.isDark}},rootIsDark:function(){return!0===this.dark||!0!==this.light&&this.$vuetify.dark},rootThemeClasses:function(){return{"theme--dark":this.rootIsDark,"theme--light":!this.rootIsDark}}},watch:{isDark:{handler:function(t,e){t!==e&&(this.themeableProvide.isDark=this.isDark)},immediate:!0}}});e.default=o},"./src/mixins/toggleable.ts": /*!**********************************!*\ !*** ./src/mixins/toggleable.ts ***! \**********************************/ /*! exports provided: factory, default */function(t,e,n){"use strict";n.r(e),n.d(e,"factory",function(){return s});var i=n(/*! vue */"vue"),r=n.n(i);function s(t,e){var n,i;return void 0===t&&(t="value"),void 0===e&&(e="input"),r.a.extend({name:"toggleable",model:{prop:t,event:e},props:(n={},n[t]={required:!1},n),data:function(){return{isActive:!!this[t]}},watch:(i={},i[t]=function(t){this.isActive=!!t},i.isActive=function(n){!!n!==this[t]&&this.$emit(e,n)},i)})}var o=s();e.default=o},"./src/mixins/transitionable.ts": /*!**************************************!*\ !*** ./src/mixins/transitionable.ts ***! \**************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);var i=n(/*! vue */"vue"),r=n.n(i);e.default=r.a.extend({name:"transitionable",props:{mode:String,origin:String,transition:String}})},"./src/mixins/translatable.ts": /*!************************************!*\ !*** ./src/mixins/translatable.ts ***! \************************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);var i=n(/*! vue */"vue"),r=n.n(i);e.default=r.a.extend({name:"translatable",props:{height:Number},data:function(){return{elOffsetTop:0,parallax:0,parallaxDist:0,percentScrolled:0,scrollTop:0,windowHeight:0,windowBottom:0}},computed:{imgHeight:function(){return this.objHeight()}},beforeDestroy:function(){window.removeEventListener("scroll",this.translate,!1),window.removeEventListener("resize",this.translate,!1)},methods:{calcDimensions:function(){var t=this.$el.getBoundingClientRect();this.scrollTop=window.pageYOffset,this.parallaxDist=this.imgHeight-this.height,this.elOffsetTop=t.top+this.scrollTop,this.windowHeight=window.innerHeight,this.windowBottom=this.scrollTop+this.windowHeight},listeners:function(){window.addEventListener("scroll",this.translate,!1),window.addEventListener("resize",this.translate,!1)},objHeight:function(){throw new Error("Not implemented !")},translate:function(){this.calcDimensions(),this.percentScrolled=(this.windowBottom-this.elOffsetTop)/(parseInt(this.height)+this.windowHeight),this.parallax=Math.round(this.parallaxDist*this.percentScrolled)}}})},"./src/mixins/validatable.js": /*!***********************************!*\ !*** ./src/mixins/validatable.js ***! \***********************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ../util/helpers */"./src/util/helpers.ts"),r=n(/*! ./registrable */"./src/mixins/registrable.ts"),s=n(/*! ../util/console */"./src/util/console.ts"),o=n(/*! ./colorable */"./src/mixins/colorable.ts"),a="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t};e.default={name:"validatable",mixins:[o.default,Object(r.inject)("form")],props:{error:Boolean,errorCount:{type:[Number,String],default:1},errorMessages:{type:[String,Array],default:function(){return[]}},messages:{type:[String,Array],default:function(){return[]}},rules:{type:Array,default:function(){return[]}},success:Boolean,successMessages:{type:[String,Array],default:function(){return[]}},validateOnBlur:Boolean},data:function(){return{errorBucket:[],hasColor:!1,hasFocused:!1,hasInput:!1,isResetting:!1,valid:!1}},computed:{hasError:function(){return this.internalErrorMessages.length>0||this.errorBucket.length>0||this.error},externalError:function(){return this.internalErrorMessages.length>0||this.error},hasSuccess:function(){return this.successMessages.length>0||this.success},hasMessages:function(){return this.validations.length>0},hasState:function(){return this.hasSuccess||this.shouldValidate&&this.hasError},internalErrorMessages:function(){return this.errorMessages||""},shouldValidate:function(){return this.externalError||!this.isResetting&&(this.validateOnBlur?this.hasFocused&&!this.isFocused:this.hasInput||this.hasFocused)},validations:function(){return this.validationTarget.slice(0,this.errorCount)},validationState:function(){return this.hasError&&this.shouldValidate?"error":this.hasSuccess?"success":this.hasColor?this.color:null},validationTarget:function(){var t=this.internalErrorMessages.length>0?this.errorMessages:this.successMessages.length>0?this.successMessages:this.messages;return Array.isArray(t)?t.length>0?t:this.shouldValidate?this.errorBucket:[]:[t]}},watch:{rules:{handler:function(t,e){Object(i.deepEqual)(t,e)||this.validate()},deep:!0},internalValue:function(){this.hasInput=!0,this.validateOnBlur||this.$nextTick(this.validate)},isFocused:function(t){t||(this.hasFocused=!0,this.validateOnBlur&&this.validate())},isResetting:function(){var t=this;setTimeout(function(){t.hasInput=!1,t.hasFocused=!1,t.isResetting=!1},0)},hasError:function(t){this.shouldValidate&&this.$emit("update:error",t)}},beforeMount:function(){this.validate()},created:function(){this.form&&this.form.register(this)},beforeDestroy:function(){this.form&&this.form.unregister(this)},methods:{reset:function(){this.isResetting=!0,this.internalValue=Array.isArray(this.internalValue)?[]:void 0},resetValidation:function(){this.isResetting=!0},validate:function(t,e){void 0===t&&(t=!1),void 0===e&&(e=this.internalValue);var n=[];t&&(this.hasInput=this.hasFocused=!0);for(var i=0;i<this.rules.length;i++){var r=this.rules[i],o="function"==typeof r?r(e):r;!1===o||"string"==typeof o?n.push(o):!0!==o&&Object(s.consoleError)("Rules should return a string or boolean, received '"+(void 0===o?"undefined":a(o))+"' instead",this)}return this.errorBucket=n,this.valid=0===n.length,this.valid}}}},"./src/stylus/app.styl": /*!*****************************!*\ !*** ./src/stylus/app.styl ***! \*****************************/ /*! no static exports found */function(t,e,n){},"./src/stylus/components/_alerts.styl": /*!********************************************!*\ !*** ./src/stylus/components/_alerts.styl ***! \********************************************/ /*! no static exports found */function(t,e,n){},"./src/stylus/components/_app.styl": /*!*****************************************!*\ !*** ./src/stylus/components/_app.styl ***! \*****************************************/ /*! no static exports found */function(t,e,n){},"./src/stylus/components/_autocompletes.styl": /*!***************************************************!*\ !*** ./src/stylus/components/_autocompletes.styl ***! \***************************************************/ /*! no static exports found */function(t,e,n){},"./src/stylus/components/_avatars.styl": /*!*********************************************!*\ !*** ./src/stylus/components/_avatars.styl ***! \*********************************************/ /*! no static exports found */function(t,e,n){},"./src/stylus/components/_badges.styl": /*!********************************************!*\ !*** ./src/stylus/components/_badges.styl ***! \********************************************/ /*! no static exports found */function(t,e,n){},"./src/stylus/components/_bottom-navs.styl": /*!*************************************************!*\ !*** ./src/stylus/components/_bottom-navs.styl ***! \*************************************************/ /*! no static exports found */function(t,e,n){},"./src/stylus/components/_bottom-sheets.styl": /*!***************************************************!*\ !*** ./src/stylus/components/_bottom-sheets.styl ***! \***************************************************/ /*! no static exports found */function(t,e,n){},"./src/stylus/components/_breadcrumbs.styl": /*!*************************************************!*\ !*** ./src/stylus/components/_breadcrumbs.styl ***! \*************************************************/ /*! no static exports found */function(t,e,n){},"./src/stylus/components/_button-toggle.styl": /*!***************************************************!*\ !*** ./src/stylus/components/_button-toggle.styl ***! \***************************************************/ /*! no static exports found */function(t,e,n){},"./src/stylus/components/_buttons.styl": /*!*********************************************!*\ !*** ./src/stylus/components/_buttons.styl ***! \*********************************************/ /*! no static exports found */function(t,e,n){},"./src/stylus/components/_cards.styl": /*!*******************************************!*\ !*** ./src/stylus/components/_cards.styl ***! \*******************************************/ /*! no static exports found */function(t,e,n){},"./src/stylus/components/_carousel.styl": /*!**********************************************!*\ !*** ./src/stylus/components/_carousel.styl ***! \**********************************************/ /*! no static exports found */function(t,e,n){},"./src/stylus/components/_chips.styl": /*!*******************************************!*\ !*** ./src/stylus/components/_chips.styl ***! \*******************************************/ /*! no static exports found */function(t,e,n){},"./src/stylus/components/_content.styl": /*!*********************************************!*\ !*** ./src/stylus/components/_content.styl ***! \*********************************************/ /*! no static exports found */function(t,e,n){},"./src/stylus/components/_counters.styl": /*!**********************************************!*\ !*** ./src/stylus/components/_counters.styl ***! \**********************************************/ /*! no static exports found */function(t,e,n){},"./src/stylus/components/_data-iterator.styl": /*!***************************************************!*\ !*** ./src/stylus/components/_data-iterator.styl ***! \***************************************************/ /*! no static exports found */function(t,e,n){},"./src/stylus/components/_data-table.styl": /*!************************************************!*\ !*** ./src/stylus/components/_data-table.styl ***! \************************************************/ /*! no static exports found */function(t,e,n){},"./src/stylus/components/_date-picker-header.styl": /*!********************************************************!*\ !*** ./src/stylus/components/_date-picker-header.styl ***! \********************************************************/ /*! no static exports found */function(t,e,n){},"./src/stylus/components/_date-picker-table.styl": /*!*******************************************************!*\ !*** ./src/stylus/components/_date-picker-table.styl ***! \*******************************************************/ /*! no static exports found */function(t,e,n){},"./src/stylus/components/_date-picker-title.styl": /*!*******************************************************!*\ !*** ./src/stylus/components/_date-picker-title.styl ***! \*******************************************************/ /*! no static exports found */function(t,e,n){},"./src/stylus/components/_date-picker-years.styl": /*!*******************************************************!*\ !*** ./src/stylus/components/_date-picker-years.styl ***! \*******************************************************/ /*! no static exports found */function(t,e,n){},"./src/stylus/components/_dialogs.styl": /*!*********************************************!*\ !*** ./src/stylus/components/_dialogs.styl ***! \*********************************************/ /*! no static exports found */function(t,e,n){},"./src/stylus/components/_dividers.styl": /*!**********************************************!*\ !*** ./src/stylus/components/_dividers.styl ***! \**********************************************/ /*! no static exports found */function(t,e,n){},"./src/stylus/components/_expansion-panel.styl": /*!*****************************************************!*\ !*** ./src/stylus/components/_expansion-panel.styl ***! \*****************************************************/ /*! no static exports found */function(t,e,n){},"./src/stylus/components/_footer.styl": /*!********************************************!*\ !*** ./src/stylus/components/_footer.styl ***! \********************************************/ /*! no static exports found */function(t,e,n){},"./src/stylus/components/_forms.styl": /*!*******************************************!*\ !*** ./src/stylus/components/_forms.styl ***! \*******************************************/ /*! no static exports found */function(t,e,n){},"./src/stylus/components/_grid.styl": /*!******************************************!*\ !*** ./src/stylus/components/_grid.styl ***! \******************************************/ /*! no static exports found */function(t,e,n){},"./src/stylus/components/_icons.styl": /*!*******************************************!*\ !*** ./src/stylus/components/_icons.styl ***! \*******************************************/ /*! no static exports found */function(t,e,n){},"./src/stylus/components/_images.styl": /*!********************************************!*\ !*** ./src/stylus/components/_images.styl ***! \********************************************/ /*! no static exports found */function(t,e,n){},"./src/stylus/components/_inputs.styl": /*!********************************************!*\ !*** ./src/stylus/components/_inputs.styl ***! \********************************************/ /*! no static exports found */function(t,e,n){},"./src/stylus/components/_item-group.styl": /*!************************************************!*\ !*** ./src/stylus/components/_item-group.styl ***! \************************************************/ /*! no static exports found */function(t,e,n){},"./src/stylus/components/_jumbotrons.styl": /*!************************************************!*\ !*** ./src/stylus/components/_jumbotrons.styl ***! \************************************************/ /*! no static exports found */function(t,e,n){},"./src/stylus/components/_labels.styl": /*!********************************************!*\ !*** ./src/stylus/components/_labels.styl ***! \********************************************/ /*! no static exports found */function(t,e,n){},"./src/stylus/components/_lists.styl": /*!*******************************************!*\ !*** ./src/stylus/components/_lists.styl ***! \*******************************************/ /*! no static exports found */function(t,e,n){},"./src/stylus/components/_menus.styl": /*!*******************************************!*\ !*** ./src/stylus/components/_menus.styl ***! \*******************************************/ /*! no static exports found */function(t,e,n){},"./src/stylus/components/_messages.styl": /*!**********************************************!*\ !*** ./src/stylus/components/_messages.styl ***! \**********************************************/ /*! no static exports found */function(t,e,n){},"./src/stylus/components/_navigation-drawer.styl": /*!*******************************************************!*\ !*** ./src/stylus/components/_navigation-drawer.styl ***! \*******************************************************/ /*! no static exports found */function(t,e,n){},"./src/stylus/components/_overflow-buttons.styl": /*!******************************************************!*\ !*** ./src/stylus/components/_overflow-buttons.styl ***! \******************************************************/ /*! no static exports found */function(t,e,n){},"./src/stylus/components/_overlay.styl": /*!*********************************************!*\ !*** ./src/stylus/components/_overlay.styl ***! \*********************************************/ /*! no static exports found */function(t,e,n){},"./src/stylus/components/_pagination.styl": /*!************************************************!*\ !*** ./src/stylus/components/_pagination.styl ***! \************************************************/ /*! no static exports found */function(t,e,n){},"./src/stylus/components/_parallax.styl": /*!**********************************************!*\ !*** ./src/stylus/components/_parallax.styl ***! \**********************************************/ /*! no static exports found */function(t,e,n){},"./src/stylus/components/_pickers.styl": /*!*********************************************!*\ !*** ./src/stylus/components/_pickers.styl ***! \*********************************************/ /*! no static exports found */function(t,e,n){},"./src/stylus/components/_progress-circular.styl": /*!*******************************************************!*\ !*** ./src/stylus/components/_progress-circular.styl ***! \*******************************************************/ /*! no static exports found */function(t,e,n){},"./src/stylus/components/_progress-linear.styl": /*!*****************************************************!*\ !*** ./src/stylus/components/_progress-linear.styl ***! \*****************************************************/ /*! no static exports found */function(t,e,n){},"./src/stylus/components/_radio-group.styl": /*!*************************************************!*\ !*** ./src/stylus/components/_radio-group.styl ***! \*************************************************/ /*! no static exports found */function(t,e,n){},"./src/stylus/components/_radios.styl": /*!********************************************!*\ !*** ./src/stylus/components/_radios.styl ***! \********************************************/ /*! no static exports found */function(t,e,n){},"./src/stylus/components/_range-sliders.styl": /*!***************************************************!*\ !*** ./src/stylus/components/_range-sliders.styl ***! \***************************************************/ /*! no static exports found */function(t,e,n){},"./src/stylus/components/_rating.styl": /*!********************************************!*\ !*** ./src/stylus/components/_rating.styl ***! \********************************************/ /*! no static exports found */function(t,e,n){},"./src/stylus/components/_responsive.styl": /*!************************************************!*\ !*** ./src/stylus/components/_responsive.styl ***! \************************************************/ /*! no static exports found */function(t,e,n){},"./src/stylus/components/_select.styl": /*!********************************************!*\ !*** ./src/stylus/components/_select.styl ***! \********************************************/ /*! no static exports found */function(t,e,n){},"./src/stylus/components/_selection-controls.styl": /*!********************************************************!*\ !*** ./src/stylus/components/_selection-controls.styl ***! \********************************************************/ /*! no static exports found */function(t,e,n){},"./src/stylus/components/_sliders.styl": /*!*********************************************!*\ !*** ./src/stylus/components/_sliders.styl ***! \*********************************************/ /*! no static exports found */function(t,e,n){},"./src/stylus/components/_small-dialog.styl": /*!**************************************************!*\ !*** ./src/stylus/components/_small-dialog.styl ***! \**************************************************/ /*! no static exports found */function(t,e,n){},"./src/stylus/components/_snackbars.styl": /*!***********************************************!*\ !*** ./src/stylus/components/_snackbars.styl ***! \***********************************************/ /*! no static exports found */function(t,e,n){},"./src/stylus/components/_speed-dial.styl": /*!************************************************!*\ !*** ./src/stylus/components/_speed-dial.styl ***! \************************************************/ /*! no static exports found */function(t,e,n){},"./src/stylus/components/_steppers.styl": /*!**********************************************!*\ !*** ./src/stylus/components/_steppers.styl ***! \**********************************************/ /*! no static exports found */function(t,e,n){},"./src/stylus/components/_subheaders.styl": /*!************************************************!*\ !*** ./src/stylus/components/_subheaders.styl ***! \************************************************/ /*! no static exports found */function(t,e,n){},"./src/stylus/components/_switch.styl": /*!********************************************!*\ !*** ./src/stylus/components/_switch.styl ***! \********************************************/ /*! no static exports found */function(t,e,n){},"./src/stylus/components/_system-bars.styl": /*!*************************************************!*\ !*** ./src/stylus/components/_system-bars.styl ***! \*************************************************/ /*! no static exports found */function(t,e,n){},"./src/stylus/components/_tables.styl": /*!********************************************!*\ !*** ./src/stylus/components/_tables.styl ***! \********************************************/ /*! no static exports found */function(t,e,n){},"./src/stylus/components/_tabs.styl": /*!******************************************!*\ !*** ./src/stylus/components/_tabs.styl ***! \******************************************/ /*! no static exports found */function(t,e,n){},"./src/stylus/components/_text-fields.styl": /*!*************************************************!*\ !*** ./src/stylus/components/_text-fields.styl ***! \*************************************************/ /*! no static exports found */function(t,e,n){},"./src/stylus/components/_textarea.styl": /*!**********************************************!*\ !*** ./src/stylus/components/_textarea.styl ***! \**********************************************/ /*! no static exports found */function(t,e,n){},"./src/stylus/components/_time-picker-clock.styl": /*!*******************************************************!*\ !*** ./src/stylus/components/_time-picker-clock.styl ***! \*******************************************************/ /*! no static exports found */function(t,e,n){},"./src/stylus/components/_time-picker-title.styl": /*!*******************************************************!*\ !*** ./src/stylus/components/_time-picker-title.styl ***! \*******************************************************/ /*! no static exports found */function(t,e,n){},"./src/stylus/components/_timeline.styl": /*!**********************************************!*\ !*** ./src/stylus/components/_timeline.styl ***! \**********************************************/ /*! no static exports found */function(t,e,n){},"./src/stylus/components/_toolbar.styl": /*!*********************************************!*\ !*** ./src/stylus/components/_toolbar.styl ***! \*********************************************/ /*! no static exports found */function(t,e,n){},"./src/stylus/components/_tooltips.styl": /*!**********************************************!*\ !*** ./src/stylus/components/_tooltips.styl ***! \**********************************************/ /*! no static exports found */function(t,e,n){},"./src/stylus/components/_treeview.styl": /*!**********************************************!*\ !*** ./src/stylus/components/_treeview.styl ***! \**********************************************/ /*! no static exports found */function(t,e,n){},"./src/stylus/components/_windows.styl": /*!*********************************************!*\ !*** ./src/stylus/components/_windows.styl ***! \*********************************************/ /*! no static exports found */function(t,e,n){},"./src/util/ThemeProvider.ts": /*!***********************************!*\ !*** ./src/util/ThemeProvider.ts ***! \***********************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e);var i=n(/*! ../mixins/themeable */"./src/mixins/themeable.ts"),r=n(/*! ./mixins */"./src/util/mixins.ts");e.default=Object(r.default)(i.default).extend({name:"theme-provider",props:{root:Boolean},computed:{isDark:function(){return this.root?this.rootIsDark:i.default.options.computed.isDark.call(this)}},render:function(){return this.$slots.default&&this.$slots.default.find(function(t){return!t.isComment&&" "!==t.text})}})},"./src/util/color/transformCIELAB.ts": /*!*******************************************!*\ !*** ./src/util/color/transformCIELAB.ts ***! \*******************************************/ /*! exports provided: fromXYZ, toXYZ */function(t,e,n){"use strict";n.r(e),n.d(e,"fromXYZ",function(){return o}),n.d(e,"toXYZ",function(){return a});var i=.20689655172413793,r=function(t){return t>Math.pow(i,3)?Math.cbrt(t):t/(3*Math.pow(i,2))+4/29},s=function(t){return t>i?Math.pow(t,3):3*Math.pow(i,2)*(t-4/29)};function o(t){var e=r,n=e(t[1]);return[116*n-16,500*(e(t[0]/.95047)-n),200*(n-e(t[2]/1.08883))]}function a(t){var e=s,n=(t[0]+16)/116;return[.95047*e(n+t[1]/500),e(n),1.08883*e(n-t[2]/200)]}},"./src/util/color/transformSRGB.ts": /*!*****************************************!*\ !*** ./src/util/color/transformSRGB.ts ***! \*****************************************/ /*! exports provided: fromXYZ, toXYZ */function(t,e,n){"use strict";n.r(e),n.d(e,"fromXYZ",function(){return a}),n.d(e,"toXYZ",function(){return l});var i=[[3.2406,-1.5372,-.4986],[-.9689,1.8758,.0415],[.0557,-.204,1.057]],r=function(t){return t<=.0031308?12.92*t:1.055*Math.pow(t,1/2.4)-.055},s=[[.4124,.3576,.1805],[.2126,.7152,.0722],[.0193,.1192,.9505]],o=function(t){return t<=.04045?t/12.92:Math.pow((t+.055)/1.055,2.4)};function a(t){for(var e,n=Array(3),s=r,o=i,a=0;a<3;++a)n[a]=Math.round(255*(e=s(o[a][0]*t[0]+o[a][1]*t[1]+o[a][2]*t[2]),Math.max(0,Math.min(1,e))));return(n[0]<<16)+(n[1]<<8)+(n[2]<<0)}function l(t){for(var e=[0,0,0],n=o,i=s,r=n((t>>16&255)/255),a=n((t>>8&255)/255),l=n((t>>0&255)/255),c=0;c<3;++c)e[c]=i[c][0]*r+i[c][1]*a+i[c][2]*l;return e}},"./src/util/colorUtils.ts": /*!********************************!*\ !*** ./src/util/colorUtils.ts ***! \********************************/ /*! exports provided: colorToInt, intToHex, colorToHex */function(t,e,n){"use strict";n.r(e),n.d(e,"colorToInt",function(){return r}),n.d(e,"intToHex",function(){return s}),n.d(e,"colorToHex",function(){return o});var i=n(/*! ./console */"./src/util/console.ts");function r(t){var e;if("number"==typeof t)e=t;else{if("string"!=typeof t)throw new TypeError("Colors can only be numbers or strings, recieved "+(null==t?t:t.constructor.name)+" instead");var n="#"===t[0]?t.substring(1):t;3===n.length&&(n=n.split("").map(function(t){return t+t}).join("")),6!==n.length&&Object(i.consoleWarn)("'"+t+"' is not a valid rgb color"),e=parseInt(n,16)}return e<0?(Object(i.consoleWarn)("Colors cannot be negative: '"+t+"'"),e=0):(e>16777215||isNaN(e))&&(Object(i.consoleWarn)("'"+t+"' is not a valid rgb color"),e=16777215),e}function s(t){var e=t.toString(16);return e.length<6&&(e="0".repeat(6-e.length)+e),"#"+e}function o(t){return s(r(t))}},"./src/util/console.ts": /*!*****************************!*\ !*** ./src/util/console.ts ***! \*****************************/ /*! exports provided: consoleInfo, consoleWarn, consoleError, deprecate */function(t,e,n){"use strict";function i(t,e,n){if(n&&(e={_isVue:!0,$parent:n,$options:e}),e){if(e.$_alreadyWarned=e.$_alreadyWarned||[],e.$_alreadyWarned.includes(t))return;e.$_alreadyWarned.push(t)}return"[Vuetify] "+t+(e?function(t){if(t._isVue&&t.$parent){for(var e=[],n=0;t;){if(e.length>0){var i=e[e.length-1];if(i.constructor===t.constructor){n++,t=t.$parent;continue}n>0&&(e[e.length-1]=[i,n],n=0)}e.push(t),t=t.$parent}return"\n\nfound in\n\n"+e.map(function(t,e){return""+(0===e?"---\x3e ":" ".repeat(5+2*e))+(Array.isArray(t)?u(t[0])+"... ("+t[1]+" recursive calls)":u(t))}).join("\n")}return"\n\n(found in "+u(t)+")"}(e):"")}function r(t,e,n){var r=i(t,e,n);null!=r&&console.info(r)}function s(t,e,n){var r=i(t,e,n);null!=r&&console.warn(r)}function o(t,e,n){var r=i(t,e,n);null!=r&&console.error(r)}function a(t,e,n,i){s("'"+t+"' is deprecated, use '"+e+"' instead",n,i)}n.r(e),n.d(e,"consoleInfo",function(){return r}),n.d(e,"consoleWarn",function(){return s}),n.d(e,"consoleError",function(){return o}),n.d(e,"deprecate",function(){return a});var l=/(?:^|[-_])(\w)/g,c=function(t){return t.replace(l,function(t){return t.toUpperCase()}).replace(/[-_]/g,"")};function u(t,e){if(t.$root===t)return"<Root>";var n="function"==typeof t&&null!=t.cid?t.options:t._isVue?t.$options||t.constructor.options:t||{},i=n.name||n._componentTag,r=n.__file;if(!i&&r){var s=r.match(/([^/\\]+)\.vue$/);i=s&&s[1]}return(i?"<"+c(i)+">":"<Anonymous>")+(r&&!1!==e?" at "+r:"")}},"./src/util/dedupeModelListeners.ts": /*!******************************************!*\ !*** ./src/util/dedupeModelListeners.ts ***! \******************************************/ /*! exports provided: default */function(t,e,n){"use strict";function i(t){if(t.model&&t.on&&t.on.input)if(Array.isArray(t.on.input)){var e=t.on.input.indexOf(t.model.callback);e>-1&&t.on.input.splice(e,1)}else delete t.on.input}n.r(e),n.d(e,"default",function(){return i})},"./src/util/easing-patterns.js": /*!*************************************!*\ !*** ./src/util/easing-patterns.js ***! \*************************************/ /*! exports provided: linear, easeInQuad, easeOutQuad, easeInOutQuad, easeInCubic, easeOutCubic, easeInOutCubic, easeInQuart, easeOutQuart, easeInOutQuart, easeInQuint, easeOutQuint, easeInOutQuint */function(t,e,n){"use strict";n.r(e),n.d(e,"linear",function(){return i}),n.d(e,"easeInQuad",function(){return r}),n.d(e,"easeOutQuad",function(){return s}),n.d(e,"easeInOutQuad",function(){return o}),n.d(e,"easeInCubic",function(){return a}),n.d(e,"easeOutCubic",function(){return l}),n.d(e,"easeInOutCubic",function(){return c}),n.d(e,"easeInQuart",function(){return u}),n.d(e,"easeOutQuart",function(){return h}),n.d(e,"easeInOutQuart",function(){return d}),n.d(e,"easeInQuint",function(){return p}),n.d(e,"easeOutQuint",function(){return f}),n.d(e,"easeInOutQuint",function(){return m});var i=function(t){return t},r=function(t){return t*t},s=function(t){return t*(2-t)},o=function(t){return t<.5?2*t*t:(4-2*t)*t-1},a=function(t){return t*t*t},l=function(t){return--t*t*t+1},c=function(t){return t<.5?4*t*t*t:(t-1)*(2*t-2)*(2*t-2)+1},u=function(t){return t*t*t*t},h=function(t){return 1- --t*t*t*t},d=function(t){return t<.5?8*t*t*t*t:1-8*--t*t*t*t},p=function(t){return t*t*t*t*t},f=function(t){return 1+--t*t*t*t*t},m=function(t){return t<.5?16*t*t*t*t*t:1+16*--t*t*t*t*t}},"./src/util/helpers.ts": /*!*****************************!*\ !*** ./src/util/helpers.ts ***! \*****************************/ /*! exports provided: createSimpleFunctional, createSimpleTransition, createJavaScriptTransition, directiveConfig, addOnceEventListener, getNestedValue, deepEqual, getObjectValueByPath, getPropertyFromItem, createRange, getZIndex, escapeHTML, filterObjectOnKeys, filterChildren, convertToUnit, kebabCase, isObject, keyCodes, remapInternalIcon, keys, camelize */function(t,e,n){"use strict";n.r(e),n.d(e,"createSimpleFunctional",function(){return s}),n.d(e,"createSimpleTransition",function(){return a}),n.d(e,"createJavaScriptTransition",function(){return l}),n.d(e,"directiveConfig",function(){return c}),n.d(e,"addOnceEventListener",function(){return u}),n.d(e,"getNestedValue",function(){return h}),n.d(e,"deepEqual",function(){return d}),n.d(e,"getObjectValueByPath",function(){return p}),n.d(e,"getPropertyFromItem",function(){return f}),n.d(e,"createRange",function(){return m}),n.d(e,"getZIndex",function(){return v}),n.d(e,"escapeHTML",function(){return _}),n.d(e,"filterObjectOnKeys",function(){return b}),n.d(e,"filterChildren",function(){return y}),n.d(e,"convertToUnit",function(){return x}),n.d(e,"kebabCase",function(){return k}),n.d(e,"isObject",function(){return w}),n.d(e,"keyCodes",function(){return C}),n.d(e,"remapInternalIcon",function(){return T}),n.d(e,"keys",function(){return V}),n.d(e,"camelize",function(){return j});var i="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},r=function(){return(r=Object.assign||function(t){for(var e,n=1,i=arguments.length;n<i;n++)for(var r in e=arguments[n])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t}).apply(this,arguments)};function s(t,e,n){return void 0===e&&(e="div"),{name:n||t.replace(/__/g,"-"),functional:!0,render:function(n,i){var r=i.data,s=i.children;return r.staticClass=(t+" "+(r.staticClass||"")).trim(),n(e,r,s)}}}function o(t,e){return Array.isArray(t)?t.concat(e):(t&&e.push(t),e)}function a(t,e,n){return void 0===e&&(e="top center 0"),{name:t,functional:!0,props:{group:{type:Boolean,default:!1},hideOnLeave:{type:Boolean,default:!1},leaveAbsolute:{type:Boolean,default:!1},mode:{type:String,default:n},origin:{type:String,default:e}},render:function(e,n){var i="transition"+(n.props.group?"-group":"");n.data=n.data||{},n.data.props={name:t,mode:n.props.mode},n.data.on=n.data.on||{},Object.isExtensible(n.data.on)||(n.data.on=r({},n.data.on));var s=[],a=[];s.push(function(t){t.style.transformOrigin=n.props.origin,t.style.webkitTransformOrigin=n.props.origin}),n.props.leaveAbsolute&&a.push(function(t){return t.style.position="absolute"}),n.props.hideOnLeave&&a.push(function(t){return t.style.display="none"});var l=n.data.on,c=l.beforeEnter,u=l.leave;return n.data.on.beforeEnter=function(){return o(c,s)},n.data.on.leave=o(u,a),e(i,n.data,n.children)}}}function l(t,e,n){return void 0===n&&(n="in-out"),{name:t,functional:!0,props:{mode:{type:String,default:n}},render:function(n,i){return n("transition",{props:r({},i.props,{name:t}),on:e},i.children)}}}function c(t,e){return void 0===e&&(e={}),r({},e,t.modifiers,{value:t.arg},t.value||{})}function u(t,e,n){t.addEventListener(e,function i(){n(),t.removeEventListener(e,i,!1)},!1)}function h(t,e,n){var i=e.length-1;if(i<0)return void 0===t?n:t;for(var r=0;r<i;r++){if(null==t)return n;t=t[e[r]]}return null==t?n:void 0===t[e[i]]?n:t[e[i]]}function d(t,e){if(t===e)return!0;if(t instanceof Date&&e instanceof Date&&t.getTime()!==e.getTime())return!1;if(t!==Object(t)||e!==Object(e))return!1;var n=Object.keys(t);return n.length===Object.keys(e).length&&n.every(function(n){return d(t[n],e[n])})}function p(t,e,n){return e&&e.constructor===String?h(t,(e=(e=e.replace(/\[(\w+)\]/g,".$1")).replace(/^\./,"")).split("."),n):n}function f(t,e,n){if(null==e)return void 0===t?n:t;if(t!==Object(t))return void 0===n?t:n;if("string"==typeof e)return p(t,e,n);if(Array.isArray(e))return h(t,e,n);if("function"!=typeof e)return n;var i=e(t,n);return void 0===i?n:i}function m(t){return Array.from({length:t},function(t,e){return e})}function v(t){if(!t||t.nodeType!==Node.ELEMENT_NODE)return 0;var e=+window.getComputedStyle(t).getPropertyValue("z-index");return isNaN(e)?v(t.parentNode):e}var g={"&":"&amp;","<":"&lt;",">":"&gt;"};function _(t){return t.replace(/[&<>]/g,function(t){return g[t]||t})}function b(t,e){for(var n={},i=0;i<e.length;i++){var r=e[i];void 0!==t[r]&&(n[r]=t[r])}return n}function y(t,e){return void 0===t&&(t=[]),t.filter(function(t){return t.componentOptions&&t.componentOptions.Ctor.options.name===e})}function x(t,e){return void 0===e&&(e="px"),null==t||""===t?void 0:isNaN(+t)?String(t):""+Number(t)+e}function k(t){return(t||"").replace(/([a-z])([A-Z])/g,"$1-$2").toLowerCase()}function w(t){return null!==t&&"object"===(void 0===t?"undefined":i(t))}var C=Object.freeze({enter:13,tab:9,delete:46,esc:27,space:32,up:38,down:40,left:37,right:39,end:35,home:36,del:46,backspace:8,insert:45,pageup:33,pagedown:34}),S="$vuetify.icons.";function T(t,e){return e.startsWith(S)?p(t,e,e):e}function V(t){return Object.keys(t)}var $=/-(\w)/g,j=function(t){return t.replace($,function(t,e){return e?e.toUpperCase():""})}},"./src/util/mask.js": /*!**************************!*\ !*** ./src/util/mask.js ***! \**************************/ /*! exports provided: defaultDelimiters, isMaskDelimiter, maskText, unmaskText */function(t,e,n){"use strict";n.r(e),n.d(e,"defaultDelimiters",function(){return i}),n.d(e,"isMaskDelimiter",function(){return r}),n.d(e,"maskText",function(){return c}),n.d(e,"unmaskText",function(){return u});var i=/[-!$%^&*()_+|~=`{}[\]:";'<>?,./\\ ]/,r=function(t){return t&&i.test(t)},s={"#":{test:function(t){return t.match(/[0-9]/)}},A:{test:function(t){return t.match(/[A-Z]/i)},convert:function(t){return t.toUpperCase()}},a:{test:function(t){return t.match(/[a-z]/i)},convert:function(t){return t.toLowerCase()}},N:{test:function(t){return t.match(/[0-9A-Z]/i)},convert:function(t){return t.toUpperCase()}},n:{test:function(t){return t.match(/[0-9a-z]/i)},convert:function(t){return t.toLowerCase()}},X:{test:r}},o=function(t){return s.hasOwnProperty(t)},a=function(t,e){return s[t].convert?s[t].convert(e):e},l=function(t,e){return!(null==e||!o(t))&&s[t].test(e)},c=function(t,e,n){if(null==t)return"";if(t=String(t),!e.length||!t.length)return t;Array.isArray(e)||(e=e.split(""));for(var i=0,r=0,s="";r<e.length;){var c=e[r],u=t[i];if(o(c)||u!==c)if(o(c)||n){if(!l(c,u))return s;s+=a(c,u),i++}else s+=c;else s+=c,i++;r++}return s},u=function(t){return t?String(t).replace(new RegExp(i,"g"),""):t}},"./src/util/mixins.ts": /*!****************************!*\ !*** ./src/util/mixins.ts ***! \****************************/ /*! exports provided: default */function(t,e,n){"use strict";n.r(e),n.d(e,"default",function(){return s});var i=n(/*! vue */"vue"),r=n.n(i);function s(){for(var t=[],e=0;e<arguments.length;e++)t[e]=arguments[e];return r.a.extend({mixins:t})}},"./src/util/rebuildFunctionalSlots.js": /*!********************************************!*\ !*** ./src/util/rebuildFunctionalSlots.js ***! \********************************************/ /*! exports provided: default */function(t,e,n){"use strict";function i(t,e){var n=[];for(var i in t)t.hasOwnProperty(i)&&n.push(e("template",{slot:i},t[i]));return n}n.r(e),n.d(e,"default",function(){return i})},"./src/util/theme.ts": /*!***************************!*\ !*** ./src/util/theme.ts ***! \***************************/ /*! exports provided: parse, genStyles, genVariations */function(t,e,n){"use strict";n.r(e),n.d(e,"parse",function(){return l}),n.d(e,"genStyles",function(){return p}),n.d(e,"genVariations",function(){return f});var i=n(/*! ./colorUtils */"./src/util/colorUtils.ts"),r=n(/*! ./color/transformSRGB */"./src/util/color/transformSRGB.ts"),s=n(/*! ./color/transformCIELAB */"./src/util/color/transformCIELAB.ts"),o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},a=function(t,e){var n="function"==typeof Symbol&&t[Symbol.iterator];if(!n)return t;var i,r,s=n.call(t),o=[];try{for(;(void 0===e||e-- >0)&&!(i=s.next()).done;)o.push(i.value)}catch(t){r={error:t}}finally{try{i&&!i.done&&(n=s.return)&&n.call(s)}finally{if(r)throw r.error}}return o};function l(t,e){void 0===e&&(e=!1);for(var n=Object.keys(t),r={},s=0;s<n.length;++s){var a=n[s],c=t[a];e?("base"===a||a.startsWith("lighten")||a.startsWith("darken"))&&(r[a]=Object(i.colorToHex)(c)):"object"===(void 0===c?"undefined":o(c))?r[a]=l(c,!0):r[a]=f(a,Object(i.colorToInt)(c))}return r}var c=function(t,e){return"\n."+t+" {\n background-color: "+e+" !important;\n border-color: "+e+" !important;\n}\n."+t+"--text {\n color: "+e+" !important;\n caret-color: "+e+" !important;\n}"},u=function(t,e,n){var i=a(e.split(/(\d)/,2),2),r=i[0],s=i[1];return"\n."+t+"."+r+"-"+s+" {\n background-color: "+n+" !important;\n border-color: "+n+" !important;\n}\n."+t+"--text.text--"+r+"-"+s+" {\n color: "+n+" !important;\n caret-color: "+n+" !important;\n}"},h=function(t,e){return void 0===e&&(e="base"),"--v-"+t+"-"+e},d=function(t,e){return void 0===e&&(e="base"),"var("+h(t,e)+")"};function p(t,e){void 0===e&&(e=!1);var n=Object.keys(t);if(!n.length)return"";var i="",r="";r+="a { color: "+(e?d("primary"):t.primary.base)+"; }";for(var s=0;s<n.length;++s){var a=n[s],l=t[a];if("object"===(void 0===l?"undefined":o(l))){r+=c(a,e?d(a):l.base),e&&(i+=" "+h(a)+": "+l.base+";\n");for(var p=Object.keys(l),f=0;f<p.length;++f){var m=p[f],v=l[m];"base"!==m&&(r+=u(a,m,e?d(a,m):v),e&&(i+=" "+h(a,m)+": "+v+";\n"))}}}return e&&(i=":root {\n"+i+"}\n\n"),i+r}function f(t,e){for(var n={base:Object(i.intToHex)(e)},r=5;r>0;--r)n["lighten"+r]=Object(i.intToHex)(m(e,r));for(r=1;r<=4;++r)n["darken"+r]=Object(i.intToHex)(v(e,r));return n}function m(t,e){var n=s.fromXYZ(r.toXYZ(t));return n[0]=n[0]+10*e,r.fromXYZ(s.toXYZ(n))}function v(t,e){var n=s.fromXYZ(r.toXYZ(t));return n[0]=n[0]-10*e,r.fromXYZ(s.toXYZ(n))}},vue: /*!******************************************************************************!*\ !*** external {"commonjs":"vue","commonjs2":"vue","amd":"vue","root":"Vue"} ***! \******************************************************************************/ /*! no static exports found */function(e,n){e.exports=t}}).default},t.exports=i(n("7+uW"))},"7+uW":function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),function(t){ /*! * Vue.js v2.5.17 * (c) 2014-2018 Evan You * Released under the MIT License. */ var n=Object.freeze({});function i(t){return void 0===t||null===t}function r(t){return void 0!==t&&null!==t}function s(t){return!0===t}function o(t){return"string"==typeof t||"number"==typeof t||"symbol"==typeof t||"boolean"==typeof t}function a(t){return null!==t&&"object"==typeof t}var l=Object.prototype.toString;function c(t){return"[object Object]"===l.call(t)}function u(t){return"[object RegExp]"===l.call(t)}function h(t){var e=parseFloat(String(t));return e>=0&&Math.floor(e)===e&&isFinite(t)}function d(t){return null==t?"":"object"==typeof t?JSON.stringify(t,null,2):String(t)}function p(t){var e=parseFloat(t);return isNaN(e)?t:e}function f(t,e){for(var n=Object.create(null),i=t.split(","),r=0;r<i.length;r++)n[i[r]]=!0;return e?function(t){return n[t.toLowerCase()]}:function(t){return n[t]}}var m=f("slot,component",!0),v=f("key,ref,slot,slot-scope,is");function g(t,e){if(t.length){var n=t.indexOf(e);if(n>-1)return t.splice(n,1)}}var _=Object.prototype.hasOwnProperty;function b(t,e){return _.call(t,e)}function y(t){var e=Object.create(null);return function(n){return e[n]||(e[n]=t(n))}}var x=/-(\w)/g,k=y(function(t){return t.replace(x,function(t,e){return e?e.toUpperCase():""})}),w=y(function(t){return t.charAt(0).toUpperCase()+t.slice(1)}),C=/\B([A-Z])/g,S=y(function(t){return t.replace(C,"-$1").toLowerCase()});var T=Function.prototype.bind?function(t,e){return t.bind(e)}:function(t,e){function n(n){var i=arguments.length;return i?i>1?t.apply(e,arguments):t.call(e,n):t.call(e)}return n._length=t.length,n};function V(t,e){e=e||0;for(var n=t.length-e,i=new Array(n);n--;)i[n]=t[n+e];return i}function $(t,e){for(var n in e)t[n]=e[n];return t}function j(t){for(var e={},n=0;n<t.length;n++)t[n]&&$(e,t[n]);return e}function O(t,e,n){}var A=function(t,e,n){return!1},I=function(t){return t};function D(t,e){if(t===e)return!0;var n=a(t),i=a(e);if(!n||!i)return!n&&!i&&String(t)===String(e);try{var r=Array.isArray(t),s=Array.isArray(e);if(r&&s)return t.length===e.length&&t.every(function(t,n){return D(t,e[n])});if(r||s)return!1;var o=Object.keys(t),l=Object.keys(e);return o.length===l.length&&o.every(function(n){return D(t[n],e[n])})}catch(t){return!1}}function E(t,e){for(var n=0;n<t.length;n++)if(D(t[n],e))return n;return-1}function P(t){var e=!1;return function(){e||(e=!0,t.apply(this,arguments))}}var L="data-server-rendered",B=["component","directive","filter"],M=["beforeCreate","created","beforeMount","mounted","beforeUpdate","updated","beforeDestroy","destroyed","activated","deactivated","errorCaptured"],F={optionMergeStrategies:Object.create(null),silent:!1,productionTip:!1,devtools:!1,performance:!1,errorHandler:null,warnHandler:null,ignoredElements:[],keyCodes:Object.create(null),isReservedTag:A,isReservedAttr:A,isUnknownElement:A,getTagNamespace:O,parsePlatformTagName:I,mustUseProp:A,_lifecycleHooks:M};function R(t){var e=(t+"").charCodeAt(0);return 36===e||95===e}function z(t,e,n,i){Object.defineProperty(t,e,{value:n,enumerable:!!i,writable:!0,configurable:!0})}var N=/[^\w.$]/;var q,H="__proto__"in{},W="undefined"!=typeof window,U="undefined"!=typeof WXEnvironment&&!!WXEnvironment.platform,K=U&&WXEnvironment.platform.toLowerCase(),G=W&&window.navigator.userAgent.toLowerCase(),Y=G&&/msie|trident/.test(G),X=G&&G.indexOf("msie 9.0")>0,Z=G&&G.indexOf("edge/")>0,J=(G&&G.indexOf("android"),G&&/iphone|ipad|ipod|ios/.test(G)||"ios"===K),Q=(G&&/chrome\/\d+/.test(G),{}.watch),tt=!1;if(W)try{var et={};Object.defineProperty(et,"passive",{get:function(){tt=!0}}),window.addEventListener("test-passive",null,et)}catch(t){}var nt=function(){return void 0===q&&(q=!W&&!U&&void 0!==t&&"server"===t.process.env.VUE_ENV),q},it=W&&window.__VUE_DEVTOOLS_GLOBAL_HOOK__;function rt(t){return"function"==typeof t&&/native code/.test(t.toString())}var st,ot="undefined"!=typeof Symbol&&rt(Symbol)&&"undefined"!=typeof Reflect&&rt(Reflect.ownKeys);st="undefined"!=typeof Set&&rt(Set)?Set:function(){function t(){this.set=Object.create(null)}return t.prototype.has=function(t){return!0===this.set[t]},t.prototype.add=function(t){this.set[t]=!0},t.prototype.clear=function(){this.set=Object.create(null)},t}();var at=O,lt=0,ct=function(){this.id=lt++,this.subs=[]};ct.prototype.addSub=function(t){this.subs.push(t)},ct.prototype.removeSub=function(t){g(this.subs,t)},ct.prototype.depend=function(){ct.target&&ct.target.addDep(this)},ct.prototype.notify=function(){for(var t=this.subs.slice(),e=0,n=t.length;e<n;e++)t[e].update()},ct.target=null;var ut=[];function ht(t){ct.target&&ut.push(ct.target),ct.target=t}function dt(){ct.target=ut.pop()}var pt=function(t,e,n,i,r,s,o,a){this.tag=t,this.data=e,this.children=n,this.text=i,this.elm=r,this.ns=void 0,this.context=s,this.fnContext=void 0,this.fnOptions=void 0,this.fnScopeId=void 0,this.key=e&&e.key,this.componentOptions=o,this.componentInstance=void 0,this.parent=void 0,this.raw=!1,this.isStatic=!1,this.isRootInsert=!0,this.isComment=!1,this.isCloned=!1,this.isOnce=!1,this.asyncFactory=a,this.asyncMeta=void 0,this.isAsyncPlaceholder=!1},ft={child:{configurable:!0}};ft.child.get=function(){return this.componentInstance},Object.defineProperties(pt.prototype,ft);var mt=function(t){void 0===t&&(t="");var e=new pt;return e.text=t,e.isComment=!0,e};function vt(t){return new pt(void 0,void 0,void 0,String(t))}function gt(t){var e=new pt(t.tag,t.data,t.children,t.text,t.elm,t.context,t.componentOptions,t.asyncFactory);return e.ns=t.ns,e.isStatic=t.isStatic,e.key=t.key,e.isComment=t.isComment,e.fnContext=t.fnContext,e.fnOptions=t.fnOptions,e.fnScopeId=t.fnScopeId,e.isCloned=!0,e}var _t=Array.prototype,bt=Object.create(_t);["push","pop","shift","unshift","splice","sort","reverse"].forEach(function(t){var e=_t[t];z(bt,t,function(){for(var n=[],i=arguments.length;i--;)n[i]=arguments[i];var r,s=e.apply(this,n),o=this.__ob__;switch(t){case"push":case"unshift":r=n;break;case"splice":r=n.slice(2)}return r&&o.observeArray(r),o.dep.notify(),s})});var yt=Object.getOwnPropertyNames(bt),xt=!0;function kt(t){xt=t}var wt=function(t){(this.value=t,this.dep=new ct,this.vmCount=0,z(t,"__ob__",this),Array.isArray(t))?((H?Ct:St)(t,bt,yt),this.observeArray(t)):this.walk(t)};function Ct(t,e,n){t.__proto__=e}function St(t,e,n){for(var i=0,r=n.length;i<r;i++){var s=n[i];z(t,s,e[s])}}function Tt(t,e){var n;if(a(t)&&!(t instanceof pt))return b(t,"__ob__")&&t.__ob__ instanceof wt?n=t.__ob__:xt&&!nt()&&(Array.isArray(t)||c(t))&&Object.isExtensible(t)&&!t._isVue&&(n=new wt(t)),e&&n&&n.vmCount++,n}function Vt(t,e,n,i,r){var s=new ct,o=Object.getOwnPropertyDescriptor(t,e);if(!o||!1!==o.configurable){var a=o&&o.get;a||2!==arguments.length||(n=t[e]);var l=o&&o.set,c=!r&&Tt(n);Object.defineProperty(t,e,{enumerable:!0,configurable:!0,get:function(){var e=a?a.call(t):n;return ct.target&&(s.depend(),c&&(c.dep.depend(),Array.isArray(e)&&function t(e){for(var n=void 0,i=0,r=e.length;i<r;i++)(n=e[i])&&n.__ob__&&n.__ob__.dep.depend(),Array.isArray(n)&&t(n)}(e))),e},set:function(e){var i=a?a.call(t):n;e===i||e!=e&&i!=i||(l?l.call(t,e):n=e,c=!r&&Tt(e),s.notify())}})}}function $t(t,e,n){if(Array.isArray(t)&&h(e))return t.length=Math.max(t.length,e),t.splice(e,1,n),n;if(e in t&&!(e in Object.prototype))return t[e]=n,n;var i=t.__ob__;return t._isVue||i&&i.vmCount?n:i?(Vt(i.value,e,n),i.dep.notify(),n):(t[e]=n,n)}function jt(t,e){if(Array.isArray(t)&&h(e))t.splice(e,1);else{var n=t.__ob__;t._isVue||n&&n.vmCount||b(t,e)&&(delete t[e],n&&n.dep.notify())}}wt.prototype.walk=function(t){for(var e=Object.keys(t),n=0;n<e.length;n++)Vt(t,e[n])},wt.prototype.observeArray=function(t){for(var e=0,n=t.length;e<n;e++)Tt(t[e])};var Ot=F.optionMergeStrategies;function At(t,e){if(!e)return t;for(var n,i,r,s=Object.keys(e),o=0;o<s.length;o++)i=t[n=s[o]],r=e[n],b(t,n)?c(i)&&c(r)&&At(i,r):$t(t,n,r);return t}function It(t,e,n){return n?function(){var i="function"==typeof e?e.call(n,n):e,r="function"==typeof t?t.call(n,n):t;return i?At(i,r):r}:e?t?function(){return At("function"==typeof e?e.call(this,this):e,"function"==typeof t?t.call(this,this):t)}:e:t}function Dt(t,e){return e?t?t.concat(e):Array.isArray(e)?e:[e]:t}function Et(t,e,n,i){var r=Object.create(t||null);return e?$(r,e):r}Ot.data=function(t,e,n){return n?It(t,e,n):e&&"function"!=typeof e?t:It(t,e)},M.forEach(function(t){Ot[t]=Dt}),B.forEach(function(t){Ot[t+"s"]=Et}),Ot.watch=function(t,e,n,i){if(t===Q&&(t=void 0),e===Q&&(e=void 0),!e)return Object.create(t||null);if(!t)return e;var r={};for(var s in $(r,t),e){var o=r[s],a=e[s];o&&!Array.isArray(o)&&(o=[o]),r[s]=o?o.concat(a):Array.isArray(a)?a:[a]}return r},Ot.props=Ot.methods=Ot.inject=Ot.computed=function(t,e,n,i){if(!t)return e;var r=Object.create(null);return $(r,t),e&&$(r,e),r},Ot.provide=It;var Pt=function(t,e){return void 0===e?t:e};function Lt(t,e,n){"function"==typeof e&&(e=e.options),function(t,e){var n=t.props;if(n){var i,r,s={};if(Array.isArray(n))for(i=n.length;i--;)"string"==typeof(r=n[i])&&(s[k(r)]={type:null});else if(c(n))for(var o in n)r=n[o],s[k(o)]=c(r)?r:{type:r};t.props=s}}(e),function(t,e){var n=t.inject;if(n){var i=t.inject={};if(Array.isArray(n))for(var r=0;r<n.length;r++)i[n[r]]={from:n[r]};else if(c(n))for(var s in n){var o=n[s];i[s]=c(o)?$({from:s},o):{from:o}}}}(e),function(t){var e=t.directives;if(e)for(var n in e){var i=e[n];"function"==typeof i&&(e[n]={bind:i,update:i})}}(e);var i=e.extends;if(i&&(t=Lt(t,i,n)),e.mixins)for(var r=0,s=e.mixins.length;r<s;r++)t=Lt(t,e.mixins[r],n);var o,a={};for(o in t)l(o);for(o in e)b(t,o)||l(o);function l(i){var r=Ot[i]||Pt;a[i]=r(t[i],e[i],n,i)}return a}function Bt(t,e,n,i){if("string"==typeof n){var r=t[e];if(b(r,n))return r[n];var s=k(n);if(b(r,s))return r[s];var o=w(s);return b(r,o)?r[o]:r[n]||r[s]||r[o]}}function Mt(t,e,n,i){var r=e[t],s=!b(n,t),o=n[t],a=zt(Boolean,r.type);if(a>-1)if(s&&!b(r,"default"))o=!1;else if(""===o||o===S(t)){var l=zt(String,r.type);(l<0||a<l)&&(o=!0)}if(void 0===o){o=function(t,e,n){if(!b(e,"default"))return;var i=e.default;0;if(t&&t.$options.propsData&&void 0===t.$options.propsData[n]&&void 0!==t._props[n])return t._props[n];return"function"==typeof i&&"Function"!==Ft(e.type)?i.call(t):i}(i,r,t);var c=xt;kt(!0),Tt(o),kt(c)}return o}function Ft(t){var e=t&&t.toString().match(/^\s*function (\w+)/);return e?e[1]:""}function Rt(t,e){return Ft(t)===Ft(e)}function zt(t,e){if(!Array.isArray(e))return Rt(e,t)?0:-1;for(var n=0,i=e.length;n<i;n++)if(Rt(e[n],t))return n;return-1}function Nt(t,e,n){if(e)for(var i=e;i=i.$parent;){var r=i.$options.errorCaptured;if(r)for(var s=0;s<r.length;s++)try{if(!1===r[s].call(i,t,e,n))return}catch(t){qt(t,i,"errorCaptured hook")}}qt(t,e,n)}function qt(t,e,n){if(F.errorHandler)try{return F.errorHandler.call(null,t,e,n)}catch(t){Ht(t,null,"config.errorHandler")}Ht(t,e,n)}function Ht(t,e,n){if(!W&&!U||"undefined"==typeof console)throw t;console.error(t)}var Wt,Ut,Kt=[],Gt=!1;function Yt(){Gt=!1;var t=Kt.slice(0);Kt.length=0;for(var e=0;e<t.length;e++)t[e]()}var Xt=!1;if("undefined"!=typeof setImmediate&&rt(setImmediate))Ut=function(){setImmediate(Yt)};else if("undefined"==typeof MessageChannel||!rt(MessageChannel)&&"[object MessageChannelConstructor]"!==MessageChannel.toString())Ut=function(){setTimeout(Yt,0)};else{var Zt=new MessageChannel,Jt=Zt.port2;Zt.port1.onmessage=Yt,Ut=function(){Jt.postMessage(1)}}if("undefined"!=typeof Promise&&rt(Promise)){var Qt=Promise.resolve();Wt=function(){Qt.then(Yt),J&&setTimeout(O)}}else Wt=Ut;function te(t,e){var n;if(Kt.push(function(){if(t)try{t.call(e)}catch(t){Nt(t,e,"nextTick")}else n&&n(e)}),Gt||(Gt=!0,Xt?Ut():Wt()),!t&&"undefined"!=typeof Promise)return new Promise(function(t){n=t})}var ee=new st;function ne(t){!function t(e,n){var i,r;var s=Array.isArray(e);if(!s&&!a(e)||Object.isFrozen(e)||e instanceof pt)return;if(e.__ob__){var o=e.__ob__.dep.id;if(n.has(o))return;n.add(o)}if(s)for(i=e.length;i--;)t(e[i],n);else for(r=Object.keys(e),i=r.length;i--;)t(e[r[i]],n)}(t,ee),ee.clear()}var ie,re=y(function(t){var e="&"===t.charAt(0),n="~"===(t=e?t.slice(1):t).charAt(0),i="!"===(t=n?t.slice(1):t).charAt(0);return{name:t=i?t.slice(1):t,once:n,capture:i,passive:e}});function se(t){function e(){var t=arguments,n=e.fns;if(!Array.isArray(n))return n.apply(null,arguments);for(var i=n.slice(),r=0;r<i.length;r++)i[r].apply(null,t)}return e.fns=t,e}function oe(t,e,n,r,s){var o,a,l,c;for(o in t)a=t[o],l=e[o],c=re(o),i(a)||(i(l)?(i(a.fns)&&(a=t[o]=se(a)),n(c.name,a,c.once,c.capture,c.passive,c.params)):a!==l&&(l.fns=a,t[o]=l));for(o in e)i(t[o])&&r((c=re(o)).name,e[o],c.capture)}function ae(t,e,n){var o;t instanceof pt&&(t=t.data.hook||(t.data.hook={}));var a=t[e];function l(){n.apply(this,arguments),g(o.fns,l)}i(a)?o=se([l]):r(a.fns)&&s(a.merged)?(o=a).fns.push(l):o=se([a,l]),o.merged=!0,t[e]=o}function le(t,e,n,i,s){if(r(e)){if(b(e,n))return t[n]=e[n],s||delete e[n],!0;if(b(e,i))return t[n]=e[i],s||delete e[i],!0}return!1}function ce(t){return o(t)?[vt(t)]:Array.isArray(t)?function t(e,n){var a=[];var l,c,u,h;for(l=0;l<e.length;l++)i(c=e[l])||"boolean"==typeof c||(u=a.length-1,h=a[u],Array.isArray(c)?c.length>0&&(ue((c=t(c,(n||"")+"_"+l))[0])&&ue(h)&&(a[u]=vt(h.text+c[0].text),c.shift()),a.push.apply(a,c)):o(c)?ue(h)?a[u]=vt(h.text+c):""!==c&&a.push(vt(c)):ue(c)&&ue(h)?a[u]=vt(h.text+c.text):(s(e._isVList)&&r(c.tag)&&i(c.key)&&r(n)&&(c.key="__vlist"+n+"_"+l+"__"),a.push(c)));return a}(t):void 0}function ue(t){return r(t)&&r(t.text)&&!1===t.isComment}function he(t,e){return(t.__esModule||ot&&"Module"===t[Symbol.toStringTag])&&(t=t.default),a(t)?e.extend(t):t}function de(t){return t.isComment&&t.asyncFactory}function pe(t){if(Array.isArray(t))for(var e=0;e<t.length;e++){var n=t[e];if(r(n)&&(r(n.componentOptions)||de(n)))return n}}function fe(t,e,n){n?ie.$once(t,e):ie.$on(t,e)}function me(t,e){ie.$off(t,e)}function ve(t,e,n){ie=t,oe(e,n||{},fe,me),ie=void 0}function ge(t,e){var n={};if(!t)return n;for(var i=0,r=t.length;i<r;i++){var s=t[i],o=s.data;if(o&&o.attrs&&o.attrs.slot&&delete o.attrs.slot,s.context!==e&&s.fnContext!==e||!o||null==o.slot)(n.default||(n.default=[])).push(s);else{var a=o.slot,l=n[a]||(n[a]=[]);"template"===s.tag?l.push.apply(l,s.children||[]):l.push(s)}}for(var c in n)n[c].every(_e)&&delete n[c];return n}function _e(t){return t.isComment&&!t.asyncFactory||" "===t.text}function be(t,e){e=e||{};for(var n=0;n<t.length;n++)Array.isArray(t[n])?be(t[n],e):e[t[n].key]=t[n].fn;return e}var ye=null;function xe(t){for(;t&&(t=t.$parent);)if(t._inactive)return!0;return!1}function ke(t,e){if(e){if(t._directInactive=!1,xe(t))return}else if(t._directInactive)return;if(t._inactive||null===t._inactive){t._inactive=!1;for(var n=0;n<t.$children.length;n++)ke(t.$children[n]);we(t,"activated")}}function we(t,e){ht();var n=t.$options[e];if(n)for(var i=0,r=n.length;i<r;i++)try{n[i].call(t)}catch(n){Nt(n,t,e+" hook")}t._hasHookEvent&&t.$emit("hook:"+e),dt()}var Ce=[],Se=[],Te={},Ve=!1,$e=!1,je=0;function Oe(){var t,e;for($e=!0,Ce.sort(function(t,e){return t.id-e.id}),je=0;je<Ce.length;je++)e=(t=Ce[je]).id,Te[e]=null,t.run();var n=Se.slice(),i=Ce.slice();je=Ce.length=Se.length=0,Te={},Ve=$e=!1,function(t){for(var e=0;e<t.length;e++)t[e]._inactive=!0,ke(t[e],!0)}(n),function(t){var e=t.length;for(;e--;){var n=t[e],i=n.vm;i._watcher===n&&i._isMounted&&we(i,"updated")}}(i),it&&F.devtools&&it.emit("flush")}var Ae=0,Ie=function(t,e,n,i,r){this.vm=t,r&&(t._watcher=this),t._watchers.push(this),i?(this.deep=!!i.deep,this.user=!!i.user,this.lazy=!!i.lazy,this.sync=!!i.sync):this.deep=this.user=this.lazy=this.sync=!1,this.cb=n,this.id=++Ae,this.active=!0,this.dirty=this.lazy,this.deps=[],this.newDeps=[],this.depIds=new st,this.newDepIds=new st,this.expression="","function"==typeof e?this.getter=e:(this.getter=function(t){if(!N.test(t)){var e=t.split(".");return function(t){for(var n=0;n<e.length;n++){if(!t)return;t=t[e[n]]}return t}}}(e),this.getter||(this.getter=function(){})),this.value=this.lazy?void 0:this.get()};Ie.prototype.get=function(){var t;ht(this);var e=this.vm;try{t=this.getter.call(e,e)}catch(t){if(!this.user)throw t;Nt(t,e,'getter for watcher "'+this.expression+'"')}finally{this.deep&&ne(t),dt(),this.cleanupDeps()}return t},Ie.prototype.addDep=function(t){var e=t.id;this.newDepIds.has(e)||(this.newDepIds.add(e),this.newDeps.push(t),this.depIds.has(e)||t.addSub(this))},Ie.prototype.cleanupDeps=function(){for(var t=this.deps.length;t--;){var e=this.deps[t];this.newDepIds.has(e.id)||e.removeSub(this)}var n=this.depIds;this.depIds=this.newDepIds,this.newDepIds=n,this.newDepIds.clear(),n=this.deps,this.deps=this.newDeps,this.newDeps=n,this.newDeps.length=0},Ie.prototype.update=function(){this.lazy?this.dirty=!0:this.sync?this.run():function(t){var e=t.id;if(null==Te[e]){if(Te[e]=!0,$e){for(var n=Ce.length-1;n>je&&Ce[n].id>t.id;)n--;Ce.splice(n+1,0,t)}else Ce.push(t);Ve||(Ve=!0,te(Oe))}}(this)},Ie.prototype.run=function(){if(this.active){var t=this.get();if(t!==this.value||a(t)||this.deep){var e=this.value;if(this.value=t,this.user)try{this.cb.call(this.vm,t,e)}catch(t){Nt(t,this.vm,'callback for watcher "'+this.expression+'"')}else this.cb.call(this.vm,t,e)}}},Ie.prototype.evaluate=function(){this.value=this.get(),this.dirty=!1},Ie.prototype.depend=function(){for(var t=this.deps.length;t--;)this.deps[t].depend()},Ie.prototype.teardown=function(){if(this.active){this.vm._isBeingDestroyed||g(this.vm._watchers,this);for(var t=this.deps.length;t--;)this.deps[t].removeSub(this);this.active=!1}};var De={enumerable:!0,configurable:!0,get:O,set:O};function Ee(t,e,n){De.get=function(){return this[e][n]},De.set=function(t){this[e][n]=t},Object.defineProperty(t,n,De)}function Pe(t){t._watchers=[];var e=t.$options;e.props&&function(t,e){var n=t.$options.propsData||{},i=t._props={},r=t.$options._propKeys=[];t.$parent&&kt(!1);var s=function(s){r.push(s);var o=Mt(s,e,n,t);Vt(i,s,o),s in t||Ee(t,"_props",s)};for(var o in e)s(o);kt(!0)}(t,e.props),e.methods&&function(t,e){t.$options.props;for(var n in e)t[n]=null==e[n]?O:T(e[n],t)}(t,e.methods),e.data?function(t){var e=t.$options.data;c(e=t._data="function"==typeof e?function(t,e){ht();try{return t.call(e,e)}catch(t){return Nt(t,e,"data()"),{}}finally{dt()}}(e,t):e||{})||(e={});var n=Object.keys(e),i=t.$options.props,r=(t.$options.methods,n.length);for(;r--;){var s=n[r];0,i&&b(i,s)||R(s)||Ee(t,"_data",s)}Tt(e,!0)}(t):Tt(t._data={},!0),e.computed&&function(t,e){var n=t._computedWatchers=Object.create(null),i=nt();for(var r in e){var s=e[r],o="function"==typeof s?s:s.get;0,i||(n[r]=new Ie(t,o||O,O,Le)),r in t||Be(t,r,s)}}(t,e.computed),e.watch&&e.watch!==Q&&function(t,e){for(var n in e){var i=e[n];if(Array.isArray(i))for(var r=0;r<i.length;r++)Fe(t,n,i[r]);else Fe(t,n,i)}}(t,e.watch)}var Le={lazy:!0};function Be(t,e,n){var i=!nt();"function"==typeof n?(De.get=i?Me(e):n,De.set=O):(De.get=n.get?i&&!1!==n.cache?Me(e):n.get:O,De.set=n.set?n.set:O),Object.defineProperty(t,e,De)}function Me(t){return function(){var e=this._computedWatchers&&this._computedWatchers[t];if(e)return e.dirty&&e.evaluate(),ct.target&&e.depend(),e.value}}function Fe(t,e,n,i){return c(n)&&(i=n,n=n.handler),"string"==typeof n&&(n=t[n]),t.$watch(e,n,i)}function Re(t,e){if(t){for(var n=Object.create(null),i=ot?Reflect.ownKeys(t).filter(function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}):Object.keys(t),r=0;r<i.length;r++){for(var s=i[r],o=t[s].from,a=e;a;){if(a._provided&&b(a._provided,o)){n[s]=a._provided[o];break}a=a.$parent}if(!a)if("default"in t[s]){var l=t[s].default;n[s]="function"==typeof l?l.call(e):l}else 0}return n}}function ze(t,e){var n,i,s,o,l;if(Array.isArray(t)||"string"==typeof t)for(n=new Array(t.length),i=0,s=t.length;i<s;i++)n[i]=e(t[i],i);else if("number"==typeof t)for(n=new Array(t),i=0;i<t;i++)n[i]=e(i+1,i);else if(a(t))for(o=Object.keys(t),n=new Array(o.length),i=0,s=o.length;i<s;i++)l=o[i],n[i]=e(t[l],l,i);return r(n)&&(n._isVList=!0),n}function Ne(t,e,n,i){var r,s=this.$scopedSlots[t];if(s)n=n||{},i&&(n=$($({},i),n)),r=s(n)||e;else{var o=this.$slots[t];o&&(o._rendered=!0),r=o||e}var a=n&&n.slot;return a?this.$createElement("template",{slot:a},r):r}function qe(t){return Bt(this.$options,"filters",t)||I}function He(t,e){return Array.isArray(t)?-1===t.indexOf(e):t!==e}function We(t,e,n,i,r){var s=F.keyCodes[e]||n;return r&&i&&!F.keyCodes[e]?He(r,i):s?He(s,t):i?S(i)!==e:void 0}function Ue(t,e,n,i,r){if(n)if(a(n)){var s;Array.isArray(n)&&(n=j(n));var o=function(o){if("class"===o||"style"===o||v(o))s=t;else{var a=t.attrs&&t.attrs.type;s=i||F.mustUseProp(e,a,o)?t.domProps||(t.domProps={}):t.attrs||(t.attrs={})}o in s||(s[o]=n[o],r&&((t.on||(t.on={}))["update:"+o]=function(t){n[o]=t}))};for(var l in n)o(l)}else;return t}function Ke(t,e){var n=this._staticTrees||(this._staticTrees=[]),i=n[t];return i&&!e?i:(Ye(i=n[t]=this.$options.staticRenderFns[t].call(this._renderProxy,null,this),"__static__"+t,!1),i)}function Ge(t,e,n){return Ye(t,"__once__"+e+(n?"_"+n:""),!0),t}function Ye(t,e,n){if(Array.isArray(t))for(var i=0;i<t.length;i++)t[i]&&"string"!=typeof t[i]&&Xe(t[i],e+"_"+i,n);else Xe(t,e,n)}function Xe(t,e,n){t.isStatic=!0,t.key=e,t.isOnce=n}function Ze(t,e){if(e)if(c(e)){var n=t.on=t.on?$({},t.on):{};for(var i in e){var r=n[i],s=e[i];n[i]=r?[].concat(r,s):s}}else;return t}function Je(t){t._o=Ge,t._n=p,t._s=d,t._l=ze,t._t=Ne,t._q=D,t._i=E,t._m=Ke,t._f=qe,t._k=We,t._b=Ue,t._v=vt,t._e=mt,t._u=be,t._g=Ze}function Qe(t,e,i,r,o){var a,l=o.options;b(r,"_uid")?(a=Object.create(r))._original=r:(a=r,r=r._original);var c=s(l._compiled),u=!c;this.data=t,this.props=e,this.children=i,this.parent=r,this.listeners=t.on||n,this.injections=Re(l.inject,r),this.slots=function(){return ge(i,r)},c&&(this.$options=l,this.$slots=this.slots(),this.$scopedSlots=t.scopedSlots||n),l._scopeId?this._c=function(t,e,n,i){var s=ln(a,t,e,n,i,u);return s&&!Array.isArray(s)&&(s.fnScopeId=l._scopeId,s.fnContext=r),s}:this._c=function(t,e,n,i){return ln(a,t,e,n,i,u)}}function tn(t,e,n,i){var r=gt(t);return r.fnContext=n,r.fnOptions=i,e.slot&&((r.data||(r.data={})).slot=e.slot),r}function en(t,e){for(var n in e)t[k(n)]=e[n]}Je(Qe.prototype);var nn={init:function(t,e,n,i){if(t.componentInstance&&!t.componentInstance._isDestroyed&&t.data.keepAlive){var s=t;nn.prepatch(s,s)}else{(t.componentInstance=function(t,e,n,i){var s={_isComponent:!0,parent:e,_parentVnode:t,_parentElm:n||null,_refElm:i||null},o=t.data.inlineTemplate;r(o)&&(s.render=o.render,s.staticRenderFns=o.staticRenderFns);return new t.componentOptions.Ctor(s)}(t,ye,n,i)).$mount(e?t.elm:void 0,e)}},prepatch:function(t,e){var i=e.componentOptions;!function(t,e,i,r,s){var o=!!(s||t.$options._renderChildren||r.data.scopedSlots||t.$scopedSlots!==n);if(t.$options._parentVnode=r,t.$vnode=r,t._vnode&&(t._vnode.parent=r),t.$options._renderChildren=s,t.$attrs=r.data.attrs||n,t.$listeners=i||n,e&&t.$options.props){kt(!1);for(var a=t._props,l=t.$options._propKeys||[],c=0;c<l.length;c++){var u=l[c],h=t.$options.props;a[u]=Mt(u,h,e,t)}kt(!0),t.$options.propsData=e}i=i||n;var d=t.$options._parentListeners;t.$options._parentListeners=i,ve(t,i,d),o&&(t.$slots=ge(s,r.context),t.$forceUpdate())}(e.componentInstance=t.componentInstance,i.propsData,i.listeners,e,i.children)},insert:function(t){var e,n=t.context,i=t.componentInstance;i._isMounted||(i._isMounted=!0,we(i,"mounted")),t.data.keepAlive&&(n._isMounted?((e=i)._inactive=!1,Se.push(e)):ke(i,!0))},destroy:function(t){var e=t.componentInstance;e._isDestroyed||(t.data.keepAlive?function t(e,n){if(!(n&&(e._directInactive=!0,xe(e))||e._inactive)){e._inactive=!0;for(var i=0;i<e.$children.length;i++)t(e.$children[i]);we(e,"deactivated")}}(e,!0):e.$destroy())}},rn=Object.keys(nn);function sn(t,e,o,l,c){if(!i(t)){var u=o.$options._base;if(a(t)&&(t=u.extend(t)),"function"==typeof t){var h;if(i(t.cid)&&void 0===(t=function(t,e,n){if(s(t.error)&&r(t.errorComp))return t.errorComp;if(r(t.resolved))return t.resolved;if(s(t.loading)&&r(t.loadingComp))return t.loadingComp;if(!r(t.contexts)){var o=t.contexts=[n],l=!0,c=function(){for(var t=0,e=o.length;t<e;t++)o[t].$forceUpdate()},u=P(function(n){t.resolved=he(n,e),l||c()}),h=P(function(e){r(t.errorComp)&&(t.error=!0,c())}),d=t(u,h);return a(d)&&("function"==typeof d.then?i(t.resolved)&&d.then(u,h):r(d.component)&&"function"==typeof d.component.then&&(d.component.then(u,h),r(d.error)&&(t.errorComp=he(d.error,e)),r(d.loading)&&(t.loadingComp=he(d.loading,e),0===d.delay?t.loading=!0:setTimeout(function(){i(t.resolved)&&i(t.error)&&(t.loading=!0,c())},d.delay||200)),r(d.timeout)&&setTimeout(function(){i(t.resolved)&&h(null)},d.timeout))),l=!1,t.loading?t.loadingComp:t.resolved}t.contexts.push(n)}(h=t,u,o)))return function(t,e,n,i,r){var s=mt();return s.asyncFactory=t,s.asyncMeta={data:e,context:n,children:i,tag:r},s}(h,e,o,l,c);e=e||{},un(t),r(e.model)&&function(t,e){var n=t.model&&t.model.prop||"value",i=t.model&&t.model.event||"input";(e.props||(e.props={}))[n]=e.model.value;var s=e.on||(e.on={});r(s[i])?s[i]=[e.model.callback].concat(s[i]):s[i]=e.model.callback}(t.options,e);var d=function(t,e,n){var s=e.options.props;if(!i(s)){var o={},a=t.attrs,l=t.props;if(r(a)||r(l))for(var c in s){var u=S(c);le(o,l,c,u,!0)||le(o,a,c,u,!1)}return o}}(e,t);if(s(t.options.functional))return function(t,e,i,s,o){var a=t.options,l={},c=a.props;if(r(c))for(var u in c)l[u]=Mt(u,c,e||n);else r(i.attrs)&&en(l,i.attrs),r(i.props)&&en(l,i.props);var h=new Qe(i,l,o,s,t),d=a.render.call(null,h._c,h);if(d instanceof pt)return tn(d,i,h.parent,a);if(Array.isArray(d)){for(var p=ce(d)||[],f=new Array(p.length),m=0;m<p.length;m++)f[m]=tn(p[m],i,h.parent,a);return f}}(t,d,e,o,l);var p=e.on;if(e.on=e.nativeOn,s(t.options.abstract)){var f=e.slot;e={},f&&(e.slot=f)}!function(t){for(var e=t.hook||(t.hook={}),n=0;n<rn.length;n++){var i=rn[n];e[i]=nn[i]}}(e);var m=t.options.name||c;return new pt("vue-component-"+t.cid+(m?"-"+m:""),e,void 0,void 0,void 0,o,{Ctor:t,propsData:d,listeners:p,tag:c,children:l},h)}}}var on=1,an=2;function ln(t,e,n,l,c,u){return(Array.isArray(n)||o(n))&&(c=l,l=n,n=void 0),s(u)&&(c=an),function(t,e,n,o,l){if(r(n)&&r(n.__ob__))return mt();r(n)&&r(n.is)&&(e=n.is);if(!e)return mt();0;Array.isArray(o)&&"function"==typeof o[0]&&((n=n||{}).scopedSlots={default:o[0]},o.length=0);l===an?o=ce(o):l===on&&(o=function(t){for(var e=0;e<t.length;e++)if(Array.isArray(t[e]))return Array.prototype.concat.apply([],t);return t}(o));var c,u;if("string"==typeof e){var h;u=t.$vnode&&t.$vnode.ns||F.getTagNamespace(e),c=F.isReservedTag(e)?new pt(F.parsePlatformTagName(e),n,o,void 0,void 0,t):r(h=Bt(t.$options,"components",e))?sn(h,n,t,o,e):new pt(e,n,o,void 0,void 0,t)}else c=sn(e,n,t,o);return Array.isArray(c)?c:r(c)?(r(u)&&function t(e,n,o){e.ns=n;"foreignObject"===e.tag&&(n=void 0,o=!0);if(r(e.children))for(var a=0,l=e.children.length;a<l;a++){var c=e.children[a];r(c.tag)&&(i(c.ns)||s(o)&&"svg"!==c.tag)&&t(c,n,o)}}(c,u),r(n)&&function(t){a(t.style)&&ne(t.style);a(t.class)&&ne(t.class)}(n),c):mt()}(t,e,n,l,c)}var cn=0;function un(t){var e=t.options;if(t.super){var n=un(t.super);if(n!==t.superOptions){t.superOptions=n;var i=function(t){var e,n=t.options,i=t.extendOptions,r=t.sealedOptions;for(var s in n)n[s]!==r[s]&&(e||(e={}),e[s]=hn(n[s],i[s],r[s]));return e}(t);i&&$(t.extendOptions,i),(e=t.options=Lt(n,t.extendOptions)).name&&(e.components[e.name]=t)}}return e}function hn(t,e,n){if(Array.isArray(t)){var i=[];n=Array.isArray(n)?n:[n],e=Array.isArray(e)?e:[e];for(var r=0;r<t.length;r++)(e.indexOf(t[r])>=0||n.indexOf(t[r])<0)&&i.push(t[r]);return i}return t}function dn(t){this._init(t)}function pn(t){t.cid=0;var e=1;t.extend=function(t){t=t||{};var n=this,i=n.cid,r=t._Ctor||(t._Ctor={});if(r[i])return r[i];var s=t.name||n.options.name;var o=function(t){this._init(t)};return(o.prototype=Object.create(n.prototype)).constructor=o,o.cid=e++,o.options=Lt(n.options,t),o.super=n,o.options.props&&function(t){var e=t.options.props;for(var n in e)Ee(t.prototype,"_props",n)}(o),o.options.computed&&function(t){var e=t.options.computed;for(var n in e)Be(t.prototype,n,e[n])}(o),o.extend=n.extend,o.mixin=n.mixin,o.use=n.use,B.forEach(function(t){o[t]=n[t]}),s&&(o.options.components[s]=o),o.superOptions=n.options,o.extendOptions=t,o.sealedOptions=$({},o.options),r[i]=o,o}}function fn(t){return t&&(t.Ctor.options.name||t.tag)}function mn(t,e){return Array.isArray(t)?t.indexOf(e)>-1:"string"==typeof t?t.split(",").indexOf(e)>-1:!!u(t)&&t.test(e)}function vn(t,e){var n=t.cache,i=t.keys,r=t._vnode;for(var s in n){var o=n[s];if(o){var a=fn(o.componentOptions);a&&!e(a)&&gn(n,s,i,r)}}}function gn(t,e,n,i){var r=t[e];!r||i&&r.tag===i.tag||r.componentInstance.$destroy(),t[e]=null,g(n,e)}!function(t){t.prototype._init=function(t){var e=this;e._uid=cn++,e._isVue=!0,t&&t._isComponent?function(t,e){var n=t.$options=Object.create(t.constructor.options),i=e._parentVnode;n.parent=e.parent,n._parentVnode=i,n._parentElm=e._parentElm,n._refElm=e._refElm;var r=i.componentOptions;n.propsData=r.propsData,n._parentListeners=r.listeners,n._renderChildren=r.children,n._componentTag=r.tag,e.render&&(n.render=e.render,n.staticRenderFns=e.staticRenderFns)}(e,t):e.$options=Lt(un(e.constructor),t||{},e),e._renderProxy=e,e._self=e,function(t){var e=t.$options,n=e.parent;if(n&&!e.abstract){for(;n.$options.abstract&&n.$parent;)n=n.$parent;n.$children.push(t)}t.$parent=n,t.$root=n?n.$root:t,t.$children=[],t.$refs={},t._watcher=null,t._inactive=null,t._directInactive=!1,t._isMounted=!1,t._isDestroyed=!1,t._isBeingDestroyed=!1}(e),function(t){t._events=Object.create(null),t._hasHookEvent=!1;var e=t.$options._parentListeners;e&&ve(t,e)}(e),function(t){t._vnode=null,t._staticTrees=null;var e=t.$options,i=t.$vnode=e._parentVnode,r=i&&i.context;t.$slots=ge(e._renderChildren,r),t.$scopedSlots=n,t._c=function(e,n,i,r){return ln(t,e,n,i,r,!1)},t.$createElement=function(e,n,i,r){return ln(t,e,n,i,r,!0)};var s=i&&i.data;Vt(t,"$attrs",s&&s.attrs||n,null,!0),Vt(t,"$listeners",e._parentListeners||n,null,!0)}(e),we(e,"beforeCreate"),function(t){var e=Re(t.$options.inject,t);e&&(kt(!1),Object.keys(e).forEach(function(n){Vt(t,n,e[n])}),kt(!0))}(e),Pe(e),function(t){var e=t.$options.provide;e&&(t._provided="function"==typeof e?e.call(t):e)}(e),we(e,"created"),e.$options.el&&e.$mount(e.$options.el)}}(dn),function(t){var e={get:function(){return this._data}},n={get:function(){return this._props}};Object.defineProperty(t.prototype,"$data",e),Object.defineProperty(t.prototype,"$props",n),t.prototype.$set=$t,t.prototype.$delete=jt,t.prototype.$watch=function(t,e,n){if(c(e))return Fe(this,t,e,n);(n=n||{}).user=!0;var i=new Ie(this,t,e,n);return n.immediate&&e.call(this,i.value),function(){i.teardown()}}}(dn),function(t){var e=/^hook:/;t.prototype.$on=function(t,n){if(Array.isArray(t))for(var i=0,r=t.length;i<r;i++)this.$on(t[i],n);else(this._events[t]||(this._events[t]=[])).push(n),e.test(t)&&(this._hasHookEvent=!0);return this},t.prototype.$once=function(t,e){var n=this;function i(){n.$off(t,i),e.apply(n,arguments)}return i.fn=e,n.$on(t,i),n},t.prototype.$off=function(t,e){var n=this;if(!arguments.length)return n._events=Object.create(null),n;if(Array.isArray(t)){for(var i=0,r=t.length;i<r;i++)this.$off(t[i],e);return n}var s=n._events[t];if(!s)return n;if(!e)return n._events[t]=null,n;if(e)for(var o,a=s.length;a--;)if((o=s[a])===e||o.fn===e){s.splice(a,1);break}return n},t.prototype.$emit=function(t){var e=this,n=e._events[t];if(n){n=n.length>1?V(n):n;for(var i=V(arguments,1),r=0,s=n.length;r<s;r++)try{n[r].apply(e,i)}catch(n){Nt(n,e,'event handler for "'+t+'"')}}return e}}(dn),function(t){t.prototype._update=function(t,e){var n=this;n._isMounted&&we(n,"beforeUpdate");var i=n.$el,r=n._vnode,s=ye;ye=n,n._vnode=t,r?n.$el=n.__patch__(r,t):(n.$el=n.__patch__(n.$el,t,e,!1,n.$options._parentElm,n.$options._refElm),n.$options._parentElm=n.$options._refElm=null),ye=s,i&&(i.__vue__=null),n.$el&&(n.$el.__vue__=n),n.$vnode&&n.$parent&&n.$vnode===n.$parent._vnode&&(n.$parent.$el=n.$el)},t.prototype.$forceUpdate=function(){this._watcher&&this._watcher.update()},t.prototype.$destroy=function(){var t=this;if(!t._isBeingDestroyed){we(t,"beforeDestroy"),t._isBeingDestroyed=!0;var e=t.$parent;!e||e._isBeingDestroyed||t.$options.abstract||g(e.$children,t),t._watcher&&t._watcher.teardown();for(var n=t._watchers.length;n--;)t._watchers[n].teardown();t._data.__ob__&&t._data.__ob__.vmCount--,t._isDestroyed=!0,t.__patch__(t._vnode,null),we(t,"destroyed"),t.$off(),t.$el&&(t.$el.__vue__=null),t.$vnode&&(t.$vnode.parent=null)}}}(dn),function(t){Je(t.prototype),t.prototype.$nextTick=function(t){return te(t,this)},t.prototype._render=function(){var t,e=this,i=e.$options,r=i.render,s=i._parentVnode;s&&(e.$scopedSlots=s.data.scopedSlots||n),e.$vnode=s;try{t=r.call(e._renderProxy,e.$createElement)}catch(n){Nt(n,e,"render"),t=e._vnode}return t instanceof pt||(t=mt()),t.parent=s,t}}(dn);var _n=[String,RegExp,Array],bn={KeepAlive:{name:"keep-alive",abstract:!0,props:{include:_n,exclude:_n,max:[String,Number]},created:function(){this.cache=Object.create(null),this.keys=[]},destroyed:function(){for(var t in this.cache)gn(this.cache,t,this.keys)},mounted:function(){var t=this;this.$watch("include",function(e){vn(t,function(t){return mn(e,t)})}),this.$watch("exclude",function(e){vn(t,function(t){return!mn(e,t)})})},render:function(){var t=this.$slots.default,e=pe(t),n=e&&e.componentOptions;if(n){var i=fn(n),r=this.include,s=this.exclude;if(r&&(!i||!mn(r,i))||s&&i&&mn(s,i))return e;var o=this.cache,a=this.keys,l=null==e.key?n.Ctor.cid+(n.tag?"::"+n.tag:""):e.key;o[l]?(e.componentInstance=o[l].componentInstance,g(a,l),a.push(l)):(o[l]=e,a.push(l),this.max&&a.length>parseInt(this.max)&&gn(o,a[0],a,this._vnode)),e.data.keepAlive=!0}return e||t&&t[0]}}};!function(t){var e={get:function(){return F}};Object.defineProperty(t,"config",e),t.util={warn:at,extend:$,mergeOptions:Lt,defineReactive:Vt},t.set=$t,t.delete=jt,t.nextTick=te,t.options=Object.create(null),B.forEach(function(e){t.options[e+"s"]=Object.create(null)}),t.options._base=t,$(t.options.components,bn),function(t){t.use=function(t){var e=this._installedPlugins||(this._installedPlugins=[]);if(e.indexOf(t)>-1)return this;var n=V(arguments,1);return n.unshift(this),"function"==typeof t.install?t.install.apply(t,n):"function"==typeof t&&t.apply(null,n),e.push(t),this}}(t),function(t){t.mixin=function(t){return this.options=Lt(this.options,t),this}}(t),pn(t),function(t){B.forEach(function(e){t[e]=function(t,n){return n?("component"===e&&c(n)&&(n.name=n.name||t,n=this.options._base.extend(n)),"directive"===e&&"function"==typeof n&&(n={bind:n,update:n}),this.options[e+"s"][t]=n,n):this.options[e+"s"][t]}})}(t)}(dn),Object.defineProperty(dn.prototype,"$isServer",{get:nt}),Object.defineProperty(dn.prototype,"$ssrContext",{get:function(){return this.$vnode&&this.$vnode.ssrContext}}),Object.defineProperty(dn,"FunctionalRenderContext",{value:Qe}),dn.version="2.5.17";var yn=f("style,class"),xn=f("input,textarea,option,select,progress"),kn=function(t,e,n){return"value"===n&&xn(t)&&"button"!==e||"selected"===n&&"option"===t||"checked"===n&&"input"===t||"muted"===n&&"video"===t},wn=f("contenteditable,draggable,spellcheck"),Cn=f("allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,default,defaultchecked,defaultmuted,defaultselected,defer,disabled,enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,muted,nohref,noresize,noshade,novalidate,nowrap,open,pauseonexit,readonly,required,reversed,scoped,seamless,selected,sortable,translate,truespeed,typemustmatch,visible"),Sn="http://www.w3.org/1999/xlink",Tn=function(t){return":"===t.charAt(5)&&"xlink"===t.slice(0,5)},Vn=function(t){return Tn(t)?t.slice(6,t.length):""},$n=function(t){return null==t||!1===t};function jn(t){for(var e=t.data,n=t,i=t;r(i.componentInstance);)(i=i.componentInstance._vnode)&&i.data&&(e=On(i.data,e));for(;r(n=n.parent);)n&&n.data&&(e=On(e,n.data));return function(t,e){if(r(t)||r(e))return An(t,In(e));return""}(e.staticClass,e.class)}function On(t,e){return{staticClass:An(t.staticClass,e.staticClass),class:r(t.class)?[t.class,e.class]:e.class}}function An(t,e){return t?e?t+" "+e:t:e||""}function In(t){return Array.isArray(t)?function(t){for(var e,n="",i=0,s=t.length;i<s;i++)r(e=In(t[i]))&&""!==e&&(n&&(n+=" "),n+=e);return n}(t):a(t)?function(t){var e="";for(var n in t)t[n]&&(e&&(e+=" "),e+=n);return e}(t):"string"==typeof t?t:""}var Dn={svg:"http://www.w3.org/2000/svg",math:"http://www.w3.org/1998/Math/MathML"},En=f("html,body,base,head,link,meta,style,title,address,article,aside,footer,header,h1,h2,h3,h4,h5,h6,hgroup,nav,section,div,dd,dl,dt,figcaption,figure,picture,hr,img,li,main,ol,p,pre,ul,a,b,abbr,bdi,bdo,br,cite,code,data,dfn,em,i,kbd,mark,q,rp,rt,rtc,ruby,s,samp,small,span,strong,sub,sup,time,u,var,wbr,area,audio,map,track,video,embed,object,param,source,canvas,script,noscript,del,ins,caption,col,colgroup,table,thead,tbody,td,th,tr,button,datalist,fieldset,form,input,label,legend,meter,optgroup,option,output,progress,select,textarea,details,dialog,menu,menuitem,summary,content,element,shadow,template,blockquote,iframe,tfoot"),Pn=f("svg,animate,circle,clippath,cursor,defs,desc,ellipse,filter,font-face,foreignObject,g,glyph,image,line,marker,mask,missing-glyph,path,pattern,polygon,polyline,rect,switch,symbol,text,textpath,tspan,use,view",!0),Ln=function(t){return En(t)||Pn(t)};function Bn(t){return Pn(t)?"svg":"math"===t?"math":void 0}var Mn=Object.create(null);var Fn=f("text,number,password,search,email,tel,url");function Rn(t){if("string"==typeof t){var e=document.querySelector(t);return e||document.createElement("div")}return t}var zn=Object.freeze({createElement:function(t,e){var n=document.createElement(t);return"select"!==t?n:(e.data&&e.data.attrs&&void 0!==e.data.attrs.multiple&&n.setAttribute("multiple","multiple"),n)},createElementNS:function(t,e){return document.createElementNS(Dn[t],e)},createTextNode:function(t){return document.createTextNode(t)},createComment:function(t){return document.createComment(t)},insertBefore:function(t,e,n){t.insertBefore(e,n)},removeChild:function(t,e){t.removeChild(e)},appendChild:function(t,e){t.appendChild(e)},parentNode:function(t){return t.parentNode},nextSibling:function(t){return t.nextSibling},tagName:function(t){return t.tagName},setTextContent:function(t,e){t.textContent=e},setStyleScope:function(t,e){t.setAttribute(e,"")}}),Nn={create:function(t,e){qn(e)},update:function(t,e){t.data.ref!==e.data.ref&&(qn(t,!0),qn(e))},destroy:function(t){qn(t,!0)}};function qn(t,e){var n=t.data.ref;if(r(n)){var i=t.context,s=t.componentInstance||t.elm,o=i.$refs;e?Array.isArray(o[n])?g(o[n],s):o[n]===s&&(o[n]=void 0):t.data.refInFor?Array.isArray(o[n])?o[n].indexOf(s)<0&&o[n].push(s):o[n]=[s]:o[n]=s}}var Hn=new pt("",{},[]),Wn=["create","activate","update","remove","destroy"];function Un(t,e){return t.key===e.key&&(t.tag===e.tag&&t.isComment===e.isComment&&r(t.data)===r(e.data)&&function(t,e){if("input"!==t.tag)return!0;var n,i=r(n=t.data)&&r(n=n.attrs)&&n.type,s=r(n=e.data)&&r(n=n.attrs)&&n.type;return i===s||Fn(i)&&Fn(s)}(t,e)||s(t.isAsyncPlaceholder)&&t.asyncFactory===e.asyncFactory&&i(e.asyncFactory.error))}function Kn(t,e,n){var i,s,o={};for(i=e;i<=n;++i)r(s=t[i].key)&&(o[s]=i);return o}var Gn={create:Yn,update:Yn,destroy:function(t){Yn(t,Hn)}};function Yn(t,e){(t.data.directives||e.data.directives)&&function(t,e){var n,i,r,s=t===Hn,o=e===Hn,a=Zn(t.data.directives,t.context),l=Zn(e.data.directives,e.context),c=[],u=[];for(n in l)i=a[n],r=l[n],i?(r.oldValue=i.value,Qn(r,"update",e,t),r.def&&r.def.componentUpdated&&u.push(r)):(Qn(r,"bind",e,t),r.def&&r.def.inserted&&c.push(r));if(c.length){var h=function(){for(var n=0;n<c.length;n++)Qn(c[n],"inserted",e,t)};s?ae(e,"insert",h):h()}u.length&&ae(e,"postpatch",function(){for(var n=0;n<u.length;n++)Qn(u[n],"componentUpdated",e,t)});if(!s)for(n in a)l[n]||Qn(a[n],"unbind",t,t,o)}(t,e)}var Xn=Object.create(null);function Zn(t,e){var n,i,r=Object.create(null);if(!t)return r;for(n=0;n<t.length;n++)(i=t[n]).modifiers||(i.modifiers=Xn),r[Jn(i)]=i,i.def=Bt(e.$options,"directives",i.name);return r}function Jn(t){return t.rawName||t.name+"."+Object.keys(t.modifiers||{}).join(".")}function Qn(t,e,n,i,r){var s=t.def&&t.def[e];if(s)try{s(n.elm,t,n,i,r)}catch(i){Nt(i,n.context,"directive "+t.name+" "+e+" hook")}}var ti=[Nn,Gn];function ei(t,e){var n=e.componentOptions;if(!(r(n)&&!1===n.Ctor.options.inheritAttrs||i(t.data.attrs)&&i(e.data.attrs))){var s,o,a=e.elm,l=t.data.attrs||{},c=e.data.attrs||{};for(s in r(c.__ob__)&&(c=e.data.attrs=$({},c)),c)o=c[s],l[s]!==o&&ni(a,s,o);for(s in(Y||Z)&&c.value!==l.value&&ni(a,"value",c.value),l)i(c[s])&&(Tn(s)?a.removeAttributeNS(Sn,Vn(s)):wn(s)||a.removeAttribute(s))}}function ni(t,e,n){t.tagName.indexOf("-")>-1?ii(t,e,n):Cn(e)?$n(n)?t.removeAttribute(e):(n="allowfullscreen"===e&&"EMBED"===t.tagName?"true":e,t.setAttribute(e,n)):wn(e)?t.setAttribute(e,$n(n)||"false"===n?"false":"true"):Tn(e)?$n(n)?t.removeAttributeNS(Sn,Vn(e)):t.setAttributeNS(Sn,e,n):ii(t,e,n)}function ii(t,e,n){if($n(n))t.removeAttribute(e);else{if(Y&&!X&&"TEXTAREA"===t.tagName&&"placeholder"===e&&!t.__ieph){var i=function(e){e.stopImmediatePropagation(),t.removeEventListener("input",i)};t.addEventListener("input",i),t.__ieph=!0}t.setAttribute(e,n)}}var ri={create:ei,update:ei};function si(t,e){var n=e.elm,s=e.data,o=t.data;if(!(i(s.staticClass)&&i(s.class)&&(i(o)||i(o.staticClass)&&i(o.class)))){var a=jn(e),l=n._transitionClasses;r(l)&&(a=An(a,In(l))),a!==n._prevClass&&(n.setAttribute("class",a),n._prevClass=a)}}var oi,ai,li,ci,ui,hi,di={create:si,update:si},pi=/[\w).+\-_$\]]/;function fi(t){var e,n,i,r,s,o=!1,a=!1,l=!1,c=!1,u=0,h=0,d=0,p=0;for(i=0;i<t.length;i++)if(n=e,e=t.charCodeAt(i),o)39===e&&92!==n&&(o=!1);else if(a)34===e&&92!==n&&(a=!1);else if(l)96===e&&92!==n&&(l=!1);else if(c)47===e&&92!==n&&(c=!1);else if(124!==e||124===t.charCodeAt(i+1)||124===t.charCodeAt(i-1)||u||h||d){switch(e){case 34:a=!0;break;case 39:o=!0;break;case 96:l=!0;break;case 40:d++;break;case 41:d--;break;case 91:h++;break;case 93:h--;break;case 123:u++;break;case 125:u--}if(47===e){for(var f=i-1,m=void 0;f>=0&&" "===(m=t.charAt(f));f--);m&&pi.test(m)||(c=!0)}}else void 0===r?(p=i+1,r=t.slice(0,i).trim()):v();function v(){(s||(s=[])).push(t.slice(p,i).trim()),p=i+1}if(void 0===r?r=t.slice(0,i).trim():0!==p&&v(),s)for(i=0;i<s.length;i++)r=mi(r,s[i]);return r}function mi(t,e){var n=e.indexOf("(");if(n<0)return'_f("'+e+'")('+t+")";var i=e.slice(0,n),r=e.slice(n+1);return'_f("'+i+'")('+t+(")"!==r?","+r:r)}function vi(t){console.error("[Vue compiler]: "+t)}function gi(t,e){return t?t.map(function(t){return t[e]}).filter(function(t){return t}):[]}function _i(t,e,n){(t.props||(t.props=[])).push({name:e,value:n}),t.plain=!1}function bi(t,e,n){(t.attrs||(t.attrs=[])).push({name:e,value:n}),t.plain=!1}function yi(t,e,n){t.attrsMap[e]=n,t.attrsList.push({name:e,value:n})}function xi(t,e,n,i,r,s){(t.directives||(t.directives=[])).push({name:e,rawName:n,value:i,arg:r,modifiers:s}),t.plain=!1}function ki(t,e,i,r,s,o){var a;(r=r||n).capture&&(delete r.capture,e="!"+e),r.once&&(delete r.once,e="~"+e),r.passive&&(delete r.passive,e="&"+e),"click"===e&&(r.right?(e="contextmenu",delete r.right):r.middle&&(e="mouseup")),r.native?(delete r.native,a=t.nativeEvents||(t.nativeEvents={})):a=t.events||(t.events={});var l={value:i.trim()};r!==n&&(l.modifiers=r);var c=a[e];Array.isArray(c)?s?c.unshift(l):c.push(l):a[e]=c?s?[l,c]:[c,l]:l,t.plain=!1}function wi(t,e,n){var i=Ci(t,":"+e)||Ci(t,"v-bind:"+e);if(null!=i)return fi(i);if(!1!==n){var r=Ci(t,e);if(null!=r)return JSON.stringify(r)}}function Ci(t,e,n){var i;if(null!=(i=t.attrsMap[e]))for(var r=t.attrsList,s=0,o=r.length;s<o;s++)if(r[s].name===e){r.splice(s,1);break}return n&&delete t.attrsMap[e],i}function Si(t,e,n){var i=n||{},r=i.number,s="$$v";i.trim&&(s="(typeof $$v === 'string'? $$v.trim(): $$v)"),r&&(s="_n("+s+")");var o=Ti(e,s);t.model={value:"("+e+")",expression:'"'+e+'"',callback:"function ($$v) {"+o+"}"}}function Ti(t,e){var n=function(t){if(t=t.trim(),oi=t.length,t.indexOf("[")<0||t.lastIndexOf("]")<oi-1)return(ci=t.lastIndexOf("."))>-1?{exp:t.slice(0,ci),key:'"'+t.slice(ci+1)+'"'}:{exp:t,key:null};ai=t,ci=ui=hi=0;for(;!$i();)ji(li=Vi())?Ai(li):91===li&&Oi(li);return{exp:t.slice(0,ui),key:t.slice(ui+1,hi)}}(t);return null===n.key?t+"="+e:"$set("+n.exp+", "+n.key+", "+e+")"}function Vi(){return ai.charCodeAt(++ci)}function $i(){return ci>=oi}function ji(t){return 34===t||39===t}function Oi(t){var e=1;for(ui=ci;!$i();)if(ji(t=Vi()))Ai(t);else if(91===t&&e++,93===t&&e--,0===e){hi=ci;break}}function Ai(t){for(var e=t;!$i()&&(t=Vi())!==e;);}var Ii,Di="__r",Ei="__c";function Pi(t,e,n,i,r){var s;e=(s=e)._withTask||(s._withTask=function(){Xt=!0;var t=s.apply(null,arguments);return Xt=!1,t}),n&&(e=function(t,e,n){var i=Ii;return function r(){null!==t.apply(null,arguments)&&Li(e,r,n,i)}}(e,t,i)),Ii.addEventListener(t,e,tt?{capture:i,passive:r}:i)}function Li(t,e,n,i){(i||Ii).removeEventListener(t,e._withTask||e,n)}function Bi(t,e){if(!i(t.data.on)||!i(e.data.on)){var n=e.data.on||{},s=t.data.on||{};Ii=e.elm,function(t){if(r(t[Di])){var e=Y?"change":"input";t[e]=[].concat(t[Di],t[e]||[]),delete t[Di]}r(t[Ei])&&(t.change=[].concat(t[Ei],t.change||[]),delete t[Ei])}(n),oe(n,s,Pi,Li,e.context),Ii=void 0}}var Mi={create:Bi,update:Bi};function Fi(t,e){if(!i(t.data.domProps)||!i(e.data.domProps)){var n,s,o=e.elm,a=t.data.domProps||{},l=e.data.domProps||{};for(n in r(l.__ob__)&&(l=e.data.domProps=$({},l)),a)i(l[n])&&(o[n]="");for(n in l){if(s=l[n],"textContent"===n||"innerHTML"===n){if(e.children&&(e.children.length=0),s===a[n])continue;1===o.childNodes.length&&o.removeChild(o.childNodes[0])}if("value"===n){o._value=s;var c=i(s)?"":String(s);Ri(o,c)&&(o.value=c)}else o[n]=s}}}function Ri(t,e){return!t.composing&&("OPTION"===t.tagName||function(t,e){var n=!0;try{n=document.activeElement!==t}catch(t){}return n&&t.value!==e}(t,e)||function(t,e){var n=t.value,i=t._vModifiers;if(r(i)){if(i.lazy)return!1;if(i.number)return p(n)!==p(e);if(i.trim)return n.trim()!==e.trim()}return n!==e}(t,e))}var zi={create:Fi,update:Fi},Ni=y(function(t){var e={},n=/:(.+)/;return t.split(/;(?![^(]*\))/g).forEach(function(t){if(t){var i=t.split(n);i.length>1&&(e[i[0].trim()]=i[1].trim())}}),e});function qi(t){var e=Hi(t.style);return t.staticStyle?$(t.staticStyle,e):e}function Hi(t){return Array.isArray(t)?j(t):"string"==typeof t?Ni(t):t}var Wi,Ui=/^--/,Ki=/\s*!important$/,Gi=function(t,e,n){if(Ui.test(e))t.style.setProperty(e,n);else if(Ki.test(n))t.style.setProperty(e,n.replace(Ki,""),"important");else{var i=Xi(e);if(Array.isArray(n))for(var r=0,s=n.length;r<s;r++)t.style[i]=n[r];else t.style[i]=n}},Yi=["Webkit","Moz","ms"],Xi=y(function(t){if(Wi=Wi||document.createElement("div").style,"filter"!==(t=k(t))&&t in Wi)return t;for(var e=t.charAt(0).toUpperCase()+t.slice(1),n=0;n<Yi.length;n++){var i=Yi[n]+e;if(i in Wi)return i}});function Zi(t,e){var n=e.data,s=t.data;if(!(i(n.staticStyle)&&i(n.style)&&i(s.staticStyle)&&i(s.style))){var o,a,l=e.elm,c=s.staticStyle,u=s.normalizedStyle||s.style||{},h=c||u,d=Hi(e.data.style)||{};e.data.normalizedStyle=r(d.__ob__)?$({},d):d;var p=function(t,e){var n,i={};if(e)for(var r=t;r.componentInstance;)(r=r.componentInstance._vnode)&&r.data&&(n=qi(r.data))&&$(i,n);(n=qi(t.data))&&$(i,n);for(var s=t;s=s.parent;)s.data&&(n=qi(s.data))&&$(i,n);return i}(e,!0);for(a in h)i(p[a])&&Gi(l,a,"");for(a in p)(o=p[a])!==h[a]&&Gi(l,a,null==o?"":o)}}var Ji={create:Zi,update:Zi};function Qi(t,e){if(e&&(e=e.trim()))if(t.classList)e.indexOf(" ")>-1?e.split(/\s+/).forEach(function(e){return t.classList.add(e)}):t.classList.add(e);else{var n=" "+(t.getAttribute("class")||"")+" ";n.indexOf(" "+e+" ")<0&&t.setAttribute("class",(n+e).trim())}}function tr(t,e){if(e&&(e=e.trim()))if(t.classList)e.indexOf(" ")>-1?e.split(/\s+/).forEach(function(e){return t.classList.remove(e)}):t.classList.remove(e),t.classList.length||t.removeAttribute("class");else{for(var n=" "+(t.getAttribute("class")||"")+" ",i=" "+e+" ";n.indexOf(i)>=0;)n=n.replace(i," ");(n=n.trim())?t.setAttribute("class",n):t.removeAttribute("class")}}function er(t){if(t){if("object"==typeof t){var e={};return!1!==t.css&&$(e,nr(t.name||"v")),$(e,t),e}return"string"==typeof t?nr(t):void 0}}var nr=y(function(t){return{enterClass:t+"-enter",enterToClass:t+"-enter-to",enterActiveClass:t+"-enter-active",leaveClass:t+"-leave",leaveToClass:t+"-leave-to",leaveActiveClass:t+"-leave-active"}}),ir=W&&!X,rr="transition",sr="animation",or="transition",ar="transitionend",lr="animation",cr="animationend";ir&&(void 0===window.ontransitionend&&void 0!==window.onwebkittransitionend&&(or="WebkitTransition",ar="webkitTransitionEnd"),void 0===window.onanimationend&&void 0!==window.onwebkitanimationend&&(lr="WebkitAnimation",cr="webkitAnimationEnd"));var ur=W?window.requestAnimationFrame?window.requestAnimationFrame.bind(window):setTimeout:function(t){return t()};function hr(t){ur(function(){ur(t)})}function dr(t,e){var n=t._transitionClasses||(t._transitionClasses=[]);n.indexOf(e)<0&&(n.push(e),Qi(t,e))}function pr(t,e){t._transitionClasses&&g(t._transitionClasses,e),tr(t,e)}function fr(t,e,n){var i=vr(t,e),r=i.type,s=i.timeout,o=i.propCount;if(!r)return n();var a=r===rr?ar:cr,l=0,c=function(){t.removeEventListener(a,u),n()},u=function(e){e.target===t&&++l>=o&&c()};setTimeout(function(){l<o&&c()},s+1),t.addEventListener(a,u)}var mr=/\b(transform|all)(,|$)/;function vr(t,e){var n,i=window.getComputedStyle(t),r=i[or+"Delay"].split(", "),s=i[or+"Duration"].split(", "),o=gr(r,s),a=i[lr+"Delay"].split(", "),l=i[lr+"Duration"].split(", "),c=gr(a,l),u=0,h=0;return e===rr?o>0&&(n=rr,u=o,h=s.length):e===sr?c>0&&(n=sr,u=c,h=l.length):h=(n=(u=Math.max(o,c))>0?o>c?rr:sr:null)?n===rr?s.length:l.length:0,{type:n,timeout:u,propCount:h,hasTransform:n===rr&&mr.test(i[or+"Property"])}}function gr(t,e){for(;t.length<e.length;)t=t.concat(t);return Math.max.apply(null,e.map(function(e,n){return _r(e)+_r(t[n])}))}function _r(t){return 1e3*Number(t.slice(0,-1))}function br(t,e){var n=t.elm;r(n._leaveCb)&&(n._leaveCb.cancelled=!0,n._leaveCb());var s=er(t.data.transition);if(!i(s)&&!r(n._enterCb)&&1===n.nodeType){for(var o=s.css,l=s.type,c=s.enterClass,u=s.enterToClass,h=s.enterActiveClass,d=s.appearClass,f=s.appearToClass,m=s.appearActiveClass,v=s.beforeEnter,g=s.enter,_=s.afterEnter,b=s.enterCancelled,y=s.beforeAppear,x=s.appear,k=s.afterAppear,w=s.appearCancelled,C=s.duration,S=ye,T=ye.$vnode;T&&T.parent;)S=(T=T.parent).context;var V=!S._isMounted||!t.isRootInsert;if(!V||x||""===x){var $=V&&d?d:c,j=V&&m?m:h,O=V&&f?f:u,A=V&&y||v,I=V&&"function"==typeof x?x:g,D=V&&k||_,E=V&&w||b,L=p(a(C)?C.enter:C);0;var B=!1!==o&&!X,M=kr(I),F=n._enterCb=P(function(){B&&(pr(n,O),pr(n,j)),F.cancelled?(B&&pr(n,$),E&&E(n)):D&&D(n),n._enterCb=null});t.data.show||ae(t,"insert",function(){var e=n.parentNode,i=e&&e._pending&&e._pending[t.key];i&&i.tag===t.tag&&i.elm._leaveCb&&i.elm._leaveCb(),I&&I(n,F)}),A&&A(n),B&&(dr(n,$),dr(n,j),hr(function(){pr(n,$),F.cancelled||(dr(n,O),M||(xr(L)?setTimeout(F,L):fr(n,l,F)))})),t.data.show&&(e&&e(),I&&I(n,F)),B||M||F()}}}function yr(t,e){var n=t.elm;r(n._enterCb)&&(n._enterCb.cancelled=!0,n._enterCb());var s=er(t.data.transition);if(i(s)||1!==n.nodeType)return e();if(!r(n._leaveCb)){var o=s.css,l=s.type,c=s.leaveClass,u=s.leaveToClass,h=s.leaveActiveClass,d=s.beforeLeave,f=s.leave,m=s.afterLeave,v=s.leaveCancelled,g=s.delayLeave,_=s.duration,b=!1!==o&&!X,y=kr(f),x=p(a(_)?_.leave:_);0;var k=n._leaveCb=P(function(){n.parentNode&&n.parentNode._pending&&(n.parentNode._pending[t.key]=null),b&&(pr(n,u),pr(n,h)),k.cancelled?(b&&pr(n,c),v&&v(n)):(e(),m&&m(n)),n._leaveCb=null});g?g(w):w()}function w(){k.cancelled||(t.data.show||((n.parentNode._pending||(n.parentNode._pending={}))[t.key]=t),d&&d(n),b&&(dr(n,c),dr(n,h),hr(function(){pr(n,c),k.cancelled||(dr(n,u),y||(xr(x)?setTimeout(k,x):fr(n,l,k)))})),f&&f(n,k),b||y||k())}}function xr(t){return"number"==typeof t&&!isNaN(t)}function kr(t){if(i(t))return!1;var e=t.fns;return r(e)?kr(Array.isArray(e)?e[0]:e):(t._length||t.length)>1}function wr(t,e){!0!==e.data.show&&br(e)}var Cr=function(t){var e,n,a={},l=t.modules,c=t.nodeOps;for(e=0;e<Wn.length;++e)for(a[Wn[e]]=[],n=0;n<l.length;++n)r(l[n][Wn[e]])&&a[Wn[e]].push(l[n][Wn[e]]);function u(t){var e=c.parentNode(t);r(e)&&c.removeChild(e,t)}function h(t,e,n,i,o,l,u){if(r(t.elm)&&r(l)&&(t=l[u]=gt(t)),t.isRootInsert=!o,!function(t,e,n,i){var o=t.data;if(r(o)){var l=r(t.componentInstance)&&o.keepAlive;if(r(o=o.hook)&&r(o=o.init)&&o(t,!1,n,i),r(t.componentInstance))return d(t,e),s(l)&&function(t,e,n,i){for(var s,o=t;o.componentInstance;)if(o=o.componentInstance._vnode,r(s=o.data)&&r(s=s.transition)){for(s=0;s<a.activate.length;++s)a.activate[s](Hn,o);e.push(o);break}p(n,t.elm,i)}(t,e,n,i),!0}}(t,e,n,i)){var h=t.data,f=t.children,v=t.tag;r(v)?(t.elm=t.ns?c.createElementNS(t.ns,v):c.createElement(v,t),_(t),m(t,f,e),r(h)&&g(t,e),p(n,t.elm,i)):s(t.isComment)?(t.elm=c.createComment(t.text),p(n,t.elm,i)):(t.elm=c.createTextNode(t.text),p(n,t.elm,i))}}function d(t,e){r(t.data.pendingInsert)&&(e.push.apply(e,t.data.pendingInsert),t.data.pendingInsert=null),t.elm=t.componentInstance.$el,v(t)?(g(t,e),_(t)):(qn(t),e.push(t))}function p(t,e,n){r(t)&&(r(n)?n.parentNode===t&&c.insertBefore(t,e,n):c.appendChild(t,e))}function m(t,e,n){if(Array.isArray(e))for(var i=0;i<e.length;++i)h(e[i],n,t.elm,null,!0,e,i);else o(t.text)&&c.appendChild(t.elm,c.createTextNode(String(t.text)))}function v(t){for(;t.componentInstance;)t=t.componentInstance._vnode;return r(t.tag)}function g(t,n){for(var i=0;i<a.create.length;++i)a.create[i](Hn,t);r(e=t.data.hook)&&(r(e.create)&&e.create(Hn,t),r(e.insert)&&n.push(t))}function _(t){var e;if(r(e=t.fnScopeId))c.setStyleScope(t.elm,e);else for(var n=t;n;)r(e=n.context)&&r(e=e.$options._scopeId)&&c.setStyleScope(t.elm,e),n=n.parent;r(e=ye)&&e!==t.context&&e!==t.fnContext&&r(e=e.$options._scopeId)&&c.setStyleScope(t.elm,e)}function b(t,e,n,i,r,s){for(;i<=r;++i)h(n[i],s,t,e,!1,n,i)}function y(t){var e,n,i=t.data;if(r(i))for(r(e=i.hook)&&r(e=e.destroy)&&e(t),e=0;e<a.destroy.length;++e)a.destroy[e](t);if(r(e=t.children))for(n=0;n<t.children.length;++n)y(t.children[n])}function x(t,e,n,i){for(;n<=i;++n){var s=e[n];r(s)&&(r(s.tag)?(k(s),y(s)):u(s.elm))}}function k(t,e){if(r(e)||r(t.data)){var n,i=a.remove.length+1;for(r(e)?e.listeners+=i:e=function(t,e){function n(){0==--n.listeners&&u(t)}return n.listeners=e,n}(t.elm,i),r(n=t.componentInstance)&&r(n=n._vnode)&&r(n.data)&&k(n,e),n=0;n<a.remove.length;++n)a.remove[n](t,e);r(n=t.data.hook)&&r(n=n.remove)?n(t,e):e()}else u(t.elm)}function w(t,e,n,i){for(var s=n;s<i;s++){var o=e[s];if(r(o)&&Un(t,o))return s}}function C(t,e,n,o){if(t!==e){var l=e.elm=t.elm;if(s(t.isAsyncPlaceholder))r(e.asyncFactory.resolved)?V(t.elm,e,n):e.isAsyncPlaceholder=!0;else if(s(e.isStatic)&&s(t.isStatic)&&e.key===t.key&&(s(e.isCloned)||s(e.isOnce)))e.componentInstance=t.componentInstance;else{var u,d=e.data;r(d)&&r(u=d.hook)&&r(u=u.prepatch)&&u(t,e);var p=t.children,f=e.children;if(r(d)&&v(e)){for(u=0;u<a.update.length;++u)a.update[u](t,e);r(u=d.hook)&&r(u=u.update)&&u(t,e)}i(e.text)?r(p)&&r(f)?p!==f&&function(t,e,n,s,o){for(var a,l,u,d=0,p=0,f=e.length-1,m=e[0],v=e[f],g=n.length-1,_=n[0],y=n[g],k=!o;d<=f&&p<=g;)i(m)?m=e[++d]:i(v)?v=e[--f]:Un(m,_)?(C(m,_,s),m=e[++d],_=n[++p]):Un(v,y)?(C(v,y,s),v=e[--f],y=n[--g]):Un(m,y)?(C(m,y,s),k&&c.insertBefore(t,m.elm,c.nextSibling(v.elm)),m=e[++d],y=n[--g]):Un(v,_)?(C(v,_,s),k&&c.insertBefore(t,v.elm,m.elm),v=e[--f],_=n[++p]):(i(a)&&(a=Kn(e,d,f)),i(l=r(_.key)?a[_.key]:w(_,e,d,f))?h(_,s,t,m.elm,!1,n,p):Un(u=e[l],_)?(C(u,_,s),e[l]=void 0,k&&c.insertBefore(t,u.elm,m.elm)):h(_,s,t,m.elm,!1,n,p),_=n[++p]);d>f?b(t,i(n[g+1])?null:n[g+1].elm,n,p,g,s):p>g&&x(0,e,d,f)}(l,p,f,n,o):r(f)?(r(t.text)&&c.setTextContent(l,""),b(l,null,f,0,f.length-1,n)):r(p)?x(0,p,0,p.length-1):r(t.text)&&c.setTextContent(l,""):t.text!==e.text&&c.setTextContent(l,e.text),r(d)&&r(u=d.hook)&&r(u=u.postpatch)&&u(t,e)}}}function S(t,e,n){if(s(n)&&r(t.parent))t.parent.data.pendingInsert=e;else for(var i=0;i<e.length;++i)e[i].data.hook.insert(e[i])}var T=f("attrs,class,staticClass,staticStyle,key");function V(t,e,n,i){var o,a=e.tag,l=e.data,c=e.children;if(i=i||l&&l.pre,e.elm=t,s(e.isComment)&&r(e.asyncFactory))return e.isAsyncPlaceholder=!0,!0;if(r(l)&&(r(o=l.hook)&&r(o=o.init)&&o(e,!0),r(o=e.componentInstance)))return d(e,n),!0;if(r(a)){if(r(c))if(t.hasChildNodes())if(r(o=l)&&r(o=o.domProps)&&r(o=o.innerHTML)){if(o!==t.innerHTML)return!1}else{for(var u=!0,h=t.firstChild,p=0;p<c.length;p++){if(!h||!V(h,c[p],n,i)){u=!1;break}h=h.nextSibling}if(!u||h)return!1}else m(e,c,n);if(r(l)){var f=!1;for(var v in l)if(!T(v)){f=!0,g(e,n);break}!f&&l.class&&ne(l.class)}}else t.data!==e.text&&(t.data=e.text);return!0}return function(t,e,n,o,l,u){if(!i(e)){var d,p=!1,f=[];if(i(t))p=!0,h(e,f,l,u);else{var m=r(t.nodeType);if(!m&&Un(t,e))C(t,e,f,o);else{if(m){if(1===t.nodeType&&t.hasAttribute(L)&&(t.removeAttribute(L),n=!0),s(n)&&V(t,e,f))return S(e,f,!0),t;d=t,t=new pt(c.tagName(d).toLowerCase(),{},[],void 0,d)}var g=t.elm,_=c.parentNode(g);if(h(e,f,g._leaveCb?null:_,c.nextSibling(g)),r(e.parent))for(var b=e.parent,k=v(e);b;){for(var w=0;w<a.destroy.length;++w)a.destroy[w](b);if(b.elm=e.elm,k){for(var T=0;T<a.create.length;++T)a.create[T](Hn,b);var $=b.data.hook.insert;if($.merged)for(var j=1;j<$.fns.length;j++)$.fns[j]()}else qn(b);b=b.parent}r(_)?x(0,[t],0,0):r(t.tag)&&y(t)}}return S(e,f,p),e.elm}r(t)&&y(t)}}({nodeOps:zn,modules:[ri,di,Mi,zi,Ji,W?{create:wr,activate:wr,remove:function(t,e){!0!==t.data.show?yr(t,e):e()}}:{}].concat(ti)});X&&document.addEventListener("selectionchange",function(){var t=document.activeElement;t&&t.vmodel&&Ir(t,"input")});var Sr={inserted:function(t,e,n,i){"select"===n.tag?(i.elm&&!i.elm._vOptions?ae(n,"postpatch",function(){Sr.componentUpdated(t,e,n)}):Tr(t,e,n.context),t._vOptions=[].map.call(t.options,jr)):("textarea"===n.tag||Fn(t.type))&&(t._vModifiers=e.modifiers,e.modifiers.lazy||(t.addEventListener("compositionstart",Or),t.addEventListener("compositionend",Ar),t.addEventListener("change",Ar),X&&(t.vmodel=!0)))},componentUpdated:function(t,e,n){if("select"===n.tag){Tr(t,e,n.context);var i=t._vOptions,r=t._vOptions=[].map.call(t.options,jr);if(r.some(function(t,e){return!D(t,i[e])}))(t.multiple?e.value.some(function(t){return $r(t,r)}):e.value!==e.oldValue&&$r(e.value,r))&&Ir(t,"change")}}};function Tr(t,e,n){Vr(t,e,n),(Y||Z)&&setTimeout(function(){Vr(t,e,n)},0)}function Vr(t,e,n){var i=e.value,r=t.multiple;if(!r||Array.isArray(i)){for(var s,o,a=0,l=t.options.length;a<l;a++)if(o=t.options[a],r)s=E(i,jr(o))>-1,o.selected!==s&&(o.selected=s);else if(D(jr(o),i))return void(t.selectedIndex!==a&&(t.selectedIndex=a));r||(t.selectedIndex=-1)}}function $r(t,e){return e.every(function(e){return!D(e,t)})}function jr(t){return"_value"in t?t._value:t.value}function Or(t){t.target.composing=!0}function Ar(t){t.target.composing&&(t.target.composing=!1,Ir(t.target,"input"))}function Ir(t,e){var n=document.createEvent("HTMLEvents");n.initEvent(e,!0,!0),t.dispatchEvent(n)}function Dr(t){return!t.componentInstance||t.data&&t.data.transition?t:Dr(t.componentInstance._vnode)}var Er={model:Sr,show:{bind:function(t,e,n){var i=e.value,r=(n=Dr(n)).data&&n.data.transition,s=t.__vOriginalDisplay="none"===t.style.display?"":t.style.display;i&&r?(n.data.show=!0,br(n,function(){t.style.display=s})):t.style.display=i?s:"none"},update:function(t,e,n){var i=e.value;!i!=!e.oldValue&&((n=Dr(n)).data&&n.data.transition?(n.data.show=!0,i?br(n,function(){t.style.display=t.__vOriginalDisplay}):yr(n,function(){t.style.display="none"})):t.style.display=i?t.__vOriginalDisplay:"none")},unbind:function(t,e,n,i,r){r||(t.style.display=t.__vOriginalDisplay)}}},Pr={name:String,appear:Boolean,css:Boolean,mode:String,type:String,enterClass:String,leaveClass:String,enterToClass:String,leaveToClass:String,enterActiveClass:String,leaveActiveClass:String,appearClass:String,appearActiveClass:String,appearToClass:String,duration:[Number,String,Object]};function Lr(t){var e=t&&t.componentOptions;return e&&e.Ctor.options.abstract?Lr(pe(e.children)):t}function Br(t){var e={},n=t.$options;for(var i in n.propsData)e[i]=t[i];var r=n._parentListeners;for(var s in r)e[k(s)]=r[s];return e}function Mr(t,e){if(/\d-keep-alive$/.test(e.tag))return t("keep-alive",{props:e.componentOptions.propsData})}var Fr={name:"transition",props:Pr,abstract:!0,render:function(t){var e=this,n=this.$slots.default;if(n&&(n=n.filter(function(t){return t.tag||de(t)})).length){0;var i=this.mode;0;var r=n[0];if(function(t){for(;t=t.parent;)if(t.data.transition)return!0}(this.$vnode))return r;var s=Lr(r);if(!s)return r;if(this._leaving)return Mr(t,r);var a="__transition-"+this._uid+"-";s.key=null==s.key?s.isComment?a+"comment":a+s.tag:o(s.key)?0===String(s.key).indexOf(a)?s.key:a+s.key:s.key;var l=(s.data||(s.data={})).transition=Br(this),c=this._vnode,u=Lr(c);if(s.data.directives&&s.data.directives.some(function(t){return"show"===t.name})&&(s.data.show=!0),u&&u.data&&!function(t,e){return e.key===t.key&&e.tag===t.tag}(s,u)&&!de(u)&&(!u.componentInstance||!u.componentInstance._vnode.isComment)){var h=u.data.transition=$({},l);if("out-in"===i)return this._leaving=!0,ae(h,"afterLeave",function(){e._leaving=!1,e.$forceUpdate()}),Mr(t,r);if("in-out"===i){if(de(s))return c;var d,p=function(){d()};ae(l,"afterEnter",p),ae(l,"enterCancelled",p),ae(h,"delayLeave",function(t){d=t})}}return r}}},Rr=$({tag:String,moveClass:String},Pr);function zr(t){t.elm._moveCb&&t.elm._moveCb(),t.elm._enterCb&&t.elm._enterCb()}function Nr(t){t.data.newPos=t.elm.getBoundingClientRect()}function qr(t){var e=t.data.pos,n=t.data.newPos,i=e.left-n.left,r=e.top-n.top;if(i||r){t.data.moved=!0;var s=t.elm.style;s.transform=s.WebkitTransform="translate("+i+"px,"+r+"px)",s.transitionDuration="0s"}}delete Rr.mode;var Hr={Transition:Fr,TransitionGroup:{props:Rr,render:function(t){for(var e=this.tag||this.$vnode.data.tag||"span",n=Object.create(null),i=this.prevChildren=this.children,r=this.$slots.default||[],s=this.children=[],o=Br(this),a=0;a<r.length;a++){var l=r[a];if(l.tag)if(null!=l.key&&0!==String(l.key).indexOf("__vlist"))s.push(l),n[l.key]=l,(l.data||(l.data={})).transition=o;else;}if(i){for(var c=[],u=[],h=0;h<i.length;h++){var d=i[h];d.data.transition=o,d.data.pos=d.elm.getBoundingClientRect(),n[d.key]?c.push(d):u.push(d)}this.kept=t(e,null,c),this.removed=u}return t(e,null,s)},beforeUpdate:function(){this.__patch__(this._vnode,this.kept,!1,!0),this._vnode=this.kept},updated:function(){var t=this.prevChildren,e=this.moveClass||(this.name||"v")+"-move";t.length&&this.hasMove(t[0].elm,e)&&(t.forEach(zr),t.forEach(Nr),t.forEach(qr),this._reflow=document.body.offsetHeight,t.forEach(function(t){if(t.data.moved){var n=t.elm,i=n.style;dr(n,e),i.transform=i.WebkitTransform=i.transitionDuration="",n.addEventListener(ar,n._moveCb=function t(i){i&&!/transform$/.test(i.propertyName)||(n.removeEventListener(ar,t),n._moveCb=null,pr(n,e))})}}))},methods:{hasMove:function(t,e){if(!ir)return!1;if(this._hasMove)return this._hasMove;var n=t.cloneNode();t._transitionClasses&&t._transitionClasses.forEach(function(t){tr(n,t)}),Qi(n,e),n.style.display="none",this.$el.appendChild(n);var i=vr(n);return this.$el.removeChild(n),this._hasMove=i.hasTransform}}}};dn.config.mustUseProp=kn,dn.config.isReservedTag=Ln,dn.config.isReservedAttr=yn,dn.config.getTagNamespace=Bn,dn.config.isUnknownElement=function(t){if(!W)return!0;if(Ln(t))return!1;if(t=t.toLowerCase(),null!=Mn[t])return Mn[t];var e=document.createElement(t);return t.indexOf("-")>-1?Mn[t]=e.constructor===window.HTMLUnknownElement||e.constructor===window.HTMLElement:Mn[t]=/HTMLUnknownElement/.test(e.toString())},$(dn.options.directives,Er),$(dn.options.components,Hr),dn.prototype.__patch__=W?Cr:O,dn.prototype.$mount=function(t,e){return function(t,e,n){return t.$el=e,t.$options.render||(t.$options.render=mt),we(t,"beforeMount"),new Ie(t,function(){t._update(t._render(),n)},O,null,!0),n=!1,null==t.$vnode&&(t._isMounted=!0,we(t,"mounted")),t}(this,t=t&&W?Rn(t):void 0,e)},W&&setTimeout(function(){F.devtools&&it&&it.emit("init",dn)},0);var Wr=/\{\{((?:.|\n)+?)\}\}/g,Ur=/[-.*+?^${}()|[\]\/\\]/g,Kr=y(function(t){var e=t[0].replace(Ur,"\\$&"),n=t[1].replace(Ur,"\\$&");return new RegExp(e+"((?:.|\\n)+?)"+n,"g")});function Gr(t,e){var n=e?Kr(e):Wr;if(n.test(t)){for(var i,r,s,o=[],a=[],l=n.lastIndex=0;i=n.exec(t);){(r=i.index)>l&&(a.push(s=t.slice(l,r)),o.push(JSON.stringify(s)));var c=fi(i[1].trim());o.push("_s("+c+")"),a.push({"@binding":c}),l=r+i[0].length}return l<t.length&&(a.push(s=t.slice(l)),o.push(JSON.stringify(s))),{expression:o.join("+"),tokens:a}}}var Yr={staticKeys:["staticClass"],transformNode:function(t,e){e.warn;var n=Ci(t,"class");n&&(t.staticClass=JSON.stringify(n));var i=wi(t,"class",!1);i&&(t.classBinding=i)},genData:function(t){var e="";return t.staticClass&&(e+="staticClass:"+t.staticClass+","),t.classBinding&&(e+="class:"+t.classBinding+","),e}};var Xr,Zr={staticKeys:["staticStyle"],transformNode:function(t,e){e.warn;var n=Ci(t,"style");n&&(t.staticStyle=JSON.stringify(Ni(n)));var i=wi(t,"style",!1);i&&(t.styleBinding=i)},genData:function(t){var e="";return t.staticStyle&&(e+="staticStyle:"+t.staticStyle+","),t.styleBinding&&(e+="style:("+t.styleBinding+"),"),e}},Jr=function(t){return(Xr=Xr||document.createElement("div")).innerHTML=t,Xr.textContent},Qr=f("area,base,br,col,embed,frame,hr,img,input,isindex,keygen,link,meta,param,source,track,wbr"),ts=f("colgroup,dd,dt,li,options,p,td,tfoot,th,thead,tr,source"),es=f("address,article,aside,base,blockquote,body,caption,col,colgroup,dd,details,dialog,div,dl,dt,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,head,header,hgroup,hr,html,legend,li,menuitem,meta,optgroup,option,param,rp,rt,source,style,summary,tbody,td,tfoot,th,thead,title,tr,track"),ns=/^\s*([^\s"'<>\/=]+)(?:\s*(=)\s*(?:"([^"]*)"+|'([^']*)'+|([^\s"'=<>`]+)))?/,is="[a-zA-Z_][\\w\\-\\.]*",rs="((?:"+is+"\\:)?"+is+")",ss=new RegExp("^<"+rs),os=/^\s*(\/?)>/,as=new RegExp("^<\\/"+rs+"[^>]*>"),ls=/^<!DOCTYPE [^>]+>/i,cs=/^<!\--/,us=/^<!\[/,hs=!1;"x".replace(/x(.)?/g,function(t,e){hs=""===e});var ds=f("script,style,textarea",!0),ps={},fs={"&lt;":"<","&gt;":">","&quot;":'"',"&amp;":"&","&#10;":"\n","&#9;":"\t"},ms=/&(?:lt|gt|quot|amp);/g,vs=/&(?:lt|gt|quot|amp|#10|#9);/g,gs=f("pre,textarea",!0),_s=function(t,e){return t&&gs(t)&&"\n"===e[0]};function bs(t,e){var n=e?vs:ms;return t.replace(n,function(t){return fs[t]})}var ys,xs,ks,ws,Cs,Ss,Ts,Vs,$s=/^@|^v-on:/,js=/^v-|^@|^:/,Os=/([^]*?)\s+(?:in|of)\s+([^]*)/,As=/,([^,\}\]]*)(?:,([^,\}\]]*))?$/,Is=/^\(|\)$/g,Ds=/:(.*)$/,Es=/^:|^v-bind:/,Ps=/\.[^.]+/g,Ls=y(Jr);function Bs(t,e,n){return{type:1,tag:t,attrsList:e,attrsMap:function(t){for(var e={},n=0,i=t.length;n<i;n++)e[t[n].name]=t[n].value;return e}(e),parent:n,children:[]}}function Ms(t,e){ys=e.warn||vi,Ss=e.isPreTag||A,Ts=e.mustUseProp||A,Vs=e.getTagNamespace||A,ks=gi(e.modules,"transformNode"),ws=gi(e.modules,"preTransformNode"),Cs=gi(e.modules,"postTransformNode"),xs=e.delimiters;var n,i,r=[],s=!1!==e.preserveWhitespace,o=!1,a=!1;function l(t){t.pre&&(o=!1),Ss(t.tag)&&(a=!1);for(var n=0;n<Cs.length;n++)Cs[n](t,e)}return function(t,e){for(var n,i,r=[],s=e.expectHTML,o=e.isUnaryTag||A,a=e.canBeLeftOpenTag||A,l=0;t;){if(n=t,i&&ds(i)){var c=0,u=i.toLowerCase(),h=ps[u]||(ps[u]=new RegExp("([\\s\\S]*?)(</"+u+"[^>]*>)","i")),d=t.replace(h,function(t,n,i){return c=i.length,ds(u)||"noscript"===u||(n=n.replace(/<!\--([\s\S]*?)-->/g,"$1").replace(/<!\[CDATA\[([\s\S]*?)]]>/g,"$1")),_s(u,n)&&(n=n.slice(1)),e.chars&&e.chars(n),""});l+=t.length-d.length,t=d,T(u,l-c,l)}else{var p=t.indexOf("<");if(0===p){if(cs.test(t)){var f=t.indexOf("--\x3e");if(f>=0){e.shouldKeepComment&&e.comment(t.substring(4,f)),w(f+3);continue}}if(us.test(t)){var m=t.indexOf("]>");if(m>=0){w(m+2);continue}}var v=t.match(ls);if(v){w(v[0].length);continue}var g=t.match(as);if(g){var _=l;w(g[0].length),T(g[1],_,l);continue}var b=C();if(b){S(b),_s(i,t)&&w(1);continue}}var y=void 0,x=void 0,k=void 0;if(p>=0){for(x=t.slice(p);!(as.test(x)||ss.test(x)||cs.test(x)||us.test(x)||(k=x.indexOf("<",1))<0);)p+=k,x=t.slice(p);y=t.substring(0,p),w(p)}p<0&&(y=t,t=""),e.chars&&y&&e.chars(y)}if(t===n){e.chars&&e.chars(t);break}}function w(e){l+=e,t=t.substring(e)}function C(){var e=t.match(ss);if(e){var n,i,r={tagName:e[1],attrs:[],start:l};for(w(e[0].length);!(n=t.match(os))&&(i=t.match(ns));)w(i[0].length),r.attrs.push(i);if(n)return r.unarySlash=n[1],w(n[0].length),r.end=l,r}}function S(t){var n=t.tagName,l=t.unarySlash;s&&("p"===i&&es(n)&&T(i),a(n)&&i===n&&T(n));for(var c=o(n)||!!l,u=t.attrs.length,h=new Array(u),d=0;d<u;d++){var p=t.attrs[d];hs&&-1===p[0].indexOf('""')&&(""===p[3]&&delete p[3],""===p[4]&&delete p[4],""===p[5]&&delete p[5]);var f=p[3]||p[4]||p[5]||"",m="a"===n&&"href"===p[1]?e.shouldDecodeNewlinesForHref:e.shouldDecodeNewlines;h[d]={name:p[1],value:bs(f,m)}}c||(r.push({tag:n,lowerCasedTag:n.toLowerCase(),attrs:h}),i=n),e.start&&e.start(n,h,c,t.start,t.end)}function T(t,n,s){var o,a;if(null==n&&(n=l),null==s&&(s=l),t&&(a=t.toLowerCase()),t)for(o=r.length-1;o>=0&&r[o].lowerCasedTag!==a;o--);else o=0;if(o>=0){for(var c=r.length-1;c>=o;c--)e.end&&e.end(r[c].tag,n,s);r.length=o,i=o&&r[o-1].tag}else"br"===a?e.start&&e.start(t,[],!0,n,s):"p"===a&&(e.start&&e.start(t,[],!1,n,s),e.end&&e.end(t,n,s))}T()}(t,{warn:ys,expectHTML:e.expectHTML,isUnaryTag:e.isUnaryTag,canBeLeftOpenTag:e.canBeLeftOpenTag,shouldDecodeNewlines:e.shouldDecodeNewlines,shouldDecodeNewlinesForHref:e.shouldDecodeNewlinesForHref,shouldKeepComment:e.comments,start:function(t,s,c){var u=i&&i.ns||Vs(t);Y&&"svg"===u&&(s=function(t){for(var e=[],n=0;n<t.length;n++){var i=t[n];qs.test(i.name)||(i.name=i.name.replace(Hs,""),e.push(i))}return e}(s));var h,d=Bs(t,s,i);u&&(d.ns=u),"style"!==(h=d).tag&&("script"!==h.tag||h.attrsMap.type&&"text/javascript"!==h.attrsMap.type)||nt()||(d.forbidden=!0);for(var p=0;p<ws.length;p++)d=ws[p](d,e)||d;function f(t){0}if(o||(!function(t){null!=Ci(t,"v-pre")&&(t.pre=!0)}(d),d.pre&&(o=!0)),Ss(d.tag)&&(a=!0),o?function(t){var e=t.attrsList.length;if(e)for(var n=t.attrs=new Array(e),i=0;i<e;i++)n[i]={name:t.attrsList[i].name,value:JSON.stringify(t.attrsList[i].value)};else t.pre||(t.plain=!0)}(d):d.processed||(Rs(d),function(t){var e=Ci(t,"v-if");if(e)t.if=e,zs(t,{exp:e,block:t});else{null!=Ci(t,"v-else")&&(t.else=!0);var n=Ci(t,"v-else-if");n&&(t.elseif=n)}}(d),function(t){null!=Ci(t,"v-once")&&(t.once=!0)}(d),Fs(d,e)),n?r.length||n.if&&(d.elseif||d.else)&&(f(),zs(n,{exp:d.elseif,block:d})):(n=d,f()),i&&!d.forbidden)if(d.elseif||d.else)!function(t,e){var n=function(t){var e=t.length;for(;e--;){if(1===t[e].type)return t[e];t.pop()}}(e.children);n&&n.if&&zs(n,{exp:t.elseif,block:t})}(d,i);else if(d.slotScope){i.plain=!1;var m=d.slotTarget||'"default"';(i.scopedSlots||(i.scopedSlots={}))[m]=d}else i.children.push(d),d.parent=i;c?l(d):(i=d,r.push(d))},end:function(){var t=r[r.length-1],e=t.children[t.children.length-1];e&&3===e.type&&" "===e.text&&!a&&t.children.pop(),r.length-=1,i=r[r.length-1],l(t)},chars:function(t){if(i&&(!Y||"textarea"!==i.tag||i.attrsMap.placeholder!==t)){var e,n,r=i.children;if(t=a||t.trim()?"script"===(e=i).tag||"style"===e.tag?t:Ls(t):s&&r.length?" ":"")!o&&" "!==t&&(n=Gr(t,xs))?r.push({type:2,expression:n.expression,tokens:n.tokens,text:t}):" "===t&&r.length&&" "===r[r.length-1].text||r.push({type:3,text:t})}},comment:function(t){i.children.push({type:3,text:t,isComment:!0})}}),n}function Fs(t,e){var n,i;(i=wi(n=t,"key"))&&(n.key=i),t.plain=!t.key&&!t.attrsList.length,function(t){var e=wi(t,"ref");e&&(t.ref=e,t.refInFor=function(t){var e=t;for(;e;){if(void 0!==e.for)return!0;e=e.parent}return!1}(t))}(t),function(t){if("slot"===t.tag)t.slotName=wi(t,"name");else{var e;"template"===t.tag?(e=Ci(t,"scope"),t.slotScope=e||Ci(t,"slot-scope")):(e=Ci(t,"slot-scope"))&&(t.slotScope=e);var n=wi(t,"slot");n&&(t.slotTarget='""'===n?'"default"':n,"template"===t.tag||t.slotScope||bi(t,"slot",n))}}(t),function(t){var e;(e=wi(t,"is"))&&(t.component=e);null!=Ci(t,"inline-template")&&(t.inlineTemplate=!0)}(t);for(var r=0;r<ks.length;r++)t=ks[r](t,e)||t;!function(t){var e,n,i,r,s,o,a,l=t.attrsList;for(e=0,n=l.length;e<n;e++){if(i=r=l[e].name,s=l[e].value,js.test(i))if(t.hasBindings=!0,(o=Ns(i))&&(i=i.replace(Ps,"")),Es.test(i))i=i.replace(Es,""),s=fi(s),a=!1,o&&(o.prop&&(a=!0,"innerHtml"===(i=k(i))&&(i="innerHTML")),o.camel&&(i=k(i)),o.sync&&ki(t,"update:"+k(i),Ti(s,"$event"))),a||!t.component&&Ts(t.tag,t.attrsMap.type,i)?_i(t,i,s):bi(t,i,s);else if($s.test(i))i=i.replace($s,""),ki(t,i,s,o,!1);else{var c=(i=i.replace(js,"")).match(Ds),u=c&&c[1];u&&(i=i.slice(0,-(u.length+1))),xi(t,i,r,s,u,o)}else bi(t,i,JSON.stringify(s)),!t.component&&"muted"===i&&Ts(t.tag,t.attrsMap.type,i)&&_i(t,i,"true")}}(t)}function Rs(t){var e;if(e=Ci(t,"v-for")){var n=function(t){var e=t.match(Os);if(!e)return;var n={};n.for=e[2].trim();var i=e[1].trim().replace(Is,""),r=i.match(As);r?(n.alias=i.replace(As,""),n.iterator1=r[1].trim(),r[2]&&(n.iterator2=r[2].trim())):n.alias=i;return n}(e);n&&$(t,n)}}function zs(t,e){t.ifConditions||(t.ifConditions=[]),t.ifConditions.push(e)}function Ns(t){var e=t.match(Ps);if(e){var n={};return e.forEach(function(t){n[t.slice(1)]=!0}),n}}var qs=/^xmlns:NS\d+/,Hs=/^NS\d+:/;function Ws(t){return Bs(t.tag,t.attrsList.slice(),t.parent)}var Us=[Yr,Zr,{preTransformNode:function(t,e){if("input"===t.tag){var n,i=t.attrsMap;if(!i["v-model"])return;if((i[":type"]||i["v-bind:type"])&&(n=wi(t,"type")),i.type||n||!i["v-bind"]||(n="("+i["v-bind"]+").type"),n){var r=Ci(t,"v-if",!0),s=r?"&&("+r+")":"",o=null!=Ci(t,"v-else",!0),a=Ci(t,"v-else-if",!0),l=Ws(t);Rs(l),yi(l,"type","checkbox"),Fs(l,e),l.processed=!0,l.if="("+n+")==='checkbox'"+s,zs(l,{exp:l.if,block:l});var c=Ws(t);Ci(c,"v-for",!0),yi(c,"type","radio"),Fs(c,e),zs(l,{exp:"("+n+")==='radio'"+s,block:c});var u=Ws(t);return Ci(u,"v-for",!0),yi(u,":type",n),Fs(u,e),zs(l,{exp:r,block:u}),o?l.else=!0:a&&(l.elseif=a),l}}}}];var Ks,Gs,Ys={expectHTML:!0,modules:Us,directives:{model:function(t,e,n){n;var i=e.value,r=e.modifiers,s=t.tag,o=t.attrsMap.type;if(t.component)return Si(t,i,r),!1;if("select"===s)!function(t,e,n){var i='var $$selectedVal = Array.prototype.filter.call($event.target.options,function(o){return o.selected}).map(function(o){var val = "_value" in o ? o._value : o.value;return '+(n&&n.number?"_n(val)":"val")+"});";i=i+" "+Ti(e,"$event.target.multiple ? $$selectedVal : $$selectedVal[0]"),ki(t,"change",i,null,!0)}(t,i,r);else if("input"===s&&"checkbox"===o)!function(t,e,n){var i=n&&n.number,r=wi(t,"value")||"null",s=wi(t,"true-value")||"true",o=wi(t,"false-value")||"false";_i(t,"checked","Array.isArray("+e+")?_i("+e+","+r+")>-1"+("true"===s?":("+e+")":":_q("+e+","+s+")")),ki(t,"change","var $$a="+e+",$$el=$event.target,$$c=$$el.checked?("+s+"):("+o+");if(Array.isArray($$a)){var $$v="+(i?"_n("+r+")":r)+",$$i=_i($$a,$$v);if($$el.checked){$$i<0&&("+Ti(e,"$$a.concat([$$v])")+")}else{$$i>-1&&("+Ti(e,"$$a.slice(0,$$i).concat($$a.slice($$i+1))")+")}}else{"+Ti(e,"$$c")+"}",null,!0)}(t,i,r);else if("input"===s&&"radio"===o)!function(t,e,n){var i=n&&n.number,r=wi(t,"value")||"null";_i(t,"checked","_q("+e+","+(r=i?"_n("+r+")":r)+")"),ki(t,"change",Ti(e,r),null,!0)}(t,i,r);else if("input"===s||"textarea"===s)!function(t,e,n){var i=t.attrsMap.type,r=n||{},s=r.lazy,o=r.number,a=r.trim,l=!s&&"range"!==i,c=s?"change":"range"===i?Di:"input",u="$event.target.value";a&&(u="$event.target.value.trim()"),o&&(u="_n("+u+")");var h=Ti(e,u);l&&(h="if($event.target.composing)return;"+h),_i(t,"value","("+e+")"),ki(t,c,h,null,!0),(a||o)&&ki(t,"blur","$forceUpdate()")}(t,i,r);else if(!F.isReservedTag(s))return Si(t,i,r),!1;return!0},text:function(t,e){e.value&&_i(t,"textContent","_s("+e.value+")")},html:function(t,e){e.value&&_i(t,"innerHTML","_s("+e.value+")")}},isPreTag:function(t){return"pre"===t},isUnaryTag:Qr,mustUseProp:kn,canBeLeftOpenTag:ts,isReservedTag:Ln,getTagNamespace:Bn,staticKeys:function(t){return t.reduce(function(t,e){return t.concat(e.staticKeys||[])},[]).join(",")}(Us)},Xs=y(function(t){return f("type,tag,attrsList,attrsMap,plain,parent,children,attrs"+(t?","+t:""))});function Zs(t,e){t&&(Ks=Xs(e.staticKeys||""),Gs=e.isReservedTag||A,function t(e){e.static=function(t){if(2===t.type)return!1;if(3===t.type)return!0;return!(!t.pre&&(t.hasBindings||t.if||t.for||m(t.tag)||!Gs(t.tag)||function(t){for(;t.parent;){if("template"!==(t=t.parent).tag)return!1;if(t.for)return!0}return!1}(t)||!Object.keys(t).every(Ks)))}(e);if(1===e.type){if(!Gs(e.tag)&&"slot"!==e.tag&&null==e.attrsMap["inline-template"])return;for(var n=0,i=e.children.length;n<i;n++){var r=e.children[n];t(r),r.static||(e.static=!1)}if(e.ifConditions)for(var s=1,o=e.ifConditions.length;s<o;s++){var a=e.ifConditions[s].block;t(a),a.static||(e.static=!1)}}}(t),function t(e,n){if(1===e.type){if((e.static||e.once)&&(e.staticInFor=n),e.static&&e.children.length&&(1!==e.children.length||3!==e.children[0].type))return void(e.staticRoot=!0);if(e.staticRoot=!1,e.children)for(var i=0,r=e.children.length;i<r;i++)t(e.children[i],n||!!e.for);if(e.ifConditions)for(var s=1,o=e.ifConditions.length;s<o;s++)t(e.ifConditions[s].block,n)}}(t,!1))}var Js=/^([\w$_]+|\([^)]*?\))\s*=>|^function\s*\(/,Qs=/^[A-Za-z_$][\w$]*(?:\.[A-Za-z_$][\w$]*|\['[^']*?']|\["[^"]*?"]|\[\d+]|\[[A-Za-z_$][\w$]*])*$/,to={esc:27,tab:9,enter:13,space:32,up:38,left:37,right:39,down:40,delete:[8,46]},eo={esc:"Escape",tab:"Tab",enter:"Enter",space:" ",up:["Up","ArrowUp"],left:["Left","ArrowLeft"],right:["Right","ArrowRight"],down:["Down","ArrowDown"],delete:["Backspace","Delete"]},no=function(t){return"if("+t+")return null;"},io={stop:"$event.stopPropagation();",prevent:"$event.preventDefault();",self:no("$event.target !== $event.currentTarget"),ctrl:no("!$event.ctrlKey"),shift:no("!$event.shiftKey"),alt:no("!$event.altKey"),meta:no("!$event.metaKey"),left:no("'button' in $event && $event.button !== 0"),middle:no("'button' in $event && $event.button !== 1"),right:no("'button' in $event && $event.button !== 2")};function ro(t,e,n){var i=e?"nativeOn:{":"on:{";for(var r in t)i+='"'+r+'":'+so(r,t[r])+",";return i.slice(0,-1)+"}"}function so(t,e){if(!e)return"function(){}";if(Array.isArray(e))return"["+e.map(function(e){return so(t,e)}).join(",")+"]";var n=Qs.test(e.value),i=Js.test(e.value);if(e.modifiers){var r="",s="",o=[];for(var a in e.modifiers)if(io[a])s+=io[a],to[a]&&o.push(a);else if("exact"===a){var l=e.modifiers;s+=no(["ctrl","shift","alt","meta"].filter(function(t){return!l[t]}).map(function(t){return"$event."+t+"Key"}).join("||"))}else o.push(a);return o.length&&(r+=function(t){return"if(!('button' in $event)&&"+t.map(oo).join("&&")+")return null;"}(o)),s&&(r+=s),"function($event){"+r+(n?"return "+e.value+"($event)":i?"return ("+e.value+")($event)":e.value)+"}"}return n||i?e.value:"function($event){"+e.value+"}"}function oo(t){var e=parseInt(t,10);if(e)return"$event.keyCode!=="+e;var n=to[t],i=eo[t];return"_k($event.keyCode,"+JSON.stringify(t)+","+JSON.stringify(n)+",$event.key,"+JSON.stringify(i)+")"}var ao={on:function(t,e){t.wrapListeners=function(t){return"_g("+t+","+e.value+")"}},bind:function(t,e){t.wrapData=function(n){return"_b("+n+",'"+t.tag+"',"+e.value+","+(e.modifiers&&e.modifiers.prop?"true":"false")+(e.modifiers&&e.modifiers.sync?",true":"")+")"}},cloak:O},lo=function(t){this.options=t,this.warn=t.warn||vi,this.transforms=gi(t.modules,"transformCode"),this.dataGenFns=gi(t.modules,"genData"),this.directives=$($({},ao),t.directives);var e=t.isReservedTag||A;this.maybeComponent=function(t){return!e(t.tag)},this.onceId=0,this.staticRenderFns=[]};function co(t,e){var n=new lo(e);return{render:"with(this){return "+(t?uo(t,n):'_c("div")')+"}",staticRenderFns:n.staticRenderFns}}function uo(t,e){if(t.staticRoot&&!t.staticProcessed)return ho(t,e);if(t.once&&!t.onceProcessed)return po(t,e);if(t.for&&!t.forProcessed)return function(t,e,n,i){var r=t.for,s=t.alias,o=t.iterator1?","+t.iterator1:"",a=t.iterator2?","+t.iterator2:"";0;return t.forProcessed=!0,(i||"_l")+"(("+r+"),function("+s+o+a+"){return "+(n||uo)(t,e)+"})"}(t,e);if(t.if&&!t.ifProcessed)return fo(t,e);if("template"!==t.tag||t.slotTarget){if("slot"===t.tag)return function(t,e){var n=t.slotName||'"default"',i=go(t,e),r="_t("+n+(i?","+i:""),s=t.attrs&&"{"+t.attrs.map(function(t){return k(t.name)+":"+t.value}).join(",")+"}",o=t.attrsMap["v-bind"];!s&&!o||i||(r+=",null");s&&(r+=","+s);o&&(r+=(s?"":",null")+","+o);return r+")"}(t,e);var n;if(t.component)n=function(t,e,n){var i=e.inlineTemplate?null:go(e,n,!0);return"_c("+t+","+mo(e,n)+(i?","+i:"")+")"}(t.component,t,e);else{var i=t.plain?void 0:mo(t,e),r=t.inlineTemplate?null:go(t,e,!0);n="_c('"+t.tag+"'"+(i?","+i:"")+(r?","+r:"")+")"}for(var s=0;s<e.transforms.length;s++)n=e.transforms[s](t,n);return n}return go(t,e)||"void 0"}function ho(t,e){return t.staticProcessed=!0,e.staticRenderFns.push("with(this){return "+uo(t,e)+"}"),"_m("+(e.staticRenderFns.length-1)+(t.staticInFor?",true":"")+")"}function po(t,e){if(t.onceProcessed=!0,t.if&&!t.ifProcessed)return fo(t,e);if(t.staticInFor){for(var n="",i=t.parent;i;){if(i.for){n=i.key;break}i=i.parent}return n?"_o("+uo(t,e)+","+e.onceId+++","+n+")":uo(t,e)}return ho(t,e)}function fo(t,e,n,i){return t.ifProcessed=!0,function t(e,n,i,r){if(!e.length)return r||"_e()";var s=e.shift();return s.exp?"("+s.exp+")?"+o(s.block)+":"+t(e,n,i,r):""+o(s.block);function o(t){return i?i(t,n):t.once?po(t,n):uo(t,n)}}(t.ifConditions.slice(),e,n,i)}function mo(t,e){var n="{",i=function(t,e){var n=t.directives;if(!n)return;var i,r,s,o,a="directives:[",l=!1;for(i=0,r=n.length;i<r;i++){s=n[i],o=!0;var c=e.directives[s.name];c&&(o=!!c(t,s,e.warn)),o&&(l=!0,a+='{name:"'+s.name+'",rawName:"'+s.rawName+'"'+(s.value?",value:("+s.value+"),expression:"+JSON.stringify(s.value):"")+(s.arg?',arg:"'+s.arg+'"':"")+(s.modifiers?",modifiers:"+JSON.stringify(s.modifiers):"")+"},")}if(l)return a.slice(0,-1)+"]"}(t,e);i&&(n+=i+","),t.key&&(n+="key:"+t.key+","),t.ref&&(n+="ref:"+t.ref+","),t.refInFor&&(n+="refInFor:true,"),t.pre&&(n+="pre:true,"),t.component&&(n+='tag:"'+t.tag+'",');for(var r=0;r<e.dataGenFns.length;r++)n+=e.dataGenFns[r](t);if(t.attrs&&(n+="attrs:{"+yo(t.attrs)+"},"),t.props&&(n+="domProps:{"+yo(t.props)+"},"),t.events&&(n+=ro(t.events,!1,e.warn)+","),t.nativeEvents&&(n+=ro(t.nativeEvents,!0,e.warn)+","),t.slotTarget&&!t.slotScope&&(n+="slot:"+t.slotTarget+","),t.scopedSlots&&(n+=function(t,e){return"scopedSlots:_u(["+Object.keys(t).map(function(n){return vo(n,t[n],e)}).join(",")+"])"}(t.scopedSlots,e)+","),t.model&&(n+="model:{value:"+t.model.value+",callback:"+t.model.callback+",expression:"+t.model.expression+"},"),t.inlineTemplate){var s=function(t,e){var n=t.children[0];0;if(1===n.type){var i=co(n,e.options);return"inlineTemplate:{render:function(){"+i.render+"},staticRenderFns:["+i.staticRenderFns.map(function(t){return"function(){"+t+"}"}).join(",")+"]}"}}(t,e);s&&(n+=s+",")}return n=n.replace(/,$/,"")+"}",t.wrapData&&(n=t.wrapData(n)),t.wrapListeners&&(n=t.wrapListeners(n)),n}function vo(t,e,n){return e.for&&!e.forProcessed?function(t,e,n){var i=e.for,r=e.alias,s=e.iterator1?","+e.iterator1:"",o=e.iterator2?","+e.iterator2:"";return e.forProcessed=!0,"_l(("+i+"),function("+r+s+o+"){return "+vo(t,e,n)+"})"}(t,e,n):"{key:"+t+",fn:"+("function("+String(e.slotScope)+"){return "+("template"===e.tag?e.if?e.if+"?"+(go(e,n)||"undefined")+":undefined":go(e,n)||"undefined":uo(e,n))+"}")+"}"}function go(t,e,n,i,r){var s=t.children;if(s.length){var o=s[0];if(1===s.length&&o.for&&"template"!==o.tag&&"slot"!==o.tag)return(i||uo)(o,e);var a=n?function(t,e){for(var n=0,i=0;i<t.length;i++){var r=t[i];if(1===r.type){if(_o(r)||r.ifConditions&&r.ifConditions.some(function(t){return _o(t.block)})){n=2;break}(e(r)||r.ifConditions&&r.ifConditions.some(function(t){return e(t.block)}))&&(n=1)}}return n}(s,e.maybeComponent):0,l=r||bo;return"["+s.map(function(t){return l(t,e)}).join(",")+"]"+(a?","+a:"")}}function _o(t){return void 0!==t.for||"template"===t.tag||"slot"===t.tag}function bo(t,e){return 1===t.type?uo(t,e):3===t.type&&t.isComment?(i=t,"_e("+JSON.stringify(i.text)+")"):"_v("+(2===(n=t).type?n.expression:xo(JSON.stringify(n.text)))+")";var n,i}function yo(t){for(var e="",n=0;n<t.length;n++){var i=t[n];e+='"'+i.name+'":'+xo(i.value)+","}return e.slice(0,-1)}function xo(t){return t.replace(/\u2028/g,"\\u2028").replace(/\u2029/g,"\\u2029")}new RegExp("\\b"+"do,if,for,let,new,try,var,case,else,with,await,break,catch,class,const,super,throw,while,yield,delete,export,import,return,switch,default,extends,finally,continue,debugger,function,arguments".split(",").join("\\b|\\b")+"\\b"),new RegExp("\\b"+"delete,typeof,void".split(",").join("\\s*\\([^\\)]*\\)|\\b")+"\\s*\\([^\\)]*\\)");function ko(t,e){try{return new Function(t)}catch(n){return e.push({err:n,code:t}),O}}var wo,Co,So=(wo=function(t,e){var n=Ms(t.trim(),e);!1!==e.optimize&&Zs(n,e);var i=co(n,e);return{ast:n,render:i.render,staticRenderFns:i.staticRenderFns}},function(t){function e(e,n){var i=Object.create(t),r=[],s=[];if(i.warn=function(t,e){(e?s:r).push(t)},n)for(var o in n.modules&&(i.modules=(t.modules||[]).concat(n.modules)),n.directives&&(i.directives=$(Object.create(t.directives||null),n.directives)),n)"modules"!==o&&"directives"!==o&&(i[o]=n[o]);var a=wo(e,i);return a.errors=r,a.tips=s,a}return{compile:e,compileToFunctions:function(t){var e=Object.create(null);return function(n,i,r){(i=$({},i)).warn,delete i.warn;var s=i.delimiters?String(i.delimiters)+n:n;if(e[s])return e[s];var o=t(n,i),a={},l=[];return a.render=ko(o.render,l),a.staticRenderFns=o.staticRenderFns.map(function(t){return ko(t,l)}),e[s]=a}}(e)}})(Ys).compileToFunctions;function To(t){return(Co=Co||document.createElement("div")).innerHTML=t?'<a href="\n"/>':'<div a="\n"/>',Co.innerHTML.indexOf("&#10;")>0}var Vo=!!W&&To(!1),$o=!!W&&To(!0),jo=y(function(t){var e=Rn(t);return e&&e.innerHTML}),Oo=dn.prototype.$mount;dn.prototype.$mount=function(t,e){if((t=t&&Rn(t))===document.body||t===document.documentElement)return this;var n=this.$options;if(!n.render){var i=n.template;if(i)if("string"==typeof i)"#"===i.charAt(0)&&(i=jo(i));else{if(!i.nodeType)return this;i=i.innerHTML}else t&&(i=function(t){if(t.outerHTML)return t.outerHTML;var e=document.createElement("div");return e.appendChild(t.cloneNode(!0)),e.innerHTML}(t));if(i){0;var r=So(i,{shouldDecodeNewlines:Vo,shouldDecodeNewlinesForHref:$o,delimiters:n.delimiters,comments:n.comments},this),s=r.render,o=r.staticRenderFns;n.render=s,n.staticRenderFns=o}}return Oo.call(this,t,e)},dn.compile=So,e.default=dn}.call(e,n("DuR2"))},DuR2:function(t,e){var n;n=function(){return this}();try{n=n||Function("return this")()||(0,eval)("this")}catch(t){"object"==typeof window&&(n=window)}t.exports=n},OS1Z:function(module,exports,__webpack_require__){var t;t=function(){return function(t){function e(i){if(n[i])return n[i].exports;var r=n[i]={i:i,l:!1,exports:{}};return t[i].call(r.exports,r,r.exports,e),r.l=!0,r.exports}var n={};return e.m=t,e.c=n,e.i=function(t){return t},e.d=function(t,n,i){e.o(t,n)||Object.defineProperty(t,n,{configurable:!1,enumerable:!0,get:i})},e.n=function(t){var n=t&&t.__esModule?function(){return t.default}:function(){return t};return e.d(n,"a",n),n},e.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},e.p="",e(e.s=62)}([function(t,e,n){"use strict";function i(t,e){return a.call(t,e)}function r(t){return!(t>=55296&&t<=57343||t>=64976&&t<=65007||65535==(65535&t)||65534==(65535&t)||t>=0&&t<=8||11===t||t>=14&&t<=31||t>=127&&t<=159||t>1114111)}function s(t){if(t>65535){var e=55296+((t-=65536)>>10),n=56320+(1023&t);return String.fromCharCode(e,n)}return String.fromCharCode(t)}function o(t){return f[t]}var a=Object.prototype.hasOwnProperty,l=/\\([!"#$%&'()*+,\-.\/:;<=>?@[\\\]^_`{|}~])/g,c=new RegExp(l.source+"|"+/&([a-z#][a-z0-9]{1,31});/gi.source,"gi"),u=/^#((?:x[a-f0-9]{1,8}|[0-9]{1,8}))/i,h=n(48),d=/[&<>"]/,p=/[&<>"]/g,f={"&":"&amp;","<":"&lt;",">":"&gt;",'"':"&quot;"},m=/[.?*+^$[\]\\(){}|-]/g,v=n(33);e.lib={},e.lib.mdurl=n(52),e.lib.ucmicro=n(185),e.assign=function(t){return Array.prototype.slice.call(arguments,1).forEach(function(e){if(e){if("object"!=typeof e)throw new TypeError(e+"must be object");Object.keys(e).forEach(function(n){t[n]=e[n]})}}),t},e.isString=function(t){return"[object String]"===function(t){return Object.prototype.toString.call(t)}(t)},e.has=i,e.unescapeMd=function(t){return t.indexOf("\\")<0?t:t.replace(l,"$1")},e.unescapeAll=function(t){return t.indexOf("\\")<0&&t.indexOf("&")<0?t:t.replace(c,function(t,e,n){return e||function(t,e){var n=0;return i(h,e)?h[e]:35===e.charCodeAt(0)&&u.test(e)&&r(n="x"===e[1].toLowerCase()?parseInt(e.slice(2),16):parseInt(e.slice(1),10))?s(n):t}(t,n)})},e.isValidEntityCode=r,e.fromCodePoint=s,e.escapeHtml=function(t){return d.test(t)?t.replace(p,o):t},e.arrayReplaceAt=function(t,e,n){return[].concat(t.slice(0,e),n,t.slice(e+1))},e.isSpace=function(t){switch(t){case 9:case 32:return!0}return!1},e.isWhiteSpace=function(t){if(t>=8192&&t<=8202)return!0;switch(t){case 9:case 10:case 11:case 12:case 13:case 32:case 160:case 5760:case 8239:case 8287:case 12288:return!0}return!1},e.isMdAsciiPunct=function(t){switch(t){case 33:case 34:case 35:case 36:case 37:case 38:case 39:case 40:case 41:case 42:case 43:case 44:case 45:case 46:case 47:case 58:case 59:case 60:case 61:case 62:case 63:case 64:case 91:case 92:case 93:case 94:case 95:case 96:case 123:case 124:case 125:case 126:return!0;default:return!1}},e.isPunctChar=function(t){return v.test(t)},e.escapeRE=function(t){return t.replace(m,"\\$&")},e.normalizeReference=function(t){return t.trim().replace(/\s+/g," ").toUpperCase()}},function(t,e){var n=t.exports="undefined"!=typeof window&&window.Math==Math?window:"undefined"!=typeof self&&self.Math==Math?self:Function("return this")();"number"==typeof __g&&(__g=n)},function(t,e){var n={}.hasOwnProperty;t.exports=function(t,e){return n.call(t,e)}},function(t,e,n){t.exports=!n(11)(function(){return 7!=Object.defineProperty({},"a",{get:function(){return 7}}).a})},function(t,e,n){var i=n(5),r=n(13);t.exports=n(3)?function(t,e,n){return i.f(t,e,r(1,n))}:function(t,e,n){return t[e]=n,t}},function(t,e,n){var i=n(9),r=n(41),s=n(28),o=Object.defineProperty;e.f=n(3)?Object.defineProperty:function(t,e,n){if(i(t),e=s(e,!0),i(n),r)try{return o(t,e,n)}catch(t){}if("get"in n||"set"in n)throw TypeError("Accessors not supported!");return"value"in n&&(t[e]=n.value),t}},function(t,e,n){var i=n(81),r=n(19);t.exports=function(t){return i(r(t))}},function(t,e,n){var i=n(26)("wks"),r=n(14),s=n(1).Symbol,o="function"==typeof s;(t.exports=function(t){return i[t]||(i[t]=o&&s[t]||(o?s:r)("Symbol."+t))}).store=i},function(t,e){t.exports=function(t){return"object"==typeof t?null!==t:"function"==typeof t}},function(t,e,n){var i=n(8);t.exports=function(t){if(!i(t))throw TypeError(t+" is not an object!");return t}},function(t,e){var n=t.exports={version:"2.5.7"};"number"==typeof __e&&(__e=n)},function(t,e){t.exports=function(t){try{return!!t()}catch(t){return!0}}},function(t,e){t.exports=!0},function(t,e){t.exports=function(t,e){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:e}}},function(t,e){var n=0,i=Math.random();t.exports=function(t){return"Symbol(".concat(void 0===t?"":t,")_",(++n+i).toString(36))}},function(t,e){function n(t,e){var n=t[1]||"",i=t[3];if(!i)return n;if(e&&"function"==typeof btoa){var r=function(t){return"/*# sourceMappingURL=data:application/json;charset=utf-8;base64,"+btoa(unescape(encodeURIComponent(JSON.stringify(t))))+" */"}(i);return[n].concat(i.sources.map(function(t){return"/*# sourceURL="+i.sourceRoot+t+" */"})).concat([r]).join("\n")}return[n].join("\n")}t.exports=function(t){var e=[];return e.toString=function(){return this.map(function(e){var i=n(e,t);return e[2]?"@media "+e[2]+"{"+i+"}":i}).join("")},e.i=function(t,n){"string"==typeof t&&(t=[[null,t,""]]);for(var i={},r=0;r<this.length;r++){var s=this[r][0];"number"==typeof s&&(i[s]=!0)}for(r=0;r<t.length;r++){var o=t[r];"number"==typeof o[0]&&i[o[0]]||(n&&!o[2]?o[2]=n:n&&(o[2]="("+o[2]+") and ("+n+")"),e.push(o))}},e}},function(t,e){t.exports=function(t,e,n,i,r){var s,o=t=t||{},a=typeof t.default;"object"!==a&&"function"!==a||(s=t,o=t.default);var l,c="function"==typeof o?o.options:o;if(e&&(c.render=e.render,c.staticRenderFns=e.staticRenderFns),i&&(c._scopeId=i),r?(l=function(t){(t=t||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext)||"undefined"==typeof __VUE_SSR_CONTEXT__||(t=__VUE_SSR_CONTEXT__),n&&n.call(this,t),t&&t._registeredComponents&&t._registeredComponents.add(r)},c._ssrRegister=l):n&&(l=n),l){var u=c.functional,h=u?c.render:c.beforeCreate;u?c.render=function(t,e){return l.call(e),h(t,e)}:c.beforeCreate=h?[].concat(h,l):[l]}return{esModule:s,exports:o,options:c}}},function(t,e,n){function i(t){for(var e=0;e<t.length;e++){var n=t[e],i=c[n.id];if(i){i.refs++;for(var r=0;r<i.parts.length;r++)i.parts[r](n.parts[r]);for(;r<n.parts.length;r++)i.parts.push(s(n.parts[r]));i.parts.length>n.parts.length&&(i.parts.length=n.parts.length)}else{var o=[];for(r=0;r<n.parts.length;r++)o.push(s(n.parts[r]));c[n.id]={id:n.id,refs:1,parts:o}}}}function r(){var t=document.createElement("style");return t.type="text/css",u.appendChild(t),t}function s(t){var e,n,i=document.querySelector("style["+v+'~="'+t.id+'"]');if(i){if(p)return f;i.parentNode.removeChild(i)}if(g){var s=d++;i=h||(h=r()),e=o.bind(null,i,s,!1),n=o.bind(null,i,s,!0)}else i=r(),e=function(t,e){var n=e.css,i=e.media,r=e.sourceMap;if(i&&t.setAttribute("media",i),m.ssrId&&t.setAttribute(v,e.id),r&&(n+="\n/*# sourceURL="+r.sources[0]+" */",n+="\n/*# sourceMappingURL=data:application/json;base64,"+btoa(unescape(encodeURIComponent(JSON.stringify(r))))+" */"),t.styleSheet)t.styleSheet.cssText=n;else{for(;t.firstChild;)t.removeChild(t.firstChild);t.appendChild(document.createTextNode(n))}}.bind(null,i),n=function(){i.parentNode.removeChild(i)};return e(t),function(i){if(i){if(i.css===t.css&&i.media===t.media&&i.sourceMap===t.sourceMap)return;e(t=i)}else n()}}function o(t,e,n,i){var r=n?"":i.css;if(t.styleSheet)t.styleSheet.cssText=_(e,r);else{var s=document.createTextNode(r),o=t.childNodes;o[e]&&t.removeChild(o[e]),o.length?t.insertBefore(s,o[e]):t.appendChild(s)}}var a="undefined"!=typeof document;if("undefined"!=typeof DEBUG&&DEBUG&&!a)throw new Error("vue-style-loader cannot be used in a non-browser environment. Use { target: 'node' } in your Webpack config to indicate a server-rendering environment.");var l=n(195),c={},u=a&&(document.head||document.getElementsByTagName("head")[0]),h=null,d=0,p=!1,f=function(){},m=null,v="data-vue-ssr-id",g="undefined"!=typeof navigator&&/msie [6-9]\b/.test(navigator.userAgent.toLowerCase());t.exports=function(t,e,n,r){p=n,m=r||{};var s=l(t,e);return i(s),function(e){for(var n=[],r=0;r<s.length;r++){var o=s[r];(a=c[o.id]).refs--,n.push(a)}e?i(s=l(t,e)):s=[];for(r=0;r<n.length;r++){var a;if(0===(a=n[r]).refs){for(var u=0;u<a.parts.length;u++)a.parts[u]();delete c[a.id]}}}};var _=function(){var t=[];return function(e,n){return t[e]=n,t.filter(Boolean).join("\n")}}()},function(t,e,n){"use strict";n.d(e,"g",function(){return i}),n.d(e,"i",function(){return r}),n.d(e,"j",function(){return s}),n.d(e,"k",function(){return o}),n.d(e,"h",function(){return a}),n.d(e,"l",function(){return l}),n.d(e,"m",function(){return c}),n.d(e,"e",function(){return u}),n.d(e,"f",function(){return h}),n.d(e,"b",function(){return d}),e.d=function(t,e){"function"!=typeof e&&(e=function(){});var n=document.querySelectorAll("script[src='"+t+"']");if(n.length>0)return n[0].addEventListener("load",function(){e()}),void e();var i=document.createElement("script"),r=document.getElementsByTagName("head")[0];i.type="text/javascript",i.charset="UTF-8",i.src=t,i.addEventListener?i.addEventListener("load",function(){e()},!1):i.attachEvent&&i.attachEvent("onreadystatechange",function(){"loaded"===window.event.srcElement.readyState&&e()}),r.appendChild(i)},e.c=function(t,e){if("function"!=typeof e&&(e=function(){}),document.querySelectorAll("link[href='"+t+"']").length>0)e();else{var n=document.createElement("link"),i=document.getElementsByTagName("head")[0];n.rel="stylesheet",n.href=t,n.addEventListener?n.addEventListener("load",function(){e()},!1):n.attachEvent&&n.attachEvent("onreadystatechange",function(){"loaded"===window.event.srcElement.readyState&&e()}),i.appendChild(n)}},n.d(e,"a",function(){return p});var i=function(t,e,n){var i=e.prefix,r=e.subfix,s=e.str;if(e.type,t.focus(),"number"==typeof t.selectionStart&&"number"==typeof t.selectionEnd){var o=t.selectionStart,a=t.selectionEnd,l=t.value;o===a?(t.value=l.substring(0,o)+i+s+r+l.substring(a,l.length),t.selectionStart=o+i.length,t.selectionEnd=o+(s.length+i.length)):l.substring(o-i.length,o)===i&&l.substring(a,a+r.length)===r&&function(t,e,n,i,r){return"*"!==t||"*"!==e||"*"!==n.substring(i-2,i-1)||"*"!==n.substring(r+1,r+2)}(i,r,l,o,a)?(t.value=l.substring(0,o-i.length)+l.substring(o,a)+l.substring(a+r.length,l.length),t.selectionStart=o-i.length,t.selectionEnd=a-i.length):(t.value=l.substring(0,o)+i+l.substring(o,a)+r+l.substring(a,l.length),t.selectionStart=o+i.length,t.selectionEnd=o+(a-o+i.length))}else alert("Error: Browser version is too low");n.d_value=t.value,t.focus()},r=function(t){var e=t.getTextareaDom();if("number"==typeof e.selectionStart&&"number"==typeof e.selectionEnd){var n=e.selectionStart,i=e.selectionEnd,r=e.value;if(n===i)e.value=r.substring(0,n)+"1. "+r.substring(i,r.length),e.selectionEnd=e.selectionStart=n+3;else{for(var s=n;s>0&&"\n"!==r.substring(s-1,s);)s--;for(var o=r.substring(s,i),a=o.split("\n"),l=0;l<a.length;l++)a[l]=l+1+". "+a[l];var c=a.join("\n");e.value=r.substring(0,s)+c+r.substring(i,r.length),e.selectionStart=s,e.selectionEnd=i+c.length-o.length}}else alert("Error: Browser version is too low");t.d_value=e.value,e.focus()},s=function(t){var e=t.getTextareaDom();if("number"==typeof e.selectionStart&&"number"==typeof e.selectionEnd){for(var n=e.selectionStart,i=e.selectionEnd,r=e.value,s=n;s>0&&"\n"!==r.substring(s-1,s);)s--;for(var o=i;o<r.length&&"\n"!==r.substring(o,o+1);)o++;o<r.length&&o++,e.value=r.substring(0,s)+r.substring(o,r.length),e.selectionEnd=e.selectionStart=0===s?0:s-1}else alert("Error: Browser version is too low");t.d_value=e.value,e.focus()},o=function(t){var e=t.getTextareaDom();if("number"==typeof e.selectionStart&&"number"==typeof e.selectionEnd){var n=e.selectionStart,i=e.selectionEnd,r=e.value;if(n===i)e.value=r.substring(0,n)+"- "+r.substring(i,r.length),e.selectionEnd=e.selectionStart=n+2;else{for(var s=n;s>0&&"\n"!==r.substring(s-1,s);)s--;var o=r.substring(s,i),a=o.replace(/\n/g,"\n- ");a="- "+a,e.value=r.substring(0,s)+a+r.substring(i,r.length),e.selectionStart=s,e.selectionEnd=i+a.length-o.length}}else alert("Error: Browser version is too low");t.d_value=e.value,e.focus()},a=function(t){var e=t.getTextareaDom();if("number"==typeof e.selectionStart&&"number"==typeof e.selectionEnd){var n=e.selectionStart,i=e.selectionEnd,r=e.value,s=r.substring(0,n).split("\n").pop();if(s.match(/^\s*[0-9]+\.\s+\S*/)){var o=s.replace(/(\d+)/,1);e.value=r.substring(0,n-o.length)+"\t"+o+r.substring(i,r.length)}else s.match(/^\s*-\s+\S*/)?e.value=r.substring(0,n-s.length)+"\t"+s+r.substring(i,r.length):e.value=r.substring(0,n)+"\t"+r.substring(i,r.length);e.selectionStart=e.selectionEnd=n+1}else alert("Error: Browser version is too low");t.d_value=e.value,e.focus()},l=function(t){var e=t.getTextareaDom();if("number"==typeof e.selectionStart&&"number"==typeof e.selectionEnd){var n=e.selectionStart,i=e.selectionEnd,r=e.value,s=r.substring(0,n).split("\n").pop();s.search(/\t/)>=0&&(e.value=r.substring(0,n-s.length)+s.replace(/(.*)\t/,"$1")+r.substring(i,r.length),e.selectionStart=e.selectionEnd=n-1)}else alert("Error: Browser version is too low");t.d_value=e.value,e.focus()},c=function(t,e){var n=t.getTextareaDom();if("number"==typeof n.selectionStart&&"number"==typeof n.selectionEnd){var i=n.selectionStart,r=n.selectionEnd,s=n.value,o=s.substring(0,i).split("\n").pop(),a=o.match(/^\s*(?:[0-9]+\.|-)\s+\S+/);if(a){e.preventDefault();var l=a.shift().match(/^\s*(?:[0-9]+\.|-)\s/).shift();if(l.search(/-/)>=0)n.value=s.substring(0,i)+"\n"+l+s.substring(r,s.length),n.selectionStart=n.selectionEnd=i+l.length+1;else{var c=l.replace(/(\d+)/,parseInt(l)+1);n.value=s.substring(0,i)+"\n"+c+s.substring(r,s.length),n.selectionStart=n.selectionEnd=i+c.length+1}}else{var u=o.match(/^\s*(?:[0-9]+\.|-)\s+$/);if(u){e.preventDefault();var h=u.shift().length;n.value=s.substring(0,i-h)+"\n"+s.substring(r,s.length),n.selectionStart=n.selectionEnd=i-h}}}else alert("Error: Browser version is too low");t.d_value=n.value,n.focus()},u=function(t,e){var n=void 0;(n=t.$refs.navigationContent).innerHTML=t.d_render;var i=n.children;if(i.length)for(var r=0;r<i.length;r++)!function(e,n,i){/^H[1-6]{1}$/.exec(e.tagName)?e.onclick=function(){var e=t.$refs.vShowContent,i=t.$refs.vNoteEdit;t.s_subfield?t.s_preview_switch&&(i.scrollTop=e.children[n].offsetTop*(i.scrollHeight-i.offsetHeight)/(e.scrollHeight-e.offsetHeight)):t.s_preview_switch&&(e.scrollTop=e.children[n].offsetTop)}:e.style.display="none"}(i[r],r)},h=function(t,e){var n=t.srcElement?t.srcElement:t.target,i=n.scrollTop/(n.scrollHeight-n.offsetHeight);e.edit_scroll_height>=0&&n.scrollHeight!==e.edit_scroll_height&&n.scrollHeight-n.offsetHeight-n.scrollTop<=30&&(e.$refs.vNoteEdit.scrollTop=n.scrollHeight-n.offsetHeight,i=1),e.edit_scroll_height=n.scrollHeight,e.$refs.vShowContent.scrollHeight>e.$refs.vShowContent.offsetHeight&&(e.$refs.vShowContent.scrollTop=(e.$refs.vShowContent.scrollHeight-e.$refs.vShowContent.offsetHeight)*i)},d=function(t){t.$el.addEventListener("fullscreenchange",function(e){t.$toolbar_right_read_change_status()},!1),t.$el.addEventListener("mozfullscreenchange",function(e){t.$toolbar_right_read_change_status()},!1),t.$el.addEventListener("webkitfullscreenchange",function(e){t.$toolbar_right_read_change_status()},!1),t.$el.addEventListener("msfullscreenchange",function(e){t.$toolbar_right_read_change_status()},!1)},p=function(t){t.$refs.vShowContent.addEventListener("click",function(e){var n=(e=e||window.event).srcElement?e.srcElement:e.target;"IMG"===n.tagName&&(t.imageClick?t.imageClick(n):t.d_preview_imgsrc=n.src)})}},function(t,e){t.exports=function(t){if(void 0==t)throw TypeError("Can't call method on "+t);return t}},function(t,e){t.exports="constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf".split(",")},function(t,e){t.exports={}},function(t,e,n){var i=n(46),r=n(20);t.exports=Object.keys||function(t){return i(t,r)}},function(t,e){e.f={}.propertyIsEnumerable},function(t,e,n){var i=n(5).f,r=n(2),s=n(7)("toStringTag");t.exports=function(t,e,n){t&&!r(t=n?t:t.prototype,s)&&i(t,s,{configurable:!0,value:e})}},function(t,e,n){var i=n(26)("keys"),r=n(14);t.exports=function(t){return i[t]||(i[t]=r(t))}},function(t,e,n){var i=n(10),r=n(1),s=r["__core-js_shared__"]||(r["__core-js_shared__"]={});(t.exports=function(t,e){return s[t]||(s[t]=void 0!==e?e:{})})("versions",[]).push({version:i.version,mode:n(12)?"pure":"global",copyright:"© 2018 Denis Pushkarev (zloirock.ru)"})},function(t,e){var n=Math.ceil,i=Math.floor;t.exports=function(t){return isNaN(t=+t)?0:(t>0?i:n)(t)}},function(t,e,n){var i=n(8);t.exports=function(t,e){if(!i(t))return t;var n,r;if(e&&"function"==typeof(n=t.toString)&&!i(r=n.call(t)))return r;if("function"==typeof(n=t.valueOf)&&!i(r=n.call(t)))return r;if(!e&&"function"==typeof(n=t.toString)&&!i(r=n.call(t)))return r;throw TypeError("Can't convert object to primitive value")}},function(t,e,n){var i=n(1),r=n(10),s=n(12),o=n(30),a=n(5).f;t.exports=function(t){var e=r.Symbol||(r.Symbol=s?{}:i.Symbol||{});"_"==t.charAt(0)||t in e||a(e,t,{value:o.f(t)})}},function(t,e,n){e.f=n(7)},function(t,e,n){"use strict";function i(){this.__rules__=[],this.__cache__=null}i.prototype.__find__=function(t){for(var e=0;e<this.__rules__.length;e++)if(this.__rules__[e].name===t)return e;return-1},i.prototype.__compile__=function(){var t=this,e=[""];t.__rules__.forEach(function(t){t.enabled&&t.alt.forEach(function(t){e.indexOf(t)<0&&e.push(t)})}),t.__cache__={},e.forEach(function(e){t.__cache__[e]=[],t.__rules__.forEach(function(n){n.enabled&&(e&&n.alt.indexOf(e)<0||t.__cache__[e].push(n.fn))})})},i.prototype.at=function(t,e,n){var i=this.__find__(t),r=n||{};if(-1===i)throw new Error("Parser rule not found: "+t);this.__rules__[i].fn=e,this.__rules__[i].alt=r.alt||[],this.__cache__=null},i.prototype.before=function(t,e,n,i){var r=this.__find__(t),s=i||{};if(-1===r)throw new Error("Parser rule not found: "+t);this.__rules__.splice(r,0,{name:e,enabled:!0,fn:n,alt:s.alt||[]}),this.__cache__=null},i.prototype.after=function(t,e,n,i){var r=this.__find__(t),s=i||{};if(-1===r)throw new Error("Parser rule not found: "+t);this.__rules__.splice(r+1,0,{name:e,enabled:!0,fn:n,alt:s.alt||[]}),this.__cache__=null},i.prototype.push=function(t,e,n){var i=n||{};this.__rules__.push({name:t,enabled:!0,fn:e,alt:i.alt||[]}),this.__cache__=null},i.prototype.enable=function(t,e){Array.isArray(t)||(t=[t]);var n=[];return t.forEach(function(t){var i=this.__find__(t);if(i<0){if(e)return;throw new Error("Rules manager: invalid rule name "+t)}this.__rules__[i].enabled=!0,n.push(t)},this),this.__cache__=null,n},i.prototype.enableOnly=function(t,e){Array.isArray(t)||(t=[t]),this.__rules__.forEach(function(t){t.enabled=!1}),this.enable(t,e)},i.prototype.disable=function(t,e){Array.isArray(t)||(t=[t]);var n=[];return t.forEach(function(t){var i=this.__find__(t);if(i<0){if(e)return;throw new Error("Rules manager: invalid rule name "+t)}this.__rules__[i].enabled=!1,n.push(t)},this),this.__cache__=null,n},i.prototype.getRules=function(t){return null===this.__cache__&&this.__compile__(),this.__cache__[t]||[]},t.exports=i},function(t,e,n){"use strict";function i(t,e,n){this.type=t,this.tag=e,this.attrs=null,this.map=null,this.nesting=n,this.level=0,this.children=null,this.content="",this.markup="",this.info="",this.meta=null,this.block=!1,this.hidden=!1}i.prototype.attrIndex=function(t){var e,n,i;if(!this.attrs)return-1;for(n=0,i=(e=this.attrs).length;n<i;n++)if(e[n][0]===t)return n;return-1},i.prototype.attrPush=function(t){this.attrs?this.attrs.push(t):this.attrs=[t]},i.prototype.attrSet=function(t,e){var n=this.attrIndex(t),i=[t,e];n<0?this.attrPush(i):this.attrs[n]=i},i.prototype.attrGet=function(t){var e=this.attrIndex(t),n=null;return e>=0&&(n=this.attrs[e][1]),n},i.prototype.attrJoin=function(t,e){var n=this.attrIndex(t);n<0?this.attrPush([t,e]):this.attrs[n][1]=this.attrs[n][1]+" "+e},t.exports=i},function(t,e){t.exports=/[!-#%-\*,-\/:;\?@\[-\]_\{\}\xA1\xA7\xAB\xB6\xB7\xBB\xBF\u037E\u0387\u055A-\u055F\u0589\u058A\u05BE\u05C0\u05C3\u05C6\u05F3\u05F4\u0609\u060A\u060C\u060D\u061B\u061E\u061F\u066A-\u066D\u06D4\u0700-\u070D\u07F7-\u07F9\u0830-\u083E\u085E\u0964\u0965\u0970\u09FD\u0AF0\u0DF4\u0E4F\u0E5A\u0E5B\u0F04-\u0F12\u0F14\u0F3A-\u0F3D\u0F85\u0FD0-\u0FD4\u0FD9\u0FDA\u104A-\u104F\u10FB\u1360-\u1368\u1400\u166D\u166E\u169B\u169C\u16EB-\u16ED\u1735\u1736\u17D4-\u17D6\u17D8-\u17DA\u1800-\u180A\u1944\u1945\u1A1E\u1A1F\u1AA0-\u1AA6\u1AA8-\u1AAD\u1B5A-\u1B60\u1BFC-\u1BFF\u1C3B-\u1C3F\u1C7E\u1C7F\u1CC0-\u1CC7\u1CD3\u2010-\u2027\u2030-\u2043\u2045-\u2051\u2053-\u205E\u207D\u207E\u208D\u208E\u2308-\u230B\u2329\u232A\u2768-\u2775\u27C5\u27C6\u27E6-\u27EF\u2983-\u2998\u29D8-\u29DB\u29FC\u29FD\u2CF9-\u2CFC\u2CFE\u2CFF\u2D70\u2E00-\u2E2E\u2E30-\u2E49\u3001-\u3003\u3008-\u3011\u3014-\u301F\u3030\u303D\u30A0\u30FB\uA4FE\uA4FF\uA60D-\uA60F\uA673\uA67E\uA6F2-\uA6F7\uA874-\uA877\uA8CE\uA8CF\uA8F8-\uA8FA\uA8FC\uA92E\uA92F\uA95F\uA9C1-\uA9CD\uA9DE\uA9DF\uAA5C-\uAA5F\uAADE\uAADF\uAAF0\uAAF1\uABEB\uFD3E\uFD3F\uFE10-\uFE19\uFE30-\uFE52\uFE54-\uFE61\uFE63\uFE68\uFE6A\uFE6B\uFF01-\uFF03\uFF05-\uFF0A\uFF0C-\uFF0F\uFF1A\uFF1B\uFF1F\uFF20\uFF3B-\uFF3D\uFF3F\uFF5B\uFF5D\uFF5F-\uFF65]|\uD800[\uDD00-\uDD02\uDF9F\uDFD0]|\uD801\uDD6F|\uD802[\uDC57\uDD1F\uDD3F\uDE50-\uDE58\uDE7F\uDEF0-\uDEF6\uDF39-\uDF3F\uDF99-\uDF9C]|\uD804[\uDC47-\uDC4D\uDCBB\uDCBC\uDCBE-\uDCC1\uDD40-\uDD43\uDD74\uDD75\uDDC5-\uDDC9\uDDCD\uDDDB\uDDDD-\uDDDF\uDE38-\uDE3D\uDEA9]|\uD805[\uDC4B-\uDC4F\uDC5B\uDC5D\uDCC6\uDDC1-\uDDD7\uDE41-\uDE43\uDE60-\uDE6C\uDF3C-\uDF3E]|\uD806[\uDE3F-\uDE46\uDE9A-\uDE9C\uDE9E-\uDEA2]|\uD807[\uDC41-\uDC45\uDC70\uDC71]|\uD809[\uDC70-\uDC74]|\uD81A[\uDE6E\uDE6F\uDEF5\uDF37-\uDF3B\uDF44]|\uD82F\uDC9F|\uD836[\uDE87-\uDE8B]|\uD83A[\uDD5E\uDD5F]/},function(t,e,n){var i=!1,r=n(16)(n(59),n(189),function(t){i||n(192)},"data-v-548e2160",null);r.options.__file="D:\\webstrom\\workplace\\mavonEditor\\src\\components\\md-toolbar-left.vue",r.esModule&&Object.keys(r.esModule).some(function(t){return"default"!==t&&"__"!==t.substr(0,2)})&&console.error("named exports are not supported in *.vue files."),r.options.functional&&console.error("[vue-loader] md-toolbar-left.vue: functional components are not supported with templates, they should use render functions."),t.exports=r.exports},function(t,e,n){var i=n(16)(n(60),n(187),null,null,null);i.options.__file="D:\\webstrom\\workplace\\mavonEditor\\src\\components\\md-toolbar-right.vue",i.esModule&&Object.keys(i.esModule).some(function(t){return"default"!==t&&"__"!==t.substr(0,2)})&&console.error("named exports are not supported in *.vue files."),i.options.functional&&console.error("[vue-loader] md-toolbar-right.vue: functional components are not supported with templates, they should use render functions."),t.exports=i.exports},function(t,e,n){"use strict";e.a={"1c":"1c",abnf:"abnf",accesslog:"accesslog",actionscript:"actionscript",as:"actionscript",ada:"ada",apache:"apache",apacheconf:"apache",applescript:"applescript",osascript:"applescript",arduino:"arduino",armasm:"armasm",arm:"armasm",asciidoc:"asciidoc",adoc:"asciidoc",aspectj:"aspectj",autohotkey:"autohotkey",ahk:"autohotkey",autoit:"autoit",avrasm:"avrasm",awk:"awk",axapta:"axapta",bash:"bash",sh:"bash",zsh:"bash",basic:"basic",bnf:"bnf",brainfuck:"brainfuck",bf:"brainfuck",cal:"cal",capnproto:"capnproto",capnp:"capnproto",ceylon:"ceylon",clean:"clean",icl:"clean",dcl:"clean","clojure-repl":"clojure-repl",clojure:"clojure",clj:"clojure",cmake:"cmake","cmake.in":"cmake",coffeescript:"coffeescript",coffee:"coffeescript",cson:"coffeescript",iced:"coffeescript",coq:"coq",cos:"cos",cls:"cos",cpp:"cpp",c:"cpp",cc:"cpp",h:"cpp","c++":"cpp","h++":"cpp",hpp:"cpp",crmsh:"crmsh",crm:"crmsh",pcmk:"crmsh",crystal:"crystal",cr:"crystal",cs:"cs",csharp:"cs",csp:"csp",css:"css",d:"d",dart:"dart",delphi:"delphi",dpr:"delphi",dfm:"delphi",pas:"delphi",pascal:"delphi",freepascal:"delphi",lazarus:"delphi",lpr:"delphi",lfm:"delphi",diff:"diff",patch:"diff",django:"django",jinja:"django",dns:"dns",bind:"dns",zone:"dns",dockerfile:"dockerfile",docker:"dockerfile",dos:"dos",bat:"dos",cmd:"dos",dsconfig:"dsconfig",dts:"dts",dust:"dust",dst:"dust",ebnf:"ebnf",elixir:"elixir",elm:"elm",erb:"erb","erlang-repl":"erlang-repl",erlang:"erlang",erl:"erlang",excel:"excel",xlsx:"excel",xls:"excel",fix:"fix",flix:"flix",fortran:"fortran",f90:"fortran",f95:"fortran",fsharp:"fsharp",fs:"fsharp",gams:"gams",gms:"gams",gauss:"gauss",gss:"gauss",gcode:"gcode",nc:"gcode",gherkin:"gherkin",feature:"gherkin",glsl:"glsl",go:"go",golang:"go",golo:"golo",gradle:"gradle",groovy:"groovy",haml:"haml",handlebars:"handlebars",hbs:"handlebars","html.hbs":"handlebars","html.handlebars":"handlebars",haskell:"haskell",hs:"haskell",haxe:"haxe",hx:"haxe",hsp:"hsp",htmlbars:"htmlbars",http:"http",https:"http",hy:"hy",hylang:"hy",inform7:"inform7",i7:"inform7",ini:"ini",toml:"ini",irpf90:"irpf90",java:"java",jsp:"java",javascript:"javascript",js:"javascript",jsx:"javascript","jboss-cli":"jboss-cli","wildfly-cli":"jboss-cli",json:"json","julia-repl":"julia-repl",julia:"julia",kotlin:"kotlin",lasso:"lasso",ls:"livescript",lassoscript:"lasso",ldif:"ldif",leaf:"leaf",less:"less",lisp:"lisp",livecodeserver:"livecodeserver",livescript:"livescript",llvm:"llvm",lsl:"lsl",lua:"lua",makefile:"makefile",mk:"makefile",mak:"makefile",markdown:"markdown",md:"markdown",mkdown:"markdown",mkd:"markdown",mathematica:"mathematica",mma:"mathematica",matlab:"matlab",maxima:"maxima",mel:"mel",mercury:"mercury",m:"mercury",moo:"mercury",mipsasm:"mipsasm",mips:"mipsasm",mizar:"mizar",mojolicious:"mojolicious",monkey:"monkey",moonscript:"moonscript",moon:"moonscript",n1ql:"n1ql",nginx:"nginx",nginxconf:"nginx",nimrod:"nimrod",nim:"nimrod",nix:"nix",nixos:"nix",nsis:"nsis",objectivec:"objectivec",mm:"objectivec",objc:"objectivec","obj-c":"objectivec",ocaml:"ocaml",ml:"sml",openscad:"openscad",scad:"openscad",oxygene:"oxygene",parser3:"parser3",perl:"perl",pl:"perl",pm:"perl",pf:"pf","pf.conf":"pf",php:"php",php3:"php",php4:"php",php5:"php",php6:"php",pony:"pony",powershell:"powershell",ps:"powershell",processing:"processing",profile:"profile",prolog:"prolog",protobuf:"protobuf",puppet:"puppet",pp:"puppet",purebasic:"purebasic",pb:"purebasic",pbi:"purebasic",python:"python",py:"python",gyp:"python",q:"q",k:"q",kdb:"q",qml:"qml",qt:"qml",r:"r",rib:"rib",roboconf:"roboconf",graph:"roboconf",instances:"roboconf",routeros:"routeros",mikrotik:"routeros",rsl:"rsl",ruby:"ruby",rb:"ruby",gemspec:"ruby",podspec:"ruby",thor:"ruby",irb:"ruby",ruleslanguage:"ruleslanguage",rust:"rust",rs:"rust",scala:"scala",scheme:"scheme",scilab:"scilab",sci:"scilab",scss:"scss",shell:"shell",console:"shell",smali:"smali",smalltalk:"smalltalk",st:"smalltalk",sml:"sml",sqf:"sqf",sql:"sql",stan:"stan",stata:"stata",do:"stata",ado:"stata",step21:"step21",p21:"step21",step:"step21",stp:"step21",stylus:"stylus",styl:"stylus",subunit:"subunit",swift:"swift",taggerscript:"taggerscript",tap:"tap",tcl:"tcl",tk:"tcl",tex:"tex",thrift:"thrift",tp:"tp",twig:"twig",craftcms:"twig",typescript:"typescript",ts:"typescript",vala:"vala",vbnet:"vbnet",vb:"vbnet","vbscript-html":"vbscript-html",vbscript:"vbscript",vbs:"vbscript",verilog:"verilog",v:"verilog",sv:"verilog",svh:"verilog",vhdl:"vhdl",vim:"vim",x86asm:"x86asm",xl:"xl",tao:"xl",xml:"xml",html:"xml",xhtml:"xml",rss:"xml",atom:"xml",xjb:"xml",xsd:"xml",xsl:"xml",plist:"xml",xquery:"xquery",xpath:"xquery",xq:"xquery",yaml:"yaml",yml:"yaml",YAML:"yaml",zephir:"zephir",zep:"zephir"}},function(t,e,n){"use strict";function i(t){return t&&t.__esModule?t:{default:t}}e.__esModule=!0;var r=i(n(72)),s=i(n(71)),o="function"==typeof s.default&&"symbol"==typeof r.default?function(t){return typeof t}:function(t){return t&&"function"==typeof s.default&&t.constructor===s.default&&t!==s.default.prototype?"symbol":typeof t};e.default="function"==typeof s.default&&"symbol"===o(r.default)?function(t){return void 0===t?"undefined":o(t)}:function(t){return t&&"function"==typeof s.default&&t.constructor===s.default&&t!==s.default.prototype?"symbol":void 0===t?"undefined":o(t)}},function(t,e){var n={}.toString;t.exports=function(t){return n.call(t).slice(8,-1)}},function(t,e,n){var i=n(8),r=n(1).document,s=i(r)&&i(r.createElement);t.exports=function(t){return s?r.createElement(t):{}}},function(t,e,n){var i=n(1),r=n(10),s=n(78),o=n(4),a=n(2),l=function(t,e,n){var c,u,h,d=t&l.F,p=t&l.G,f=t&l.S,m=t&l.P,v=t&l.B,g=t&l.W,_=p?r:r[e]||(r[e]={}),b=_.prototype,y=p?i:f?i[e]:(i[e]||{}).prototype;for(c in p&&(n=e),n)(u=!d&&y&&void 0!==y[c])&&a(_,c)||(h=u?y[c]:n[c],_[c]=p&&"function"!=typeof y[c]?n[c]:v&&u?s(h,i):g&&y[c]==h?function(t){var e=function(e,n,i){if(this instanceof t){switch(arguments.length){case 0:return new t;case 1:return new t(e);case 2:return new t(e,n)}return new t(e,n,i)}return t.apply(this,arguments)};return e.prototype=t.prototype,e}(h):m&&"function"==typeof h?s(Function.call,h):h,m&&((_.virtual||(_.virtual={}))[c]=h,t&l.R&&b&&!b[c]&&o(b,c,h)))};l.F=1,l.G=2,l.S=4,l.P=8,l.B=16,l.W=32,l.U=64,l.R=128,t.exports=l},function(t,e,n){t.exports=!n(3)&&!n(11)(function(){return 7!=Object.defineProperty(n(39)("div"),"a",{get:function(){return 7}}).a})},function(t,e,n){"use strict";var i=n(12),r=n(40),s=n(47),o=n(4),a=n(21),l=n(83),c=n(24),u=n(89),h=n(7)("iterator"),d=!([].keys&&"next"in[].keys()),p=function(){return this};t.exports=function(t,e,n,f,m,v,g){l(n,e,f);var _,b,y,x=function(t){if(!d&&t in S)return S[t];switch(t){case"keys":case"values":return function(){return new n(this,t)}}return function(){return new n(this,t)}},k=e+" Iterator",w="values"==m,C=!1,S=t.prototype,T=S[h]||S["@@iterator"]||m&&S[m],V=T||x(m),$=m?w?x("entries"):V:void 0,j="Array"==e&&S.entries||T;if(j&&(y=u(j.call(new t)))!==Object.prototype&&y.next&&(c(y,k,!0),i||"function"==typeof y[h]||o(y,h,p)),w&&T&&"values"!==T.name&&(C=!0,V=function(){return T.call(this)}),i&&!g||!d&&!C&&S[h]||o(S,h,V),a[e]=V,a[k]=p,m)if(_={values:w?V:x("values"),keys:v?V:x("keys"),entries:$},g)for(b in _)b in S||s(S,b,_[b]);else r(r.P+r.F*(d||C),e,_);return _}},function(t,e,n){var i=n(9),r=n(86),s=n(20),o=n(25)("IE_PROTO"),a=function(){},l=function(){var t,e=n(39)("iframe"),i=s.length;for(e.style.display="none",n(80).appendChild(e),e.src="javascript:",(t=e.contentWindow.document).open(),t.write("<script>document.F=Object<\/script>"),t.close(),l=t.F;i--;)delete l.prototype[s[i]];return l()};t.exports=Object.create||function(t,e){var n;return null!==t?(a.prototype=i(t),n=new a,a.prototype=null,n[o]=t):n=l(),void 0===e?n:r(n,e)}},function(t,e,n){var i=n(46),r=n(20).concat("length","prototype");e.f=Object.getOwnPropertyNames||function(t){return i(t,r)}},function(t,e){e.f=Object.getOwnPropertySymbols},function(t,e,n){var i=n(2),r=n(6),s=n(77)(!1),o=n(25)("IE_PROTO");t.exports=function(t,e){var n,a=r(t),l=0,c=[];for(n in a)n!=o&&i(a,n)&&c.push(n);for(;e.length>l;)i(a,n=e[l++])&&(~s(c,n)||c.push(n));return c}},function(t,e,n){t.exports=n(4)},function(t,e,n){"use strict";t.exports=n(105)},function(t,e,n){"use strict";var i="<[A-Za-z][A-Za-z0-9\\-]*(?:\\s+[a-zA-Z_:][a-zA-Z0-9:._-]*(?:\\s*=\\s*(?:[^\"'=<>`\\x00-\\x20]+|'[^']*'|\"[^\"]*\"))?)*\\s*\\/?>",r="<\\/[A-Za-z][A-Za-z0-9\\-]*\\s*>",s=new RegExp("^(?:"+i+"|"+r+"|\x3c!----\x3e|\x3c!--(?:-?[^>-])(?:-?[^-])*--\x3e|<[?].*?[?]>|<![A-Z]+\\s+[^>]*>|<!\\[CDATA\\[[\\s\\S]*?\\]\\]>)"),o=new RegExp("^(?:"+i+"|"+r+")");t.exports.HTML_TAG_RE=s,t.exports.HTML_OPEN_CLOSE_TAG_RE=o},function(t,e,n){"use strict";t.exports.tokenize=function(t,e){var n,i,r=t.pos,s=t.src.charCodeAt(r);if(e)return!1;if(95!==s&&42!==s)return!1;for(i=t.scanDelims(t.pos,42===s),n=0;n<i.length;n++)t.push("text","",0).content=String.fromCharCode(s),t.delimiters.push({marker:s,length:i.length,jump:n,token:t.tokens.length-1,level:t.level,end:-1,open:i.can_open,close:i.can_close});return t.pos+=i.length,!0},t.exports.postProcess=function(t){var e,n,i,r,s,o,a=t.delimiters;for(e=t.delimiters.length-1;e>=0;e--)95!==(n=a[e]).marker&&42!==n.marker||-1!==n.end&&(i=a[n.end],o=e>0&&a[e-1].end===n.end+1&&a[e-1].token===n.token-1&&a[n.end+1].token===i.token+1&&a[e-1].marker===n.marker,s=String.fromCharCode(n.marker),(r=t.tokens[n.token]).type=o?"strong_open":"em_open",r.tag=o?"strong":"em",r.nesting=1,r.markup=o?s+s:s,r.content="",(r=t.tokens[i.token]).type=o?"strong_close":"em_close",r.tag=o?"strong":"em",r.nesting=-1,r.markup=o?s+s:s,r.content="",o&&(t.tokens[a[e-1].token].content="",t.tokens[a[n.end+1].token].content="",e--))}},function(t,e,n){"use strict";t.exports.tokenize=function(t,e){var n,i,r,s,o=t.pos,a=t.src.charCodeAt(o);if(e)return!1;if(126!==a)return!1;if(r=(i=t.scanDelims(t.pos,!0)).length,s=String.fromCharCode(a),r<2)return!1;for(r%2&&(t.push("text","",0).content=s,r--),n=0;n<r;n+=2)t.push("text","",0).content=s+s,t.delimiters.push({marker:a,jump:n,token:t.tokens.length-1,level:t.level,end:-1,open:i.can_open,close:i.can_close});return t.pos+=i.length,!0},t.exports.postProcess=function(t){var e,n,i,r,s,o=[],a=t.delimiters,l=t.delimiters.length;for(e=0;e<l;e++)126===(i=a[e]).marker&&-1!==i.end&&(r=a[i.end],(s=t.tokens[i.token]).type="s_open",s.tag="s",s.nesting=1,s.markup="~~",s.content="",(s=t.tokens[r.token]).type="s_close",s.tag="s",s.nesting=-1,s.markup="~~",s.content="","text"===t.tokens[r.token-1].type&&"~"===t.tokens[r.token-1].content&&o.push(r.token-1));for(;o.length;){for(n=(e=o.pop())+1;n<t.tokens.length&&"s_close"===t.tokens[n].type;)n++;e!==--n&&(s=t.tokens[n],t.tokens[n]=t.tokens[e],t.tokens[e]=s)}}},function(t,e,n){"use strict";t.exports.encode=n(175),t.exports.decode=n(174),t.exports.format=n(176),t.exports.parse=n(177)},function(t,e){t.exports=/[\0-\x1F\x7F-\x9F]/},function(t,e){t.exports=/[ \xA0\u1680\u2000-\u200A\u202F\u205F\u3000]/},function(t,e){t.exports=/[\0-\uD7FF\uE000-\uFFFF]|[\uD800-\uDBFF][\uDC00-\uDFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF]/},function(t,e,n){var i=!1,r=n(16)(n(61),n(190),function(t){i||(n(193),n(194))},"data-v-7a63e4b3",null);r.options.__file="D:\\webstrom\\workplace\\mavonEditor\\src\\mavon-editor.vue",r.esModule&&Object.keys(r.esModule).some(function(t){return"default"!==t&&"__"!==t.substr(0,2)})&&console.error("named exports are not supported in *.vue files."),r.options.functional&&console.error("[vue-loader] mavon-editor.vue: functional components are not supported with templates, they should use render functions."),t.exports=r.exports},function(t,e,n){"use strict";var i=n(186),r={autoTextarea:i,install:function(t){t.component("auto-textarea",i)}};t.exports=r},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={data:function(){var t=this;return{temp_value:t.value,s_autofocus:function(){if(t.autofocus)return"autofocus"}()}},created:function(){},props:{fullHeight:{type:Boolean,default:!1},autofocus:{type:Boolean,default:!1},value:{type:String,default:""},placeholder:{type:String,default:""},border:{type:Boolean,default:!1},resize:{type:Boolean,default:!1},onchange:{type:Function,default:null},fontSize:{type:String,default:"14px"},lineHeight:{type:String,default:"18px"}},methods:{change:function(t){this.onchange&&this.onchange(this.temp_value,t)}},watch:{value:function(t,e){this.temp_value=t},temp_value:function(t,e){this.$emit("input",t)}}}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"s-md-toolbar-left",props:{editable:{type:Boolean,default:!0},toolbars:{type:Object,required:!0},d_words:{type:Object,required:!0},image_filter:{type:Function,default:null}},data:function(){return{img_file:[[0,null]],img_timer:null,header_timer:null,s_img_dropdown_open:!1,s_header_dropdown_open:!1,s_img_link_open:!1,trigger:null,num:0,link_text:"",link_addr:"",link_type:"link"}},methods:{$imgLinkAdd:function(){this.$emit("toolbar_left_addlink",this.link_type,this.link_text,this.link_addr),this.s_img_link_open=!1},$toggle_imgLinkAdd:function(t){var e=this;this.link_type=t,this.link_text=this.link_addr="",this.s_img_link_open=!0,this.$nextTick(function(){e.$refs.linkTextInput.focus()}),this.s_img_dropdown_open=!1},$imgFileListClick:function(t){this.$emit("imgTouch",this.img_file[t])},$changeUrl:function(t,e){this.img_file[t][1]=e},$imgFileAdd:function(t){this.img_file.push([t,this.num]),this.$emit("imgAdd",this.num,t),this.num=this.num+1,this.s_img_dropdown_open=!1},$imgFilesAdd:function(t){for(var e="function"==typeof this.image_filter,n=0;n<t.length;n++)e&&!0===this.image_filter(t[n])?this.$imgFileAdd(t[n]):!e&&t[n].type.match(/^image\//i)&&this.$imgFileAdd(t[n])},$imgAdd:function(t){this.$imgFilesAdd(t.target.files)},$imgDel:function(t){this.$emit("imgDel",this.img_file[t]),delete this.img_file[t],this.s_img_dropdown_open=!1},isEqualName:function(t,e){return!(!this.img_file[e][1]||this.img_file[e][1].name!=t&&this.img_file[e][1]._name!=t)},$imgDelByFilename:function(t){for(var e=0;this.img_file.length>e;){if(console.log(this.img_file[e]),this.img_file[e][0]==t||this.isEqualName(t,e))return this.$imgDel(e),!0;e+=1}return!1},$imgAddByFilename:function(t,e){for(var n=0;n<this.img_file.length;n++)if(this.img_file[n][0]==t)return!1;return this.img_file[0][0]=t,this.img_file[0][1]=e,this.img_file[0][2]=t,this.img_file.unshift(["./"+this.num,null]),this.$emit("imgAdd",this.img_file[1][0],e,!1),!0},$imgAddByUrl:function(t,e){for(var n=0;n<this.img_file.length;n++)if(this.img_file[n][0]==t)return!1;return this.img_file[0][0]=t,this.img_file[0][1]=e,this.img_file.unshift(["./"+this.num,null]),!0},$imgUpdateByFilename:function(t,e){for(var n=0;n<this.img_file.length;n++)if(this.img_file[n][0]==t||this.isEqualName(t,n))return this.img_file[n][1]=e,this.$emit("imgAdd",t,e,!1),!0;return!1},$mouseenter_img_dropdown:function(){this.editable&&(clearTimeout(this.img_timer),this.s_img_dropdown_open=!0)},$mouseleave_img_dropdown:function(){var t=this;this.img_timer=setTimeout(function(){t.s_img_dropdown_open=!1},200)},$mouseenter_header_dropdown:function(){this.editable&&(clearTimeout(this.header_timer),this.s_header_dropdown_open=!0)},$mouseleave_header_dropdown:function(){var t=this;this.header_timer=setTimeout(function(){t.s_header_dropdown_open=!1},200)},$clicks:function(t){this.editable&&this.$emit("toolbar_left_click",t)},$click_header:function(t){this.$emit("toolbar_left_click",t),this.s_header_dropdown_open=!1},handleClose:function(t){this.s_img_dropdown_open=!1}}}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"s-md-toolbar-right",props:{s_subfield:{type:Boolean,required:!0},toolbars:{type:Object,required:!0},s_preview_switch:{type:Boolean,required:!0},s_fullScreen:{type:Boolean,required:!0},s_html_code:{type:Boolean,required:!0},s_navigation:{type:Boolean,required:!0},d_words:{type:Object,required:!0}},methods:{$clicks:function(t){this.$emit("toolbar_right_click",t)}}}},function(module,__webpack_exports__,__webpack_require__){"use strict";Object.defineProperty(__webpack_exports__,"__esModule",{value:!0});var __WEBPACK_IMPORTED_MODULE_0_babel_runtime_helpers_typeof__=__webpack_require__(37),__WEBPACK_IMPORTED_MODULE_0_babel_runtime_helpers_typeof___default=__webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_babel_runtime_helpers_typeof__),__WEBPACK_IMPORTED_MODULE_1_auto_textarea__=__webpack_require__(57),__WEBPACK_IMPORTED_MODULE_1_auto_textarea___default=__webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_auto_textarea__),__WEBPACK_IMPORTED_MODULE_2__lib_core_keydown_listen_js__=__webpack_require__(66),__WEBPACK_IMPORTED_MODULE_3__lib_core_hljs_lang_hljs_css_js__=__webpack_require__(65),__WEBPACK_IMPORTED_MODULE_4__lib_core_hljs_lang_hljs_js__=__webpack_require__(36),__WEBPACK_IMPORTED_MODULE_5__lib_core_extra_function_js__=__webpack_require__(18),__WEBPACK_IMPORTED_MODULE_6__lib_util_js__=__webpack_require__(70),__WEBPACK_IMPORTED_MODULE_7__lib_toolbar_left_click_js__=__webpack_require__(68),__WEBPACK_IMPORTED_MODULE_8__lib_toolbar_right_click_js__=__webpack_require__(69),__WEBPACK_IMPORTED_MODULE_9__lib_config_js__=__webpack_require__(63),__WEBPACK_IMPORTED_MODULE_10__lib_core_highlight_js__=__webpack_require__(64),__WEBPACK_IMPORTED_MODULE_11__lib_mixins_markdown_js__=__webpack_require__(67),__WEBPACK_IMPORTED_MODULE_12__components_md_toolbar_left_vue__=__webpack_require__(34),__WEBPACK_IMPORTED_MODULE_12__components_md_toolbar_left_vue___default=__webpack_require__.n(__WEBPACK_IMPORTED_MODULE_12__components_md_toolbar_left_vue__),__WEBPACK_IMPORTED_MODULE_13__components_md_toolbar_right_vue__=__webpack_require__(35),__WEBPACK_IMPORTED_MODULE_13__components_md_toolbar_right_vue___default=__webpack_require__.n(__WEBPACK_IMPORTED_MODULE_13__components_md_toolbar_right_vue__),__WEBPACK_IMPORTED_MODULE_14__lib_font_css_fontello_css__=__webpack_require__(107),__WEBPACK_IMPORTED_MODULE_14__lib_font_css_fontello_css___default=__webpack_require__.n(__WEBPACK_IMPORTED_MODULE_14__lib_font_css_fontello_css__),__WEBPACK_IMPORTED_MODULE_15__lib_css_md_css__=__webpack_require__(106),__WEBPACK_IMPORTED_MODULE_15__lib_css_md_css___default=__webpack_require__.n(__WEBPACK_IMPORTED_MODULE_15__lib_css_md_css__);__webpack_exports__.default={mixins:[__WEBPACK_IMPORTED_MODULE_11__lib_mixins_markdown_js__.a],props:{scrollStyle:{type:Boolean,default:!0},boxShadow:{type:Boolean,default:!0},fontSize:{type:String,default:"15px"},help:{type:String,default:null},value:{type:String,default:""},language:{type:String,default:"zh-CN"},subfield:{type:Boolean,default:!0},navigation:{type:Boolean,default:!1},defaultOpen:{type:String,default:null},editable:{type:Boolean,default:!0},toolbarsFlag:{type:Boolean,default:!0},toolbars:{type:Object,default:function(){return __WEBPACK_IMPORTED_MODULE_9__lib_config_js__.a.toolbars}},codeStyle:{type:String,default:function(){return"github"}},placeholder:{type:String,default:null},ishljs:{type:Boolean,default:!0},externalLink:{type:[Object,Boolean],default:!0},imageFilter:{type:Function,default:null},imageClick:{type:Function,default:null}},data:function(){var t,e=this;return{s_right_click_menu_show:!1,right_click_menu_top:0,right_click_menu_left:0,s_subfield:e.subfield,s_autofocus:!0,s_navigation:e.navigation,s_scrollStyle:e.scrollStyle,d_value:"",d_render:"",s_preview_switch:(t=e.defaultOpen,t||(t=e.subfield?"preview":"edit"),"preview"===t),s_fullScreen:!1,s_help:!1,s_html_code:!1,d_help:null,d_words:null,edit_scroll_height:-1,s_readmodel:!1,s_table_enter:!1,d_history:function(){var t=[];return t.push(e.value),t}(),d_history_index:0,currentTimeout:"",d_image_file:[],d_preview_imgsrc:null,s_external_link:{markdown_css:function(){return"https://cdnjs.cloudflare.com/ajax/libs/github-markdown-css/2.9.0/github-markdown.min.css"},hljs_js:function(){return"https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/highlight.min.js"},hljs_lang:function(t){return"https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/languages/"+t+".min.js"},hljs_css:function(t){return __WEBPACK_IMPORTED_MODULE_3__lib_core_hljs_lang_hljs_css_js__.a[t]?"https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/styles/"+t+".min.css":""},katex_js:function(){return"https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.8.3/katex.min.js"},katex_css:function(){return"https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.8.3/katex.min.css"}},p_external_link:{}}},created:function(){var t=this;this.initExternalFuc(),this.initLanguage(),this.$nextTick(function(){t.editableTextarea()})},mounted:function(){var t=this;this.$el.addEventListener("paste",function(e){t.$paste(e)}),this.$el.addEventListener("drop",function(e){t.$drag(e)}),__webpack_require__.i(__WEBPACK_IMPORTED_MODULE_2__lib_core_keydown_listen_js__.a)(this),__webpack_require__.i(__WEBPACK_IMPORTED_MODULE_5__lib_core_extra_function_js__.a)(this),this.getTextareaDom().focus(),__webpack_require__.i(__WEBPACK_IMPORTED_MODULE_5__lib_core_extra_function_js__.b)(this),this.d_value=this.value,document.body.appendChild(this.$refs.help),t.loadExternalLink("markdown_css","css"),t.loadExternalLink("katex_css","css"),t.loadExternalLink("katex_js","js",function(){t.initLanguage(),t.iRender()}),t.loadExternalLink("hljs_js","js",function(){t.initLanguage(),t.iRender()}),t.codeStyleChange(t.codeStyle,!0)},beforeDestroy:function(){document.body.removeChild(this.$refs.help)},getMarkdownIt:function(){return this.mixins[0].data().markdownIt},methods:{loadExternalLink:function(t,e,n){if("function"==typeof this.p_external_link[t]){var i={css:__WEBPACK_IMPORTED_MODULE_5__lib_core_extra_function_js__.c,js:__WEBPACK_IMPORTED_MODULE_5__lib_core_extra_function_js__.d};i.hasOwnProperty(e)&&i[e](this.p_external_link[t](),n)}else 0!=this.p_external_link[t]&&console.error("external_link."+t,"is not a function, if you want to disabled this error log, set external_link."+t,"to function or false")},initExternalFuc:function(){for(var t=this,e=["markdown_css","hljs_js","hljs_css","hljs_lang","katex_js","katex_css"],n=__WEBPACK_IMPORTED_MODULE_0_babel_runtime_helpers_typeof___default()(t.externalLink),i="object"===n,r="boolean"===n,s=0;s<e.length;s++)r&&!t.externalLink||i&&!1===t.externalLink[e[s]]?t.p_external_link[e[s]]=!1:i&&"function"==typeof t.externalLink[e[s]]?t.p_external_link[e[s]]=t.externalLink[e[s]]:t.p_external_link[e[s]]=t.s_external_link[e[s]]},textAreaFocus:function(){this.$refs.vNoteTextarea.$refs.vTextarea.focus()},$drag:function(t){var e=t.dataTransfer;if(e){var n=e.files;n.length>0&&(t.preventDefault(),this.$refs.toolbar_left.$imgFilesAdd(n))}},$paste:function(t){var e=t.clipboardData;if(e){var n=e.items;if(!n)return;for(var i=e.types||[],r=null,s=0;s<i.length;s++)if("Files"===i[s]){r=n[s];break}if(r&&"file"===r.kind){__webpack_require__.i(__WEBPACK_IMPORTED_MODULE_6__lib_util_js__.a)(t);var o=r.getAsFile();this.$refs.toolbar_left.$imgFilesAdd([o])}}},$imgTouch:function(t){},$imgDel:function(t){this.markdownIt.image_del(t[0]);var e=t[1],n=new RegExp("\\!\\["+t[0]._name+"\\]\\("+e+"\\)","g");this.d_value=this.d_value.replace(n,""),this.iRender(),this.$emit("imgDel",t)},$imgAdd:function(t,e,n){void 0===n&&(n=!0);var i=this;if(null==this.__rFilter&&(this.__rFilter=/^image\//i),this.__oFReader=new FileReader,this.__oFReader.onload=function(r){i.markdownIt.image_add(t,r.target.result),e.miniurl=r.target.result,!0===n&&(e._name=e.name.replace(/[\[\]\(\)\+\{\}&\|\\\*^%$#@\-]/g,""),i.insertText(i.getTextareaDom(),{prefix:"!["+e._name+"]("+t+")",subfix:"",str:""}),i.$nextTick(function(){i.$emit("imgAdd",t,e)}))},e){var r=e;this.__rFilter.test(r.type)&&this.__oFReader.readAsDataURL(r)}},$imgUpdateByUrl:function(t,e){var n=this;this.markdownIt.image_add(t,e),this.$nextTick(function(){n.d_render=this.markdownIt.render(this.d_value)})},$imgAddByUrl:function(t,e){return!!this.$refs.toolbar_left.$imgAddByUrl(t,e)&&(this.$imgUpdateByUrl(t,e),!0)},$img2Url:function $img2Url(fileIndex,url){var reg_str="/(!\\[[^\\[]*?\\](?=\\())\\(\\s*("+fileIndex+")\\s*\\)/g",reg=eval(reg_str);this.d_value=this.d_value.replace(reg,"$1("+url+")"),this.$refs.toolbar_left.$changeUrl(fileIndex,url),this.iRender()},$imglst2Url:function(t){if(t instanceof Array)for(var e=0;e<t.length;e++)this.$img2Url(t[e][0],t[e][1])},toolbar_left_click:function(t){__webpack_require__.i(__WEBPACK_IMPORTED_MODULE_7__lib_toolbar_left_click_js__.a)(t,this)},toolbar_left_addlink:function(t,e,n){__webpack_require__.i(__WEBPACK_IMPORTED_MODULE_7__lib_toolbar_left_click_js__.b)(t,e,n,this)},toolbar_right_click:function(t){__webpack_require__.i(__WEBPACK_IMPORTED_MODULE_8__lib_toolbar_right_click_js__.a)(t,this)},getNavigation:function(t,e){return __webpack_require__.i(__WEBPACK_IMPORTED_MODULE_5__lib_core_extra_function_js__.e)(t,e)},change:function(t,e){this.$emit("change",t,e)},fullscreen:function(t,e){this.$emit("fullScreen",t,e)},readmodel:function(t,e){this.$emit("readModel",t,e)},previewtoggle:function(t,e){this.$emit("previewToggle",t,e)},subfieldtoggle:function(t,e){this.$emit("subfieldToggle",t,e)},htmlcode:function(t,e){this.$emit("htmlCode",t,e)},helptoggle:function(t,e){this.$emit("helpToggle",t,e)},save:function(t,e){this.$emit("save",t,e)},navigationtoggle:function(t,e){this.$emit("navigationToggle",t,e)},$toolbar_right_read_change_status:function(){this.s_readmodel=!this.s_readmodel,this.readmodel&&this.readmodel(this.s_readmodel,this.d_value),this.s_readmodel&&this.toolbars.navigation&&this.getNavigation(this,!0)},$v_edit_scroll:function(t){__webpack_require__.i(__WEBPACK_IMPORTED_MODULE_5__lib_core_extra_function_js__.f)(t,this)},getTextareaDom:function(){return this.$refs.vNoteTextarea.$refs.vTextarea},insertText:function(t,e){var n=e.prefix,i=e.subfix,r=e.str,s=e.type;__webpack_require__.i(__WEBPACK_IMPORTED_MODULE_5__lib_core_extra_function_js__.g)(t,{prefix:n,subfix:i,str:r,type:s},this)},insertTab:function(){__webpack_require__.i(__WEBPACK_IMPORTED_MODULE_5__lib_core_extra_function_js__.h)(this)},insertOl:function(){__webpack_require__.i(__WEBPACK_IMPORTED_MODULE_5__lib_core_extra_function_js__.i)(this)},removeLine:function(){__webpack_require__.i(__WEBPACK_IMPORTED_MODULE_5__lib_core_extra_function_js__.j)(this)},insertUl:function(){__webpack_require__.i(__WEBPACK_IMPORTED_MODULE_5__lib_core_extra_function_js__.k)(this)},unInsertTab:function(){__webpack_require__.i(__WEBPACK_IMPORTED_MODULE_5__lib_core_extra_function_js__.l)(this)},insertEnter:function(t){__webpack_require__.i(__WEBPACK_IMPORTED_MODULE_5__lib_core_extra_function_js__.m)(this,t)},saveHistory:function(){this.d_history.splice(this.d_history_index+1,this.d_history.length),this.d_history.push(this.d_value),this.d_history_index=this.d_history.length-1},initLanguage:function(){var t=__WEBPACK_IMPORTED_MODULE_9__lib_config_js__.a.langList.indexOf(this.language)>=0?this.language:"zh-CN",e=this;e.$render(__WEBPACK_IMPORTED_MODULE_9__lib_config_js__.a["help_"+t],function(t){e.d_help=t}),this.d_words=__WEBPACK_IMPORTED_MODULE_9__lib_config_js__.a["words_"+t]},editableTextarea:function(){var t=this.$refs.vNoteTextarea.$refs.vTextarea;this.editable?t.removeAttribute("disabled"):t.setAttribute("disabled","disabled")},codeStyleChange:function(t,e){if(e=e||!1,"function"==typeof this.p_external_link.hljs_css){var n=this.p_external_link.hljs_css(t);0===n.length&&e&&(console.warn("hljs color scheme",t,"do not exist, loading default github"),n=this.p_external_link.hljs_css("github")),n.length>0?__webpack_require__.i(__WEBPACK_IMPORTED_MODULE_5__lib_core_extra_function_js__.c)(n):console.warn("hljs color scheme",t,"do not exist, hljs color scheme will not change")}else 0!=this.p_external_link.hljs_css&&console.error("external_link.hljs_css is not a function, if you want to disabled this error log, set external_link.hljs_css to function or false")},iRender:function(){var t=this;t.$render(t.d_value,function(e){t.d_render=e,t.change&&t.change(t.d_value,t.d_render),t.s_navigation&&__webpack_require__.i(__WEBPACK_IMPORTED_MODULE_5__lib_core_extra_function_js__.e)(t,!1),t.$emit("input",t.d_value),t.d_value!==t.d_history[t.d_history_index]&&(window.clearTimeout(t.currentTimeout),t.currentTimeout=setTimeout(function(){t.saveHistory()},500))})},$emptyHistory:function(){this.d_history=[this.d_value],this.d_history_index=0}},watch:{d_value:function(t,e){this.iRender(t)},value:function(t,e){t!==this.d_value&&(this.d_value=t)},subfield:function(t,e){this.s_subfield=t},d_history_index:function(){this.d_history_index>20&&(this.d_history.shift(),this.d_history_index=this.d_history_index-1),this.d_value=this.d_history[this.d_history_index]},language:function(t){this.initLanguage()},editable:function(){this.editableTextarea()},defaultOpen:function(t){var e=t;return e||(e=this.subfield?"preview":"edit"),this.s_preview_switch="preview"===e},codeStyle:function(t){this.codeStyleChange(t)}},components:{"v-autoTextarea":__WEBPACK_IMPORTED_MODULE_1_auto_textarea__.autoTextarea,"v-md-toolbar-left":__WEBPACK_IMPORTED_MODULE_12__components_md_toolbar_left_vue___default.a,"v-md-toolbar-right":__WEBPACK_IMPORTED_MODULE_13__components_md_toolbar_right_vue___default.a}}},function(t,e,n){"use strict";var i=n(56),r={markdownIt:i.mixins[0].data().markdownIt,mavonEditor:i,LeftToolbar:n(34),RightToolbar:n(35),install:function(t){t.component("mavon-editor",i)}};t.exports=r},function(t,e,n){"use strict";n.d(e,"a",function(){return w});var i=n(183),r=n.n(i),s=n(179),o=n.n(s),a=n(180),l=n.n(a),c=n(181),u=n.n(c),h=n(182),d=n.n(h),p=n(202),f=n.n(p),m=n(198),v=n.n(m),g=n(199),_=n.n(g),b=n(200),y=n.n(b),x=n(201),k=n.n(x),w={"help_zh-CN":r.a,"help_pt-BR":u.a,help_en:o.a,help_fr:l.a,help_ru:d.a,"words_zh-CN":f.a,"words_pt-BR":y.a,words_en:v.a,words_fr:_.a,words_ru:k.a,langList:["en","zh-CN","fr","pt-BR","ru"],toolbars:{bold:!0,italic:!0,header:!0,underline:!0,strikethrough:!0,mark:!0,superscript:!0,subscript:!0,quote:!0,ol:!0,ul:!0,link:!0,imagelink:!0,code:!0,table:!0,undo:!0,redo:!0,trash:!0,save:!0,alignleft:!0,aligncenter:!0,alignright:!0,navigation:!0,subfield:!0,fullscreen:!0,readmodel:!0,htmlcode:!0,help:!0,preview:!0}}},function(t,e,n){"use strict";n(18)},function(t,e,n){"use strict";e.a={agate:1,androidstudio:1,"arduino-light":1,arta:1,ascetic:1,"atelier-cave-dark":1,"atelier-cave-light":1,"atelier-dune-dark":1,"atelier-dune-light":1,"atelier-estuary-dark":1,"atelier-estuary-light":1,"atelier-forest-dark":1,"atelier-forest-light":1,"atelier-heath-dark":1,"atelier-heath-light":1,"atelier-lakeside-dark":1,"atelier-lakeside-light":1,"atelier-plateau-dark":1,"atelier-plateau-light":1,"atelier-savanna-dark":1,"atelier-savanna-light":1,"atelier-seaside-dark":1,"atelier-seaside-light":1,"atelier-sulphurpool-dark":1,"atelier-sulphurpool-light":1,"atom-one-dark":1,"atom-one-light":1,"brown-paper":1,"codepen-embed":1,"color-brewer":1,darcula:1,dark:1,darkula:1,default:1,docco:1,dracula:1,far:1,foundation:1,"github-gist":1,github:1,googlecode:1,grayscale:1,"gruvbox-dark":1,"gruvbox-light":1,hopscotch:1,hybrid:1,idea:1,"ir-black":1,"kimbie.dark":1,"kimbie.light":1,magula:1,"mono-blue":1,"monokai-sublime":1,monokai:1,obsidian:1,ocean:1,"paraiso-dark":1,"paraiso-light":1,pojoaque:1,purebasic:1,qtcreator_dark:1,qtcreator_light:1,railscasts:1,rainbow:1,routeros:1,"school-book":1,"solarized-dark":1,"solarized-light":1,sunburst:1,"tomorrow-night-blue":1,"tomorrow-night-bright":1,"tomorrow-night-eighties":1,"tomorrow-night":1,tomorrow:1,vs:1,vs2015:1,xcode:1,xt256:1,zenburn:1}},function(t,e,n){"use strict";n.d(e,"a",function(){return M});var i=119,r=120,s=121,o=122,a=123,l=66,c=73,u=72,h=85,d=68,p=77,f=81,m=79,v=76,g=83,_=90,b=89,y=67,x=84,k=82,w=8,C=9,S=13,T=97,V=98,$=99,j=100,O=101,A=102,I=49,D=50,E=51,P=52,L=53,B=54,M=function(t){t.$el.addEventListener("keydown",function(e){if(e.ctrlKey||e.metaKey||e.altKey||e.shiftKey)if(!e.ctrlKey&&!e.metaKey||e.altKey||e.shiftKey){if((e.ctrlKey||e.metaKey)&&e.altKey&&!e.shiftKey)switch(e.keyCode){case g:e.preventDefault(),t.toolbar_left_click("superscript");break;case h:e.preventDefault(),t.toolbar_left_click("ul");break;case v:e.preventDefault(),t.toolbar_left_click("imagelink");break;case y:e.preventDefault(),t.toolbar_left_click("code");break;case x:e.preventDefault(),t.toolbar_left_click("table")}else if((e.ctrlKey||e.metaKey)&&e.shiftKey&&!e.altKey)switch(e.keyCode){case g:e.preventDefault(),t.toolbar_left_click("subscript");break;case d:e.preventDefault(),t.toolbar_left_click("strikethrough");break;case v:e.preventDefault(),t.toolbar_left_click("alignleft");break;case k:e.preventDefault(),t.toolbar_left_click("alignright");break;case y:e.preventDefault(),t.toolbar_left_click("aligncenter")}else if(!e.ctrlKey&&!e.metaKey&&e.shiftKey&&!e.altKey)switch(e.keyCode){case C:t.$refs.toolbar_left.s_img_link_open||(e.preventDefault(),t.unInsertTab())}}else switch(e.keyCode){case l:e.preventDefault(),t.toolbar_left_click("bold");break;case c:e.preventDefault(),t.toolbar_left_click("italic");break;case u:e.preventDefault(),t.toolbar_left_click("header");break;case h:e.preventDefault(),t.toolbar_left_click("underline");break;case d:e.preventDefault(),t.toolbar_left_click("removeLine");break;case p:e.preventDefault(),t.toolbar_left_click("mark");break;case f:e.preventDefault(),t.toolbar_left_click("quote");break;case m:e.preventDefault(),t.toolbar_left_click("ol");break;case v:e.preventDefault(),t.toolbar_left_click("link");break;case g:e.preventDefault(),t.toolbar_left_click("save");break;case _:e.preventDefault(),t.toolbar_left_click("undo");break;case b:e.preventDefault(),t.toolbar_left_click("redo");break;case w:e.preventDefault(),t.toolbar_left_click("trash");break;case T:e.preventDefault(),t.toolbar_left_click("header1");break;case V:e.preventDefault(),t.toolbar_left_click("header2");break;case $:e.preventDefault(),t.toolbar_left_click("header3");break;case j:e.preventDefault(),t.toolbar_left_click("header4");break;case O:e.preventDefault(),t.toolbar_left_click("header5");break;case A:e.preventDefault(),t.toolbar_left_click("header6");break;case I:e.preventDefault(),t.toolbar_left_click("header1");break;case D:e.preventDefault(),t.toolbar_left_click("header2");break;case E:e.preventDefault(),t.toolbar_left_click("header3");break;case P:e.preventDefault(),t.toolbar_left_click("header4");break;case L:e.preventDefault(),t.toolbar_left_click("header5");break;case B:e.preventDefault(),t.toolbar_left_click("header6")}else switch(e.keyCode){case i:t.toolbars.navigation&&(e.preventDefault(),t.toolbar_right_click("navigation"));break;case r:t.toolbars.preview&&(e.preventDefault(),t.toolbar_right_click("preview"));break;case s:t.toolbars.fullscreen&&(e.preventDefault(),t.toolbar_right_click("fullscreen"));break;case o:t.toolbars.readmodel&&(e.preventDefault(),t.toolbar_right_click("read"));break;case a:t.toolbars.subfield&&(e.preventDefault(),t.toolbar_right_click("subfield"));break;case C:t.$refs.toolbar_left.s_img_link_open||(e.preventDefault(),t.insertTab());break;case S:t.$refs.toolbar_left.s_img_link_open?(e.preventDefault(),t.$refs.toolbar_left.$imgLinkAdd()):t.insertEnter(e)}})}},function(t,e,n){"use strict";var i=n(36),r=n(18),s=n(129)({html:!0,xhtmlOut:!0,breaks:!0,langPrefix:"lang-",linkify:!1,typographer:!0,quotes:"“”‘’"}),o=n(113),a=n(125),l=n(126),c=n(112),u=n(110),h=n(119),d=n(122),p=n(124),f=n(127),m=n(111),v=n(128),g=s.renderer.rules.link_open||function(t,e,n,i,r){return r.renderToken(t,e,n)};s.renderer.rules.link_open=function(t,e,n,i,r){var s=t[e].attrIndex("target");return s<0?t[e].attrPush(["target","_blank"]):t[e].attrs[s][1]="_blank",g(t,e,n,i,r)};var _=n(120),b=n(123),y=n(121),x={},k=[],w={hljs:"auto",highlighted:!0,langCheck:function(t){t&&i.a[t]&&!x[t]&&(x[t]=1,k.push(t))}};s.use(_,w).use(o).use(l).use(a).use(m).use(m,"hljs-left").use(m,"hljs-center").use(m,"hljs-right").use(c).use(u).use(h).use(d).use(p).use(m).use(y).use(b).use(f).use(v),e.a={data:function(){return{markdownIt:s}},mounted:function(){w.highlighted=this.ishljs},methods:{$render:function(t,e){x={},k=[];var n=s.render(t);this.ishljs&&k.length>0&&this.$_render(t,e,n),e(n)},$_render:function(t,e,i){for(var o=0,a=0;a<k.length;a++){var l=this.p_external_link.hljs_lang(k[a]);n.i(r.d)(l,function(){(o+=1)===k.length&&(i=s.render(t),e(i))})}}},watch:{ishljs:function(t){w.highlighted=t}}}},function(t,e,n){"use strict";function i(t){if(t.d_history_index>0&&t.d_history_index--,t.s_preview_switch){var e=t.getTextareaDom().selectionStart,n=t.d_value.length;t.$nextTick(function(){e-=n-t.d_value.length,t.getTextareaDom().selectionStart=e,t.getTextareaDom().selectionEnd=e})}t.getTextareaDom().focus()}function r(t){t.d_history_index<t.d_history.length-1&&t.d_history_index++,t.getTextareaDom().focus()}function s(t){t.d_value="",t.getTextareaDom().focus()}function o(t){t.save(t.d_value,t.d_render)}function a(t){t.insertOl()}function l(t){t.insertUl()}function c(t){t.removeLine()}n.d(e,"b",function(){return u}),n.d(e,"a",function(){return h});var u=function(t,e,n,i){var r={prefix:"link"===t?"["+e+"](":"!["+e+"](",subfix:")",str:n};i.insertText(i.getTextareaDom(),r)},h=function(t,e){var n={bold:{prefix:"**",subfix:"**",str:e.d_words.tl_bold},italic:{prefix:"*",subfix:"*",str:e.d_words.tl_italic},header:{prefix:"# ",subfix:"",str:e.d_words.tl_header},header1:{prefix:"# ",subfix:"",str:e.d_words.tl_header_one},header2:{prefix:"## ",subfix:"",str:e.d_words.tl_header_two},header3:{prefix:"### ",subfix:"",str:e.d_words.tl_header_three},header4:{prefix:"#### ",subfix:"",str:e.d_words.tl_header_four},header5:{prefix:"##### ",subfix:"",str:e.d_words.tl_header_five},header6:{prefix:"###### ",subfix:"",str:e.d_words.tl_header_six},underline:{prefix:"++",subfix:"++",str:e.d_words.tl_underline},strikethrough:{prefix:"~~",subfix:"~~",str:e.d_words.tl_strikethrough},mark:{prefix:"==",subfix:"==",str:e.d_words.tl_mark},superscript:{prefix:"^",subfix:"^",str:e.d_words.tl_superscript},subscript:{prefix:"~",subfix:"~",str:e.d_words.tl_subscript},quote:{prefix:"> ",subfix:"",str:e.d_words.tl_quote},link:{prefix:"[](",subfix:")",str:e.d_words.tl_link},imagelink:{prefix:"![](",subfix:")",str:e.d_words.tl_image},code:{prefix:"```",subfix:"\n\n```\n",str:"language"},table:{prefix:"",subfix:"",str:"|column1|column2|column3|\n|-|-|-|\n|content1|content2|content3|\n"},aligncenter:{prefix:"::: hljs-center\n\n",subfix:"\n\n:::\n",str:e.d_words.tl_aligncenter},alignright:{prefix:"::: hljs-right\n\n",subfix:"\n\n:::\n",str:e.d_words.tl_alignright},alignleft:{prefix:"::: hljs-left\n\n",subfix:"\n\n:::\n",str:e.d_words.tl_alignleft}};n.hasOwnProperty(t)&&e.insertText(e.getTextareaDom(),n[t]);var u={undo:i,redo:r,trash:s,save:o,ol:a,ul:l,removeLine:c};u.hasOwnProperty(t)&&u[t](e)}},function(t,e,n){"use strict";function i(t){t.s_html_code=!t.s_html_code,t.htmlcode&&t.htmlcode(t.s_html_code,t.d_value)}function r(t){t.s_help=!t.s_help,t.helptoggle&&t.helptoggle(t.s_help,t.d_value)}function s(t){var e=t.$refs.vReadModel;e.requestFullscreen?e.requestFullscreen():e.mozRequestFullScreen?e.mozRequestFullScreen():e.webkitRequestFullscreen?e.webkitRequestFullscreen():e.msRequestFullscreen&&e.msRequestFullscreen()}function o(t){t.s_preview_switch=!t.s_preview_switch,t.previewtoggle&&t.previewtoggle(t.s_preview_switch,t.d_value)}function a(t){t.s_fullScreen=!t.s_fullScreen,t.fullscreen&&t.fullscreen(t.s_fullScreen,t.d_value)}function l(t){t.s_subfield=!t.s_subfield,t.s_preview_switch=t.s_subfield,t.previewtoggle&&t.previewtoggle(t.s_preview_switch,t.d_value),t.subfieldtoggle&&t.subfieldtoggle(t.s_subfield,t.d_value)}function c(t){t.s_navigation=!t.s_navigation,t.s_navigation&&(t.s_preview_switch=!0),t.navigationtoggle&&t.navigationtoggle(t.s_navigation,t.d_value),t.s_navigation&&t.getNavigation(t,!1)}n.d(e,"a",function(){return u});var u=function(t,e){var n={help:r,html:i,read:s,preview:o,fullscreen:a,navigation:c,subfield:l};n.hasOwnProperty(t)&&n[t](e)}},function(t,e,n){"use strict";e.a=function(t){t&&(t.preventDefault&&t.preventDefault(),t.stopPropagation&&t.stopPropagation())};var i=n(37);n.n(i)},function(t,e,n){t.exports={default:n(73),__esModule:!0}},function(t,e,n){t.exports={default:n(74),__esModule:!0}},function(t,e,n){n(97),n(95),n(98),n(99),t.exports=n(10).Symbol},function(t,e,n){n(96),n(100),t.exports=n(30).f("iterator")},function(t,e){t.exports=function(t){if("function"!=typeof t)throw TypeError(t+" is not a function!");return t}},function(t,e){t.exports=function(){}},function(t,e,n){var i=n(6),r=n(92),s=n(91);t.exports=function(t){return function(e,n,o){var a,l=i(e),c=r(l.length),u=s(o,c);if(t&&n!=n){for(;c>u;)if((a=l[u++])!=a)return!0}else for(;c>u;u++)if((t||u in l)&&l[u]===n)return t||u||0;return!t&&-1}}},function(t,e,n){var i=n(75);t.exports=function(t,e,n){if(i(t),void 0===e)return t;switch(n){case 1:return function(n){return t.call(e,n)};case 2:return function(n,i){return t.call(e,n,i)};case 3:return function(n,i,r){return t.call(e,n,i,r)}}return function(){return t.apply(e,arguments)}}},function(t,e,n){var i=n(22),r=n(45),s=n(23);t.exports=function(t){var e=i(t),n=r.f;if(n)for(var o,a=n(t),l=s.f,c=0;a.length>c;)l.call(t,o=a[c++])&&e.push(o);return e}},function(t,e,n){var i=n(1).document;t.exports=i&&i.documentElement},function(t,e,n){var i=n(38);t.exports=Object("z").propertyIsEnumerable(0)?Object:function(t){return"String"==i(t)?t.split(""):Object(t)}},function(t,e,n){var i=n(38);t.exports=Array.isArray||function(t){return"Array"==i(t)}},function(t,e,n){"use strict";var i=n(43),r=n(13),s=n(24),o={};n(4)(o,n(7)("iterator"),function(){return this}),t.exports=function(t,e,n){t.prototype=i(o,{next:r(1,n)}),s(t,e+" Iterator")}},function(t,e){t.exports=function(t,e){return{value:e,done:!!t}}},function(t,e,n){var i=n(14)("meta"),r=n(8),s=n(2),o=n(5).f,a=0,l=Object.isExtensible||function(){return!0},c=!n(11)(function(){return l(Object.preventExtensions({}))}),u=function(t){o(t,i,{value:{i:"O"+ ++a,w:{}}})},h=t.exports={KEY:i,NEED:!1,fastKey:function(t,e){if(!r(t))return"symbol"==typeof t?t:("string"==typeof t?"S":"P")+t;if(!s(t,i)){if(!l(t))return"F";if(!e)return"E";u(t)}return t[i].i},getWeak:function(t,e){if(!s(t,i)){if(!l(t))return!0;if(!e)return!1;u(t)}return t[i].w},onFreeze:function(t){return c&&h.NEED&&l(t)&&!s(t,i)&&u(t),t}}},function(t,e,n){var i=n(5),r=n(9),s=n(22);t.exports=n(3)?Object.defineProperties:function(t,e){r(t);for(var n,o=s(e),a=o.length,l=0;a>l;)i.f(t,n=o[l++],e[n]);return t}},function(t,e,n){var i=n(23),r=n(13),s=n(6),o=n(28),a=n(2),l=n(41),c=Object.getOwnPropertyDescriptor;e.f=n(3)?c:function(t,e){if(t=s(t),e=o(e,!0),l)try{return c(t,e)}catch(t){}if(a(t,e))return r(!i.f.call(t,e),t[e])}},function(t,e,n){var i=n(6),r=n(44).f,s={}.toString,o="object"==typeof window&&window&&Object.getOwnPropertyNames?Object.getOwnPropertyNames(window):[];t.exports.f=function(t){return o&&"[object Window]"==s.call(t)?function(t){try{return r(t)}catch(t){return o.slice()}}(t):r(i(t))}},function(t,e,n){var i=n(2),r=n(93),s=n(25)("IE_PROTO"),o=Object.prototype;t.exports=Object.getPrototypeOf||function(t){return t=r(t),i(t,s)?t[s]:"function"==typeof t.constructor&&t instanceof t.constructor?t.constructor.prototype:t instanceof Object?o:null}},function(t,e,n){var i=n(27),r=n(19);t.exports=function(t){return function(e,n){var s,o,a=String(r(e)),l=i(n),c=a.length;return l<0||l>=c?t?"":void 0:(s=a.charCodeAt(l))<55296||s>56319||l+1===c||(o=a.charCodeAt(l+1))<56320||o>57343?t?a.charAt(l):s:t?a.slice(l,l+2):o-56320+(s-55296<<10)+65536}}},function(t,e,n){var i=n(27),r=Math.max,s=Math.min;t.exports=function(t,e){return(t=i(t))<0?r(t+e,0):s(t,e)}},function(t,e,n){var i=n(27),r=Math.min;t.exports=function(t){return t>0?r(i(t),9007199254740991):0}},function(t,e,n){var i=n(19);t.exports=function(t){return Object(i(t))}},function(t,e,n){"use strict";var i=n(76),r=n(84),s=n(21),o=n(6);t.exports=n(42)(Array,"Array",function(t,e){this._t=o(t),this._i=0,this._k=e},function(){var t=this._t,e=this._k,n=this._i++;return!t||n>=t.length?(this._t=void 0,r(1)):r(0,"keys"==e?n:"values"==e?t[n]:[n,t[n]])},"values"),s.Arguments=s.Array,i("keys"),i("values"),i("entries")},function(t,e){},function(t,e,n){"use strict";var i=n(90)(!0);n(42)(String,"String",function(t){this._t=String(t),this._i=0},function(){var t,e=this._t,n=this._i;return n>=e.length?{value:void 0,done:!0}:(t=i(e,n),this._i+=t.length,{value:t,done:!1})})},function(t,e,n){"use strict";var i=n(1),r=n(2),s=n(3),o=n(40),a=n(47),l=n(85).KEY,c=n(11),u=n(26),h=n(24),d=n(14),p=n(7),f=n(30),m=n(29),v=n(79),g=n(82),_=n(9),b=n(8),y=n(6),x=n(28),k=n(13),w=n(43),C=n(88),S=n(87),T=n(5),V=n(22),$=S.f,j=T.f,O=C.f,A=i.Symbol,I=i.JSON,D=I&&I.stringify,E=p("_hidden"),P=p("toPrimitive"),L={}.propertyIsEnumerable,B=u("symbol-registry"),M=u("symbols"),F=u("op-symbols"),R=Object.prototype,z="function"==typeof A,N=i.QObject,q=!N||!N.prototype||!N.prototype.findChild,H=s&&c(function(){return 7!=w(j({},"a",{get:function(){return j(this,"a",{value:7}).a}})).a})?function(t,e,n){var i=$(R,e);i&&delete R[e],j(t,e,n),i&&t!==R&&j(R,e,i)}:j,W=function(t){var e=M[t]=w(A.prototype);return e._k=t,e},U=z&&"symbol"==typeof A.iterator?function(t){return"symbol"==typeof t}:function(t){return t instanceof A},K=function(t,e,n){return t===R&&K(F,e,n),_(t),e=x(e,!0),_(n),r(M,e)?(n.enumerable?(r(t,E)&&t[E][e]&&(t[E][e]=!1),n=w(n,{enumerable:k(0,!1)})):(r(t,E)||j(t,E,k(1,{})),t[E][e]=!0),H(t,e,n)):j(t,e,n)},G=function(t,e){_(t);for(var n,i=v(e=y(e)),r=0,s=i.length;s>r;)K(t,n=i[r++],e[n]);return t},Y=function(t){var e=L.call(this,t=x(t,!0));return!(this===R&&r(M,t)&&!r(F,t))&&(!(e||!r(this,t)||!r(M,t)||r(this,E)&&this[E][t])||e)},X=function(t,e){if(t=y(t),e=x(e,!0),t!==R||!r(M,e)||r(F,e)){var n=$(t,e);return!n||!r(M,e)||r(t,E)&&t[E][e]||(n.enumerable=!0),n}},Z=function(t){for(var e,n=O(y(t)),i=[],s=0;n.length>s;)r(M,e=n[s++])||e==E||e==l||i.push(e);return i},J=function(t){for(var e,n=t===R,i=O(n?F:y(t)),s=[],o=0;i.length>o;)!r(M,e=i[o++])||n&&!r(R,e)||s.push(M[e]);return s};z||(a((A=function(){if(this instanceof A)throw TypeError("Symbol is not a constructor!");var t=d(arguments.length>0?arguments[0]:void 0),e=function(n){this===R&&e.call(F,n),r(this,E)&&r(this[E],t)&&(this[E][t]=!1),H(this,t,k(1,n))};return s&&q&&H(R,t,{configurable:!0,set:e}),W(t)}).prototype,"toString",function(){return this._k}),S.f=X,T.f=K,n(44).f=C.f=Z,n(23).f=Y,n(45).f=J,s&&!n(12)&&a(R,"propertyIsEnumerable",Y,!0),f.f=function(t){return W(p(t))}),o(o.G+o.W+o.F*!z,{Symbol:A});for(var Q="hasInstance,isConcatSpreadable,iterator,match,replace,search,species,split,toPrimitive,toStringTag,unscopables".split(","),tt=0;Q.length>tt;)p(Q[tt++]);for(var et=V(p.store),nt=0;et.length>nt;)m(et[nt++]);o(o.S+o.F*!z,"Symbol",{for:function(t){return r(B,t+="")?B[t]:B[t]=A(t)},keyFor:function(t){if(!U(t))throw TypeError(t+" is not a symbol!");for(var e in B)if(B[e]===t)return e},useSetter:function(){q=!0},useSimple:function(){q=!1}}),o(o.S+o.F*!z,"Object",{create:function(t,e){return void 0===e?w(t):G(w(t),e)},defineProperty:K,defineProperties:G,getOwnPropertyDescriptor:X,getOwnPropertyNames:Z,getOwnPropertySymbols:J}),I&&o(o.S+o.F*(!z||c(function(){var t=A();return"[null]"!=D([t])||"{}"!=D({a:t})||"{}"!=D(Object(t))})),"JSON",{stringify:function(t){for(var e,n,i=[t],r=1;arguments.length>r;)i.push(arguments[r++]);if(n=e=i[1],(b(e)||void 0!==t)&&!U(t))return g(e)||(e=function(t,e){if("function"==typeof n&&(e=n.call(this,t,e)),!U(e))return e}),i[1]=e,D.apply(I,i)}}),A.prototype[P]||n(4)(A.prototype,P,A.prototype.valueOf),h(A,"Symbol"),h(Math,"Math",!0),h(i.JSON,"JSON",!0)},function(t,e,n){n(29)("asyncIterator")},function(t,e,n){n(29)("observable")},function(t,e,n){n(94);for(var i=n(1),r=n(4),s=n(21),o=n(7)("toStringTag"),a="CSSRuleList,CSSStyleDeclaration,CSSValueList,ClientRectList,DOMRectList,DOMStringList,DOMTokenList,DataTransferItemList,FileList,HTMLAllCollection,HTMLCollection,HTMLFormElement,HTMLSelectElement,MediaList,MimeTypeArray,NamedNodeMap,NodeList,PaintRequestList,Plugin,PluginArray,SVGLengthList,SVGNumberList,SVGPathSegList,SVGPointList,SVGStringList,SVGTransformList,SourceBufferList,StyleSheetList,TextTrackCueList,TextTrackList,TouchList".split(","),l=0;l<a.length;l++){var c=a[l],u=i[c],h=u&&u.prototype;h&&!h[o]&&r(h,o,c),s[c]=s.Array}},function(t,e,n){(t.exports=n(15)(!1)).push([t.i,'\n.auto-textarea-wrapper {\n position: relative;\n width: 100%;\n margin: 0;\n padding: 0;\n line-height: normal;\n}\n.auto-textarea-wrapper .auto-textarea-block {\n display: block;\n white-space: pre-wrap;\n word-wrap: break-word !important;\n visibility: hidden;\n overflow: hidden;\n margin: 0;\n padding: 0;\n box-sizing: border-box;\n font-size: 100%;\n}\n.auto-textarea-wrapper .auto-textarea-input {\n font-family: Menlo, "Ubuntu Mono", Consolas, "Courier New", "Microsoft Yahei", "Hiragino Sans GB", "WenQuanYi Micro Hei", sans-serif;\n position: absolute;\n width: 100%;\n height: 100%;\n top: 0;\n left: 0;\n margin: 0;\n padding: 0;\n overflow-y: hidden;\n color: #2c3e50;\n}\n.auto-textarea-wrapper .auto-textarea-input.no-border {\n outline: 0 none;\n border: none !important;\n}\n.auto-textarea-wrapper .auto-textarea-input.no-resize {\n resize: none;\n}\n',""])},function(t,e,n){(t.exports=n(15)(!1)).push([t.i,"\n.op-icon.dropdown-wrapper.dropdown[data-v-548e2160] {\n position: relative;\n}\n.op-icon.dropdown-wrapper.dropdown .popup-dropdown[data-v-548e2160] {\n position: absolute;\n display: block;\n background: #fff;\n top: 32px;\n left: -45px;\n min-width: 130px;\n z-index: 1600;\n box-shadow: 0 0px 4px rgba(0,0,0,0.157), 0 0px 4px rgba(0,0,0,0.227);\n -webkit-transition: all 0.2s linear 0s;\n transition: all 0.2s linear 0s;\n}\n.op-icon.dropdown-wrapper.dropdown .popup-dropdown.op-header[data-v-548e2160] {\n left: -30px;\n min-width: 90px;\n}\n.op-icon.dropdown-wrapper.dropdown .popup-dropdown.fade-enter-active[data-v-548e2160],\n.op-icon.dropdown-wrapper.dropdown .popup-dropdown.fade-leave-active[data-v-548e2160] {\n opacity: 1;\n}\n.op-icon.dropdown-wrapper.dropdown .popup-dropdown.fade-enter[data-v-548e2160],\n.op-icon.dropdown-wrapper.dropdown .popup-dropdown.fade-leave-active[data-v-548e2160] {\n opacity: 0;\n}\n.op-icon.dropdown-wrapper.dropdown .dropdown-item[data-v-548e2160] {\n height: 35px;\n line-height: 35px;\n font-size: 12px;\n -webkit-transition: all 0.2s linear 0s;\n transition: all 0.2s linear 0s;\n position: relative;\n}\n.op-icon.dropdown-wrapper.dropdown .dropdown-item[data-v-548e2160]:hover {\n background: #eaeaea;\n}\n.op-icon.dropdown-wrapper.dropdown .dropdown-item input[data-v-548e2160] {\n position: absolute;\n font-size: 100px;\n right: 0;\n top: 0;\n opacity: 0;\n cursor: pointer;\n}\n.op-icon.dropdown-wrapper.dropdown .dropdown-images[data-v-548e2160] {\n box-sizing: border-box;\n}\n.op-icon.dropdown-wrapper.dropdown .dropdown-images button[data-v-548e2160] {\n position: absolute;\n right: 5px;\n}\n.op-icon.dropdown-wrapper.dropdown .dropdown-images button[data-v-548e2160]:hover {\n color: #db2828;\n}\n.op-icon.dropdown-wrapper.dropdown .dropdown-images span[data-v-548e2160] {\n display: inline-block;\n width: 80px;\n white-space: nowrap;\n overflow: hidden;\n text-overflow: ellipsis;\n}\n.op-icon.dropdown-wrapper.dropdown .dropdown-images:hover .image-show[data-v-548e2160] {\n display: block !important;\n}\n.op-icon.dropdown-wrapper.dropdown .dropdown-images .image-show[data-v-548e2160] {\n display: none;\n position: absolute;\n left: -122px;\n top: 0;\n -webkit-transition: all 0.3s linear 0s;\n transition: all 0.3s linear 0s;\n width: 120px;\n height: 90px;\n border: 1px solid #eeece8;\n}\n.add-image-link-wrapper[data-v-548e2160] {\n position: fixed;\n left: 0;\n right: 0;\n top: 0;\n bottom: 0;\n background: rgba(0,0,0,0.7);\n z-index: 1600;\n -webkit-transition: all 0.1s linear 0s;\n transition: all 0.1s linear 0s;\n}\n.add-image-link-wrapper.fade-enter-active[data-v-548e2160],\n.add-image-link-wrapper.fade-leave-active[data-v-548e2160] {\n opacity: 1;\n}\n.add-image-link-wrapper.fade-enter[data-v-548e2160],\n.add-image-link-wrapper.fade-leave-active[data-v-548e2160] {\n opacity: 0;\n}\n.add-image-link-wrapper .add-image-link[data-v-548e2160] {\n position: fixed;\n box-sizing: border-box;\n text-align: center;\n width: 24%;\n left: 38%;\n height: auto;\n padding: 40px;\n top: 25%;\n -webkit-transition: all 0.1s linear 0s;\n transition: all 0.1s linear 0s;\n z-index: 3;\n background: #fff;\n border-radius: 2px;\n box-shadow: 0 0px 5px rgba(255,255,255,0.157), 0 0px 5px rgba(255,255,255,0.227);\n}\n@media only screen and (max-width: 1500px) {\n.add-image-link-wrapper .add-image-link[data-v-548e2160] {\n width: 34%;\n left: 33%;\n}\n}\n@media only screen and (max-width: 1000px) {\n.add-image-link-wrapper .add-image-link[data-v-548e2160] {\n width: 50%;\n left: 25%;\n}\n}\n@media only screen and (max-width: 600px) {\n.add-image-link-wrapper .add-image-link[data-v-548e2160] {\n width: 80%;\n left: 10%;\n}\n}\n.add-image-link-wrapper .add-image-link i[data-v-548e2160] {\n font-size: 24px;\n position: absolute;\n right: 8px;\n top: 6px;\n color: rgba(0,0,0,0.7);\n cursor: pointer;\n}\n.add-image-link-wrapper .add-image-link .title[data-v-548e2160] {\n font-size: 20px;\n margin-bottom: 30px;\n margin-top: 10px;\n font-weight: 500 !important;\n}\n.add-image-link-wrapper .add-image-link .input-wrapper[data-v-548e2160] {\n margin-top: 10px;\n width: 80%;\n border: 1px solid #eeece8;\n text-align: left;\n margin-left: 10%;\n height: 35px;\n}\n.add-image-link-wrapper .add-image-link .input-wrapper input[data-v-548e2160] {\n height: 32px;\n line-height: 32px;\n font-size: 15px;\n width: 90%;\n margin-left: 8px;\n border: none;\n outline: none;\n}\n.add-image-link-wrapper .add-image-link .op-btn[data-v-548e2160] {\n width: 100px;\n height: 35px;\n display: inline-block;\n margin-top: 30px;\n cursor: pointer;\n text-align: center;\n line-height: 35px;\n opacity: 0.9;\n border-radius: 2px;\n letter-spacing: 1px;\n font-size: 15px;\n}\n.add-image-link-wrapper .add-image-link .op-btn.sure[data-v-548e2160] {\n background: #2185d0;\n color: #fff;\n margin-left: 5%;\n}\n.add-image-link-wrapper .add-image-link .op-btn.sure[data-v-548e2160]:hover {\n opacity: 1;\n}\n.add-image-link-wrapper .add-image-link .op-btn.cancel[data-v-548e2160] {\n border: 1px solid #bcbcbc;\n color: #bcbcbc;\n}\n.add-image-link-wrapper .add-image-link .op-btn.cancel[data-v-548e2160]:hover {\n color: #000;\n}\n",""])},function(t,e,n){(t.exports=n(15)(!1)).push([t.i,"\ntextarea:disabled {\n background-color: #fff;\n}\n.v-note-wrapper {\n position: relative;\n min-width: 300px;\n min-height: 300px;\n display: -webkit-box;\n display: -webkit-flex;\n display: -ms-flexbox;\n display: flex;\n -webkit-box-orient: vertical;\n -webkit-box-direction: normal;\n -webkit-flex-direction: column;\n -ms-flex-direction: column;\n flex-direction: column;\n -webkit-transition: all 0.3s linear 0s;\n transition: all 0.3s linear 0s;\n background: #fff;\n z-index: 1500;\n text-align: left;\n}\n.v-note-wrapper.fullscreen {\n position: fixed;\n left: 0;\n right: 0;\n bottom: 0;\n top: 0;\n height: auto;\n z-index: 1501;\n}\n.v-note-wrapper .v-note-op {\n width: 100%;\n display: -webkit-box;\n display: -webkit-flex;\n display: -ms-flexbox;\n display: flex;\n white-space: pre-line;\n -webkit-box-flex: 0;\n -webkit-flex: none;\n -ms-flex: none;\n flex: none;\n min-height: 40px;\n border: 1px solid #e0e0e0;\n border-bottom: none;\n background: #fff;\n z-index: 1;\n}\n.v-note-wrapper .v-note-op.shadow {\n border: none;\n box-shadow: 0 0px 4px rgba(0,0,0,0.157), 0 0px 4px rgba(0,0,0,0.227);\n}\n.v-note-wrapper .v-note-op .v-left-item,\n.v-note-wrapper .v-note-op .v-right-item {\n -webkit-box-flex: 1;\n -webkit-flex: 1;\n -ms-flex: 1;\n flex: 1;\n min-height: 40px;\n box-sizing: border-box;\n}\n.v-note-wrapper .v-note-op .v-left-item .op-icon-divider,\n.v-note-wrapper .v-note-op .v-right-item .op-icon-divider {\n height: 40px;\n border-left: 1px solid #e5e5e5;\n margin: 0 6px 0 4px;\n}\n.v-note-wrapper .v-note-op .v-left-item .op-icon,\n.v-note-wrapper .v-note-op .v-right-item .op-icon {\n display: inline-block;\n cursor: pointer;\n height: 28px;\n width: 28px;\n margin: 6px 0 5px 0px;\n font-size: 15px;\n padding: 4.5px 6px 5px 3.5px;\n color: #757575;\n border-radius: 5px;\n text-align: center;\n background: none;\n border: none;\n outline: none;\n line-height: 1;\n vertical-align: middle;\n}\n.v-note-wrapper .v-note-op .v-left-item .op-icon.dropdown-wrapper,\n.v-note-wrapper .v-note-op .v-right-item .op-icon.dropdown-wrapper {\n line-height: 18px;\n}\n.v-note-wrapper .v-note-op .v-left-item .op-icon.selected,\n.v-note-wrapper .v-note-op .v-right-item .op-icon.selected {\n color: rgba(0,0,0,0.8);\n background: #eaeaea;\n}\n.v-note-wrapper .v-note-op .v-left-item .op-icon:hover,\n.v-note-wrapper .v-note-op .v-right-item .op-icon:hover {\n color: rgba(0,0,0,0.8);\n background: #e5e5e5;\n}\n.v-note-wrapper .v-note-op .v-right-item {\n text-align: right;\n padding-right: 6px;\n max-width: 30%;\n}\n.v-note-wrapper .v-note-op .v-left-item {\n text-align: left;\n padding-left: 6px;\n}\n.v-note-wrapper .v-note-panel {\n position: relative;\n border: 1px solid #e0e0e0;\n display: -webkit-box;\n display: -webkit-flex;\n display: -ms-flexbox;\n display: flex;\n -webkit-box-flex: 1;\n -webkit-flex: 1;\n -ms-flex: 1;\n flex: 1;\n width: 100%;\n box-sizing: border-box;\n overflow: hidden;\n}\n.v-note-wrapper .v-note-panel.shadow {\n border: none;\n box-shadow: 0 0px 3px rgba(0,0,0,0.157), 0 0px 3px rgba(0,0,0,0.227);\n}\n.v-note-wrapper .v-note-panel .v-note-edit.divarea-wrapper {\n -webkit-box-flex: 0;\n -webkit-flex: 0 0 50%;\n -ms-flex: 0 0 50%;\n flex: 0 0 50%;\n width: 50%;\n padding: 0;\n overflow-y: scroll;\n overflow-x: hidden;\n box-sizing: border-box;\n -webkit-transition: all 0.2s linear 0s;\n transition: all 0.2s linear 0s;\n cursor: text;\n}\n.v-note-wrapper .v-note-panel .v-note-edit.divarea-wrapper.scroll-style::-webkit-scrollbar {\n width: 6px;\n background-color: #e5e5e5;\n}\n.v-note-wrapper .v-note-panel .v-note-edit.divarea-wrapper.scroll-style::-webkit-scrollbar-thumb {\n background-color: #b7b7b7;\n border-radius: 3px;\n}\n.v-note-wrapper .v-note-panel .v-note-edit.divarea-wrapper.scroll-style::-webkit-scrollbar-thumb:hover {\n background-color: #a1a1a1;\n}\n.v-note-wrapper .v-note-panel .v-note-edit.divarea-wrapper.scroll-style::-webkit-scrollbar-thumb:active {\n background-color: #a1a1a1;\n}\n.v-note-wrapper .v-note-panel .v-note-edit.divarea-wrapper.scroll-style::-webkit-scrollbar-track {\n -webkit-box-shadow: 0 0 0px #808080 inset;\n}\n.v-note-wrapper .v-note-panel .v-note-edit.divarea-wrapper.single-edit {\n width: 100%;\n -webkit-box-flex: 0;\n -webkit-flex: 0 0 100%;\n -ms-flex: 0 0 100%;\n flex: 0 0 100%;\n overflow-y: auto;\n}\n.v-note-wrapper .v-note-panel .v-note-edit.divarea-wrapper.single-show {\n width: 0;\n -webkit-box-flex: 0;\n -webkit-flex: 0 0 0;\n -ms-flex: 0 0 0px;\n flex: 0 0 0;\n display: none;\n}\n.v-note-wrapper .v-note-panel .v-note-edit.divarea-wrapper .content-div {\n width: 100%;\n padding: 20px 25px;\n box-sizing: border-box;\n outline: 0 none;\n border: none !important;\n color: #2c3e50;\n font-size: 16px;\n}\n.v-note-wrapper .v-note-panel .v-note-edit.divarea-wrapper .content-input-wrapper {\n width: 100%;\n padding: 8px 25px 15px 25px;\n}\n.v-note-wrapper .v-note-panel .v-note-show {\n -webkit-box-flex: 0;\n -webkit-flex: 0 0 50%;\n -ms-flex: 0 0 50%;\n flex: 0 0 50%;\n width: 50%;\n overflow-y: auto;\n padding: 0 0;\n -webkit-transition: all 0.2s linear 0s;\n transition: all 0.2s linear 0s;\n}\n.v-note-wrapper .v-note-panel .v-note-show.single-show {\n -webkit-box-flex: 0;\n -webkit-flex: 0 0 100%;\n -ms-flex: 0 0 100%;\n flex: 0 0 100%;\n width: 100%;\n}\n.v-note-wrapper .v-note-panel .v-note-show .v-show-content,\n.v-note-wrapper .v-note-panel .v-note-show .v-show-content-html {\n width: 100%;\n height: 100%;\n padding: 8px 25px 15px 25px;\n overflow-y: auto;\n box-sizing: border-box;\n overflow-x: hidden;\n background: #fbfbfb;\n}\n.v-note-wrapper .v-note-panel .v-note-show .v-show-content.scroll-style::-webkit-scrollbar,\n.v-note-wrapper .v-note-panel .v-note-show .v-show-content-html.scroll-style::-webkit-scrollbar {\n width: 6px;\n background-color: #e5e5e5;\n}\n.v-note-wrapper .v-note-panel .v-note-show .v-show-content.scroll-style::-webkit-scrollbar-thumb,\n.v-note-wrapper .v-note-panel .v-note-show .v-show-content-html.scroll-style::-webkit-scrollbar-thumb {\n background-color: #b7b7b7;\n border-radius: 3px;\n}\n.v-note-wrapper .v-note-panel .v-note-show .v-show-content.scroll-style::-webkit-scrollbar-thumb:hover,\n.v-note-wrapper .v-note-panel .v-note-show .v-show-content-html.scroll-style::-webkit-scrollbar-thumb:hover {\n background-color: #a1a1a1;\n}\n.v-note-wrapper .v-note-panel .v-note-show .v-show-content.scroll-style::-webkit-scrollbar-thumb:active,\n.v-note-wrapper .v-note-panel .v-note-show .v-show-content-html.scroll-style::-webkit-scrollbar-thumb:active {\n background-color: #a1a1a1;\n}\n.v-note-wrapper .v-note-panel .v-note-show .v-show-content.scroll-style::-webkit-scrollbar-track,\n.v-note-wrapper .v-note-panel .v-note-show .v-show-content-html.scroll-style::-webkit-scrollbar-track {\n -webkit-box-shadow: 0 0 0px #808080 inset;\n}\n.v-note-wrapper .v-note-panel .v-note-navigation-wrapper {\n position: absolute;\n width: 250px;\n right: 0;\n top: 0;\n bottom: 0;\n display: -webkit-box;\n display: -webkit-flex;\n display: -ms-flexbox;\n display: flex;\n -webkit-box-orient: vertical;\n -webkit-box-direction: normal;\n -webkit-flex-direction: column;\n -ms-flex-direction: column;\n flex-direction: column;\n background: rgba(255,255,255,0.98);\n border: 1px solid #e0e0e0;\n -webkit-transition: all 0.1s linear 0s;\n transition: all 0.1s linear 0s;\n}\n.v-note-wrapper .v-note-panel .v-note-navigation-wrapper.shadow {\n box-shadow: 0 0px 4px rgba(0,0,0,0.157), 0 0px 4px rgba(0,0,0,0.227);\n border: none;\n}\n@media only screen and (max-width: 768px) {\n.v-note-wrapper .v-note-panel .v-note-navigation-wrapper {\n width: 50%;\n}\n}\n.v-note-wrapper .v-note-panel .v-note-navigation-wrapper.slideTop-enter-active,\n.v-note-wrapper .v-note-panel .v-note-navigation-wrapper.slideTop-leave-active {\n bottom: 0;\n}\n.v-note-wrapper .v-note-panel .v-note-navigation-wrapper.slideTop-enter,\n.v-note-wrapper .v-note-panel .v-note-navigation-wrapper.slideTop-leave-active {\n bottom: 100%;\n}\n.v-note-wrapper .v-note-panel .v-note-navigation-wrapper .v-note-navigation-title {\n height: 50px;\n width: 100%;\n border-bottom: 1px solid #eeece8;\n -webkit-box-flex: 0;\n -webkit-flex: none;\n -ms-flex: none;\n flex: none;\n line-height: 50px;\n font-size: 18px;\n font-weight: 500;\n box-sizing: border-box;\n padding: 0 12px;\n}\n.v-note-wrapper .v-note-panel .v-note-navigation-wrapper .v-note-navigation-title.shadow {\n box-shadow: 0 0px 1px rgba(0,0,0,0.157), 0 0px 1px rgba(0,0,0,0.227);\n}\n.v-note-wrapper .v-note-panel .v-note-navigation-wrapper .v-note-navigation-title .v-note-navigation-close {\n float: right;\n color: #757575;\n font-size: 20px;\n cursor: pointer;\n}\n.v-note-wrapper .v-note-panel .v-note-navigation-wrapper .v-note-navigation-title .v-note-navigation-close:hover {\n color: #696969;\n}\n.v-note-wrapper .v-note-panel .v-note-navigation-wrapper .v-note-navigation-content {\n overflow-y: auto;\n -webkit-box-flex: 1;\n -webkit-flex: 1;\n -ms-flex: 1;\n flex: 1;\n padding: 8px 0;\n}\n.v-note-wrapper .v-note-panel .v-note-navigation-wrapper .v-note-navigation-content.scroll-style::-webkit-scrollbar {\n width: 6px;\n background-color: #e5e5e5;\n}\n.v-note-wrapper .v-note-panel .v-note-navigation-wrapper .v-note-navigation-content.scroll-style::-webkit-scrollbar-thumb {\n background-color: #b7b7b7;\n border-radius: 3px;\n}\n.v-note-wrapper .v-note-panel .v-note-navigation-wrapper .v-note-navigation-content.scroll-style::-webkit-scrollbar-thumb:hover {\n background-color: #a1a1a1;\n}\n.v-note-wrapper .v-note-panel .v-note-navigation-wrapper .v-note-navigation-content.scroll-style::-webkit-scrollbar-thumb:active {\n background-color: #a1a1a1;\n}\n.v-note-wrapper .v-note-panel .v-note-navigation-wrapper .v-note-navigation-content.scroll-style::-webkit-scrollbar-track {\n -webkit-box-shadow: 0 0 0px #808080 inset;\n}\n.v-note-wrapper .v-note-panel .v-note-navigation-wrapper .v-note-navigation-content h1,\n.v-note-wrapper .v-note-panel .v-note-navigation-wrapper .v-note-navigation-content h2,\n.v-note-wrapper .v-note-panel .v-note-navigation-wrapper .v-note-navigation-content h3,\n.v-note-wrapper .v-note-panel .v-note-navigation-wrapper .v-note-navigation-content h4,\n.v-note-wrapper .v-note-panel .v-note-navigation-wrapper .v-note-navigation-content h5,\n.v-note-wrapper .v-note-panel .v-note-navigation-wrapper .v-note-navigation-content h6 {\n margin: 2px 0;\n font-weight: 500;\n font-size: 17px;\n color: #2185d0;\n cursor: pointer;\n line-height: normal;\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n padding: 0 12px;\n border-bottom: none;\n}\n.v-note-wrapper .v-note-panel .v-note-navigation-wrapper .v-note-navigation-content h1:hover,\n.v-note-wrapper .v-note-panel .v-note-navigation-wrapper .v-note-navigation-content h2:hover,\n.v-note-wrapper .v-note-panel .v-note-navigation-wrapper .v-note-navigation-content h3:hover,\n.v-note-wrapper .v-note-panel .v-note-navigation-wrapper .v-note-navigation-content h4:hover,\n.v-note-wrapper .v-note-panel .v-note-navigation-wrapper .v-note-navigation-content h5:hover,\n.v-note-wrapper .v-note-panel .v-note-navigation-wrapper .v-note-navigation-content h6:hover {\n color: #483d8b;\n -webkit-text-decoration-line: underline;\n text-decoration-line: underline;\n}\n.v-note-wrapper .v-note-panel .v-note-navigation-wrapper .v-note-navigation-content h2 {\n padding-left: 27px;\n font-size: 17px;\n}\n.v-note-wrapper .v-note-panel .v-note-navigation-wrapper .v-note-navigation-content h3 {\n padding-left: 42px;\n font-size: 17px;\n}\n.v-note-wrapper .v-note-panel .v-note-navigation-wrapper .v-note-navigation-content h4 {\n padding-left: 58px;\n font-size: 15px;\n}\n.v-note-wrapper .v-note-panel .v-note-navigation-wrapper .v-note-navigation-content h5 {\n padding-left: 72px;\n font-size: 15px;\n}\n.v-note-wrapper .v-note-panel .v-note-navigation-wrapper .v-note-navigation-content h6 {\n padding-left: 87px;\n font-size: 15px;\n}\n.v-note-wrapper .v-note-read-model {\n position: relative;\n display: none;\n width: 100%;\n height: 100%;\n background: #fbfbfb;\n padding: 30px 8% 50px 8%;\n overflow-y: auto;\n box-sizing: border-box;\n}\n.v-note-wrapper .v-note-read-model.scroll-style::-webkit-scrollbar {\n width: 6px;\n background-color: #e5e5e5;\n}\n.v-note-wrapper .v-note-read-model.scroll-style::-webkit-scrollbar-thumb {\n background-color: #b7b7b7;\n border-radius: 3px;\n}\n.v-note-wrapper .v-note-read-model.scroll-style::-webkit-scrollbar-thumb:hover {\n background-color: #a1a1a1;\n}\n.v-note-wrapper .v-note-read-model.scroll-style::-webkit-scrollbar-thumb:active {\n background-color: #a1a1a1;\n}\n.v-note-wrapper .v-note-read-model.scroll-style::-webkit-scrollbar-track {\n -webkit-box-shadow: 0 0 0px #808080 inset;\n}\n.v-note-wrapper .v-note-read-model.show {\n display: block;\n}\n.v-note-help-wrapper {\n position: fixed;\n left: 0;\n right: 0;\n top: 0;\n bottom: 0;\n background: rgba(0,0,0,0.7);\n z-index: 1600;\n -webkit-transition: all 0.1s linear 0s;\n transition: all 0.1s linear 0s;\n}\n.v-note-help-wrapper.fade-enter-active,\n.v-note-help-wrapper.fade-leave-active {\n opacity: 1;\n}\n.v-note-help-wrapper.fade-enter,\n.v-note-help-wrapper.fade-leave-active {\n opacity: 0;\n}\n.v-note-help-wrapper .v-note-help-content {\n position: relative;\n width: 60%;\n max-width: 800px;\n margin: 30px auto;\n height: 90%;\n min-width: 320px;\n -webkit-transition: all 0.1s linear 0s;\n transition: all 0.1s linear 0s;\n z-index: 3;\n border: 1px solid #e0e0e0;\n}\n.v-note-help-wrapper .v-note-help-content.shadow {\n border: none;\n box-shadow: 0 0px 5px rgba(0,0,0,0.157), 0 0px 5px rgba(0,0,0,0.227);\n}\n.v-note-help-wrapper .v-note-help-content i {\n font-size: 28px;\n position: absolute;\n right: 15px;\n top: 8px;\n color: rgba(0,0,0,0.7);\n cursor: pointer;\n}\n.v-note-help-wrapper .v-note-help-content i:hover {\n color: #000;\n}\n.v-note-help-wrapper .v-note-help-content .v-note-help-show {\n width: 100%;\n height: 100%;\n font-size: 18px;\n background: #fbfbfb;\n overflow-y: auto;\n padding: 2% 6%;\n}\n.v-note-help-wrapper .v-note-help-content .v-note-help-show.scroll-style::-webkit-scrollbar {\n width: 6px;\n background-color: #e5e5e5;\n}\n.v-note-help-wrapper .v-note-help-content .v-note-help-show.scroll-style::-webkit-scrollbar-thumb {\n background-color: #b7b7b7;\n border-radius: 3px;\n}\n.v-note-help-wrapper .v-note-help-content .v-note-help-show.scroll-style::-webkit-scrollbar-thumb:hover {\n background-color: #a1a1a1;\n}\n.v-note-help-wrapper .v-note-help-content .v-note-help-show.scroll-style::-webkit-scrollbar-thumb:active {\n background-color: #a1a1a1;\n}\n.v-note-help-wrapper .v-note-help-content .v-note-help-show.scroll-style::-webkit-scrollbar-track {\n -webkit-box-shadow: 0 0 0px #808080 inset;\n}\n.v-note-img-wrapper {\n position: fixed;\n display: -webkit-box;\n display: -webkit-flex;\n display: -ms-flexbox;\n display: flex;\n -webkit-box-pack: center;\n -webkit-justify-content: center;\n -ms-flex-pack: center;\n justify-content: center;\n -webkit-box-align: center;\n -webkit-align-items: center;\n -ms-flex-align: center;\n align-items: center;\n left: 0;\n right: 0;\n top: 0;\n bottom: 0;\n background: rgba(0,0,0,0.7);\n z-index: 1600;\n -webkit-transition: all 0.1s linear 0s;\n transition: all 0.1s linear 0s;\n}\n.v-note-img-wrapper.fade-enter-active,\n.v-note-img-wrapper.fade-leave-active {\n opacity: 1;\n}\n.v-note-img-wrapper.fade-enter,\n.v-note-img-wrapper.fade-leave-active {\n opacity: 0;\n}\n.v-note-img-wrapper img {\n -webkit-box-flex: 0;\n -webkit-flex: 0 0 auto;\n -ms-flex: 0 0 auto;\n flex: 0 0 auto;\n z-index: 3;\n}\n.v-note-img-wrapper i {\n font-size: 28px;\n position: absolute;\n right: 15px;\n top: 8px;\n color: rgba(255,255,255,0.7);\n cursor: pointer;\n}\n.v-note-img-wrapper i:hover {\n color: #fff;\n}\n",""])},function(t,e,n){(t.exports=n(15)(!1)).push([t.i,"\n.auto-textarea-wrapper[data-v-7a63e4b3] {\n height: 100%;\n}\n",""])},function(t,e){t.exports={Aacute:"Á",aacute:"á",Abreve:"Ă",abreve:"ă",ac:"∾",acd:"∿",acE:"∾̳",Acirc:"Â",acirc:"â",acute:"´",Acy:"А",acy:"а",AElig:"Æ",aelig:"æ",af:"⁡",Afr:"𝔄",afr:"𝔞",Agrave:"À",agrave:"à",alefsym:"ℵ",aleph:"ℵ",Alpha:"Α",alpha:"α",Amacr:"Ā",amacr:"ā",amalg:"⨿",amp:"&",AMP:"&",andand:"⩕",And:"⩓",and:"∧",andd:"⩜",andslope:"⩘",andv:"⩚",ang:"∠",ange:"⦤",angle:"∠",angmsdaa:"⦨",angmsdab:"⦩",angmsdac:"⦪",angmsdad:"⦫",angmsdae:"⦬",angmsdaf:"⦭",angmsdag:"⦮",angmsdah:"⦯",angmsd:"∡",angrt:"∟",angrtvb:"⊾",angrtvbd:"⦝",angsph:"∢",angst:"Å",angzarr:"⍼",Aogon:"Ą",aogon:"ą",Aopf:"𝔸",aopf:"𝕒",apacir:"⩯",ap:"≈",apE:"⩰",ape:"≊",apid:"≋",apos:"'",ApplyFunction:"⁡",approx:"≈",approxeq:"≊",Aring:"Å",aring:"å",Ascr:"𝒜",ascr:"𝒶",Assign:"≔",ast:"*",asymp:"≈",asympeq:"≍",Atilde:"Ã",atilde:"ã",Auml:"Ä",auml:"ä",awconint:"∳",awint:"⨑",backcong:"≌",backepsilon:"϶",backprime:"‵",backsim:"∽",backsimeq:"⋍",Backslash:"∖",Barv:"⫧",barvee:"⊽",barwed:"⌅",Barwed:"⌆",barwedge:"⌅",bbrk:"⎵",bbrktbrk:"⎶",bcong:"≌",Bcy:"Б",bcy:"б",bdquo:"„",becaus:"∵",because:"∵",Because:"∵",bemptyv:"⦰",bepsi:"϶",bernou:"ℬ",Bernoullis:"ℬ",Beta:"Β",beta:"β",beth:"ℶ",between:"≬",Bfr:"𝔅",bfr:"𝔟",bigcap:"⋂",bigcirc:"◯",bigcup:"⋃",bigodot:"⨀",bigoplus:"⨁",bigotimes:"⨂",bigsqcup:"⨆",bigstar:"★",bigtriangledown:"▽",bigtriangleup:"△",biguplus:"⨄",bigvee:"⋁",bigwedge:"⋀",bkarow:"⤍",blacklozenge:"⧫",blacksquare:"▪",blacktriangle:"▴",blacktriangledown:"▾",blacktriangleleft:"◂",blacktriangleright:"▸",blank:"␣",blk12:"▒",blk14:"░",blk34:"▓",block:"█",bne:"=⃥",bnequiv:"≡⃥",bNot:"⫭",bnot:"⌐",Bopf:"𝔹",bopf:"𝕓",bot:"⊥",bottom:"⊥",bowtie:"⋈",boxbox:"⧉",boxdl:"┐",boxdL:"╕",boxDl:"╖",boxDL:"╗",boxdr:"┌",boxdR:"╒",boxDr:"╓",boxDR:"╔",boxh:"─",boxH:"═",boxhd:"┬",boxHd:"╤",boxhD:"╥",boxHD:"╦",boxhu:"┴",boxHu:"╧",boxhU:"╨",boxHU:"╩",boxminus:"⊟",boxplus:"⊞",boxtimes:"⊠",boxul:"┘",boxuL:"╛",boxUl:"╜",boxUL:"╝",boxur:"└",boxuR:"╘",boxUr:"╙",boxUR:"╚",boxv:"│",boxV:"║",boxvh:"┼",boxvH:"╪",boxVh:"╫",boxVH:"╬",boxvl:"┤",boxvL:"╡",boxVl:"╢",boxVL:"╣",boxvr:"├",boxvR:"╞",boxVr:"╟",boxVR:"╠",bprime:"‵",breve:"˘",Breve:"˘",brvbar:"¦",bscr:"𝒷",Bscr:"ℬ",bsemi:"⁏",bsim:"∽",bsime:"⋍",bsolb:"⧅",bsol:"\\",bsolhsub:"⟈",bull:"•",bullet:"•",bump:"≎",bumpE:"⪮",bumpe:"≏",Bumpeq:"≎",bumpeq:"≏",Cacute:"Ć",cacute:"ć",capand:"⩄",capbrcup:"⩉",capcap:"⩋",cap:"∩",Cap:"⋒",capcup:"⩇",capdot:"⩀",CapitalDifferentialD:"ⅅ",caps:"∩︀",caret:"⁁",caron:"ˇ",Cayleys:"ℭ",ccaps:"⩍",Ccaron:"Č",ccaron:"č",Ccedil:"Ç",ccedil:"ç",Ccirc:"Ĉ",ccirc:"ĉ",Cconint:"∰",ccups:"⩌",ccupssm:"⩐",Cdot:"Ċ",cdot:"ċ",cedil:"¸",Cedilla:"¸",cemptyv:"⦲",cent:"¢",centerdot:"·",CenterDot:"·",cfr:"𝔠",Cfr:"ℭ",CHcy:"Ч",chcy:"ч",check:"✓",checkmark:"✓",Chi:"Χ",chi:"χ",circ:"ˆ",circeq:"≗",circlearrowleft:"↺",circlearrowright:"↻",circledast:"⊛",circledcirc:"⊚",circleddash:"⊝",CircleDot:"⊙",circledR:"®",circledS:"Ⓢ",CircleMinus:"⊖",CirclePlus:"⊕",CircleTimes:"⊗",cir:"○",cirE:"⧃",cire:"≗",cirfnint:"⨐",cirmid:"⫯",cirscir:"⧂",ClockwiseContourIntegral:"∲",CloseCurlyDoubleQuote:"”",CloseCurlyQuote:"’",clubs:"♣",clubsuit:"♣",colon:":",Colon:"∷",Colone:"⩴",colone:"≔",coloneq:"≔",comma:",",commat:"@",comp:"∁",compfn:"∘",complement:"∁",complexes:"ℂ",cong:"≅",congdot:"⩭",Congruent:"≡",conint:"∮",Conint:"∯",ContourIntegral:"∮",copf:"𝕔",Copf:"ℂ",coprod:"∐",Coproduct:"∐",copy:"©",COPY:"©",copysr:"℗",CounterClockwiseContourIntegral:"∳",crarr:"↵",cross:"✗",Cross:"⨯",Cscr:"𝒞",cscr:"𝒸",csub:"⫏",csube:"⫑",csup:"⫐",csupe:"⫒",ctdot:"⋯",cudarrl:"⤸",cudarrr:"⤵",cuepr:"⋞",cuesc:"⋟",cularr:"↶",cularrp:"⤽",cupbrcap:"⩈",cupcap:"⩆",CupCap:"≍",cup:"∪",Cup:"⋓",cupcup:"⩊",cupdot:"⊍",cupor:"⩅",cups:"∪︀",curarr:"↷",curarrm:"⤼",curlyeqprec:"⋞",curlyeqsucc:"⋟",curlyvee:"⋎",curlywedge:"⋏",curren:"¤",curvearrowleft:"↶",curvearrowright:"↷",cuvee:"⋎",cuwed:"⋏",cwconint:"∲",cwint:"∱",cylcty:"⌭",dagger:"†",Dagger:"‡",daleth:"ℸ",darr:"↓",Darr:"↡",dArr:"⇓",dash:"‐",Dashv:"⫤",dashv:"⊣",dbkarow:"⤏",dblac:"˝",Dcaron:"Ď",dcaron:"ď",Dcy:"Д",dcy:"д",ddagger:"‡",ddarr:"⇊",DD:"ⅅ",dd:"ⅆ",DDotrahd:"⤑",ddotseq:"⩷",deg:"°",Del:"∇",Delta:"Δ",delta:"δ",demptyv:"⦱",dfisht:"⥿",Dfr:"𝔇",dfr:"𝔡",dHar:"⥥",dharl:"⇃",dharr:"⇂",DiacriticalAcute:"´",DiacriticalDot:"˙",DiacriticalDoubleAcute:"˝",DiacriticalGrave:"`",DiacriticalTilde:"˜",diam:"⋄",diamond:"⋄",Diamond:"⋄",diamondsuit:"♦",diams:"♦",die:"¨",DifferentialD:"ⅆ",digamma:"ϝ",disin:"⋲",div:"÷",divide:"÷",divideontimes:"⋇",divonx:"⋇",DJcy:"Ђ",djcy:"ђ",dlcorn:"⌞",dlcrop:"⌍",dollar:"$",Dopf:"𝔻",dopf:"𝕕",Dot:"¨",dot:"˙",DotDot:"⃜",doteq:"≐",doteqdot:"≑",DotEqual:"≐",dotminus:"∸",dotplus:"∔",dotsquare:"⊡",doublebarwedge:"⌆",DoubleContourIntegral:"∯",DoubleDot:"¨",DoubleDownArrow:"⇓",DoubleLeftArrow:"⇐",DoubleLeftRightArrow:"⇔",DoubleLeftTee:"⫤",DoubleLongLeftArrow:"⟸",DoubleLongLeftRightArrow:"⟺",DoubleLongRightArrow:"⟹",DoubleRightArrow:"⇒",DoubleRightTee:"⊨",DoubleUpArrow:"⇑",DoubleUpDownArrow:"⇕",DoubleVerticalBar:"∥",DownArrowBar:"⤓",downarrow:"↓",DownArrow:"↓",Downarrow:"⇓",DownArrowUpArrow:"⇵",DownBreve:"̑",downdownarrows:"⇊",downharpoonleft:"⇃",downharpoonright:"⇂",DownLeftRightVector:"⥐",DownLeftTeeVector:"⥞",DownLeftVectorBar:"⥖",DownLeftVector:"↽",DownRightTeeVector:"⥟",DownRightVectorBar:"⥗",DownRightVector:"⇁",DownTeeArrow:"↧",DownTee:"⊤",drbkarow:"⤐",drcorn:"⌟",drcrop:"⌌",Dscr:"𝒟",dscr:"𝒹",DScy:"Ѕ",dscy:"ѕ",dsol:"⧶",Dstrok:"Đ",dstrok:"đ",dtdot:"⋱",dtri:"▿",dtrif:"▾",duarr:"⇵",duhar:"⥯",dwangle:"⦦",DZcy:"Џ",dzcy:"џ",dzigrarr:"⟿",Eacute:"É",eacute:"é",easter:"⩮",Ecaron:"Ě",ecaron:"ě",Ecirc:"Ê",ecirc:"ê",ecir:"≖",ecolon:"≕",Ecy:"Э",ecy:"э",eDDot:"⩷",Edot:"Ė",edot:"ė",eDot:"≑",ee:"ⅇ",efDot:"≒",Efr:"𝔈",efr:"𝔢",eg:"⪚",Egrave:"È",egrave:"è",egs:"⪖",egsdot:"⪘",el:"⪙",Element:"∈",elinters:"⏧",ell:"ℓ",els:"⪕",elsdot:"⪗",Emacr:"Ē",emacr:"ē",empty:"∅",emptyset:"∅",EmptySmallSquare:"◻",emptyv:"∅",EmptyVerySmallSquare:"▫",emsp13:" ",emsp14:" ",emsp:" ",ENG:"Ŋ",eng:"ŋ",ensp:" ",Eogon:"Ę",eogon:"ę",Eopf:"𝔼",eopf:"𝕖",epar:"⋕",eparsl:"⧣",eplus:"⩱",epsi:"ε",Epsilon:"Ε",epsilon:"ε",epsiv:"ϵ",eqcirc:"≖",eqcolon:"≕",eqsim:"≂",eqslantgtr:"⪖",eqslantless:"⪕",Equal:"⩵",equals:"=",EqualTilde:"≂",equest:"≟",Equilibrium:"⇌",equiv:"≡",equivDD:"⩸",eqvparsl:"⧥",erarr:"⥱",erDot:"≓",escr:"ℯ",Escr:"ℰ",esdot:"≐",Esim:"⩳",esim:"≂",Eta:"Η",eta:"η",ETH:"Ð",eth:"ð",Euml:"Ë",euml:"ë",euro:"€",excl:"!",exist:"∃",Exists:"∃",expectation:"ℰ",exponentiale:"ⅇ",ExponentialE:"ⅇ",fallingdotseq:"≒",Fcy:"Ф",fcy:"ф",female:"♀",ffilig:"ffi",fflig:"ff",ffllig:"ffl",Ffr:"𝔉",ffr:"𝔣",filig:"fi",FilledSmallSquare:"◼",FilledVerySmallSquare:"▪",fjlig:"fj",flat:"♭",fllig:"fl",fltns:"▱",fnof:"ƒ",Fopf:"𝔽",fopf:"𝕗",forall:"∀",ForAll:"∀",fork:"⋔",forkv:"⫙",Fouriertrf:"ℱ",fpartint:"⨍",frac12:"½",frac13:"⅓",frac14:"¼",frac15:"⅕",frac16:"⅙",frac18:"⅛",frac23:"⅔",frac25:"⅖",frac34:"¾",frac35:"⅗",frac38:"⅜",frac45:"⅘",frac56:"⅚",frac58:"⅝",frac78:"⅞",frasl:"⁄",frown:"⌢",fscr:"𝒻",Fscr:"ℱ",gacute:"ǵ",Gamma:"Γ",gamma:"γ",Gammad:"Ϝ",gammad:"ϝ",gap:"⪆",Gbreve:"Ğ",gbreve:"ğ",Gcedil:"Ģ",Gcirc:"Ĝ",gcirc:"ĝ",Gcy:"Г",gcy:"г",Gdot:"Ġ",gdot:"ġ",ge:"≥",gE:"≧",gEl:"⪌",gel:"⋛",geq:"≥",geqq:"≧",geqslant:"⩾",gescc:"⪩",ges:"⩾",gesdot:"⪀",gesdoto:"⪂",gesdotol:"⪄",gesl:"⋛︀",gesles:"⪔",Gfr:"𝔊",gfr:"𝔤",gg:"≫",Gg:"⋙",ggg:"⋙",gimel:"ℷ",GJcy:"Ѓ",gjcy:"ѓ",gla:"⪥",gl:"≷",glE:"⪒",glj:"⪤",gnap:"⪊",gnapprox:"⪊",gne:"⪈",gnE:"≩",gneq:"⪈",gneqq:"≩",gnsim:"⋧",Gopf:"𝔾",gopf:"𝕘",grave:"`",GreaterEqual:"≥",GreaterEqualLess:"⋛",GreaterFullEqual:"≧",GreaterGreater:"⪢",GreaterLess:"≷",GreaterSlantEqual:"⩾",GreaterTilde:"≳",Gscr:"𝒢",gscr:"ℊ",gsim:"≳",gsime:"⪎",gsiml:"⪐",gtcc:"⪧",gtcir:"⩺",gt:">",GT:">",Gt:"≫",gtdot:"⋗",gtlPar:"⦕",gtquest:"⩼",gtrapprox:"⪆",gtrarr:"⥸",gtrdot:"⋗",gtreqless:"⋛",gtreqqless:"⪌",gtrless:"≷",gtrsim:"≳",gvertneqq:"≩︀",gvnE:"≩︀",Hacek:"ˇ",hairsp:" ",half:"½",hamilt:"ℋ",HARDcy:"Ъ",hardcy:"ъ",harrcir:"⥈",harr:"↔",hArr:"⇔",harrw:"↭",Hat:"^",hbar:"ℏ",Hcirc:"Ĥ",hcirc:"ĥ",hearts:"♥",heartsuit:"♥",hellip:"…",hercon:"⊹",hfr:"𝔥",Hfr:"ℌ",HilbertSpace:"ℋ",hksearow:"⤥",hkswarow:"⤦",hoarr:"⇿",homtht:"∻",hookleftarrow:"↩",hookrightarrow:"↪",hopf:"𝕙",Hopf:"ℍ",horbar:"―",HorizontalLine:"─",hscr:"𝒽",Hscr:"ℋ",hslash:"ℏ",Hstrok:"Ħ",hstrok:"ħ",HumpDownHump:"≎",HumpEqual:"≏",hybull:"⁃",hyphen:"‐",Iacute:"Í",iacute:"í",ic:"⁣",Icirc:"Î",icirc:"î",Icy:"И",icy:"и",Idot:"İ",IEcy:"Е",iecy:"е",iexcl:"¡",iff:"⇔",ifr:"𝔦",Ifr:"ℑ",Igrave:"Ì",igrave:"ì",ii:"ⅈ",iiiint:"⨌",iiint:"∭",iinfin:"⧜",iiota:"℩",IJlig:"IJ",ijlig:"ij",Imacr:"Ī",imacr:"ī",image:"ℑ",ImaginaryI:"ⅈ",imagline:"ℐ",imagpart:"ℑ",imath:"ı",Im:"ℑ",imof:"⊷",imped:"Ƶ",Implies:"⇒",incare:"℅",in:"∈",infin:"∞",infintie:"⧝",inodot:"ı",intcal:"⊺",int:"∫",Int:"∬",integers:"ℤ",Integral:"∫",intercal:"⊺",Intersection:"⋂",intlarhk:"⨗",intprod:"⨼",InvisibleComma:"⁣",InvisibleTimes:"⁢",IOcy:"Ё",iocy:"ё",Iogon:"Į",iogon:"į",Iopf:"𝕀",iopf:"𝕚",Iota:"Ι",iota:"ι",iprod:"⨼",iquest:"¿",iscr:"𝒾",Iscr:"ℐ",isin:"∈",isindot:"⋵",isinE:"⋹",isins:"⋴",isinsv:"⋳",isinv:"∈",it:"⁢",Itilde:"Ĩ",itilde:"ĩ",Iukcy:"І",iukcy:"і",Iuml:"Ï",iuml:"ï",Jcirc:"Ĵ",jcirc:"ĵ",Jcy:"Й",jcy:"й",Jfr:"𝔍",jfr:"𝔧",jmath:"ȷ",Jopf:"𝕁",jopf:"𝕛",Jscr:"𝒥",jscr:"𝒿",Jsercy:"Ј",jsercy:"ј",Jukcy:"Є",jukcy:"є",Kappa:"Κ",kappa:"κ",kappav:"ϰ",Kcedil:"Ķ",kcedil:"ķ",Kcy:"К",kcy:"к",Kfr:"𝔎",kfr:"𝔨",kgreen:"ĸ",KHcy:"Х",khcy:"х",KJcy:"Ќ",kjcy:"ќ",Kopf:"𝕂",kopf:"𝕜",Kscr:"𝒦",kscr:"𝓀",lAarr:"⇚",Lacute:"Ĺ",lacute:"ĺ",laemptyv:"⦴",lagran:"ℒ",Lambda:"Λ",lambda:"λ",lang:"⟨",Lang:"⟪",langd:"⦑",langle:"⟨",lap:"⪅",Laplacetrf:"ℒ",laquo:"«",larrb:"⇤",larrbfs:"⤟",larr:"←",Larr:"↞",lArr:"⇐",larrfs:"⤝",larrhk:"↩",larrlp:"↫",larrpl:"⤹",larrsim:"⥳",larrtl:"↢",latail:"⤙",lAtail:"⤛",lat:"⪫",late:"⪭",lates:"⪭︀",lbarr:"⤌",lBarr:"⤎",lbbrk:"❲",lbrace:"{",lbrack:"[",lbrke:"⦋",lbrksld:"⦏",lbrkslu:"⦍",Lcaron:"Ľ",lcaron:"ľ",Lcedil:"Ļ",lcedil:"ļ",lceil:"⌈",lcub:"{",Lcy:"Л",lcy:"л",ldca:"⤶",ldquo:"“",ldquor:"„",ldrdhar:"⥧",ldrushar:"⥋",ldsh:"↲",le:"≤",lE:"≦",LeftAngleBracket:"⟨",LeftArrowBar:"⇤",leftarrow:"←",LeftArrow:"←",Leftarrow:"⇐",LeftArrowRightArrow:"⇆",leftarrowtail:"↢",LeftCeiling:"⌈",LeftDoubleBracket:"⟦",LeftDownTeeVector:"⥡",LeftDownVectorBar:"⥙",LeftDownVector:"⇃",LeftFloor:"⌊",leftharpoondown:"↽",leftharpoonup:"↼",leftleftarrows:"⇇",leftrightarrow:"↔",LeftRightArrow:"↔",Leftrightarrow:"⇔",leftrightarrows:"⇆",leftrightharpoons:"⇋",leftrightsquigarrow:"↭",LeftRightVector:"⥎",LeftTeeArrow:"↤",LeftTee:"⊣",LeftTeeVector:"⥚",leftthreetimes:"⋋",LeftTriangleBar:"⧏",LeftTriangle:"⊲",LeftTriangleEqual:"⊴",LeftUpDownVector:"⥑",LeftUpTeeVector:"⥠",LeftUpVectorBar:"⥘",LeftUpVector:"↿",LeftVectorBar:"⥒",LeftVector:"↼",lEg:"⪋",leg:"⋚",leq:"≤",leqq:"≦",leqslant:"⩽",lescc:"⪨",les:"⩽",lesdot:"⩿",lesdoto:"⪁",lesdotor:"⪃",lesg:"⋚︀",lesges:"⪓",lessapprox:"⪅",lessdot:"⋖",lesseqgtr:"⋚",lesseqqgtr:"⪋",LessEqualGreater:"⋚",LessFullEqual:"≦",LessGreater:"≶",lessgtr:"≶",LessLess:"⪡",lesssim:"≲",LessSlantEqual:"⩽",LessTilde:"≲",lfisht:"⥼",lfloor:"⌊",Lfr:"𝔏",lfr:"𝔩",lg:"≶",lgE:"⪑",lHar:"⥢",lhard:"↽",lharu:"↼",lharul:"⥪",lhblk:"▄",LJcy:"Љ",ljcy:"љ",llarr:"⇇",ll:"≪",Ll:"⋘",llcorner:"⌞",Lleftarrow:"⇚",llhard:"⥫",lltri:"◺",Lmidot:"Ŀ",lmidot:"ŀ",lmoustache:"⎰",lmoust:"⎰",lnap:"⪉",lnapprox:"⪉",lne:"⪇",lnE:"≨",lneq:"⪇",lneqq:"≨",lnsim:"⋦",loang:"⟬",loarr:"⇽",lobrk:"⟦",longleftarrow:"⟵",LongLeftArrow:"⟵",Longleftarrow:"⟸",longleftrightarrow:"⟷",LongLeftRightArrow:"⟷",Longleftrightarrow:"⟺",longmapsto:"⟼",longrightarrow:"⟶",LongRightArrow:"⟶",Longrightarrow:"⟹",looparrowleft:"↫",looparrowright:"↬",lopar:"⦅",Lopf:"𝕃",lopf:"𝕝",loplus:"⨭",lotimes:"⨴",lowast:"∗",lowbar:"_",LowerLeftArrow:"↙",LowerRightArrow:"↘",loz:"◊",lozenge:"◊",lozf:"⧫",lpar:"(",lparlt:"⦓",lrarr:"⇆",lrcorner:"⌟",lrhar:"⇋",lrhard:"⥭",lrm:"‎",lrtri:"⊿",lsaquo:"‹",lscr:"𝓁",Lscr:"ℒ",lsh:"↰",Lsh:"↰",lsim:"≲",lsime:"⪍",lsimg:"⪏",lsqb:"[",lsquo:"‘",lsquor:"‚",Lstrok:"Ł",lstrok:"ł",ltcc:"⪦",ltcir:"⩹",lt:"<",LT:"<",Lt:"≪",ltdot:"⋖",lthree:"⋋",ltimes:"⋉",ltlarr:"⥶",ltquest:"⩻",ltri:"◃",ltrie:"⊴",ltrif:"◂",ltrPar:"⦖",lurdshar:"⥊",luruhar:"⥦",lvertneqq:"≨︀",lvnE:"≨︀",macr:"¯",male:"♂",malt:"✠",maltese:"✠",Map:"⤅",map:"↦",mapsto:"↦",mapstodown:"↧",mapstoleft:"↤",mapstoup:"↥",marker:"▮",mcomma:"⨩",Mcy:"М",mcy:"м",mdash:"—",mDDot:"∺",measuredangle:"∡",MediumSpace:" ",Mellintrf:"ℳ",Mfr:"𝔐",mfr:"𝔪",mho:"℧",micro:"µ",midast:"*",midcir:"⫰",mid:"∣",middot:"·",minusb:"⊟",minus:"−",minusd:"∸",minusdu:"⨪",MinusPlus:"∓",mlcp:"⫛",mldr:"…",mnplus:"∓",models:"⊧",Mopf:"𝕄",mopf:"𝕞",mp:"∓",mscr:"𝓂",Mscr:"ℳ",mstpos:"∾",Mu:"Μ",mu:"μ",multimap:"⊸",mumap:"⊸",nabla:"∇",Nacute:"Ń",nacute:"ń",nang:"∠⃒",nap:"≉",napE:"⩰̸",napid:"≋̸",napos:"ʼn",napprox:"≉",natural:"♮",naturals:"ℕ",natur:"♮",nbsp:" ",nbump:"≎̸",nbumpe:"≏̸",ncap:"⩃",Ncaron:"Ň",ncaron:"ň",Ncedil:"Ņ",ncedil:"ņ",ncong:"≇",ncongdot:"⩭̸",ncup:"⩂",Ncy:"Н",ncy:"н",ndash:"–",nearhk:"⤤",nearr:"↗",neArr:"⇗",nearrow:"↗",ne:"≠",nedot:"≐̸",NegativeMediumSpace:"​",NegativeThickSpace:"​",NegativeThinSpace:"​",NegativeVeryThinSpace:"​",nequiv:"≢",nesear:"⤨",nesim:"≂̸",NestedGreaterGreater:"≫",NestedLessLess:"≪",NewLine:"\n",nexist:"∄",nexists:"∄",Nfr:"𝔑",nfr:"𝔫",ngE:"≧̸",nge:"≱",ngeq:"≱",ngeqq:"≧̸",ngeqslant:"⩾̸",nges:"⩾̸",nGg:"⋙̸",ngsim:"≵",nGt:"≫⃒",ngt:"≯",ngtr:"≯",nGtv:"≫̸",nharr:"↮",nhArr:"⇎",nhpar:"⫲",ni:"∋",nis:"⋼",nisd:"⋺",niv:"∋",NJcy:"Њ",njcy:"њ",nlarr:"↚",nlArr:"⇍",nldr:"‥",nlE:"≦̸",nle:"≰",nleftarrow:"↚",nLeftarrow:"⇍",nleftrightarrow:"↮",nLeftrightarrow:"⇎",nleq:"≰",nleqq:"≦̸",nleqslant:"⩽̸",nles:"⩽̸",nless:"≮",nLl:"⋘̸",nlsim:"≴",nLt:"≪⃒",nlt:"≮",nltri:"⋪",nltrie:"⋬",nLtv:"≪̸",nmid:"∤",NoBreak:"⁠",NonBreakingSpace:" ",nopf:"𝕟",Nopf:"ℕ",Not:"⫬",not:"¬",NotCongruent:"≢",NotCupCap:"≭",NotDoubleVerticalBar:"∦",NotElement:"∉",NotEqual:"≠",NotEqualTilde:"≂̸",NotExists:"∄",NotGreater:"≯",NotGreaterEqual:"≱",NotGreaterFullEqual:"≧̸",NotGreaterGreater:"≫̸",NotGreaterLess:"≹",NotGreaterSlantEqual:"⩾̸",NotGreaterTilde:"≵",NotHumpDownHump:"≎̸",NotHumpEqual:"≏̸",notin:"∉",notindot:"⋵̸",notinE:"⋹̸",notinva:"∉",notinvb:"⋷",notinvc:"⋶",NotLeftTriangleBar:"⧏̸",NotLeftTriangle:"⋪",NotLeftTriangleEqual:"⋬",NotLess:"≮",NotLessEqual:"≰",NotLessGreater:"≸",NotLessLess:"≪̸",NotLessSlantEqual:"⩽̸",NotLessTilde:"≴",NotNestedGreaterGreater:"⪢̸",NotNestedLessLess:"⪡̸",notni:"∌",notniva:"∌",notnivb:"⋾",notnivc:"⋽",NotPrecedes:"⊀",NotPrecedesEqual:"⪯̸",NotPrecedesSlantEqual:"⋠",NotReverseElement:"∌",NotRightTriangleBar:"⧐̸",NotRightTriangle:"⋫",NotRightTriangleEqual:"⋭",NotSquareSubset:"⊏̸",NotSquareSubsetEqual:"⋢",NotSquareSuperset:"⊐̸",NotSquareSupersetEqual:"⋣",NotSubset:"⊂⃒",NotSubsetEqual:"⊈",NotSucceeds:"⊁",NotSucceedsEqual:"⪰̸",NotSucceedsSlantEqual:"⋡",NotSucceedsTilde:"≿̸",NotSuperset:"⊃⃒",NotSupersetEqual:"⊉",NotTilde:"≁",NotTildeEqual:"≄",NotTildeFullEqual:"≇",NotTildeTilde:"≉",NotVerticalBar:"∤",nparallel:"∦",npar:"∦",nparsl:"⫽⃥",npart:"∂̸",npolint:"⨔",npr:"⊀",nprcue:"⋠",nprec:"⊀",npreceq:"⪯̸",npre:"⪯̸",nrarrc:"⤳̸",nrarr:"↛",nrArr:"⇏",nrarrw:"↝̸",nrightarrow:"↛",nRightarrow:"⇏",nrtri:"⋫",nrtrie:"⋭",nsc:"⊁",nsccue:"⋡",nsce:"⪰̸",Nscr:"𝒩",nscr:"𝓃",nshortmid:"∤",nshortparallel:"∦",nsim:"≁",nsime:"≄",nsimeq:"≄",nsmid:"∤",nspar:"∦",nsqsube:"⋢",nsqsupe:"⋣",nsub:"⊄",nsubE:"⫅̸",nsube:"⊈",nsubset:"⊂⃒",nsubseteq:"⊈",nsubseteqq:"⫅̸",nsucc:"⊁",nsucceq:"⪰̸",nsup:"⊅",nsupE:"⫆̸",nsupe:"⊉",nsupset:"⊃⃒",nsupseteq:"⊉",nsupseteqq:"⫆̸",ntgl:"≹",Ntilde:"Ñ",ntilde:"ñ",ntlg:"≸",ntriangleleft:"⋪",ntrianglelefteq:"⋬",ntriangleright:"⋫",ntrianglerighteq:"⋭",Nu:"Ν",nu:"ν",num:"#",numero:"№",numsp:" ",nvap:"≍⃒",nvdash:"⊬",nvDash:"⊭",nVdash:"⊮",nVDash:"⊯",nvge:"≥⃒",nvgt:">⃒",nvHarr:"⤄",nvinfin:"⧞",nvlArr:"⤂",nvle:"≤⃒",nvlt:"<⃒",nvltrie:"⊴⃒",nvrArr:"⤃",nvrtrie:"⊵⃒",nvsim:"∼⃒",nwarhk:"⤣",nwarr:"↖",nwArr:"⇖",nwarrow:"↖",nwnear:"⤧",Oacute:"Ó",oacute:"ó",oast:"⊛",Ocirc:"Ô",ocirc:"ô",ocir:"⊚",Ocy:"О",ocy:"о",odash:"⊝",Odblac:"Ő",odblac:"ő",odiv:"⨸",odot:"⊙",odsold:"⦼",OElig:"Œ",oelig:"œ",ofcir:"⦿",Ofr:"𝔒",ofr:"𝔬",ogon:"˛",Ograve:"Ò",ograve:"ò",ogt:"⧁",ohbar:"⦵",ohm:"Ω",oint:"∮",olarr:"↺",olcir:"⦾",olcross:"⦻",oline:"‾",olt:"⧀",Omacr:"Ō",omacr:"ō",Omega:"Ω",omega:"ω",Omicron:"Ο",omicron:"ο",omid:"⦶",ominus:"⊖",Oopf:"𝕆",oopf:"𝕠",opar:"⦷",OpenCurlyDoubleQuote:"“",OpenCurlyQuote:"‘",operp:"⦹",oplus:"⊕",orarr:"↻",Or:"⩔",or:"∨",ord:"⩝",order:"ℴ",orderof:"ℴ",ordf:"ª",ordm:"º",origof:"⊶",oror:"⩖",orslope:"⩗",orv:"⩛",oS:"Ⓢ",Oscr:"𝒪",oscr:"ℴ",Oslash:"Ø",oslash:"ø",osol:"⊘",Otilde:"Õ",otilde:"õ",otimesas:"⨶",Otimes:"⨷",otimes:"⊗",Ouml:"Ö",ouml:"ö",ovbar:"⌽",OverBar:"‾",OverBrace:"⏞",OverBracket:"⎴",OverParenthesis:"⏜",para:"¶",parallel:"∥",par:"∥",parsim:"⫳",parsl:"⫽",part:"∂",PartialD:"∂",Pcy:"П",pcy:"п",percnt:"%",period:".",permil:"‰",perp:"⊥",pertenk:"‱",Pfr:"𝔓",pfr:"𝔭",Phi:"Φ",phi:"φ",phiv:"ϕ",phmmat:"ℳ",phone:"☎",Pi:"Π",pi:"π",pitchfork:"⋔",piv:"ϖ",planck:"ℏ",planckh:"ℎ",plankv:"ℏ",plusacir:"⨣",plusb:"⊞",pluscir:"⨢",plus:"+",plusdo:"∔",plusdu:"⨥",pluse:"⩲",PlusMinus:"±",plusmn:"±",plussim:"⨦",plustwo:"⨧",pm:"±",Poincareplane:"ℌ",pointint:"⨕",popf:"𝕡",Popf:"ℙ",pound:"£",prap:"⪷",Pr:"⪻",pr:"≺",prcue:"≼",precapprox:"⪷",prec:"≺",preccurlyeq:"≼",Precedes:"≺",PrecedesEqual:"⪯",PrecedesSlantEqual:"≼",PrecedesTilde:"≾",preceq:"⪯",precnapprox:"⪹",precneqq:"⪵",precnsim:"⋨",pre:"⪯",prE:"⪳",precsim:"≾",prime:"′",Prime:"″",primes:"ℙ",prnap:"⪹",prnE:"⪵",prnsim:"⋨",prod:"∏",Product:"∏",profalar:"⌮",profline:"⌒",profsurf:"⌓",prop:"∝",Proportional:"∝",Proportion:"∷",propto:"∝",prsim:"≾",prurel:"⊰",Pscr:"𝒫",pscr:"𝓅",Psi:"Ψ",psi:"ψ",puncsp:" ",Qfr:"𝔔",qfr:"𝔮",qint:"⨌",qopf:"𝕢",Qopf:"ℚ",qprime:"⁗",Qscr:"𝒬",qscr:"𝓆",quaternions:"ℍ",quatint:"⨖",quest:"?",questeq:"≟",quot:'"',QUOT:'"',rAarr:"⇛",race:"∽̱",Racute:"Ŕ",racute:"ŕ",radic:"√",raemptyv:"⦳",rang:"⟩",Rang:"⟫",rangd:"⦒",range:"⦥",rangle:"⟩",raquo:"»",rarrap:"⥵",rarrb:"⇥",rarrbfs:"⤠",rarrc:"⤳",rarr:"→",Rarr:"↠",rArr:"⇒",rarrfs:"⤞",rarrhk:"↪",rarrlp:"↬",rarrpl:"⥅",rarrsim:"⥴",Rarrtl:"⤖",rarrtl:"↣",rarrw:"↝",ratail:"⤚",rAtail:"⤜",ratio:"∶",rationals:"ℚ",rbarr:"⤍",rBarr:"⤏",RBarr:"⤐",rbbrk:"❳",rbrace:"}",rbrack:"]",rbrke:"⦌",rbrksld:"⦎",rbrkslu:"⦐",Rcaron:"Ř",rcaron:"ř",Rcedil:"Ŗ",rcedil:"ŗ",rceil:"⌉",rcub:"}",Rcy:"Р",rcy:"р",rdca:"⤷",rdldhar:"⥩",rdquo:"”",rdquor:"”",rdsh:"↳",real:"ℜ",realine:"ℛ",realpart:"ℜ",reals:"ℝ",Re:"ℜ",rect:"▭",reg:"®",REG:"®",ReverseElement:"∋",ReverseEquilibrium:"⇋",ReverseUpEquilibrium:"⥯",rfisht:"⥽",rfloor:"⌋",rfr:"𝔯",Rfr:"ℜ",rHar:"⥤",rhard:"⇁",rharu:"⇀",rharul:"⥬",Rho:"Ρ",rho:"ρ",rhov:"ϱ",RightAngleBracket:"⟩",RightArrowBar:"⇥",rightarrow:"→",RightArrow:"→",Rightarrow:"⇒",RightArrowLeftArrow:"⇄",rightarrowtail:"↣",RightCeiling:"⌉",RightDoubleBracket:"⟧",RightDownTeeVector:"⥝",RightDownVectorBar:"⥕",RightDownVector:"⇂",RightFloor:"⌋",rightharpoondown:"⇁",rightharpoonup:"⇀",rightleftarrows:"⇄",rightleftharpoons:"⇌",rightrightarrows:"⇉",rightsquigarrow:"↝",RightTeeArrow:"↦",RightTee:"⊢",RightTeeVector:"⥛",rightthreetimes:"⋌",RightTriangleBar:"⧐",RightTriangle:"⊳",RightTriangleEqual:"⊵",RightUpDownVector:"⥏",RightUpTeeVector:"⥜",RightUpVectorBar:"⥔",RightUpVector:"↾",RightVectorBar:"⥓",RightVector:"⇀",ring:"˚",risingdotseq:"≓",rlarr:"⇄",rlhar:"⇌",rlm:"‏",rmoustache:"⎱",rmoust:"⎱",rnmid:"⫮",roang:"⟭",roarr:"⇾",robrk:"⟧",ropar:"⦆",ropf:"𝕣",Ropf:"ℝ",roplus:"⨮",rotimes:"⨵",RoundImplies:"⥰",rpar:")",rpargt:"⦔",rppolint:"⨒",rrarr:"⇉",Rrightarrow:"⇛",rsaquo:"›",rscr:"𝓇",Rscr:"ℛ",rsh:"↱",Rsh:"↱",rsqb:"]",rsquo:"’",rsquor:"’",rthree:"⋌",rtimes:"⋊",rtri:"▹",rtrie:"⊵",rtrif:"▸",rtriltri:"⧎",RuleDelayed:"⧴",ruluhar:"⥨",rx:"℞",Sacute:"Ś",sacute:"ś",sbquo:"‚",scap:"⪸",Scaron:"Š",scaron:"š",Sc:"⪼",sc:"≻",sccue:"≽",sce:"⪰",scE:"⪴",Scedil:"Ş",scedil:"ş",Scirc:"Ŝ",scirc:"ŝ",scnap:"⪺",scnE:"⪶",scnsim:"⋩",scpolint:"⨓",scsim:"≿",Scy:"С",scy:"с",sdotb:"⊡",sdot:"⋅",sdote:"⩦",searhk:"⤥",searr:"↘",seArr:"⇘",searrow:"↘",sect:"§",semi:";",seswar:"⤩",setminus:"∖",setmn:"∖",sext:"✶",Sfr:"𝔖",sfr:"𝔰",sfrown:"⌢",sharp:"♯",SHCHcy:"Щ",shchcy:"щ",SHcy:"Ш",shcy:"ш",ShortDownArrow:"↓",ShortLeftArrow:"←",shortmid:"∣",shortparallel:"∥",ShortRightArrow:"→",ShortUpArrow:"↑",shy:"­",Sigma:"Σ",sigma:"σ",sigmaf:"ς",sigmav:"ς",sim:"∼",simdot:"⩪",sime:"≃",simeq:"≃",simg:"⪞",simgE:"⪠",siml:"⪝",simlE:"⪟",simne:"≆",simplus:"⨤",simrarr:"⥲",slarr:"←",SmallCircle:"∘",smallsetminus:"∖",smashp:"⨳",smeparsl:"⧤",smid:"∣",smile:"⌣",smt:"⪪",smte:"⪬",smtes:"⪬︀",SOFTcy:"Ь",softcy:"ь",solbar:"⌿",solb:"⧄",sol:"/",Sopf:"𝕊",sopf:"𝕤",spades:"♠",spadesuit:"♠",spar:"∥",sqcap:"⊓",sqcaps:"⊓︀",sqcup:"⊔",sqcups:"⊔︀",Sqrt:"√",sqsub:"⊏",sqsube:"⊑",sqsubset:"⊏",sqsubseteq:"⊑",sqsup:"⊐",sqsupe:"⊒",sqsupset:"⊐",sqsupseteq:"⊒",square:"□",Square:"□",SquareIntersection:"⊓",SquareSubset:"⊏",SquareSubsetEqual:"⊑",SquareSuperset:"⊐",SquareSupersetEqual:"⊒",SquareUnion:"⊔",squarf:"▪",squ:"□",squf:"▪",srarr:"→",Sscr:"𝒮",sscr:"𝓈",ssetmn:"∖",ssmile:"⌣",sstarf:"⋆",Star:"⋆",star:"☆",starf:"★",straightepsilon:"ϵ",straightphi:"ϕ",strns:"¯",sub:"⊂",Sub:"⋐",subdot:"⪽",subE:"⫅",sube:"⊆",subedot:"⫃",submult:"⫁",subnE:"⫋",subne:"⊊",subplus:"⪿",subrarr:"⥹",subset:"⊂",Subset:"⋐",subseteq:"⊆",subseteqq:"⫅",SubsetEqual:"⊆",subsetneq:"⊊",subsetneqq:"⫋",subsim:"⫇",subsub:"⫕",subsup:"⫓",succapprox:"⪸",succ:"≻",succcurlyeq:"≽",Succeeds:"≻",SucceedsEqual:"⪰",SucceedsSlantEqual:"≽",SucceedsTilde:"≿",succeq:"⪰",succnapprox:"⪺",succneqq:"⪶",succnsim:"⋩",succsim:"≿",SuchThat:"∋",sum:"∑",Sum:"∑",sung:"♪",sup1:"¹",sup2:"²",sup3:"³",sup:"⊃",Sup:"⋑",supdot:"⪾",supdsub:"⫘",supE:"⫆",supe:"⊇",supedot:"⫄",Superset:"⊃",SupersetEqual:"⊇",suphsol:"⟉",suphsub:"⫗",suplarr:"⥻",supmult:"⫂",supnE:"⫌",supne:"⊋",supplus:"⫀",supset:"⊃",Supset:"⋑",supseteq:"⊇",supseteqq:"⫆",supsetneq:"⊋",supsetneqq:"⫌",supsim:"⫈",supsub:"⫔",supsup:"⫖",swarhk:"⤦",swarr:"↙",swArr:"⇙",swarrow:"↙",swnwar:"⤪",szlig:"ß",Tab:"\t",target:"⌖",Tau:"Τ",tau:"τ",tbrk:"⎴",Tcaron:"Ť",tcaron:"ť",Tcedil:"Ţ",tcedil:"ţ",Tcy:"Т",tcy:"т",tdot:"⃛",telrec:"⌕",Tfr:"𝔗",tfr:"𝔱",there4:"∴",therefore:"∴",Therefore:"∴",Theta:"Θ",theta:"θ",thetasym:"ϑ",thetav:"ϑ",thickapprox:"≈",thicksim:"∼",ThickSpace:"  ",ThinSpace:" ",thinsp:" ",thkap:"≈",thksim:"∼",THORN:"Þ",thorn:"þ",tilde:"˜",Tilde:"∼",TildeEqual:"≃",TildeFullEqual:"≅",TildeTilde:"≈",timesbar:"⨱",timesb:"⊠",times:"×",timesd:"⨰",tint:"∭",toea:"⤨",topbot:"⌶",topcir:"⫱",top:"⊤",Topf:"𝕋",topf:"𝕥",topfork:"⫚",tosa:"⤩",tprime:"‴",trade:"™",TRADE:"™",triangle:"▵",triangledown:"▿",triangleleft:"◃",trianglelefteq:"⊴",triangleq:"≜",triangleright:"▹",trianglerighteq:"⊵",tridot:"◬",trie:"≜",triminus:"⨺",TripleDot:"⃛",triplus:"⨹",trisb:"⧍",tritime:"⨻",trpezium:"⏢",Tscr:"𝒯",tscr:"𝓉",TScy:"Ц",tscy:"ц",TSHcy:"Ћ",tshcy:"ћ",Tstrok:"Ŧ",tstrok:"ŧ",twixt:"≬",twoheadleftarrow:"↞",twoheadrightarrow:"↠",Uacute:"Ú",uacute:"ú",uarr:"↑",Uarr:"↟",uArr:"⇑",Uarrocir:"⥉",Ubrcy:"Ў",ubrcy:"ў",Ubreve:"Ŭ",ubreve:"ŭ",Ucirc:"Û",ucirc:"û",Ucy:"У",ucy:"у",udarr:"⇅",Udblac:"Ű",udblac:"ű",udhar:"⥮",ufisht:"⥾",Ufr:"𝔘",ufr:"𝔲",Ugrave:"Ù",ugrave:"ù",uHar:"⥣",uharl:"↿",uharr:"↾",uhblk:"▀",ulcorn:"⌜",ulcorner:"⌜",ulcrop:"⌏",ultri:"◸",Umacr:"Ū",umacr:"ū",uml:"¨",UnderBar:"_",UnderBrace:"⏟",UnderBracket:"⎵",UnderParenthesis:"⏝",Union:"⋃",UnionPlus:"⊎",Uogon:"Ų",uogon:"ų",Uopf:"𝕌",uopf:"𝕦",UpArrowBar:"⤒",uparrow:"↑",UpArrow:"↑",Uparrow:"⇑",UpArrowDownArrow:"⇅",updownarrow:"↕",UpDownArrow:"↕",Updownarrow:"⇕",UpEquilibrium:"⥮",upharpoonleft:"↿",upharpoonright:"↾",uplus:"⊎",UpperLeftArrow:"↖",UpperRightArrow:"↗",upsi:"υ",Upsi:"ϒ",upsih:"ϒ",Upsilon:"Υ",upsilon:"υ",UpTeeArrow:"↥",UpTee:"⊥",upuparrows:"⇈",urcorn:"⌝",urcorner:"⌝",urcrop:"⌎",Uring:"Ů",uring:"ů",urtri:"◹",Uscr:"𝒰",uscr:"𝓊",utdot:"⋰",Utilde:"Ũ",utilde:"ũ",utri:"▵",utrif:"▴",uuarr:"⇈",Uuml:"Ü",uuml:"ü",uwangle:"⦧",vangrt:"⦜",varepsilon:"ϵ",varkappa:"ϰ",varnothing:"∅",varphi:"ϕ",varpi:"ϖ",varpropto:"∝",varr:"↕",vArr:"⇕",varrho:"ϱ",varsigma:"ς",varsubsetneq:"⊊︀",varsubsetneqq:"⫋︀",varsupsetneq:"⊋︀",varsupsetneqq:"⫌︀",vartheta:"ϑ",vartriangleleft:"⊲",vartriangleright:"⊳",vBar:"⫨",Vbar:"⫫",vBarv:"⫩",Vcy:"В",vcy:"в",vdash:"⊢",vDash:"⊨",Vdash:"⊩",VDash:"⊫",Vdashl:"⫦",veebar:"⊻",vee:"∨",Vee:"⋁",veeeq:"≚",vellip:"⋮",verbar:"|",Verbar:"‖",vert:"|",Vert:"‖",VerticalBar:"∣",VerticalLine:"|",VerticalSeparator:"❘",VerticalTilde:"≀",VeryThinSpace:" ",Vfr:"𝔙",vfr:"𝔳",vltri:"⊲",vnsub:"⊂⃒",vnsup:"⊃⃒",Vopf:"𝕍",vopf:"𝕧",vprop:"∝",vrtri:"⊳",Vscr:"𝒱",vscr:"𝓋",vsubnE:"⫋︀",vsubne:"⊊︀",vsupnE:"⫌︀",vsupne:"⊋︀",Vvdash:"⊪",vzigzag:"⦚",Wcirc:"Ŵ",wcirc:"ŵ",wedbar:"⩟",wedge:"∧",Wedge:"⋀",wedgeq:"≙",weierp:"℘",Wfr:"𝔚",wfr:"𝔴",Wopf:"𝕎",wopf:"𝕨",wp:"℘",wr:"≀",wreath:"≀",Wscr:"𝒲",wscr:"𝓌",xcap:"⋂",xcirc:"◯",xcup:"⋃",xdtri:"▽",Xfr:"𝔛",xfr:"𝔵",xharr:"⟷",xhArr:"⟺",Xi:"Ξ",xi:"ξ",xlarr:"⟵",xlArr:"⟸",xmap:"⟼",xnis:"⋻",xodot:"⨀",Xopf:"𝕏",xopf:"𝕩",xoplus:"⨁",xotime:"⨂",xrarr:"⟶",xrArr:"⟹",Xscr:"𝒳",xscr:"𝓍",xsqcup:"⨆",xuplus:"⨄",xutri:"△",xvee:"⋁",xwedge:"⋀",Yacute:"Ý",yacute:"ý",YAcy:"Я",yacy:"я",Ycirc:"Ŷ",ycirc:"ŷ",Ycy:"Ы",ycy:"ы",yen:"¥",Yfr:"𝔜",yfr:"𝔶",YIcy:"Ї",yicy:"ї",Yopf:"𝕐",yopf:"𝕪",Yscr:"𝒴",yscr:"𝓎",YUcy:"Ю",yucy:"ю",yuml:"ÿ",Yuml:"Ÿ",Zacute:"Ź",zacute:"ź",Zcaron:"Ž",zcaron:"ž",Zcy:"З",zcy:"з",Zdot:"Ż",zdot:"ż",zeetrf:"ℨ",ZeroWidthSpace:"​",Zeta:"Ζ",zeta:"ζ",zfr:"𝔷",Zfr:"ℨ",ZHcy:"Ж",zhcy:"ж",zigrarr:"⇝",zopf:"𝕫",Zopf:"ℤ",Zscr:"𝒵",zscr:"𝓏",zwj:"‍",zwnj:"‌"}},function(t,e){},function(t,e){},function(t,e,n){"use strict";function i(t){return Array.prototype.slice.call(arguments,1).forEach(function(e){e&&Object.keys(e).forEach(function(n){t[n]=e[n]})}),t}function r(t){return Object.prototype.toString.call(t)}function s(t){return"[object String]"===r(t)}function o(t){return"[object Object]"===r(t)}function a(t){return"[object RegExp]"===r(t)}function l(t){return"[object Function]"===r(t)}function c(t){return t.replace(/[.?*+^$[\]\\(){}|-]/g,"\\$&")}function u(t){function e(t){return t.replace("%TLDS%",r.src_tlds)}function i(t,e){throw new Error('(LinkifyIt) Invalid schema "'+t+'": '+e)}var r=t.re=n(109)(t.__opts__),u=t.__tlds__.slice();t.onCompile(),t.__tlds_replaced__||u.push(m),u.push(r.src_xn),r.src_tlds=u.join("|"),r.email_fuzzy=RegExp(e(r.tpl_email_fuzzy),"i"),r.link_fuzzy=RegExp(e(r.tpl_link_fuzzy),"i"),r.link_no_ip_fuzzy=RegExp(e(r.tpl_link_no_ip_fuzzy),"i"),r.host_fuzzy_test=RegExp(e(r.tpl_host_fuzzy_test),"i");var h=[];t.__compiled__={},Object.keys(t.__schemas__).forEach(function(e){var n=t.__schemas__[e];if(null!==n){var r={validate:null,link:null};return t.__compiled__[e]=r,o(n)?(a(n.validate)?r.validate=function(t){return function(e,n){var i=e.slice(n);return t.test(i)?i.match(t)[0].length:0}}(n.validate):l(n.validate)?r.validate=n.validate:i(e,n),void(l(n.normalize)?r.normalize=n.normalize:n.normalize?i(e,n):r.normalize=function(t,e){e.normalize(t)})):s(n)?void h.push(e):void i(e,n)}}),h.forEach(function(e){t.__compiled__[t.__schemas__[e]]&&(t.__compiled__[e].validate=t.__compiled__[t.__schemas__[e]].validate,t.__compiled__[e].normalize=t.__compiled__[t.__schemas__[e]].normalize)}),t.__compiled__[""]={validate:null,normalize:function(t,e){e.normalize(t)}};var d=Object.keys(t.__compiled__).filter(function(e){return e.length>0&&t.__compiled__[e]}).map(c).join("|");t.re.schema_test=RegExp("(^|(?!_)(?:[><|]|"+r.src_ZPCc+"))("+d+")","i"),t.re.schema_search=RegExp("(^|(?!_)(?:[><|]|"+r.src_ZPCc+"))("+d+")","ig"),t.re.pretest=RegExp("("+t.re.schema_test.source+")|("+t.re.host_fuzzy_test.source+")|@","i"),function(t){t.__index__=-1,t.__text_cache__=""}(t)}function h(t,e){var n=new function(t,e){var n=t.__index__,i=t.__last_index__,r=t.__text_cache__.slice(n,i);this.schema=t.__schema__.toLowerCase(),this.index=n+e,this.lastIndex=i+e,this.raw=r,this.text=r,this.url=r}(t,e);return t.__compiled__[n.schema].normalize(n,t),n}function d(t,e){if(!(this instanceof d))return new d(t,e);e||function(t){return Object.keys(t||{}).reduce(function(t,e){return t||p.hasOwnProperty(e)},!1)}(t)&&(e=t,t={}),this.__opts__=i({},p,e),this.__index__=-1,this.__last_index__=-1,this.__schema__="",this.__text_cache__="",this.__schemas__=i({},f,t),this.__compiled__={},this.__tlds__=v,this.__tlds_replaced__=!1,this.re={},u(this)}var p={fuzzyLink:!0,fuzzyEmail:!0,fuzzyIP:!1},f={"http:":{validate:function(t,e,n){var i=t.slice(e);return n.re.http||(n.re.http=new RegExp("^\\/\\/"+n.re.src_auth+n.re.src_host_port_strict+n.re.src_path,"i")),n.re.http.test(i)?i.match(n.re.http)[0].length:0}},"https:":"http:","ftp:":"http:","//":{validate:function(t,e,n){var i=t.slice(e);return n.re.no_http||(n.re.no_http=new RegExp("^"+n.re.src_auth+"(?:localhost|(?:(?:"+n.re.src_domain+")\\.)+"+n.re.src_domain_root+")"+n.re.src_port+n.re.src_host_terminator+n.re.src_path,"i")),n.re.no_http.test(i)?e>=3&&":"===t[e-3]?0:e>=3&&"/"===t[e-3]?0:i.match(n.re.no_http)[0].length:0}},"mailto:":{validate:function(t,e,n){var i=t.slice(e);return n.re.mailto||(n.re.mailto=new RegExp("^"+n.re.src_email_name+"@"+n.re.src_host_strict,"i")),n.re.mailto.test(i)?i.match(n.re.mailto)[0].length:0}}},m="a[cdefgilmnoqrstuwxz]|b[abdefghijmnorstvwyz]|c[acdfghiklmnoruvwxyz]|d[ejkmoz]|e[cegrstu]|f[ijkmor]|g[abdefghilmnpqrstuwy]|h[kmnrtu]|i[delmnoqrst]|j[emop]|k[eghimnprwyz]|l[abcikrstuvy]|m[acdeghklmnopqrstuvwxyz]|n[acefgilopruz]|om|p[aefghklmnrstwy]|qa|r[eosuw]|s[abcdeghijklmnortuvxyz]|t[cdfghjklmnortvwz]|u[agksyz]|v[aceginu]|w[fs]|y[et]|z[amw]",v="biz|com|edu|gov|net|org|pro|web|xxx|aero|asia|coop|info|museum|name|shop|рф".split("|");d.prototype.add=function(t,e){return this.__schemas__[t]=e,u(this),this},d.prototype.set=function(t){return this.__opts__=i(this.__opts__,t),this},d.prototype.test=function(t){if(this.__text_cache__=t,this.__index__=-1,!t.length)return!1;var e,n,i,r,s,o,a,l;if(this.re.schema_test.test(t))for((a=this.re.schema_search).lastIndex=0;null!==(e=a.exec(t));)if(r=this.testSchemaAt(t,e[2],a.lastIndex)){this.__schema__=e[2],this.__index__=e.index+e[1].length,this.__last_index__=e.index+e[0].length+r;break}return this.__opts__.fuzzyLink&&this.__compiled__["http:"]&&(l=t.search(this.re.host_fuzzy_test))>=0&&(this.__index__<0||l<this.__index__)&&null!==(n=t.match(this.__opts__.fuzzyIP?this.re.link_fuzzy:this.re.link_no_ip_fuzzy))&&(s=n.index+n[1].length,(this.__index__<0||s<this.__index__)&&(this.__schema__="",this.__index__=s,this.__last_index__=n.index+n[0].length)),this.__opts__.fuzzyEmail&&this.__compiled__["mailto:"]&&t.indexOf("@")>=0&&null!==(i=t.match(this.re.email_fuzzy))&&(s=i.index+i[1].length,o=i.index+i[0].length,(this.__index__<0||s<this.__index__||s===this.__index__&&o>this.__last_index__)&&(this.__schema__="mailto:",this.__index__=s,this.__last_index__=o)),this.__index__>=0},d.prototype.pretest=function(t){return this.re.pretest.test(t)},d.prototype.testSchemaAt=function(t,e,n){return this.__compiled__[e.toLowerCase()]?this.__compiled__[e.toLowerCase()].validate(t,n,this):0},d.prototype.match=function(t){var e=0,n=[];this.__index__>=0&&this.__text_cache__===t&&(n.push(h(this,e)),e=this.__last_index__);for(var i=e?t.slice(e):t;this.test(i);)n.push(h(this,e)),i=i.slice(this.__last_index__),e+=this.__last_index__;return n.length?n:null},d.prototype.tlds=function(t,e){return t=Array.isArray(t)?t:[t],e?(this.__tlds__=this.__tlds__.concat(t).sort().filter(function(t,e,n){return t!==n[e-1]}).reverse(),u(this),this):(this.__tlds__=t.slice(),this.__tlds_replaced__=!0,u(this),this)},d.prototype.normalize=function(t){t.schema||(t.url="http://"+t.url),"mailto:"!==t.schema||/^mailto:/i.test(t.url)||(t.url="mailto:"+t.url)},d.prototype.onCompile=function(){},t.exports=d},function(t,e,n){"use strict";t.exports=function(t){var e={};return e.src_Any=n(55).source,e.src_Cc=n(53).source,e.src_Z=n(54).source,e.src_P=n(33).source,e.src_ZPCc=[e.src_Z,e.src_P,e.src_Cc].join("|"),e.src_ZCc=[e.src_Z,e.src_Cc].join("|"),e.src_pseudo_letter="(?:(?![><|]|"+e.src_ZPCc+")"+e.src_Any+")",e.src_ip4="(?:(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\.){3}(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)",e.src_auth="(?:(?:(?!"+e.src_ZCc+"|[@/\\[\\]()]).)+@)?",e.src_port="(?::(?:6(?:[0-4]\\d{3}|5(?:[0-4]\\d{2}|5(?:[0-2]\\d|3[0-5])))|[1-5]?\\d{1,4}))?",e.src_host_terminator="(?=$|[><|]|"+e.src_ZPCc+")(?!-|_|:\\d|\\.-|\\.(?!$|"+e.src_ZPCc+"))",e.src_path="(?:[/?#](?:(?!"+e.src_ZCc+"|[><|]|[()[\\]{}.,\"'?!\\-]).|\\[(?:(?!"+e.src_ZCc+"|\\]).)*\\]|\\((?:(?!"+e.src_ZCc+"|[)]).)*\\)|\\{(?:(?!"+e.src_ZCc+'|[}]).)*\\}|\\"(?:(?!'+e.src_ZCc+'|["]).)+\\"|\\\'(?:(?!'+e.src_ZCc+"|[']).)+\\'|\\'(?="+e.src_pseudo_letter+"|[-]).|\\.{2,3}[a-zA-Z0-9%/]|\\.(?!"+e.src_ZCc+"|[.]).|"+(t&&t["---"]?"\\-(?!--(?:[^-]|$))(?:-*)|":"\\-+|")+"\\,(?!"+e.src_ZCc+").|\\!(?!"+e.src_ZCc+"|[!]).|\\?(?!"+e.src_ZCc+"|[?]).)+|\\/)?",e.src_email_name='[\\-;:&=\\+\\$,\\"\\.a-zA-Z0-9_]+',e.src_xn="xn--[a-z0-9\\-]{1,59}",e.src_domain_root="(?:"+e.src_xn+"|"+e.src_pseudo_letter+"{1,63})",e.src_domain="(?:"+e.src_xn+"|(?:"+e.src_pseudo_letter+")|(?:"+e.src_pseudo_letter+"(?:-(?!-)|"+e.src_pseudo_letter+"){0,61}"+e.src_pseudo_letter+"))",e.src_host="(?:(?:(?:(?:"+e.src_domain+")\\.)*"+e.src_domain+"))",e.tpl_host_fuzzy="(?:"+e.src_ip4+"|(?:(?:(?:"+e.src_domain+")\\.)+(?:%TLDS%)))",e.tpl_host_no_ip_fuzzy="(?:(?:(?:"+e.src_domain+")\\.)+(?:%TLDS%))",e.src_host_strict=e.src_host+e.src_host_terminator,e.tpl_host_fuzzy_strict=e.tpl_host_fuzzy+e.src_host_terminator,e.src_host_port_strict=e.src_host+e.src_port+e.src_host_terminator,e.tpl_host_port_fuzzy_strict=e.tpl_host_fuzzy+e.src_port+e.src_host_terminator,e.tpl_host_port_no_ip_fuzzy_strict=e.tpl_host_no_ip_fuzzy+e.src_port+e.src_host_terminator,e.tpl_host_fuzzy_test="localhost|www\\.|\\.\\d{1,3}\\.|(?:\\.(?:%TLDS%)(?:"+e.src_ZPCc+"|>|$))",e.tpl_email_fuzzy="(^|[><|]|\\(|"+e.src_ZCc+")("+e.src_email_name+"@"+e.tpl_host_fuzzy_strict+")",e.tpl_link_fuzzy="(^|(?![.:/\\-_@])(?:[$+<=>^`||]|"+e.src_ZPCc+"))((?![$+<=>^`||])"+e.tpl_host_port_fuzzy_strict+e.src_path+")",e.tpl_link_no_ip_fuzzy="(^|(?![.:/\\-_@])(?:[$+<=>^`||]|"+e.src_ZPCc+"))((?![$+<=>^`||])"+e.tpl_host_port_no_ip_fuzzy_strict+e.src_path+")",e}},function(t,e,n){"use strict";t.exports=function(t){var e=t.utils.escapeRE,n=t.utils.arrayReplaceAt,i=" \r\n$+<=>^`|~",r=t.utils.lib.ucmicro.P.source,s=t.utils.lib.ucmicro.Z.source;t.block.ruler.before("reference","abbr_def",function(t,e,n,i){var r,s,o,a,l,c=t.bMarks[e]+t.tShift[e],u=t.eMarks[e];if(c+2>=u)return!1;if(42!==t.src.charCodeAt(c++))return!1;if(91!==t.src.charCodeAt(c++))return!1;for(a=c;c<u;c++){if(91===(o=t.src.charCodeAt(c)))return!1;if(93===o){l=c;break}92===o&&c++}return!(l<0||58!==t.src.charCodeAt(l+1)||!i&&(r=t.src.slice(a,l).replace(/\\(.)/g,"$1"),s=t.src.slice(l+2,u).trim(),0===r.length||0===s.length||(t.env.abbreviations||(t.env.abbreviations={}),void 0===t.env.abbreviations[":"+r]&&(t.env.abbreviations[":"+r]=s),t.line=e+1,0)))},{alt:["paragraph","reference"]}),t.core.ruler.after("linkify","abbr_replace",function(t){var o,a,l,c,u,h,d,p,f,m,v,g,_,b=t.tokens;if(t.env.abbreviations)for(g=new RegExp("(?:"+Object.keys(t.env.abbreviations).map(function(t){return t.substr(1)}).sort(function(t,e){return e.length-t.length}).map(e).join("|")+")"),v="(^|"+r+"|"+s+"|["+i.split("").map(e).join("")+"])("+Object.keys(t.env.abbreviations).map(function(t){return t.substr(1)}).sort(function(t,e){return e.length-t.length}).map(e).join("|")+")($|"+r+"|"+s+"|["+i.split("").map(e).join("")+"])",f=new RegExp(v,"g"),a=0,l=b.length;a<l;a++)if("inline"===b[a].type)for(o=(c=b[a].children).length-1;o>=0;o--)if("text"===(_=c[o]).type&&(p=0,h=_.content,f.lastIndex=0,d=[],g.test(h))){for(;m=f.exec(h);)(m.index>0||m[1].length>0)&&((u=new t.Token("text","",0)).content=h.slice(p,m.index+m[1].length),d.push(u)),(u=new t.Token("abbr_open","abbr",1)).attrs=[["title",t.env.abbreviations[":"+m[2]]]],d.push(u),(u=new t.Token("text","",0)).content=m[2],d.push(u),u=new t.Token("abbr_close","abbr",-1),d.push(u),f.lastIndex-=m[3].length,p=f.lastIndex;d.length&&(p<h.length&&((u=new t.Token("text","",0)).content=h.slice(p),d.push(u)),b[a].children=c=n(c,o,d))}})}},function(t,e,n){"use strict";t.exports=function(t,e,n){var i=3,r=(n=n||{}).marker||":",s=r.charCodeAt(0),o=r.length,a=n.validate||function(t){return t.trim().split(" ",2)[0]===e},l=n.render||function(t,n,i,r,s){return 1===t[n].nesting&&t[n].attrPush(["class",e]),s.renderToken(t,n,i,r,s)};t.block.ruler.before("fence","container_"+e,function(t,n,l,c){var u,h,d,p,f,m,v,g,_=!1,b=t.bMarks[n]+t.tShift[n],y=t.eMarks[n];if(s!==t.src.charCodeAt(b))return!1;for(u=b+1;u<=y&&r[(u-b)%o]===t.src[u];u++);if((d=Math.floor((u-b)/o))<i)return!1;if(u-=(u-b)%o,p=t.src.slice(b,u),f=t.src.slice(u,y),!a(f))return!1;if(c)return!0;for(h=n;!(++h>=l||(b=t.bMarks[h]+t.tShift[h],y=t.eMarks[h],b<y&&t.sCount[h]<t.blkIndent));)if(s===t.src.charCodeAt(b)&&!(t.sCount[h]-t.blkIndent>=4)){for(u=b+1;u<=y&&r[(u-b)%o]===t.src[u];u++);if(!(Math.floor((u-b)/o)<d||(u-=(u-b)%o,(u=t.skipSpaces(u))<y))){_=!0;break}}return v=t.parentType,g=t.lineMax,t.parentType="container",t.lineMax=h,(m=t.push("container_"+e+"_open","div",1)).markup=p,m.block=!0,m.info=f,m.map=[n,h],t.md.block.tokenize(t,n+1,h),(m=t.push("container_"+e+"_close","div",-1)).markup=t.src.slice(b,u),m.block=!0,t.parentType=v,t.lineMax=g,t.line=h+(_?1:0),!0},{alt:["paragraph","reference","blockquote","list"]}),t.renderer.rules["container_"+e+"_open"]=l,t.renderer.rules["container_"+e+"_close"]=l}},function(t,e,n){"use strict";t.exports=function(t){function e(t,e){var n,i,r=t.bMarks[e]+t.tShift[e],s=t.eMarks[e];return r>=s?-1:126!==(i=t.src.charCodeAt(r++))&&58!==i?-1:r===(n=t.skipSpaces(r))?-1:n>=s?-1:r}var n=t.utils.isSpace;t.block.ruler.before("paragraph","deflist",function(t,i,r,s){var o,a,l,c,u,h,d,p,f,m,v,g,_,b,y,x,k,w,C,S;if(s)return!(t.ddIndent<0)&&e(t,i)>=0;if((f=i+1)>=r)return!1;if(t.isEmpty(f)&&++f>=r)return!1;if(t.sCount[f]<t.blkIndent)return!1;if((a=e(t,f))<0)return!1;d=t.tokens.length,C=!0,(S=t.push("dl_open","dl",1)).map=h=[i,0],c=i,l=f;t:for(;;){for(w=!1,(S=t.push("dt_open","dt",1)).map=[c,c],(S=t.push("inline","",0)).map=[c,c],S.content=t.getLines(c,c+1,t.blkIndent,!1).trim(),S.children=[],S=t.push("dt_close","dt",-1);;){for((S=t.push("dd_open","dd",1)).map=u=[f,0],k=a,p=t.eMarks[l],m=t.sCount[l]+a-(t.bMarks[l]+t.tShift[l]);k<p&&(o=t.src.charCodeAt(k),n(o));)9===o?m+=4-m%4:m++,k++;if(a=k,x=t.tight,v=t.ddIndent,g=t.blkIndent,y=t.tShift[l],b=t.sCount[l],_=t.parentType,t.blkIndent=t.ddIndent=t.sCount[l]+2,t.tShift[l]=a-t.bMarks[l],t.sCount[l]=m,t.tight=!0,t.parentType="deflist",t.md.block.tokenize(t,l,r,!0),t.tight&&!w||(C=!1),w=t.line-l>1&&t.isEmpty(t.line-1),t.tShift[l]=y,t.sCount[l]=b,t.tight=x,t.parentType=_,t.blkIndent=g,t.ddIndent=v,S=t.push("dd_close","dd",-1),u[1]=f=t.line,f>=r)break t;if(t.sCount[f]<t.blkIndent)break t;if((a=e(t,f))<0)break;l=f}if(f>=r)break;if(c=f,t.isEmpty(c))break;if(t.sCount[c]<t.blkIndent)break;if((l=c+1)>=r)break;if(t.isEmpty(l)&&l++,l>=r)break;if(t.sCount[l]<t.blkIndent)break;if((a=e(t,l))<0)break}return S=t.push("dl_close","dl",-1),h[1]=f,t.line=f,C&&function(t,e){var n,i,r=t.level+2;for(n=e+2,i=t.tokens.length-2;n<i;n++)t.tokens[n].level===r&&"paragraph_open"===t.tokens[n].type&&(t.tokens[n+2].hidden=!0,t.tokens[n].hidden=!0,n+=2)}(t,d),!0},{alt:["paragraph","reference"]})}},function(t,e,n){"use strict";var i=n(114),r=n(115),s=n(117),o=n(118),a=n(116);t.exports=function(t,e){var n={defs:i,shortcuts:r,enabled:[]},l=a(t.utils.assign({},n,e||{}));t.renderer.rules.emoji=s,t.core.ruler.push("emoji",o(t,l.defs,l.shortcuts,l.scanRE,l.replaceRE))}},function(t,e){t.exports={100:"💯",1234:"🔢",grinning:"😀",smiley:"😃",smile:"😄",grin:"😁",laughing:"😆",satisfied:"😆",sweat_smile:"😅",joy:"😂",rofl:"🤣",relaxed:"☺️",blush:"😊",innocent:"😇",slightly_smiling_face:"🙂",upside_down_face:"🙃",wink:"😉",relieved:"😌",heart_eyes:"😍",kissing_heart:"😘",kissing:"😗",kissing_smiling_eyes:"😙",kissing_closed_eyes:"😚",yum:"😋",stuck_out_tongue_winking_eye:"😜",stuck_out_tongue_closed_eyes:"😝",stuck_out_tongue:"😛",money_mouth_face:"🤑",hugs:"🤗",nerd_face:"🤓",sunglasses:"😎",clown_face:"🤡",cowboy_hat_face:"🤠",smirk:"😏",unamused:"😒",disappointed:"😞",pensive:"😔",worried:"😟",confused:"😕",slightly_frowning_face:"🙁",frowning_face:"☹️",persevere:"😣",confounded:"😖",tired_face:"😫",weary:"😩",triumph:"😤",angry:"😠",rage:"😡",pout:"😡",no_mouth:"😶",neutral_face:"😐",expressionless:"😑",hushed:"😯",frowning:"😦",anguished:"😧",open_mouth:"😮",astonished:"😲",dizzy_face:"😵",flushed:"😳",scream:"😱",fearful:"😨",cold_sweat:"😰",cry:"😢",disappointed_relieved:"😥",drooling_face:"🤤",sob:"😭",sweat:"😓",sleepy:"😪",sleeping:"😴",roll_eyes:"🙄",thinking:"🤔",lying_face:"🤥",grimacing:"😬",zipper_mouth_face:"🤐",nauseated_face:"🤢",sneezing_face:"🤧",mask:"😷",face_with_thermometer:"🤒",face_with_head_bandage:"🤕",smiling_imp:"😈",imp:"👿",japanese_ogre:"👹",japanese_goblin:"👺",hankey:"💩",poop:"💩",shit:"💩",ghost:"👻",skull:"💀",skull_and_crossbones:"☠️",alien:"👽",space_invader:"👾",robot:"🤖",jack_o_lantern:"🎃",smiley_cat:"😺",smile_cat:"😸",joy_cat:"😹",heart_eyes_cat:"😻",smirk_cat:"😼",kissing_cat:"😽",scream_cat:"🙀",crying_cat_face:"😿",pouting_cat:"😾",open_hands:"👐",raised_hands:"🙌",clap:"👏",pray:"🙏",handshake:"🤝","+1":"👍",thumbsup:"👍","-1":"👎",thumbsdown:"👎",fist_oncoming:"👊",facepunch:"👊",punch:"👊",fist_raised:"✊",fist:"✊",fist_left:"🤛",fist_right:"🤜",crossed_fingers:"🤞",v:"✌️",metal:"🤘",ok_hand:"👌",point_left:"👈",point_right:"👉",point_up_2:"👆",point_down:"👇",point_up:"☝️",hand:"✋",raised_hand:"✋",raised_back_of_hand:"🤚",raised_hand_with_fingers_splayed:"🖐",vulcan_salute:"🖖",wave:"👋",call_me_hand:"🤙",muscle:"💪",middle_finger:"🖕",fu:"🖕",writing_hand:"✍️",selfie:"🤳",nail_care:"💅",ring:"💍",lipstick:"💄",kiss:"💋",lips:"👄",tongue:"👅",ear:"👂",nose:"👃",footprints:"👣",eye:"👁",eyes:"👀",speaking_head:"🗣",bust_in_silhouette:"👤",busts_in_silhouette:"👥",baby:"👶",boy:"👦",girl:"👧",man:"👨",woman:"👩",blonde_woman:"👱‍♀",blonde_man:"👱",person_with_blond_hair:"👱",older_man:"👴",older_woman:"👵",man_with_gua_pi_mao:"👲",woman_with_turban:"👳‍♀",man_with_turban:"👳",policewoman:"👮‍♀",policeman:"👮",cop:"👮",construction_worker_woman:"👷‍♀",construction_worker_man:"👷",construction_worker:"👷",guardswoman:"💂‍♀",guardsman:"💂",female_detective:"🕵️‍♀️",male_detective:"🕵",detective:"🕵",woman_health_worker:"👩‍⚕",man_health_worker:"👨‍⚕",woman_farmer:"👩‍🌾",man_farmer:"👨‍🌾",woman_cook:"👩‍🍳",man_cook:"👨‍🍳",woman_student:"👩‍🎓",man_student:"👨‍🎓",woman_singer:"👩‍🎤",man_singer:"👨‍🎤",woman_teacher:"👩‍🏫",man_teacher:"👨‍🏫",woman_factory_worker:"👩‍🏭",man_factory_worker:"👨‍🏭",woman_technologist:"👩‍💻",man_technologist:"👨‍💻",woman_office_worker:"👩‍💼",man_office_worker:"👨‍💼",woman_mechanic:"👩‍🔧",man_mechanic:"👨‍🔧",woman_scientist:"👩‍🔬",man_scientist:"👨‍🔬",woman_artist:"👩‍🎨",man_artist:"👨‍🎨",woman_firefighter:"👩‍🚒",man_firefighter:"👨‍🚒",woman_pilot:"👩‍✈",man_pilot:"👨‍✈",woman_astronaut:"👩‍🚀",man_astronaut:"👨‍🚀",woman_judge:"👩‍⚖",man_judge:"👨‍⚖",mrs_claus:"🤶",santa:"🎅",princess:"👸",prince:"🤴",bride_with_veil:"👰",man_in_tuxedo:"🤵",angel:"👼",pregnant_woman:"🤰",bowing_woman:"🙇‍♀",bowing_man:"🙇",bow:"🙇",tipping_hand_woman:"💁",information_desk_person:"💁",sassy_woman:"💁",tipping_hand_man:"💁‍♂",sassy_man:"💁‍♂",no_good_woman:"🙅",no_good:"🙅",ng_woman:"🙅",no_good_man:"🙅‍♂",ng_man:"🙅‍♂",ok_woman:"🙆",ok_man:"🙆‍♂",raising_hand_woman:"🙋",raising_hand:"🙋",raising_hand_man:"🙋‍♂",woman_facepalming:"🤦‍♀",man_facepalming:"🤦‍♂",woman_shrugging:"🤷‍♀",man_shrugging:"🤷‍♂",pouting_woman:"🙎",person_with_pouting_face:"🙎",pouting_man:"🙎‍♂",frowning_woman:"🙍",person_frowning:"🙍",frowning_man:"🙍‍♂",haircut_woman:"💇",haircut:"💇",haircut_man:"💇‍♂",massage_woman:"💆",massage:"💆",massage_man:"💆‍♂",business_suit_levitating:"🕴",dancer:"💃",man_dancing:"🕺",dancing_women:"👯",dancers:"👯",dancing_men:"👯‍♂",walking_woman:"🚶‍♀",walking_man:"🚶",walking:"🚶",running_woman:"🏃‍♀",running_man:"🏃",runner:"🏃",running:"🏃",couple:"👫",two_women_holding_hands:"👭",two_men_holding_hands:"👬",couple_with_heart_woman_man:"💑",couple_with_heart:"💑",couple_with_heart_woman_woman:"👩‍❤️‍👩",couple_with_heart_man_man:"👨‍❤️‍👨",couplekiss_man_woman:"💏",couplekiss_woman_woman:"👩‍❤️‍💋‍👩",couplekiss_man_man:"👨‍❤️‍💋‍👨",family_man_woman_boy:"👪",family:"👪",family_man_woman_girl:"👨‍👩‍👧",family_man_woman_girl_boy:"👨‍👩‍👧‍👦",family_man_woman_boy_boy:"👨‍👩‍👦‍👦",family_man_woman_girl_girl:"👨‍👩‍👧‍👧",family_woman_woman_boy:"👩‍👩‍👦",family_woman_woman_girl:"👩‍👩‍👧",family_woman_woman_girl_boy:"👩‍👩‍👧‍👦",family_woman_woman_boy_boy:"👩‍👩‍👦‍👦",family_woman_woman_girl_girl:"👩‍👩‍👧‍👧",family_man_man_boy:"👨‍👨‍👦",family_man_man_girl:"👨‍👨‍👧",family_man_man_girl_boy:"👨‍👨‍👧‍👦",family_man_man_boy_boy:"👨‍👨‍👦‍👦",family_man_man_girl_girl:"👨‍👨‍👧‍👧",family_woman_boy:"👩‍👦",family_woman_girl:"👩‍👧",family_woman_girl_boy:"👩‍👧‍👦",family_woman_boy_boy:"👩‍👦‍👦",family_woman_girl_girl:"👩‍👧‍👧",family_man_boy:"👨‍👦",family_man_girl:"👨‍👧",family_man_girl_boy:"👨‍👧‍👦",family_man_boy_boy:"👨‍👦‍👦",family_man_girl_girl:"👨‍👧‍👧",womans_clothes:"👚",shirt:"👕",tshirt:"👕",jeans:"👖",necktie:"👔",dress:"👗",bikini:"👙",kimono:"👘",high_heel:"👠",sandal:"👡",boot:"👢",mans_shoe:"👞",shoe:"👞",athletic_shoe:"👟",womans_hat:"👒",tophat:"🎩",mortar_board:"🎓",crown:"👑",rescue_worker_helmet:"⛑",school_satchel:"🎒",pouch:"👝",purse:"👛",handbag:"👜",briefcase:"💼",eyeglasses:"👓",dark_sunglasses:"🕶",closed_umbrella:"🌂",open_umbrella:"☂️",dog:"🐶",cat:"🐱",mouse:"🐭",hamster:"🐹",rabbit:"🐰",fox_face:"🦊",bear:"🐻",panda_face:"🐼",koala:"🐨",tiger:"🐯",lion:"🦁",cow:"🐮",pig:"🐷",pig_nose:"🐽",frog:"🐸",monkey_face:"🐵",see_no_evil:"🙈",hear_no_evil:"🙉",speak_no_evil:"🙊",monkey:"🐒",chicken:"🐔",penguin:"🐧",bird:"🐦",baby_chick:"🐤",hatching_chick:"🐣",hatched_chick:"🐥",duck:"🦆",eagle:"🦅",owl:"🦉",bat:"🦇",wolf:"🐺",boar:"🐗",horse:"🐴",unicorn:"🦄",bee:"🐝",honeybee:"🐝",bug:"🐛",butterfly:"🦋",snail:"🐌",shell:"🐚",beetle:"🐞",ant:"🐜",spider:"🕷",spider_web:"🕸",turtle:"🐢",snake:"🐍",lizard:"🦎",scorpion:"🦂",crab:"🦀",squid:"🦑",octopus:"🐙",shrimp:"🦐",tropical_fish:"🐠",fish:"🐟",blowfish:"🐡",dolphin:"🐬",flipper:"🐬",shark:"🦈",whale:"🐳",whale2:"🐋",crocodile:"🐊",leopard:"🐆",tiger2:"🐅",water_buffalo:"🐃",ox:"🐂",cow2:"🐄",deer:"🦌",dromedary_camel:"🐪",camel:"🐫",elephant:"🐘",rhinoceros:"🦏",gorilla:"🦍",racehorse:"🐎",pig2:"🐖",goat:"🐐",ram:"🐏",sheep:"🐑",dog2:"🐕",poodle:"🐩",cat2:"🐈",rooster:"🐓",turkey:"🦃",dove:"🕊",rabbit2:"🐇",mouse2:"🐁",rat:"🐀",chipmunk:"🐿",feet:"🐾",paw_prints:"🐾",dragon:"🐉",dragon_face:"🐲",cactus:"🌵",christmas_tree:"🎄",evergreen_tree:"🌲",deciduous_tree:"🌳",palm_tree:"🌴",seedling:"🌱",herb:"🌿",shamrock:"☘️",four_leaf_clover:"🍀",bamboo:"🎍",tanabata_tree:"🎋",leaves:"🍃",fallen_leaf:"🍂",maple_leaf:"🍁",mushroom:"🍄",ear_of_rice:"🌾",bouquet:"💐",tulip:"🌷",rose:"🌹",wilted_flower:"🥀",sunflower:"🌻",blossom:"🌼",cherry_blossom:"🌸",hibiscus:"🌺",earth_americas:"🌎",earth_africa:"🌍",earth_asia:"🌏",full_moon:"🌕",waning_gibbous_moon:"🌖",last_quarter_moon:"🌗",waning_crescent_moon:"🌘",new_moon:"🌑",waxing_crescent_moon:"🌒",first_quarter_moon:"🌓",moon:"🌔",waxing_gibbous_moon:"🌔",new_moon_with_face:"🌚",full_moon_with_face:"🌝",sun_with_face:"🌞",first_quarter_moon_with_face:"🌛",last_quarter_moon_with_face:"🌜",crescent_moon:"🌙",dizzy:"💫",star:"⭐️",star2:"🌟",sparkles:"✨",zap:"⚡️",fire:"🔥",boom:"💥",collision:"💥",comet:"☄",sunny:"☀️",sun_behind_small_cloud:"🌤",partly_sunny:"⛅️",sun_behind_large_cloud:"🌥",sun_behind_rain_cloud:"🌦",rainbow:"🌈",cloud:"☁️",cloud_with_rain:"🌧",cloud_with_lightning_and_rain:"⛈",cloud_with_lightning:"🌩",cloud_with_snow:"🌨",snowman_with_snow:"☃️",snowman:"⛄️",snowflake:"❄️",wind_face:"🌬",dash:"💨",tornado:"🌪",fog:"🌫",ocean:"🌊",droplet:"💧",sweat_drops:"💦",umbrella:"☔️",green_apple:"🍏",apple:"🍎",pear:"🍐",tangerine:"🍊",orange:"🍊",mandarin:"🍊",lemon:"🍋",banana:"🍌",watermelon:"🍉",grapes:"🍇",strawberry:"🍓",melon:"🍈",cherries:"🍒",peach:"🍑",pineapple:"🍍",kiwi_fruit:"🥝",avocado:"🥑",tomato:"🍅",eggplant:"🍆",cucumber:"🥒",carrot:"🥕",corn:"🌽",hot_pepper:"🌶",potato:"🥔",sweet_potato:"🍠",chestnut:"🌰",peanuts:"🥜",honey_pot:"🍯",croissant:"🥐",bread:"🍞",baguette_bread:"🥖",cheese:"🧀",egg:"🥚",fried_egg:"🍳",bacon:"🥓",pancakes:"🥞",fried_shrimp:"🍤",poultry_leg:"🍗",meat_on_bone:"🍖",pizza:"🍕",hotdog:"🌭",hamburger:"🍔",fries:"🍟",stuffed_flatbread:"🥙",taco:"🌮",burrito:"🌯",green_salad:"🥗",shallow_pan_of_food:"🥘",spaghetti:"🍝",ramen:"🍜",stew:"🍲",fish_cake:"🍥",sushi:"🍣",bento:"🍱",curry:"🍛",rice:"🍚",rice_ball:"🍙",rice_cracker:"🍘",oden:"🍢",dango:"🍡",shaved_ice:"🍧",ice_cream:"🍨",icecream:"🍦",cake:"🍰",birthday:"🎂",custard:"🍮",lollipop:"🍭",candy:"🍬",chocolate_bar:"🍫",popcorn:"🍿",doughnut:"🍩",cookie:"🍪",milk_glass:"🥛",baby_bottle:"🍼",coffee:"☕️",tea:"🍵",sake:"🍶",beer:"🍺",beers:"🍻",clinking_glasses:"🥂",wine_glass:"🍷",tumbler_glass:"🥃",cocktail:"🍸",tropical_drink:"🍹",champagne:"🍾",spoon:"🥄",fork_and_knife:"🍴",plate_with_cutlery:"🍽",soccer:"⚽️",basketball:"🏀",football:"🏈",baseball:"⚾️",tennis:"🎾",volleyball:"🏐",rugby_football:"🏉","8ball":"🎱",ping_pong:"🏓",badminton:"🏸",goal_net:"🥅",ice_hockey:"🏒",field_hockey:"🏑",cricket:"🏏",golf:"⛳️",bow_and_arrow:"🏹",fishing_pole_and_fish:"🎣",boxing_glove:"🥊",martial_arts_uniform:"🥋",ice_skate:"⛸",ski:"🎿",skier:"⛷",snowboarder:"🏂",weight_lifting_woman:"🏋️‍♀️",weight_lifting_man:"🏋",person_fencing:"🤺",women_wrestling:"🤼‍♀",men_wrestling:"🤼‍♂",woman_cartwheeling:"🤸‍♀",man_cartwheeling:"🤸‍♂",basketball_woman:"⛹️‍♀️",basketball_man:"⛹",woman_playing_handball:"🤾‍♀",man_playing_handball:"🤾‍♂",golfing_woman:"🏌️‍♀️",golfing_man:"🏌",surfing_woman:"🏄‍♀",surfing_man:"🏄",surfer:"🏄",swimming_woman:"🏊‍♀",swimming_man:"🏊",swimmer:"🏊",woman_playing_water_polo:"🤽‍♀",man_playing_water_polo:"🤽‍♂",rowing_woman:"🚣‍♀",rowing_man:"🚣",rowboat:"🚣",horse_racing:"🏇",biking_woman:"🚴‍♀",biking_man:"🚴",bicyclist:"🚴",mountain_biking_woman:"🚵‍♀",mountain_biking_man:"🚵",mountain_bicyclist:"🚵",running_shirt_with_sash:"🎽",medal_sports:"🏅",medal_military:"🎖","1st_place_medal":"🥇","2nd_place_medal":"🥈","3rd_place_medal":"🥉",trophy:"🏆",rosette:"🏵",reminder_ribbon:"🎗",ticket:"🎫",tickets:"🎟",circus_tent:"🎪",woman_juggling:"🤹‍♀",man_juggling:"🤹‍♂",performing_arts:"🎭",art:"🎨",clapper:"🎬",microphone:"🎤",headphones:"🎧",musical_score:"🎼",musical_keyboard:"🎹",drum:"🥁",saxophone:"🎷",trumpet:"🎺",guitar:"🎸",violin:"🎻",game_die:"🎲",dart:"🎯",bowling:"🎳",video_game:"🎮",slot_machine:"🎰",car:"🚗",red_car:"🚗",taxi:"🚕",blue_car:"🚙",bus:"🚌",trolleybus:"🚎",racing_car:"🏎",police_car:"🚓",ambulance:"🚑",fire_engine:"🚒",minibus:"🚐",truck:"🚚",articulated_lorry:"🚛",tractor:"🚜",kick_scooter:"🛴",bike:"🚲",motor_scooter:"🛵",motorcycle:"🏍",rotating_light:"🚨",oncoming_police_car:"🚔",oncoming_bus:"🚍",oncoming_automobile:"🚘",oncoming_taxi:"🚖",aerial_tramway:"🚡",mountain_cableway:"🚠",suspension_railway:"🚟",railway_car:"🚃",train:"🚋",mountain_railway:"🚞",monorail:"🚝",bullettrain_side:"🚄",bullettrain_front:"🚅",light_rail:"🚈",steam_locomotive:"🚂",train2:"🚆",metro:"🚇",tram:"🚊",station:"🚉",helicopter:"🚁",small_airplane:"🛩",airplane:"✈️",flight_departure:"🛫",flight_arrival:"🛬",rocket:"🚀",artificial_satellite:"🛰",seat:"💺",canoe:"🛶",boat:"⛵️",sailboat:"⛵️",motor_boat:"🛥",speedboat:"🚤",passenger_ship:"🛳",ferry:"⛴",ship:"🚢",anchor:"⚓️",construction:"🚧",fuelpump:"⛽️",busstop:"🚏",vertical_traffic_light:"🚦",traffic_light:"🚥",world_map:"🗺",moyai:"🗿",statue_of_liberty:"🗽",fountain:"⛲️",tokyo_tower:"🗼",european_castle:"🏰",japanese_castle:"🏯",stadium:"🏟",ferris_wheel:"🎡",roller_coaster:"🎢",carousel_horse:"🎠",parasol_on_ground:"⛱",beach_umbrella:"🏖",desert_island:"🏝",mountain:"⛰",mountain_snow:"🏔",mount_fuji:"🗻",volcano:"🌋",desert:"🏜",camping:"🏕",tent:"⛺️",railway_track:"🛤",motorway:"🛣",building_construction:"🏗",factory:"🏭",house:"🏠",house_with_garden:"🏡",houses:"🏘",derelict_house:"🏚",office:"🏢",department_store:"🏬",post_office:"🏣",european_post_office:"🏤",hospital:"🏥",bank:"🏦",hotel:"🏨",convenience_store:"🏪",school:"🏫",love_hotel:"🏩",wedding:"💒",classical_building:"🏛",church:"⛪️",mosque:"🕌",synagogue:"🕍",kaaba:"🕋",shinto_shrine:"⛩",japan:"🗾",rice_scene:"🎑",national_park:"🏞",sunrise:"🌅",sunrise_over_mountains:"🌄",stars:"🌠",sparkler:"🎇",fireworks:"🎆",city_sunrise:"🌇",city_sunset:"🌆",cityscape:"🏙",night_with_stars:"🌃",milky_way:"🌌",bridge_at_night:"🌉",foggy:"🌁",watch:"⌚️",iphone:"📱",calling:"📲",computer:"💻",keyboard:"⌨️",desktop_computer:"🖥",printer:"🖨",computer_mouse:"🖱",trackball:"🖲",joystick:"🕹",clamp:"🗜",minidisc:"💽",floppy_disk:"💾",cd:"💿",dvd:"📀",vhs:"📼",camera:"📷",camera_flash:"📸",video_camera:"📹",movie_camera:"🎥",film_projector:"📽",film_strip:"🎞",telephone_receiver:"📞",phone:"☎️",telephone:"☎️",pager:"📟",fax:"📠",tv:"📺",radio:"📻",studio_microphone:"🎙",level_slider:"🎚",control_knobs:"🎛",stopwatch:"⏱",timer_clock:"⏲",alarm_clock:"⏰",mantelpiece_clock:"🕰",hourglass:"⌛️",hourglass_flowing_sand:"⏳",satellite:"📡",battery:"🔋",electric_plug:"🔌",bulb:"💡",flashlight:"🔦",candle:"🕯",wastebasket:"🗑",oil_drum:"🛢",money_with_wings:"💸",dollar:"💵",yen:"💴",euro:"💶",pound:"💷",moneybag:"💰",credit_card:"💳",gem:"💎",balance_scale:"⚖️",wrench:"🔧",hammer:"🔨",hammer_and_pick:"⚒",hammer_and_wrench:"🛠",pick:"⛏",nut_and_bolt:"🔩",gear:"⚙️",chains:"⛓",gun:"🔫",bomb:"💣",hocho:"🔪",knife:"🔪",dagger:"🗡",crossed_swords:"⚔️",shield:"🛡",smoking:"🚬",coffin:"⚰️",funeral_urn:"⚱️",amphora:"🏺",crystal_ball:"🔮",prayer_beads:"📿",barber:"💈",alembic:"⚗️",telescope:"🔭",microscope:"🔬",hole:"🕳",pill:"💊",syringe:"💉",thermometer:"🌡",toilet:"🚽",potable_water:"🚰",shower:"🚿",bathtub:"🛁",bath:"🛀",bellhop_bell:"🛎",key:"🔑",old_key:"🗝",door:"🚪",couch_and_lamp:"🛋",bed:"🛏",sleeping_bed:"🛌",framed_picture:"🖼",shopping:"🛍",shopping_cart:"🛒",gift:"🎁",balloon:"🎈",flags:"🎏",ribbon:"🎀",confetti_ball:"🎊",tada:"🎉",dolls:"🎎",izakaya_lantern:"🏮",lantern:"🏮",wind_chime:"🎐",email:"✉️",envelope:"✉️",envelope_with_arrow:"📩",incoming_envelope:"📨","e-mail":"📧",love_letter:"💌",inbox_tray:"📥",outbox_tray:"📤",package:"📦",label:"🏷",mailbox_closed:"📪",mailbox:"📫",mailbox_with_mail:"📬",mailbox_with_no_mail:"📭",postbox:"📮",postal_horn:"📯",scroll:"📜",page_with_curl:"📃",page_facing_up:"📄",bookmark_tabs:"📑",bar_chart:"📊",chart_with_upwards_trend:"📈",chart_with_downwards_trend:"📉",spiral_notepad:"🗒",spiral_calendar:"🗓",calendar:"📆",date:"📅",card_index:"📇",card_file_box:"🗃",ballot_box:"🗳",file_cabinet:"🗄",clipboard:"📋",file_folder:"📁",open_file_folder:"📂",card_index_dividers:"🗂",newspaper_roll:"🗞",newspaper:"📰",notebook:"📓",notebook_with_decorative_cover:"📔",ledger:"📒",closed_book:"📕",green_book:"📗",blue_book:"📘",orange_book:"📙",books:"📚",book:"📖",open_book:"📖",bookmark:"🔖",link:"🔗",paperclip:"📎",paperclips:"🖇",triangular_ruler:"📐",straight_ruler:"📏",pushpin:"📌",round_pushpin:"📍",scissors:"✂️",pen:"🖊",fountain_pen:"🖋",black_nib:"✒️",paintbrush:"🖌",crayon:"🖍",memo:"📝",pencil:"📝",pencil2:"✏️",mag:"🔍",mag_right:"🔎",lock_with_ink_pen:"🔏",closed_lock_with_key:"🔐",lock:"🔒",unlock:"🔓",heart:"❤️",yellow_heart:"💛",green_heart:"💚",blue_heart:"💙",purple_heart:"💜",black_heart:"🖤",broken_heart:"💔",heavy_heart_exclamation:"❣️",two_hearts:"💕",revolving_hearts:"💞",heartbeat:"💓",heartpulse:"💗",sparkling_heart:"💖",cupid:"💘",gift_heart:"💝",heart_decoration:"💟",peace_symbol:"☮️",latin_cross:"✝️",star_and_crescent:"☪️",om:"🕉",wheel_of_dharma:"☸️",star_of_david:"✡️",six_pointed_star:"🔯",menorah:"🕎",yin_yang:"☯️",orthodox_cross:"☦️",place_of_worship:"🛐",ophiuchus:"⛎",aries:"♈️",taurus:"♉️",gemini:"♊️",cancer:"♋️",leo:"♌️",virgo:"♍️",libra:"♎️",scorpius:"♏️",sagittarius:"♐️",capricorn:"♑️",aquarius:"♒️",pisces:"♓️",id:"🆔",atom_symbol:"⚛️",accept:"🉑",radioactive:"☢️",biohazard:"☣️",mobile_phone_off:"📴",vibration_mode:"📳",eight_pointed_black_star:"✴️",vs:"🆚",white_flower:"💮",ideograph_advantage:"🉐",secret:"㊙️",congratulations:"㊗️",u6e80:"🈵",a:"🅰️",b:"🅱️",ab:"🆎",cl:"🆑",o2:"🅾️",sos:"🆘",x:"❌",o:"⭕️",stop_sign:"🛑",no_entry:"⛔️",name_badge:"📛",no_entry_sign:"🚫",anger:"💢",hotsprings:"♨️",no_pedestrians:"🚷",do_not_litter:"🚯",no_bicycles:"🚳","non-potable_water":"🚱",underage:"🔞",no_mobile_phones:"📵",no_smoking:"🚭",exclamation:"❗️",heavy_exclamation_mark:"❗️",grey_exclamation:"❕",question:"❓",grey_question:"❔",bangbang:"‼️",interrobang:"⁉️",low_brightness:"🔅",high_brightness:"🔆",part_alternation_mark:"〽️",warning:"⚠️",children_crossing:"🚸",trident:"🔱",fleur_de_lis:"⚜️",beginner:"🔰",recycle:"♻️",white_check_mark:"✅",chart:"💹",sparkle:"❇️",eight_spoked_asterisk:"✳️",negative_squared_cross_mark:"❎",globe_with_meridians:"🌐",diamond_shape_with_a_dot_inside:"💠",m:"Ⓜ️",cyclone:"🌀",zzz:"💤",atm:"🏧",wc:"🚾",wheelchair:"♿️",parking:"🅿️",sa:"🈂️",passport_control:"🛂",customs:"🛃",baggage_claim:"🛄",left_luggage:"🛅",mens:"🚹",womens:"🚺",baby_symbol:"🚼",restroom:"🚻",put_litter_in_its_place:"🚮",cinema:"🎦",signal_strength:"📶",koko:"🈁",symbols:"🔣",information_source:"ℹ️",abc:"🔤",abcd:"🔡",capital_abcd:"🔠",ng:"🆖",ok:"🆗",up:"🆙",cool:"🆒",new:"🆕",free:"🆓",zero:"0️⃣",one:"1️⃣",two:"2️⃣",three:"3️⃣",four:"4️⃣",five:"5️⃣",six:"6️⃣",seven:"7️⃣",eight:"8️⃣",nine:"9️⃣",keycap_ten:"🔟",hash:"#️⃣",asterisk:"*️⃣",arrow_forward:"▶️",pause_button:"⏸",play_or_pause_button:"⏯",stop_button:"⏹",record_button:"⏺",next_track_button:"⏭",previous_track_button:"⏮",fast_forward:"⏩",rewind:"⏪",arrow_double_up:"⏫",arrow_double_down:"⏬",arrow_backward:"◀️",arrow_up_small:"🔼",arrow_down_small:"🔽",arrow_right:"➡️",arrow_left:"⬅️",arrow_up:"⬆️",arrow_down:"⬇️",arrow_upper_right:"↗️",arrow_lower_right:"↘️",arrow_lower_left:"↙️",arrow_upper_left:"↖️",arrow_up_down:"↕️",left_right_arrow:"↔️",arrow_right_hook:"↪️",leftwards_arrow_with_hook:"↩️",arrow_heading_up:"⤴️",arrow_heading_down:"⤵️",twisted_rightwards_arrows:"🔀",repeat:"🔁",repeat_one:"🔂",arrows_counterclockwise:"🔄",arrows_clockwise:"🔃",musical_note:"🎵",notes:"🎶",heavy_plus_sign:"➕",heavy_minus_sign:"➖",heavy_division_sign:"➗",heavy_multiplication_x:"✖️",heavy_dollar_sign:"💲",currency_exchange:"💱",tm:"™️",copyright:"©️",registered:"®️",wavy_dash:"〰️",curly_loop:"➰",loop:"➿",end:"🔚",back:"🔙",on:"🔛",top:"🔝",soon:"🔜",heavy_check_mark:"✔️",ballot_box_with_check:"☑️",radio_button:"🔘",white_circle:"⚪️",black_circle:"⚫️",red_circle:"🔴",large_blue_circle:"🔵",small_red_triangle:"🔺",small_red_triangle_down:"🔻",small_orange_diamond:"🔸",small_blue_diamond:"🔹",large_orange_diamond:"🔶",large_blue_diamond:"🔷",white_square_button:"🔳",black_square_button:"🔲",black_small_square:"▪️",white_small_square:"▫️",black_medium_small_square:"◾️",white_medium_small_square:"◽️",black_medium_square:"◼️",white_medium_square:"◻️",black_large_square:"⬛️",white_large_square:"⬜️",speaker:"🔈",mute:"🔇",sound:"🔉",loud_sound:"🔊",bell:"🔔",no_bell:"🔕",mega:"📣",loudspeaker:"📢",eye_speech_bubble:"👁‍🗨",speech_balloon:"💬",thought_balloon:"💭",right_anger_bubble:"🗯",spades:"♠️",clubs:"♣️",hearts:"♥️",diamonds:"♦️",black_joker:"🃏",flower_playing_cards:"🎴",mahjong:"🀄️",clock1:"🕐",clock2:"🕑",clock3:"🕒",clock4:"🕓",clock5:"🕔",clock6:"🕕",clock7:"🕖",clock8:"🕗",clock9:"🕘",clock10:"🕙",clock11:"🕚",clock12:"🕛",clock130:"🕜",clock230:"🕝",clock330:"🕞",clock430:"🕟",clock530:"🕠",clock630:"🕡",clock730:"🕢",clock830:"🕣",clock930:"🕤",clock1030:"🕥",clock1130:"🕦",clock1230:"🕧",white_flag:"🏳️",black_flag:"🏴",checkered_flag:"🏁",triangular_flag_on_post:"🚩",rainbow_flag:"🏳️‍🌈",afghanistan:"🇦🇫",aland_islands:"🇦🇽",albania:"🇦🇱",algeria:"🇩🇿",american_samoa:"🇦🇸",andorra:"🇦🇩",angola:"🇦🇴",anguilla:"🇦🇮",antarctica:"🇦🇶",antigua_barbuda:"🇦🇬",argentina:"🇦🇷",armenia:"🇦🇲",aruba:"🇦🇼",australia:"🇦🇺",austria:"🇦🇹",azerbaijan:"🇦🇿",bahamas:"🇧🇸",bahrain:"🇧🇭",bangladesh:"🇧🇩",barbados:"🇧🇧",belarus:"🇧🇾",belgium:"🇧🇪",belize:"🇧🇿",benin:"🇧🇯",bermuda:"🇧🇲",bhutan:"🇧🇹",bolivia:"🇧🇴",caribbean_netherlands:"🇧🇶",bosnia_herzegovina:"🇧🇦",botswana:"🇧🇼",brazil:"🇧🇷",british_indian_ocean_territory:"🇮🇴",british_virgin_islands:"🇻🇬",brunei:"🇧🇳",bulgaria:"🇧🇬",burkina_faso:"🇧🇫",burundi:"🇧🇮",cape_verde:"🇨🇻",cambodia:"🇰🇭",cameroon:"🇨🇲",canada:"🇨🇦",canary_islands:"🇮🇨",cayman_islands:"🇰🇾",central_african_republic:"🇨🇫",chad:"🇹🇩",chile:"🇨🇱",cn:"🇨🇳",christmas_island:"🇨🇽",cocos_islands:"🇨🇨",colombia:"🇨🇴",comoros:"🇰🇲",congo_brazzaville:"🇨🇬",congo_kinshasa:"🇨🇩",cook_islands:"🇨🇰",costa_rica:"🇨🇷",cote_divoire:"🇨🇮",croatia:"🇭🇷",cuba:"🇨🇺",curacao:"🇨🇼",cyprus:"🇨🇾",czech_republic:"🇨🇿",denmark:"🇩🇰",djibouti:"🇩🇯",dominica:"🇩🇲",dominican_republic:"🇩🇴",ecuador:"🇪🇨",egypt:"🇪🇬",el_salvador:"🇸🇻",equatorial_guinea:"🇬🇶",eritrea:"🇪🇷",estonia:"🇪🇪",ethiopia:"🇪🇹",eu:"🇪🇺",european_union:"🇪🇺",falkland_islands:"🇫🇰",faroe_islands:"🇫🇴",fiji:"🇫🇯",finland:"🇫🇮",fr:"🇫🇷",french_guiana:"🇬🇫",french_polynesia:"🇵🇫",french_southern_territories:"🇹🇫",gabon:"🇬🇦",gambia:"🇬🇲",georgia:"🇬🇪",de:"🇩🇪",ghana:"🇬🇭",gibraltar:"🇬🇮",greece:"🇬🇷",greenland:"🇬🇱",grenada:"🇬🇩",guadeloupe:"🇬🇵",guam:"🇬🇺",guatemala:"🇬🇹",guernsey:"🇬🇬",guinea:"🇬🇳",guinea_bissau:"🇬🇼",guyana:"🇬🇾",haiti:"🇭🇹",honduras:"🇭🇳",hong_kong:"🇭🇰",hungary:"🇭🇺",iceland:"🇮🇸",india:"🇮🇳",indonesia:"🇮🇩",iran:"🇮🇷",iraq:"🇮🇶",ireland:"🇮🇪",isle_of_man:"🇮🇲",israel:"🇮🇱",it:"🇮🇹",jamaica:"🇯🇲",jp:"🇯🇵",crossed_flags:"🎌",jersey:"🇯🇪",jordan:"🇯🇴",kazakhstan:"🇰🇿",kenya:"🇰🇪",kiribati:"🇰🇮",kosovo:"🇽🇰",kuwait:"🇰🇼",kyrgyzstan:"🇰🇬",laos:"🇱🇦",latvia:"🇱🇻",lebanon:"🇱🇧",lesotho:"🇱🇸",liberia:"🇱🇷",libya:"🇱🇾",liechtenstein:"🇱🇮",lithuania:"🇱🇹",luxembourg:"🇱🇺",macau:"🇲🇴",macedonia:"🇲🇰",madagascar:"🇲🇬",malawi:"🇲🇼",malaysia:"🇲🇾",maldives:"🇲🇻",mali:"🇲🇱",malta:"🇲🇹",marshall_islands:"🇲🇭",martinique:"🇲🇶",mauritania:"🇲🇷",mauritius:"🇲🇺",mayotte:"🇾🇹",mexico:"🇲🇽",micronesia:"🇫🇲",moldova:"🇲🇩",monaco:"🇲🇨",mongolia:"🇲🇳",montenegro:"🇲🇪",montserrat:"🇲🇸",morocco:"🇲🇦",mozambique:"🇲🇿",myanmar:"🇲🇲",namibia:"🇳🇦",nauru:"🇳🇷",nepal:"🇳🇵",netherlands:"🇳🇱",new_caledonia:"🇳🇨",new_zealand:"🇳🇿",nicaragua:"🇳🇮",niger:"🇳🇪",nigeria:"🇳🇬",niue:"🇳🇺",norfolk_island:"🇳🇫",northern_mariana_islands:"🇲🇵",north_korea:"🇰🇵",norway:"🇳🇴",oman:"🇴🇲",pakistan:"🇵🇰",palau:"🇵🇼",palestinian_territories:"🇵🇸",panama:"🇵🇦",papua_new_guinea:"🇵🇬",paraguay:"🇵🇾",peru:"🇵🇪",philippines:"🇵🇭",pitcairn_islands:"🇵🇳",poland:"🇵🇱",portugal:"🇵🇹",puerto_rico:"🇵🇷",qatar:"🇶🇦",reunion:"🇷🇪",romania:"🇷🇴",ru:"🇷🇺",rwanda:"🇷🇼",st_barthelemy:"🇧🇱",st_helena:"🇸🇭",st_kitts_nevis:"🇰🇳",st_lucia:"🇱🇨",st_pierre_miquelon:"🇵🇲",st_vincent_grenadines:"🇻🇨",samoa:"🇼🇸",san_marino:"🇸🇲",sao_tome_principe:"🇸🇹",saudi_arabia:"🇸🇦",senegal:"🇸🇳",serbia:"🇷🇸",seychelles:"🇸🇨",sierra_leone:"🇸🇱",singapore:"🇸🇬",sint_maarten:"🇸🇽",slovakia:"🇸🇰",slovenia:"🇸🇮",solomon_islands:"🇸🇧",somalia:"🇸🇴",south_africa:"🇿🇦",south_georgia_south_sandwich_islands:"🇬🇸",kr:"🇰🇷",south_sudan:"🇸🇸",es:"🇪🇸",sri_lanka:"🇱🇰",sudan:"🇸🇩",suriname:"🇸🇷",swaziland:"🇸🇿",sweden:"🇸🇪",switzerland:"🇨🇭",syria:"🇸🇾",taiwan:"🇹🇼",tajikistan:"🇹🇯",tanzania:"🇹🇿",thailand:"🇹🇭",timor_leste:"🇹🇱",togo:"🇹🇬",tokelau:"🇹🇰",tonga:"🇹🇴",trinidad_tobago:"🇹🇹",tunisia:"🇹🇳",tr:"🇹🇷",turkmenistan:"🇹🇲",turks_caicos_islands:"🇹🇨",tuvalu:"🇹🇻",uganda:"🇺🇬",ukraine:"🇺🇦",united_arab_emirates:"🇦🇪",gb:"🇬🇧",uk:"🇬🇧",us:"🇺🇸",us_virgin_islands:"🇻🇮",uruguay:"🇺🇾",uzbekistan:"🇺🇿",vanuatu:"🇻🇺",vatican_city:"🇻🇦",venezuela:"🇻🇪",vietnam:"🇻🇳",wallis_futuna:"🇼🇫",western_sahara:"🇪🇭",yemen:"🇾🇪",zambia:"🇿🇲",zimbabwe:"🇿🇼"}},function(t,e,n){"use strict";t.exports={angry:[">:(",">:-("],blush:[':")',':-")'],broken_heart:["</3","<\\3"],confused:[":/",":-/"],cry:[":'(",":'-(",":,(",":,-("],frowning:[":(",":-("],heart:["<3"],imp:["]:(","]:-("],innocent:["o:)","O:)","o:-)","O:-)","0:)","0:-)"],joy:[":')",":'-)",":,)",":,-)",":'D",":'-D",":,D",":,-D"],kissing:[":*",":-*"],laughing:["x-)","X-)"],neutral_face:[":|",":-|"],open_mouth:[":o",":-o",":O",":-O"],rage:[":@",":-@"],smile:[":D",":-D"],smiley:[":)",":-)"],smiling_imp:["]:)","]:-)"],sob:[":,'(",":,'-(",";(",";-("],stuck_out_tongue:[":P",":-P"],sunglasses:["8-)","B-)"],sweat:[",:(",",:-("],sweat_smile:[",:)",",:-)"],unamused:[":s",":-S",":z",":-Z",":$",":-$"],wink:[";)",";-)"]}},function(t,e,n){"use strict";t.exports=function(t){var e,n=t.defs;t.enabled.length&&(n=Object.keys(n).reduce(function(e,i){return t.enabled.indexOf(i)>=0&&(e[i]=n[i]),e},{})),e=Object.keys(t.shortcuts).reduce(function(e,i){return n[i]?Array.isArray(t.shortcuts[i])?(t.shortcuts[i].forEach(function(t){e[t]=i}),e):(e[t.shortcuts[i]]=i,e):e},{});var i=Object.keys(n).map(function(t){return":"+t+":"}).concat(Object.keys(e)).sort().reverse().map(function(t){return function(t){return t.replace(/[.?*+^$[\]\\(){}|-]/g,"\\$&")}(t)}).join("|"),r=RegExp(i),s=RegExp(i,"g");return{defs:n,shortcuts:e,scanRE:r,replaceRE:s}}},function(t,e,n){"use strict";t.exports=function(t,e){return t[e].content}},function(t,e,n){"use strict";t.exports=function(t,e,n,i,r){function s(t,i,s){var o,a=0,c=[];return t.replace(r,function(i,r,u){var h;if(n.hasOwnProperty(i)){if(h=n[i],r>0&&!l.test(u[r-1]))return;if(r+i.length<u.length&&!l.test(u[r+i.length]))return}else h=i.slice(1,-1);r>a&&((o=new s("text","",0)).content=t.slice(a,r),c.push(o)),(o=new s("emoji","",0)).markup=h,o.content=e[h],c.push(o),a=r+i.length}),a<t.length&&((o=new s("text","",0)).content=t.slice(a),c.push(o)),c}var o=t.utils.arrayReplaceAt,a=t.utils.lib.ucmicro,l=new RegExp([a.Z.source,a.P.source,a.Cc.source].join("|"));return function(t){var e,n,r,a,l,c=t.tokens,u=0;for(n=0,r=c.length;n<r;n++)if("inline"===c[n].type)for(e=(a=c[n].children).length-1;e>=0;e--)"link_open"!==(l=a[e]).type&&"link_close"!==l.type||"auto"===l.info&&(u-=l.nesting),"text"===l.type&&0===u&&i.test(l.content)&&(c[n].children=a=o(a,e,s(l.content,l.level,t.Token)))}}},function(t,e,n){"use strict";function i(t,e,n,i){var r=Number(t[e].meta.id+1).toString(),s="";return"string"==typeof i.docId&&(s="-"+i.docId+"-"),s+r}function r(t,e){var n=Number(t[e].meta.id+1).toString();return t[e].meta.subId>0&&(n+=":"+t[e].meta.subId),"["+n+"]"}function s(t,e,n,i,r){var s=r.rules.footnote_anchor_name(t,e,n,i,r),o=r.rules.footnote_caption(t,e,n,i,r),a=s;return t[e].meta.subId>0&&(a+=":"+t[e].meta.subId),'<sup class="footnote-ref"><a href="#fn'+s+'" id="fnref'+a+'">'+o+"</a></sup>"}function o(t,e,n){return(n.xhtmlOut?'<hr class="footnotes-sep" />\n':'<hr class="footnotes-sep">\n')+'<section class="footnotes">\n<ol class="footnotes-list">\n'}function a(){return"</ol>\n</section>\n"}function l(t,e,n,i,r){var s=r.rules.footnote_anchor_name(t,e,n,i,r);return t[e].meta.subId>0&&(s+=":"+t[e].meta.subId),'<li id="fn'+s+'" class="footnote-item">'}function c(){return"</li>\n"}function u(t,e,n,i,r){var s=r.rules.footnote_anchor_name(t,e,n,i,r);return t[e].meta.subId>0&&(s+=":"+t[e].meta.subId),' <a href="#fnref'+s+'" class="footnote-backref">↩︎</a>'}t.exports=function(t){var e=t.helpers.parseLinkLabel,n=t.utils.isSpace;t.renderer.rules.footnote_ref=s,t.renderer.rules.footnote_block_open=o,t.renderer.rules.footnote_block_close=a,t.renderer.rules.footnote_open=l,t.renderer.rules.footnote_close=c,t.renderer.rules.footnote_anchor=u,t.renderer.rules.footnote_caption=r,t.renderer.rules.footnote_anchor_name=i,t.block.ruler.before("reference","footnote_def",function(t,e,i,r){var s,o,a,l,c,u,h,d,p,f,m,v=t.bMarks[e]+t.tShift[e],g=t.eMarks[e];if(v+4>g)return!1;if(91!==t.src.charCodeAt(v))return!1;if(94!==t.src.charCodeAt(v+1))return!1;for(c=v+2;c<g;c++){if(32===t.src.charCodeAt(c))return!1;if(93===t.src.charCodeAt(c))break}if(c===v+2)return!1;if(c+1>=g||58!==t.src.charCodeAt(++c))return!1;if(r)return!0;for(c++,t.env.footnotes||(t.env.footnotes={}),t.env.footnotes.refs||(t.env.footnotes.refs={}),u=t.src.slice(v+2,c-2),t.env.footnotes.refs[":"+u]=-1,(h=new t.Token("footnote_reference_open","",1)).meta={label:u},h.level=t.level++,t.tokens.push(h),s=t.bMarks[e],o=t.tShift[e],a=t.sCount[e],l=t.parentType,m=c,d=p=t.sCount[e]+c-(t.bMarks[e]+t.tShift[e]);c<g&&(f=t.src.charCodeAt(c),n(f));)9===f?p+=4-p%4:p++,c++;return t.tShift[e]=c-m,t.sCount[e]=p-d,t.bMarks[e]=m,t.blkIndent+=4,t.parentType="footnote",t.sCount[e]<t.blkIndent&&(t.sCount[e]+=t.blkIndent),t.md.block.tokenize(t,e,i,!0),t.parentType=l,t.blkIndent-=4,t.tShift[e]=o,t.sCount[e]=a,t.bMarks[e]=s,(h=new t.Token("footnote_reference_close","",-1)).level=--t.level,t.tokens.push(h),!0},{alt:["paragraph","reference"]}),t.inline.ruler.after("image","footnote_inline",function(t,n){var i,r,s,o,a,l=t.posMax,c=t.pos;return!(c+2>=l||94!==t.src.charCodeAt(c)||91!==t.src.charCodeAt(c+1)||(i=c+2,(r=e(t,c+1))<0||(n||(t.env.footnotes||(t.env.footnotes={}),t.env.footnotes.list||(t.env.footnotes.list=[]),s=t.env.footnotes.list.length,t.md.inline.parse(t.src.slice(i,r),t.md,t.env,a=[]),o=t.push("footnote_ref","",0),o.meta={id:s},t.env.footnotes.list[s]={tokens:a}),t.pos=r+1,t.posMax=l,0)))}),t.inline.ruler.after("footnote_inline","footnote_ref",function(t,e){var n,i,r,s,o,a=t.posMax,l=t.pos;if(l+3>a)return!1;if(!t.env.footnotes||!t.env.footnotes.refs)return!1;if(91!==t.src.charCodeAt(l))return!1;if(94!==t.src.charCodeAt(l+1))return!1;for(i=l+2;i<a;i++){if(32===t.src.charCodeAt(i))return!1;if(10===t.src.charCodeAt(i))return!1;if(93===t.src.charCodeAt(i))break}return!(i===l+2||i>=a||(i++,n=t.src.slice(l+2,i-1),void 0===t.env.footnotes.refs[":"+n]||(e||(t.env.footnotes.list||(t.env.footnotes.list=[]),t.env.footnotes.refs[":"+n]<0?(r=t.env.footnotes.list.length,t.env.footnotes.list[r]={label:n,count:0},t.env.footnotes.refs[":"+n]=r):r=t.env.footnotes.refs[":"+n],s=t.env.footnotes.list[r].count,t.env.footnotes.list[r].count++,o=t.push("footnote_ref","",0),o.meta={id:r,subId:s,label:n}),t.pos=i,t.posMax=a,0)))}),t.core.ruler.after("inline","footnote_tail",function(t){var e,n,i,r,s,o,a,l,c,u,h=!1,d={};if(t.env.footnotes&&(t.tokens=t.tokens.filter(function(t){return"footnote_reference_open"===t.type?(h=!0,c=[],u=t.meta.label,!1):"footnote_reference_close"===t.type?(h=!1,d[":"+u]=c,!1):(h&&c.push(t),!h)}),t.env.footnotes.list)){for(o=t.env.footnotes.list,a=new t.Token("footnote_block_open","",1),t.tokens.push(a),e=0,n=o.length;e<n;e++){for((a=new t.Token("footnote_open","",1)).meta={id:e,label:o[e].label},t.tokens.push(a),o[e].tokens?(l=[],(a=new t.Token("paragraph_open","p",1)).block=!0,l.push(a),(a=new t.Token("inline","",0)).children=o[e].tokens,a.content="",l.push(a),(a=new t.Token("paragraph_close","p",-1)).block=!0,l.push(a)):o[e].label&&(l=d[":"+o[e].label]),t.tokens=t.tokens.concat(l),s="paragraph_close"===t.tokens[t.tokens.length-1].type?t.tokens.pop():null,r=o[e].count>0?o[e].count:1,i=0;i<r;i++)(a=new t.Token("footnote_anchor","",0)).meta={id:e,subId:i,label:o[e].label},t.tokens.push(a);s&&t.tokens.push(s),a=new t.Token("footnote_close","",-1),t.tokens.push(a)}a=new t.Token("footnote_block_close","",-1),t.tokens.push(a)}})}},function(t,e){t.exports=function(t,e){void 0===(e=e||{}).highlighted&&(e.highlighted=!0),void 0===e.hljs&&(e.hljs="auto"),"function"!=typeof e.langCheck&&(e.langCheck=function(){}),t.options.highlight=function(n,i){var r=e.hljs;if("auto"===e.hljs&&(r=window.hljs),e.highlighted&&i&&r){if(r.getLanguage(i))return'<pre><div class="hljs"><code class="'+t.options.langPrefix+i+'">'+r.highlight(i,n,!0).value+"</code></div></pre>";"function"==typeof e.langCheck&&e.langCheck(i)}return'<pre><code class="'+t.options.langPrefix+i+'">'+t.utils.escapeHtml(n)+"</code></pre>"}}},function(t,e){t.exports=function(t,e){t.image_add=function(e,n){t.__image instanceof Object||(t.__image={}),t.__image[e]=n},t.image_del=function(e){t.__image instanceof Object||(t.__image={}),delete t.__image[e]};var n=t.renderer.rules.image;t.renderer.rules.image=function(e,i,r,s,o){var a=e[i].attrs;if(t.__image instanceof Object)for(var l=0;l<a.length;l++)if("src"==a[l][0]&&t.__image.hasOwnProperty(e[i].attrs[l][1])){a.push(["rel",a[l][1]]),a[l][1]=t.__image[e[i].attrs[l][1]];break}return n(e,i,r,s,o)}}},function(t,e,n){"use strict";t.exports=function(t){t.inline.ruler.before("emphasis","ins",function(t,e){var n,i,r,s,o=t.pos,a=t.src.charCodeAt(o);if(e)return!1;if(43!==a)return!1;if(r=(i=t.scanDelims(t.pos,!0)).length,s=String.fromCharCode(a),r<2)return!1;for(r%2&&(t.push("text","",0).content=s,r--),n=0;n<r;n+=2)t.push("text","",0).content=s+s,t.delimiters.push({marker:a,jump:n,token:t.tokens.length-1,level:t.level,end:-1,open:i.can_open,close:i.can_close});return t.pos+=i.length,!0}),t.inline.ruler2.before("emphasis","ins",function(t){var e,n,i,r,s,o=[],a=t.delimiters,l=t.delimiters.length;for(e=0;e<l;e++)43===(i=a[e]).marker&&-1!==i.end&&(r=a[i.end],(s=t.tokens[i.token]).type="ins_open",s.tag="ins",s.nesting=1,s.markup="++",s.content="",(s=t.tokens[r.token]).type="ins_close",s.tag="ins",s.nesting=-1,s.markup="++",s.content="","text"===t.tokens[r.token-1].type&&"+"===t.tokens[r.token-1].content&&o.push(r.token-1));for(;o.length;){for(n=(e=o.pop())+1;n<t.tokens.length&&"ins_close"===t.tokens[n].type;)n++;e!==--n&&(s=t.tokens[n],t.tokens[n]=t.tokens[e],t.tokens[e]=s)}})}},function(t,e,n){"use strict";function i(t,e){var n,i,r=t.posMax,s=!0,o=!0;return n=e>0?t.src.charCodeAt(e-1):-1,i=e+1<=r?t.src.charCodeAt(e+1):-1,(32===n||9===n||i>=48&&i<=57)&&(o=!1),32!==i&&9!==i||(s=!1),{can_open:s,can_close:o}}function r(t,e){if(!o&&window.katex&&(o=window.katex),!o)return!1;var n,r,s,a;if("$"!==t.src[t.pos])return!1;if(!i(t,t.pos).can_open)return e||(t.pending+="$"),t.pos+=1,!0;for(r=n=t.pos+1;-1!==(r=t.src.indexOf("$",r));){for(a=r-1;"\\"===t.src[a];)a-=1;if((r-a)%2==1)break;r+=1}return-1===r?(e||(t.pending+="$"),t.pos=n,!0):r-n==0?(e||(t.pending+="$$"),t.pos=n+1,!0):i(t,r).can_close?(e||((s=t.push("math_inline","math",0)).markup="$",s.content=t.src.slice(n,r)),t.pos=r+1,!0):(e||(t.pending+="$"),t.pos=n,!0)}function s(t,e,n,i){if(!o&&window.katex&&(o=window.katex),!o)return!1;var r,s,a,l,c,u=!1,h=t.bMarks[e]+t.tShift[e],d=t.eMarks[e];if(h+2>d)return!1;if("$$"!==t.src.slice(h,h+2))return!1;if(h+=2,r=t.src.slice(h,d),i)return!0;for("$$"===r.trim().slice(-2)&&(r=r.trim().slice(0,-2),u=!0),a=e;!(u||++a>=n||(h=t.bMarks[a]+t.tShift[a],d=t.eMarks[a],h<d&&t.tShift[a]<t.blkIndent));)"$$"===t.src.slice(h,d).trim().slice(-2)&&(l=t.src.slice(0,d).lastIndexOf("$$"),s=t.src.slice(h,l),u=!0);return t.line=a+1,(c=t.push("math_block","math",0)).block=!0,c.content=(r&&r.trim()?r+"\n":"")+t.getLines(e+1,a,t.tShift[e],!0)+(s&&s.trim()?s:""),c.map=[e,t.line],c.markup="$$",!0}var o=null;t.exports=function(t,e){e=e||{};var n=function(t){!o&&window.katex&&(o=window.katex),e.displayMode=!1;try{return o.renderToString(t,e)}catch(n){return e.throwOnError&&console.log(n),t}},i=function(t){!o&&window.katex&&(o=window.katex),e.displayMode=!0;try{return"<p>"+o.renderToString(t,e)+"</p>"}catch(n){return e.throwOnError&&console.log(n),t}};t.inline.ruler.after("escape","math_inline",r),t.block.ruler.after("blockquote","math_block",s,{alt:["paragraph","reference","blockquote","list"]}),t.renderer.rules.math_inline=function(t,e){return n(t[e].content)},t.renderer.rules.math_block=function(t,e){return i(t[e].content)+"\n"}}},function(t,e,n){"use strict";t.exports=function(t){t.inline.ruler.before("emphasis","mark",function(t,e){var n,i,r,s,o=t.pos,a=t.src.charCodeAt(o);if(e)return!1;if(61!==a)return!1;if(r=(i=t.scanDelims(t.pos,!0)).length,s=String.fromCharCode(a),r<2)return!1;for(r%2&&(t.push("text","",0).content=s,r--),n=0;n<r;n+=2)t.push("text","",0).content=s+s,t.delimiters.push({marker:a,jump:n,token:t.tokens.length-1,level:t.level,end:-1,open:i.can_open,close:i.can_close});return t.pos+=i.length,!0}),t.inline.ruler2.before("emphasis","mark",function(t){var e,n,i,r,s,o=[],a=t.delimiters,l=t.delimiters.length;for(e=0;e<l;e++)61===(i=a[e]).marker&&-1!==i.end&&(r=a[i.end],(s=t.tokens[i.token]).type="mark_open",s.tag="mark",s.nesting=1,s.markup="==",s.content="",(s=t.tokens[r.token]).type="mark_close",s.tag="mark",s.nesting=-1,s.markup="==",s.content="","text"===t.tokens[r.token-1].type&&"="===t.tokens[r.token-1].content&&o.push(r.token-1));for(;o.length;){for(n=(e=o.pop())+1;n<t.tokens.length&&"mark_close"===t.tokens[n].type;)n++;e!==--n&&(s=t.tokens[n],t.tokens[n]=t.tokens[e],t.tokens[e]=s)}})}},function(t,e,n){"use strict";function i(t,e){var n,i,s=t.posMax,o=t.pos;if(126!==t.src.charCodeAt(o))return!1;if(e)return!1;if(o+2>=s)return!1;for(t.pos=o+1;t.pos<s;){if(126===t.src.charCodeAt(t.pos)){n=!0;break}t.md.inline.skipToken(t)}return n&&o+1!==t.pos?(i=t.src.slice(o+1,t.pos)).match(/(^|[^\\])(\\\\)*\s/)?(t.pos=o,!1):(t.posMax=t.pos,t.pos=o+1,t.push("sub_open","sub",1).markup="~",t.push("text","",0).content=i.replace(r,"$1"),t.push("sub_close","sub",-1).markup="~",t.pos=t.posMax+1,t.posMax=s,!0):(t.pos=o,!1)}var r=/\\([ \\!"#$%&'()*+,.\/:;<=>?@[\]^_`{|}~-])/g;t.exports=function(t){t.inline.ruler.after("emphasis","sub",i)}},function(t,e,n){"use strict";function i(t,e){var n,i,s=t.posMax,o=t.pos;if(94!==t.src.charCodeAt(o))return!1;if(e)return!1;if(o+2>=s)return!1;for(t.pos=o+1;t.pos<s;){if(94===t.src.charCodeAt(t.pos)){n=!0;break}t.md.inline.skipToken(t)}return n&&o+1!==t.pos?(i=t.src.slice(o+1,t.pos)).match(/(^|[^\\])(\\\\)*\s/)?(t.pos=o,!1):(t.posMax=t.pos,t.pos=o+1,t.push("sup_open","sup",1).markup="^",t.push("text","",0).content=i.replace(r,"$1"),t.push("sup_close","sup",-1).markup="^",t.pos=t.posMax+1,t.posMax=s,!0):(t.pos=o,!1)}var r=/\\([ \\!"#$%&'()*+,.\/:;<=>?@[\]^_`{|}~-])/g;t.exports=function(t){t.inline.ruler.after("emphasis","sup",i)}},function(t,e){function n(t,e,n){var i=t.attrIndex(e),r=[e,n];i<0?t.attrPush(r):t.attrs[i]=r}function i(t,e){for(var n=t[e].level-1,i=e-1;i>=0;i--)if(t[i].level===n)return i;return-1}function r(t,e){return function(t){return"inline"===t.type}(t[e])&&function(t){return"paragraph_open"===t.type}(t[e-1])&&function(t){return"list_item_open"===t.type}(t[e-2])&&function(t){return 0===t.content.indexOf("[ ] ")||0===t.content.indexOf("[x] ")||0===t.content.indexOf("[X] ")}(t[e])}function s(t,e){if(t.children.unshift(function(t,e){var n=new e("html_inline","",0),i=o?' disabled="" ':"";return 0===t.content.indexOf("[ ] ")?n.content='<input class="task-list-item-checkbox"'+i+'type="checkbox">':0!==t.content.indexOf("[x] ")&&0!==t.content.indexOf("[X] ")||(n.content='<input class="task-list-item-checkbox" checked=""'+i+'type="checkbox">'),n}(t,e)),t.children[1].content=t.children[1].content.slice(3),t.content=t.content.slice(3),a)if(l){t.children.pop();var n="task-item-"+Math.ceil(1e7*Math.random()-1e3);t.children[0].content=t.children[0].content.slice(0,-1)+' id="'+n+'">',t.children.push(function(t,e,n){var i=new n("html_inline","",0);return i.content='<label class="task-list-item-label" for="'+e+'">'+t+"</label>",i.attrs=[{for:e}],i}(t.content,n,e))}else t.children.unshift(function(t){var e=new t("html_inline","",0);return e.content="<label>",e}(e)),t.children.push(function(t){var e=new t("html_inline","",0);return e.content="</label>",e}(e))}var o=!0,a=!1,l=!1;t.exports=function(t,e){e&&(o=!e.enabled,a=!!e.label,l=!!e.labelAfter),t.core.ruler.after("inline","github-task-lists",function(t){for(var e=t.tokens,a=2;a<e.length;a++)r(e,a)&&(s(e[a],t.Token),n(e[a-2],"class","task-list-item"+(o?"":" enabled")),n(e[i(e,a-2)],"class","contains-task-list"))})}},function(t,e,n){"use strict";t.exports=function(t){var e,n=/^@\[toc\](?:\((?:\s+)?([^\)]+)(?:\s+)?\)?)?(?:\s+?)?$/im,i="Table of Contents",r=function(t){return t.replace(/[^\w\s]/gi,"").split(" ").join("_")};t.renderer.rules.heading_open=function(t,e){var n=t[e].tag,i=t[e+1];return"inline"===i.type?"<"+n+'><a id="'+r(i.content)+"_"+i.map[0]+'"></a>':"</h1>"},t.renderer.rules.toc_open=function(t,e){return""},t.renderer.rules.toc_close=function(t,e){return""},t.renderer.rules.toc_body=function(t,n){for(var i=[],s=e.tokens,o=s.length,a=0;a<o;a++)if("heading_close"===s[a].type){var l=s[a],c=s[a-1];"inline"===c.type&&i.push({level:+l.tag.substr(1,1),anchor:r(c.content)+"_"+c.map[0],content:c.content})}var u=0,h=i.map(function(t){var e=[];if(t.level>u)for(var n=t.level-u,i=0;i<n;i++)e.push("<ul>"),u++;else if(t.level<u)for(n=u-t.level,i=0;i<n;i++)e.push("</ul>"),u--;return(e=e.concat(['<li><a href="#',t.anchor,'">',t.content,"</a></li>"])).join("")});return"<h3>"+t[n].content+"</h3>"+h.join("")+new Array(u+1).join("</ul>")},t.core.ruler.push("grab_state",function(t){e=t}),t.inline.ruler.after("emphasis","toc",function(t,e){for(;t.src.indexOf("\n")>=0&&t.src.indexOf("\n")<t.src.indexOf("@[toc]");)"softbreak"===t.tokens.slice(-1)[0].type&&(t.src=t.src.split("\n").slice(1).join("\n"),t.pos=0);var r;if(64!==t.src.charCodeAt(t.pos))return!1;if(91!==t.src.charCodeAt(t.pos+1))return!1;var s=n.exec(t.src);if(!s)return!1;if((s=s.filter(function(t){return t})).length<1)return!1;if(e)return!1;(r=t.push("toc_open","toc",1)).markup="@[toc]",r=t.push("toc_body","",0);var o=i;s.length>1&&(o=s.pop()),r.content=o,r=t.push("toc_close","toc",-1);var a,l=t.src.indexOf("\n");return a=-1!==l?t.pos+l:t.pos+t.posMax+1,t.pos=a,!0})}},function(t,e,n){"use strict";t.exports=n(135)},function(t,e,n){"use strict";t.exports=["address","article","aside","base","basefont","blockquote","body","caption","center","col","colgroup","dd","details","dialog","dir","div","dl","dt","fieldset","figcaption","figure","footer","form","frame","frameset","h1","h2","h3","h4","h5","h6","head","header","hr","html","iframe","legend","li","link","main","menu","menuitem","meta","nav","noframes","ol","optgroup","option","p","param","section","source","summary","table","tbody","td","tfoot","th","thead","title","tr","track","ul"]},function(t,e,n){"use strict";e.parseLinkLabel=n(133),e.parseLinkDestination=n(132),e.parseLinkTitle=n(134)},function(t,e,n){"use strict";var i=n(0).isSpace,r=n(0).unescapeAll;t.exports=function(t,e,n){var s,o,a=e,l={ok:!1,pos:0,lines:0,str:""};if(60===t.charCodeAt(e)){for(e++;e<n;){if(10===(s=t.charCodeAt(e))||i(s))return l;if(62===s)return l.pos=e+1,l.str=r(t.slice(a+1,e)),l.ok=!0,l;92===s&&e+1<n?e+=2:e++}return l}for(o=0;e<n&&32!==(s=t.charCodeAt(e))&&!(s<32||127===s);)if(92===s&&e+1<n)e+=2;else{if(40===s&&o++,41===s){if(0===o)break;o--}e++}return a===e?l:0!==o?l:(l.str=r(t.slice(a,e)),l.lines=0,l.pos=e,l.ok=!0,l)}},function(t,e,n){"use strict";t.exports=function(t,e,n){var i,r,s,o,a=-1,l=t.posMax,c=t.pos;for(t.pos=e+1,i=1;t.pos<l;){if(93===(s=t.src.charCodeAt(t.pos))&&0==--i){r=!0;break}if(o=t.pos,t.md.inline.skipToken(t),91===s)if(o===t.pos-1)i++;else if(n)return t.pos=c,-1}return r&&(a=t.pos),t.pos=c,a}},function(t,e,n){"use strict";var i=n(0).unescapeAll;t.exports=function(t,e,n){var r,s,o=0,a=e,l={ok:!1,pos:0,lines:0,str:""};if(e>=n)return l;if(34!==(s=t.charCodeAt(e))&&39!==s&&40!==s)return l;for(e++,40===s&&(s=41);e<n;){if((r=t.charCodeAt(e))===s)return l.pos=e+1,l.lines=o,l.str=i(t.slice(a+1,e)),l.ok=!0,l;10===r?o++:92===r&&e+1<n&&(e++,10===t.charCodeAt(e)&&o++),e++}return l}},function(t,e,n){"use strict";function i(t){var e=t.trim().toLowerCase();return!g.test(e)||!!_.test(e)}function r(t){var e=f.parse(t,!0);if(e.hostname&&(!e.protocol||b.indexOf(e.protocol)>=0))try{e.hostname=m.toASCII(e.hostname)}catch(t){}return f.encode(f.format(e))}function s(t){var e=f.parse(t,!0);if(e.hostname&&(!e.protocol||b.indexOf(e.protocol)>=0))try{e.hostname=m.toUnicode(e.hostname)}catch(t){}return f.decode(f.format(e))}function o(t,e){if(!(this instanceof o))return new o(t,e);e||a.isString(t)||(e=t||{},t="default"),this.inline=new d,this.block=new h,this.core=new u,this.renderer=new c,this.linkify=new p,this.validateLink=i,this.normalizeLink=r,this.normalizeLinkText=s,this.utils=a,this.helpers=a.assign({},l),this.options={},this.configure(t),e&&this.set(e)}var a=n(0),l=n(131),c=n(142),u=n(137),h=n(136),d=n(138),p=n(108),f=n(52),m=n(178),v={default:n(140),zero:n(141),commonmark:n(139)},g=/^(vbscript|javascript|file|data):/,_=/^data:image\/(gif|png|jpeg|webp);/,b=["http:","https:","mailto:"];o.prototype.set=function(t){return a.assign(this.options,t),this},o.prototype.configure=function(t){var e,n=this;if(a.isString(t)&&!(t=v[e=t]))throw new Error('Wrong `markdown-it` preset "'+e+'", check name');if(!t)throw new Error("Wrong `markdown-it` preset, can't be empty");return t.options&&n.set(t.options),t.components&&Object.keys(t.components).forEach(function(e){t.components[e].rules&&n[e].ruler.enableOnly(t.components[e].rules),t.components[e].rules2&&n[e].ruler2.enableOnly(t.components[e].rules2)}),this},o.prototype.enable=function(t,e){var n=[];Array.isArray(t)||(t=[t]),["core","block","inline"].forEach(function(e){n=n.concat(this[e].ruler.enable(t,!0))},this),n=n.concat(this.inline.ruler2.enable(t,!0));var i=t.filter(function(t){return n.indexOf(t)<0});if(i.length&&!e)throw new Error("MarkdownIt. Failed to enable unknown rule(s): "+i);return this},o.prototype.disable=function(t,e){var n=[];Array.isArray(t)||(t=[t]),["core","block","inline"].forEach(function(e){n=n.concat(this[e].ruler.disable(t,!0))},this),n=n.concat(this.inline.ruler2.disable(t,!0));var i=t.filter(function(t){return n.indexOf(t)<0});if(i.length&&!e)throw new Error("MarkdownIt. Failed to disable unknown rule(s): "+i);return this},o.prototype.use=function(t){var e=[this].concat(Array.prototype.slice.call(arguments,1));return t.apply(t,e),this},o.prototype.parse=function(t,e){if("string"!=typeof t)throw new Error("Input data should be a String");var n=new this.core.State(t,this,e);return this.core.process(n),n.tokens},o.prototype.render=function(t,e){return e=e||{},this.renderer.render(this.parse(t,e),this.options,e)},o.prototype.parseInline=function(t,e){var n=new this.core.State(t,this,e);return n.inlineMode=!0,this.core.process(n),n.tokens},o.prototype.renderInline=function(t,e){return e=e||{},this.renderer.render(this.parseInline(t,e),this.options,e)},t.exports=o},function(t,e,n){"use strict";function i(){this.ruler=new r;for(var t=0;t<s.length;t++)this.ruler.push(s[t][0],s[t][1],{alt:(s[t][2]||[]).slice()})}var r=n(31),s=[["table",n(154),["paragraph","reference"]],["code",n(144)],["fence",n(145),["paragraph","reference","blockquote","list"]],["blockquote",n(143),["paragraph","reference","blockquote","list"]],["hr",n(147),["paragraph","reference","blockquote","list"]],["list",n(150),["paragraph","reference","blockquote"]],["reference",n(152)],["heading",n(146),["paragraph","reference","blockquote"]],["lheading",n(149)],["html_block",n(148),["paragraph","reference","blockquote"]],["paragraph",n(151)]];i.prototype.tokenize=function(t,e,n){for(var i,r=this.ruler.getRules(""),s=r.length,o=e,a=!1,l=t.md.options.maxNesting;o<n&&(t.line=o=t.skipEmptyLines(o),!(o>=n))&&!(t.sCount[o]<t.blkIndent);){if(t.level>=l){t.line=n;break}for(i=0;i<s&&!r[i](t,o,n,!1);i++);t.tight=!a,t.isEmpty(t.line-1)&&(a=!0),(o=t.line)<n&&t.isEmpty(o)&&(a=!0,o++,t.line=o)}},i.prototype.parse=function(t,e,n,i){var r;t&&(r=new this.State(t,e,n,i),this.tokenize(r,r.line,r.lineMax))},i.prototype.State=n(153),t.exports=i},function(t,e,n){"use strict";function i(){this.ruler=new r;for(var t=0;t<s.length;t++)this.ruler.push(s[t][0],s[t][1])}var r=n(31),s=[["normalize",n(158)],["block",n(155)],["inline",n(156)],["linkify",n(157)],["replacements",n(159)],["smartquotes",n(160)]];i.prototype.process=function(t){var e,n,i;for(e=0,n=(i=this.ruler.getRules("")).length;e<n;e++)i[e](t)},i.prototype.State=n(161),t.exports=i},function(t,e,n){"use strict";function i(){var t;for(this.ruler=new r,t=0;t<s.length;t++)this.ruler.push(s[t][0],s[t][1]);for(this.ruler2=new r,t=0;t<o.length;t++)this.ruler2.push(o[t][0],o[t][1])}var r=n(31),s=[["text",n(172)],["newline",n(170)],["escape",n(166)],["backticks",n(163)],["strikethrough",n(51).tokenize],["emphasis",n(50).tokenize],["link",n(169)],["image",n(168)],["autolink",n(162)],["html_inline",n(167)],["entity",n(165)]],o=[["balance_pairs",n(164)],["strikethrough",n(51).postProcess],["emphasis",n(50).postProcess],["text_collapse",n(173)]];i.prototype.skipToken=function(t){var e,n,i=t.pos,r=this.ruler.getRules(""),s=r.length,o=t.md.options.maxNesting,a=t.cache;if(void 0===a[i]){if(t.level<o)for(n=0;n<s&&(t.level++,e=r[n](t,!0),t.level--,!e);n++);else t.pos=t.posMax;e||t.pos++,a[i]=t.pos}else t.pos=a[i]},i.prototype.tokenize=function(t){for(var e,n,i=this.ruler.getRules(""),r=i.length,s=t.posMax,o=t.md.options.maxNesting;t.pos<s;){if(t.level<o)for(n=0;n<r&&!(e=i[n](t,!1));n++);if(e){if(t.pos>=s)break}else t.pending+=t.src[t.pos++]}t.pending&&t.pushPending()},i.prototype.parse=function(t,e,n,i){var r,s,o,a=new this.State(t,e,n,i);for(this.tokenize(a),o=(s=this.ruler2.getRules("")).length,r=0;r<o;r++)s[r](a)},i.prototype.State=n(171),t.exports=i},function(t,e,n){"use strict";t.exports={options:{html:!0,xhtmlOut:!0,breaks:!1,langPrefix:"language-",linkify:!1,typographer:!1,quotes:"“”‘’",highlight:null,maxNesting:20},components:{core:{rules:["normalize","block","inline"]},block:{rules:["blockquote","code","fence","heading","hr","html_block","lheading","list","reference","paragraph"]},inline:{rules:["autolink","backticks","emphasis","entity","escape","html_inline","image","link","newline","text"],rules2:["balance_pairs","emphasis","text_collapse"]}}}},function(t,e,n){"use strict";t.exports={options:{html:!1,xhtmlOut:!1,breaks:!1,langPrefix:"language-",linkify:!1,typographer:!1,quotes:"“”‘’",highlight:null,maxNesting:100},components:{core:{},block:{},inline:{}}}},function(t,e,n){"use strict";t.exports={options:{html:!1,xhtmlOut:!1,breaks:!1,langPrefix:"language-",linkify:!1,typographer:!1,quotes:"“”‘’",highlight:null,maxNesting:20},components:{core:{rules:["normalize","block","inline"]},block:{rules:["paragraph"]},inline:{rules:["text"],rules2:["balance_pairs","text_collapse"]}}}},function(t,e,n){"use strict";function i(){this.rules=r({},a)}var r=n(0).assign,s=n(0).unescapeAll,o=n(0).escapeHtml,a={code_inline:function(t,e,n,i,r){var s=t[e];return"<code"+r.renderAttrs(s)+">"+o(t[e].content)+"</code>"},code_block:function(t,e,n,i,r){var s=t[e];return"<pre"+r.renderAttrs(s)+"><code>"+o(t[e].content)+"</code></pre>\n"},fence:function(t,e,n,i,r){var a,l,c,u,h=t[e],d=h.info?s(h.info).trim():"",p="";return d&&(p=d.split(/\s+/g)[0]),0===(a=n.highlight&&n.highlight(h.content,p)||o(h.content)).indexOf("<pre")?a+"\n":d?(l=h.attrIndex("class"),c=h.attrs?h.attrs.slice():[],l<0?c.push(["class",n.langPrefix+p]):c[l][1]+=" "+n.langPrefix+p,u={attrs:c},"<pre><code"+r.renderAttrs(u)+">"+a+"</code></pre>\n"):"<pre><code"+r.renderAttrs(h)+">"+a+"</code></pre>\n"},image:function(t,e,n,i,r){var s=t[e];return s.attrs[s.attrIndex("alt")][1]=r.renderInlineAsText(s.children,n,i),r.renderToken(t,e,n)},hardbreak:function(t,e,n){return n.xhtmlOut?"<br />\n":"<br>\n"},softbreak:function(t,e,n){return n.breaks?n.xhtmlOut?"<br />\n":"<br>\n":"\n"},text:function(t,e){return o(t[e].content)},html_block:function(t,e){return t[e].content},html_inline:function(t,e){return t[e].content}};i.prototype.renderAttrs=function(t){var e,n,i;if(!t.attrs)return"";for(i="",e=0,n=t.attrs.length;e<n;e++)i+=" "+o(t.attrs[e][0])+'="'+o(t.attrs[e][1])+'"';return i},i.prototype.renderToken=function(t,e,n){var i,r="",s=!1,o=t[e];return o.hidden?"":(o.block&&-1!==o.nesting&&e&&t[e-1].hidden&&(r+="\n"),r+=(-1===o.nesting?"</":"<")+o.tag,r+=this.renderAttrs(o),0===o.nesting&&n.xhtmlOut&&(r+=" /"),o.block&&(s=!0,1===o.nesting&&e+1<t.length&&("inline"===(i=t[e+1]).type||i.hidden?s=!1:-1===i.nesting&&i.tag===o.tag&&(s=!1))),r+=s?">\n":">")},i.prototype.renderInline=function(t,e,n){for(var i,r="",s=this.rules,o=0,a=t.length;o<a;o++)void 0!==s[i=t[o].type]?r+=s[i](t,o,e,n,this):r+=this.renderToken(t,o,e);return r},i.prototype.renderInlineAsText=function(t,e,n){for(var i="",r=0,s=t.length;r<s;r++)"text"===t[r].type?i+=t[r].content:"image"===t[r].type&&(i+=this.renderInlineAsText(t[r].children,e,n));return i},i.prototype.render=function(t,e,n){var i,r,s,o="",a=this.rules;for(i=0,r=t.length;i<r;i++)"inline"===(s=t[i].type)?o+=this.renderInline(t[i].children,e,n):void 0!==a[s]?o+=a[t[i].type](t,i,e,n,this):o+=this.renderToken(t,i,e,n);return o},t.exports=i},function(t,e,n){"use strict";var i=n(0).isSpace;t.exports=function(t,e,n,r){var s,o,a,l,c,u,h,d,p,f,m,v,g,_,b,y,x,k,w,C,S=t.lineMax,T=t.bMarks[e]+t.tShift[e],V=t.eMarks[e];if(t.sCount[e]-t.blkIndent>=4)return!1;if(62!==t.src.charCodeAt(T++))return!1;if(r)return!0;for(l=p=t.sCount[e]+T-(t.bMarks[e]+t.tShift[e]),32===t.src.charCodeAt(T)?(T++,l++,p++,s=!1,y=!0):9===t.src.charCodeAt(T)?(y=!0,(t.bsCount[e]+p)%4==3?(T++,l++,p++,s=!1):s=!0):y=!1,f=[t.bMarks[e]],t.bMarks[e]=T;T<V&&(o=t.src.charCodeAt(T),i(o));)9===o?p+=4-(p+t.bsCount[e]+(s?1:0))%4:p++,T++;for(m=[t.bsCount[e]],t.bsCount[e]=t.sCount[e]+1+(y?1:0),u=T>=V,_=[t.sCount[e]],t.sCount[e]=p-l,b=[t.tShift[e]],t.tShift[e]=T-t.bMarks[e],k=t.md.block.ruler.getRules("blockquote"),g=t.parentType,t.parentType="blockquote",C=!1,d=e+1;d<n&&(t.sCount[d]<t.blkIndent&&(C=!0),!((T=t.bMarks[d]+t.tShift[d])>=(V=t.eMarks[d])));d++)if(62!==t.src.charCodeAt(T++)||C){if(u)break;for(x=!1,a=0,c=k.length;a<c;a++)if(k[a](t,d,n,!0)){x=!0;break}if(x){t.lineMax=d,0!==t.blkIndent&&(f.push(t.bMarks[d]),m.push(t.bsCount[d]),b.push(t.tShift[d]),_.push(t.sCount[d]),t.sCount[d]-=t.blkIndent);break}f.push(t.bMarks[d]),m.push(t.bsCount[d]),b.push(t.tShift[d]),_.push(t.sCount[d]),t.sCount[d]=-1}else{for(l=p=t.sCount[d]+T-(t.bMarks[d]+t.tShift[d]),32===t.src.charCodeAt(T)?(T++,l++,p++,s=!1,y=!0):9===t.src.charCodeAt(T)?(y=!0,(t.bsCount[d]+p)%4==3?(T++,l++,p++,s=!1):s=!0):y=!1,f.push(t.bMarks[d]),t.bMarks[d]=T;T<V&&(o=t.src.charCodeAt(T),i(o));)9===o?p+=4-(p+t.bsCount[d]+(s?1:0))%4:p++,T++;u=T>=V,m.push(t.bsCount[d]),t.bsCount[d]=t.sCount[d]+1+(y?1:0),_.push(t.sCount[d]),t.sCount[d]=p-l,b.push(t.tShift[d]),t.tShift[d]=T-t.bMarks[d]}for(v=t.blkIndent,t.blkIndent=0,(w=t.push("blockquote_open","blockquote",1)).markup=">",w.map=h=[e,0],t.md.block.tokenize(t,e,d),(w=t.push("blockquote_close","blockquote",-1)).markup=">",t.lineMax=S,t.parentType=g,h[1]=t.line,a=0;a<b.length;a++)t.bMarks[a+e]=f[a],t.tShift[a+e]=b[a],t.sCount[a+e]=_[a],t.bsCount[a+e]=m[a];return t.blkIndent=v,!0}},function(t,e,n){"use strict";t.exports=function(t,e,n){var i,r,s;if(t.sCount[e]-t.blkIndent<4)return!1;for(r=i=e+1;i<n;)if(t.isEmpty(i))i++;else{if(!(t.sCount[i]-t.blkIndent>=4))break;r=++i}return t.line=r,(s=t.push("code_block","code",0)).content=t.getLines(e,r,4+t.blkIndent,!0),s.map=[e,t.line],!0}},function(t,e,n){"use strict";t.exports=function(t,e,n,i){var r,s,o,a,l,c,u,h=!1,d=t.bMarks[e]+t.tShift[e],p=t.eMarks[e];if(t.sCount[e]-t.blkIndent>=4)return!1;if(d+3>p)return!1;if(126!==(r=t.src.charCodeAt(d))&&96!==r)return!1;if(l=d,(s=(d=t.skipChars(d,r))-l)<3)return!1;if(u=t.src.slice(l,d),(o=t.src.slice(d,p)).indexOf(String.fromCharCode(r))>=0)return!1;if(i)return!0;for(a=e;!(++a>=n||(d=l=t.bMarks[a]+t.tShift[a],p=t.eMarks[a],d<p&&t.sCount[a]<t.blkIndent));)if(t.src.charCodeAt(d)===r&&!(t.sCount[a]-t.blkIndent>=4||(d=t.skipChars(d,r))-l<s||(d=t.skipSpaces(d))<p)){h=!0;break}return s=t.sCount[e],t.line=a+(h?1:0),(c=t.push("fence","code",0)).info=o,c.content=t.getLines(e+1,a,s,!0),c.markup=u,c.map=[e,t.line],!0}},function(t,e,n){"use strict";var i=n(0).isSpace;t.exports=function(t,e,n,r){var s,o,a,l,c=t.bMarks[e]+t.tShift[e],u=t.eMarks[e];if(t.sCount[e]-t.blkIndent>=4)return!1;if(35!==(s=t.src.charCodeAt(c))||c>=u)return!1;for(o=1,s=t.src.charCodeAt(++c);35===s&&c<u&&o<=6;)o++,s=t.src.charCodeAt(++c);return!(o>6||c<u&&!i(s)||!r&&(u=t.skipSpacesBack(u,c),a=t.skipCharsBack(u,35,c),a>c&&i(t.src.charCodeAt(a-1))&&(u=a),t.line=e+1,l=t.push("heading_open","h"+String(o),1),l.markup="########".slice(0,o),l.map=[e,t.line],l=t.push("inline","",0),l.content=t.src.slice(c,u).trim(),l.map=[e,t.line],l.children=[],l=t.push("heading_close","h"+String(o),-1),l.markup="########".slice(0,o),0))}},function(t,e,n){"use strict";var i=n(0).isSpace;t.exports=function(t,e,n,r){var s,o,a,l,c=t.bMarks[e]+t.tShift[e],u=t.eMarks[e];if(t.sCount[e]-t.blkIndent>=4)return!1;if(42!==(s=t.src.charCodeAt(c++))&&45!==s&&95!==s)return!1;for(o=1;c<u;){if((a=t.src.charCodeAt(c++))!==s&&!i(a))return!1;a===s&&o++}return!(o<3||!r&&(t.line=e+1,l=t.push("hr","hr",0),l.map=[e,t.line],l.markup=Array(o+1).join(String.fromCharCode(s)),0))}},function(t,e,n){"use strict";var i=n(130),r=n(49).HTML_OPEN_CLOSE_TAG_RE,s=[[/^<(script|pre|style)(?=(\s|>|$))/i,/<\/(script|pre|style)>/i,!0],[/^<!--/,/-->/,!0],[/^<\?/,/\?>/,!0],[/^<![A-Z]/,/>/,!0],[/^<!\[CDATA\[/,/\]\]>/,!0],[new RegExp("^</?("+i.join("|")+")(?=(\\s|/?>|$))","i"),/^$/,!0],[new RegExp(r.source+"\\s*$"),/^$/,!1]];t.exports=function(t,e,n,i){var r,o,a,l,c=t.bMarks[e]+t.tShift[e],u=t.eMarks[e];if(t.sCount[e]-t.blkIndent>=4)return!1;if(!t.md.options.html)return!1;if(60!==t.src.charCodeAt(c))return!1;for(l=t.src.slice(c,u),r=0;r<s.length&&!s[r][0].test(l);r++);if(r===s.length)return!1;if(i)return s[r][2];if(o=e+1,!s[r][1].test(l))for(;o<n&&!(t.sCount[o]<t.blkIndent);o++)if(c=t.bMarks[o]+t.tShift[o],u=t.eMarks[o],l=t.src.slice(c,u),s[r][1].test(l)){0!==l.length&&o++;break}return t.line=o,(a=t.push("html_block","",0)).map=[e,o],a.content=t.getLines(e,o,t.blkIndent,!0),!0}},function(t,e,n){"use strict";t.exports=function(t,e,n){var i,r,s,o,a,l,c,u,h,d,p=e+1,f=t.md.block.ruler.getRules("paragraph");if(t.sCount[e]-t.blkIndent>=4)return!1;for(d=t.parentType,t.parentType="paragraph";p<n&&!t.isEmpty(p);p++)if(!(t.sCount[p]-t.blkIndent>3)){if(t.sCount[p]>=t.blkIndent&&((l=t.bMarks[p]+t.tShift[p])<(c=t.eMarks[p])&&(45===(h=t.src.charCodeAt(l))||61===h)&&(l=t.skipChars(l,h),(l=t.skipSpaces(l))>=c))){u=61===h?1:2;break}if(!(t.sCount[p]<0)){for(r=!1,s=0,o=f.length;s<o;s++)if(f[s](t,p,n,!0)){r=!0;break}if(r)break}}return!!u&&(i=t.getLines(e,p,t.blkIndent,!1).trim(),t.line=p+1,(a=t.push("heading_open","h"+String(u),1)).markup=String.fromCharCode(h),a.map=[e,t.line],(a=t.push("inline","",0)).content=i,a.map=[e,t.line-1],a.children=[],(a=t.push("heading_close","h"+String(u),-1)).markup=String.fromCharCode(h),t.parentType=d,!0)}},function(t,e,n){"use strict";function i(t,e){var n,i,r,o;return i=t.bMarks[e]+t.tShift[e],r=t.eMarks[e],42!==(n=t.src.charCodeAt(i++))&&45!==n&&43!==n?-1:i<r&&(o=t.src.charCodeAt(i),!s(o))?-1:i}function r(t,e){var n,i=t.bMarks[e]+t.tShift[e],r=i,o=t.eMarks[e];if(r+1>=o)return-1;if((n=t.src.charCodeAt(r++))<48||n>57)return-1;for(;;){if(r>=o)return-1;if(!((n=t.src.charCodeAt(r++))>=48&&n<=57)){if(41===n||46===n)break;return-1}if(r-i>=10)return-1}return r<o&&(n=t.src.charCodeAt(r),!s(n))?-1:r}var s=n(0).isSpace;t.exports=function(t,e,n,s){var o,a,l,c,u,h,d,p,f,m,v,g,_,b,y,x,k,w,C,S,T,V,$,j,O,A,I,D,E=!1,P=!0;if(t.sCount[e]-t.blkIndent>=4)return!1;if(s&&"paragraph"===t.parentType&&t.tShift[e]>=t.blkIndent&&(E=!0),($=r(t,e))>=0){if(d=!0,O=t.bMarks[e]+t.tShift[e],_=Number(t.src.substr(O,$-O-1)),E&&1!==_)return!1}else{if(!(($=i(t,e))>=0))return!1;d=!1}if(E&&t.skipSpaces($)>=t.eMarks[e])return!1;if(g=t.src.charCodeAt($-1),s)return!0;for(v=t.tokens.length,d?(D=t.push("ordered_list_open","ol",1),1!==_&&(D.attrs=[["start",_]])):D=t.push("bullet_list_open","ul",1),D.map=m=[e,0],D.markup=String.fromCharCode(g),y=e,j=!1,I=t.md.block.ruler.getRules("list"),C=t.parentType,t.parentType="list";y<n;){for(V=$,b=t.eMarks[y],h=x=t.sCount[y]+$-(t.bMarks[e]+t.tShift[e]);V<b;){if(9===(o=t.src.charCodeAt(V)))x+=4-(x+t.bsCount[y])%4;else{if(32!==o)break;x++}V++}if((u=(a=V)>=b?1:x-h)>4&&(u=1),c=h+u,(D=t.push("list_item_open","li",1)).markup=String.fromCharCode(g),D.map=p=[e,0],k=t.blkIndent,T=t.tight,S=t.tShift[e],w=t.sCount[e],t.blkIndent=c,t.tight=!0,t.tShift[e]=a-t.bMarks[e],t.sCount[e]=x,a>=b&&t.isEmpty(e+1)?t.line=Math.min(t.line+2,n):t.md.block.tokenize(t,e,n,!0),t.tight&&!j||(P=!1),j=t.line-e>1&&t.isEmpty(t.line-1),t.blkIndent=k,t.tShift[e]=S,t.sCount[e]=w,t.tight=T,(D=t.push("list_item_close","li",-1)).markup=String.fromCharCode(g),y=e=t.line,p[1]=y,a=t.bMarks[e],y>=n)break;if(t.sCount[y]<t.blkIndent)break;for(A=!1,l=0,f=I.length;l<f;l++)if(I[l](t,y,n,!0)){A=!0;break}if(A)break;if(d){if(($=r(t,y))<0)break}else if(($=i(t,y))<0)break;if(g!==t.src.charCodeAt($-1))break}return(D=d?t.push("ordered_list_close","ol",-1):t.push("bullet_list_close","ul",-1)).markup=String.fromCharCode(g),m[1]=y,t.line=y,t.parentType=C,P&&function(t,e){var n,i,r=t.level+2;for(n=e+2,i=t.tokens.length-2;n<i;n++)t.tokens[n].level===r&&"paragraph_open"===t.tokens[n].type&&(t.tokens[n+2].hidden=!0,t.tokens[n].hidden=!0,n+=2)}(t,v),!0}},function(t,e,n){"use strict";t.exports=function(t,e){var n,i,r,s,o,a,l=e+1,c=t.md.block.ruler.getRules("paragraph"),u=t.lineMax;for(a=t.parentType,t.parentType="paragraph";l<u&&!t.isEmpty(l);l++)if(!(t.sCount[l]-t.blkIndent>3||t.sCount[l]<0)){for(i=!1,r=0,s=c.length;r<s;r++)if(c[r](t,l,u,!0)){i=!0;break}if(i)break}return n=t.getLines(e,l,t.blkIndent,!1).trim(),t.line=l,(o=t.push("paragraph_open","p",1)).map=[e,t.line],(o=t.push("inline","",0)).content=n,o.map=[e,t.line],o.children=[],o=t.push("paragraph_close","p",-1),t.parentType=a,!0}},function(t,e,n){"use strict";var i=n(0).normalizeReference,r=n(0).isSpace;t.exports=function(t,e,n,s){var o,a,l,c,u,h,d,p,f,m,v,g,_,b,y,x,k=0,w=t.bMarks[e]+t.tShift[e],C=t.eMarks[e],S=e+1;if(t.sCount[e]-t.blkIndent>=4)return!1;if(91!==t.src.charCodeAt(w))return!1;for(;++w<C;)if(93===t.src.charCodeAt(w)&&92!==t.src.charCodeAt(w-1)){if(w+1===C)return!1;if(58!==t.src.charCodeAt(w+1))return!1;break}for(c=t.lineMax,y=t.md.block.ruler.getRules("reference"),m=t.parentType,t.parentType="reference";S<c&&!t.isEmpty(S);S++)if(!(t.sCount[S]-t.blkIndent>3||t.sCount[S]<0)){for(b=!1,h=0,d=y.length;h<d;h++)if(y[h](t,S,c,!0)){b=!0;break}if(b)break}for(C=(_=t.getLines(e,S,t.blkIndent,!1).trim()).length,w=1;w<C;w++){if(91===(o=_.charCodeAt(w)))return!1;if(93===o){f=w;break}10===o?k++:92===o&&++w<C&&10===_.charCodeAt(w)&&k++}if(f<0||58!==_.charCodeAt(f+1))return!1;for(w=f+2;w<C;w++)if(10===(o=_.charCodeAt(w)))k++;else if(!r(o))break;if(!(v=t.md.helpers.parseLinkDestination(_,w,C)).ok)return!1;if(u=t.md.normalizeLink(v.str),!t.md.validateLink(u))return!1;for(a=w=v.pos,l=k+=v.lines,g=w;w<C;w++)if(10===(o=_.charCodeAt(w)))k++;else if(!r(o))break;for(v=t.md.helpers.parseLinkTitle(_,w,C),w<C&&g!==w&&v.ok?(x=v.str,w=v.pos,k+=v.lines):(x="",w=a,k=l);w<C&&(o=_.charCodeAt(w),r(o));)w++;if(w<C&&10!==_.charCodeAt(w)&&x)for(x="",w=a,k=l;w<C&&(o=_.charCodeAt(w),r(o));)w++;return!(w<C&&10!==_.charCodeAt(w)||!(p=i(_.slice(1,f)))||!s&&(void 0===t.env.references&&(t.env.references={}),void 0===t.env.references[p]&&(t.env.references[p]={title:x,href:u}),t.parentType=m,t.line=e+k+1,0))}},function(t,e,n){"use strict";function i(t,e,n,i){var r,o,a,l,c,u,h,d;for(this.src=t,this.md=e,this.env=n,this.tokens=i,this.bMarks=[],this.eMarks=[],this.tShift=[],this.sCount=[],this.bsCount=[],this.blkIndent=0,this.line=0,this.lineMax=0,this.tight=!1,this.ddIndent=-1,this.parentType="root",this.level=0,this.result="",d=!1,a=l=u=h=0,c=(o=this.src).length;l<c;l++){if(r=o.charCodeAt(l),!d){if(s(r)){u++,9===r?h+=4-h%4:h++;continue}d=!0}10!==r&&l!==c-1||(10!==r&&l++,this.bMarks.push(a),this.eMarks.push(l),this.tShift.push(u),this.sCount.push(h),this.bsCount.push(0),d=!1,u=0,h=0,a=l+1)}this.bMarks.push(o.length),this.eMarks.push(o.length),this.tShift.push(0),this.sCount.push(0),this.bsCount.push(0),this.lineMax=this.bMarks.length-1}var r=n(32),s=n(0).isSpace;i.prototype.push=function(t,e,n){var i=new r(t,e,n);return i.block=!0,n<0&&this.level--,i.level=this.level,n>0&&this.level++,this.tokens.push(i),i},i.prototype.isEmpty=function(t){return this.bMarks[t]+this.tShift[t]>=this.eMarks[t]},i.prototype.skipEmptyLines=function(t){for(var e=this.lineMax;t<e&&!(this.bMarks[t]+this.tShift[t]<this.eMarks[t]);t++);return t},i.prototype.skipSpaces=function(t){for(var e,n=this.src.length;t<n&&(e=this.src.charCodeAt(t),s(e));t++);return t},i.prototype.skipSpacesBack=function(t,e){if(t<=e)return t;for(;t>e;)if(!s(this.src.charCodeAt(--t)))return t+1;return t},i.prototype.skipChars=function(t,e){for(var n=this.src.length;t<n&&this.src.charCodeAt(t)===e;t++);return t},i.prototype.skipCharsBack=function(t,e,n){if(t<=n)return t;for(;t>n;)if(e!==this.src.charCodeAt(--t))return t+1;return t},i.prototype.getLines=function(t,e,n,i){var r,o,a,l,c,u,h,d=t;if(t>=e)return"";for(u=new Array(e-t),r=0;d<e;d++,r++){for(o=0,h=l=this.bMarks[d],c=d+1<e||i?this.eMarks[d]+1:this.eMarks[d];l<c&&o<n;){if(a=this.src.charCodeAt(l),s(a))9===a?o+=4-(o+this.bsCount[d])%4:o++;else{if(!(l-h<this.tShift[d]))break;o++}l++}u[r]=o>n?new Array(o-n+1).join(" ")+this.src.slice(l,c):this.src.slice(l,c)}return u.join("")},i.prototype.Token=r,t.exports=i},function(t,e,n){"use strict";function i(t,e){var n=t.bMarks[e]+t.blkIndent,i=t.eMarks[e];return t.src.substr(n,i-n)}function r(t){var e,n=[],i=0,r=t.length,s=0,o=0,a=!1,l=0;for(e=t.charCodeAt(i);i<r;)96===e?a?(a=!1,l=i):s%2==0&&(a=!0,l=i):124!==e||s%2!=0||a||(n.push(t.substring(o,i)),o=i+1),92===e?s++:s=0,++i===r&&a&&(a=!1,i=l+1),e=t.charCodeAt(i);return n.push(t.substring(o)),n}var s=n(0).isSpace;t.exports=function(t,e,n,o){var a,l,c,u,h,d,p,f,m,v,g,_;if(e+2>n)return!1;if(h=e+1,t.sCount[h]<t.blkIndent)return!1;if(t.sCount[h]-t.blkIndent>=4)return!1;if((c=t.bMarks[h]+t.tShift[h])>=t.eMarks[h])return!1;if(124!==(a=t.src.charCodeAt(c++))&&45!==a&&58!==a)return!1;for(;c<t.eMarks[h];){if(124!==(a=t.src.charCodeAt(c))&&45!==a&&58!==a&&!s(a))return!1;c++}for(d=(l=i(t,e+1)).split("|"),m=[],u=0;u<d.length;u++){if(!(v=d[u].trim())){if(0===u||u===d.length-1)continue;return!1}if(!/^:?-+:?$/.test(v))return!1;58===v.charCodeAt(v.length-1)?m.push(58===v.charCodeAt(0)?"center":"right"):58===v.charCodeAt(0)?m.push("left"):m.push("")}if(-1===(l=i(t,e).trim()).indexOf("|"))return!1;if(t.sCount[e]-t.blkIndent>=4)return!1;if((p=(d=r(l.replace(/^\||\|$/g,""))).length)>m.length)return!1;if(o)return!0;for((f=t.push("table_open","table",1)).map=g=[e,0],(f=t.push("thead_open","thead",1)).map=[e,e+1],(f=t.push("tr_open","tr",1)).map=[e,e+1],u=0;u<d.length;u++)(f=t.push("th_open","th",1)).map=[e,e+1],m[u]&&(f.attrs=[["style","text-align:"+m[u]]]),(f=t.push("inline","",0)).content=d[u].trim(),f.map=[e,e+1],f.children=[],f=t.push("th_close","th",-1);for(f=t.push("tr_close","tr",-1),f=t.push("thead_close","thead",-1),(f=t.push("tbody_open","tbody",1)).map=_=[e+2,0],h=e+2;h<n&&!(t.sCount[h]<t.blkIndent)&&-1!==(l=i(t,h).trim()).indexOf("|")&&!(t.sCount[h]-t.blkIndent>=4);h++){for(d=r(l.replace(/^\||\|$/g,"")),f=t.push("tr_open","tr",1),u=0;u<p;u++)f=t.push("td_open","td",1),m[u]&&(f.attrs=[["style","text-align:"+m[u]]]),(f=t.push("inline","",0)).content=d[u]?d[u].trim():"",f.children=[],f=t.push("td_close","td",-1);f=t.push("tr_close","tr",-1)}return f=t.push("tbody_close","tbody",-1),f=t.push("table_close","table",-1),g[1]=_[1]=h,t.line=h,!0}},function(t,e,n){"use strict";t.exports=function(t){var e;t.inlineMode?((e=new t.Token("inline","",0)).content=t.src,e.map=[0,1],e.children=[],t.tokens.push(e)):t.md.block.parse(t.src,t.md,t.env,t.tokens)}},function(t,e,n){"use strict";t.exports=function(t){var e,n,i,r=t.tokens;for(n=0,i=r.length;n<i;n++)"inline"===(e=r[n]).type&&t.md.inline.parse(e.content,t.md,t.env,e.children)}},function(t,e,n){"use strict";function i(t){return/^<a[>\s]/i.test(t)}function r(t){return/^<\/a\s*>/i.test(t)}var s=n(0).arrayReplaceAt;t.exports=function(t){var e,n,o,a,l,c,u,h,d,p,f,m,v,g,_,b,y,x=t.tokens;if(t.md.options.linkify)for(n=0,o=x.length;n<o;n++)if("inline"===x[n].type&&t.md.linkify.pretest(x[n].content))for(v=0,e=(a=x[n].children).length-1;e>=0;e--)if("link_close"!==(c=a[e]).type){if("html_inline"===c.type&&(i(c.content)&&v>0&&v--,r(c.content)&&v++),!(v>0)&&"text"===c.type&&t.md.linkify.test(c.content)){for(d=c.content,y=t.md.linkify.match(d),u=[],m=c.level,f=0,h=0;h<y.length;h++)g=y[h].url,_=t.md.normalizeLink(g),t.md.validateLink(_)&&(b=y[h].text,b=y[h].schema?"mailto:"!==y[h].schema||/^mailto:/i.test(b)?t.md.normalizeLinkText(b):t.md.normalizeLinkText("mailto:"+b).replace(/^mailto:/,""):t.md.normalizeLinkText("http://"+b).replace(/^http:\/\//,""),(p=y[h].index)>f&&((l=new t.Token("text","",0)).content=d.slice(f,p),l.level=m,u.push(l)),(l=new t.Token("link_open","a",1)).attrs=[["href",_]],l.level=m++,l.markup="linkify",l.info="auto",u.push(l),(l=new t.Token("text","",0)).content=b,l.level=m,u.push(l),(l=new t.Token("link_close","a",-1)).level=--m,l.markup="linkify",l.info="auto",u.push(l),f=y[h].lastIndex);f<d.length&&((l=new t.Token("text","",0)).content=d.slice(f),l.level=m,u.push(l)),x[n].children=a=s(a,e,u)}}else for(e--;a[e].level!==c.level&&"link_open"!==a[e].type;)e--}},function(t,e,n){"use strict";var i=/\r[\n\u0085]?|[\u2424\u2028\u0085]/g,r=/\u0000/g;t.exports=function(t){var e;e=(e=t.src.replace(i,"\n")).replace(r,"�"),t.src=e}},function(t,e,n){"use strict";function i(t,e){return c[e.toLowerCase()]}function r(t){var e,n,r=0;for(e=t.length-1;e>=0;e--)"text"!==(n=t[e]).type||r||(n.content=n.content.replace(l,i)),"link_open"===n.type&&"auto"===n.info&&r--,"link_close"===n.type&&"auto"===n.info&&r++}function s(t){var e,n,i=0;for(e=t.length-1;e>=0;e--)"text"!==(n=t[e]).type||i||o.test(n.content)&&(n.content=n.content.replace(/\+-/g,"±").replace(/\.{2,}/g,"…").replace(/([?!])…/g,"$1..").replace(/([?!]){4,}/g,"$1$1$1").replace(/,{2,}/g,",").replace(/(^|[^-])---([^-]|$)/gm,"$1—$2").replace(/(^|\s)--(\s|$)/gm,"$1–$2").replace(/(^|[^-\s])--([^-\s]|$)/gm,"$1–$2")),"link_open"===n.type&&"auto"===n.info&&i--,"link_close"===n.type&&"auto"===n.info&&i++}var o=/\+-|\.\.|\?\?\?\?|!!!!|,,|--/,a=/\((c|tm|r|p)\)/i,l=/\((c|tm|r|p)\)/gi,c={c:"©",r:"®",p:"§",tm:"™"};t.exports=function(t){var e;if(t.md.options.typographer)for(e=t.tokens.length-1;e>=0;e--)"inline"===t.tokens[e].type&&(a.test(t.tokens[e].content)&&r(t.tokens[e].children),o.test(t.tokens[e].content)&&s(t.tokens[e].children))}},function(t,e,n){"use strict";function i(t,e,n){return t.substr(0,e)+n+t.substr(e+1)}function r(t,e){var n,r,l,h,d,p,f,m,v,g,_,b,y,x,k,w,C,S,T,V,$;for(T=[],n=0;n<t.length;n++){for(r=t[n],f=t[n].level,C=T.length-1;C>=0&&!(T[C].level<=f);C--);if(T.length=C+1,"text"===r.type){d=0,p=(l=r.content).length;t:for(;d<p&&(c.lastIndex=d,h=c.exec(l));){if(k=w=!0,d=h.index+1,S="'"===h[0],v=32,h.index-1>=0)v=l.charCodeAt(h.index-1);else for(C=n-1;C>=0&&"softbreak"!==t[C].type&&"hardbreak"!==t[C].type;C--)if("text"===t[C].type){v=t[C].content.charCodeAt(t[C].content.length-1);break}if(g=32,d<p)g=l.charCodeAt(d);else for(C=n+1;C<t.length&&"softbreak"!==t[C].type&&"hardbreak"!==t[C].type;C++)if("text"===t[C].type){g=t[C].content.charCodeAt(0);break}if(_=a(v)||o(String.fromCharCode(v)),b=a(g)||o(String.fromCharCode(g)),y=s(v),(x=s(g))?k=!1:b&&(y||_||(k=!1)),y?w=!1:_&&(x||b||(w=!1)),34===g&&'"'===h[0]&&v>=48&&v<=57&&(w=k=!1),k&&w&&(k=!1,w=b),k||w){if(w)for(C=T.length-1;C>=0&&(m=T[C],!(T[C].level<f));C--)if(m.single===S&&T[C].level===f){m=T[C],S?(V=e.md.options.quotes[2],$=e.md.options.quotes[3]):(V=e.md.options.quotes[0],$=e.md.options.quotes[1]),r.content=i(r.content,h.index,$),t[m.token].content=i(t[m.token].content,m.pos,V),d+=$.length-1,m.token===n&&(d+=V.length-1),p=(l=r.content).length,T.length=C;continue t}k?T.push({token:n,pos:h.index,single:S,level:f}):w&&S&&(r.content=i(r.content,h.index,u))}else S&&(r.content=i(r.content,h.index,u))}}}}var s=n(0).isWhiteSpace,o=n(0).isPunctChar,a=n(0).isMdAsciiPunct,l=/['"]/,c=/['"]/g,u="’";t.exports=function(t){var e;if(t.md.options.typographer)for(e=t.tokens.length-1;e>=0;e--)"inline"===t.tokens[e].type&&l.test(t.tokens[e].content)&&r(t.tokens[e].children,t)}},function(t,e,n){"use strict";function i(t,e,n){this.src=t,this.env=n,this.tokens=[],this.inlineMode=!1,this.md=e}var r=n(32);i.prototype.Token=r,t.exports=i},function(t,e,n){"use strict";var i=/^<([a-zA-Z0-9.!#$%&'*+\/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*)>/,r=/^<([a-zA-Z][a-zA-Z0-9+.\-]{1,31}):([^<>\x00-\x20]*)>/;t.exports=function(t,e){var n,s,o,a,l,c,u=t.pos;return 60===t.src.charCodeAt(u)&&!((n=t.src.slice(u)).indexOf(">")<0||(r.test(n)?(s=n.match(r),a=s[0].slice(1,-1),l=t.md.normalizeLink(a),!t.md.validateLink(l)||(e||(c=t.push("link_open","a",1),c.attrs=[["href",l]],c.markup="autolink",c.info="auto",c=t.push("text","",0),c.content=t.md.normalizeLinkText(a),c=t.push("link_close","a",-1),c.markup="autolink",c.info="auto"),t.pos+=s[0].length,0)):!i.test(n)||(o=n.match(i),a=o[0].slice(1,-1),l=t.md.normalizeLink("mailto:"+a),!t.md.validateLink(l)||(e||(c=t.push("link_open","a",1),c.attrs=[["href",l]],c.markup="autolink",c.info="auto",c=t.push("text","",0),c.content=t.md.normalizeLinkText(a),c=t.push("link_close","a",-1),c.markup="autolink",c.info="auto"),t.pos+=o[0].length,0))))}},function(t,e,n){"use strict";t.exports=function(t,e){var n,i,r,s,o,a,l=t.pos;if(96!==t.src.charCodeAt(l))return!1;for(n=l,l++,i=t.posMax;l<i&&96===t.src.charCodeAt(l);)l++;for(r=t.src.slice(n,l),s=o=l;-1!==(s=t.src.indexOf("`",o));){for(o=s+1;o<i&&96===t.src.charCodeAt(o);)o++;if(o-s===r.length)return e||((a=t.push("code_inline","code",0)).markup=r,a.content=t.src.slice(l,s).replace(/[ \n]+/g," ").trim()),t.pos=o,!0}return e||(t.pending+=r),t.pos+=r.length,!0}},function(t,e,n){"use strict";t.exports=function(t){var e,n,i,r,s=t.delimiters,o=t.delimiters.length;for(e=0;e<o;e++)if((i=s[e]).close)for(n=e-i.jump-1;n>=0;){if((r=s[n]).open&&r.marker===i.marker&&r.end<0&&r.level===i.level)if(!((r.close||i.open)&&void 0!==r.length&&void 0!==i.length&&(r.length+i.length)%3==0)){i.jump=e-n,i.open=!1,r.end=e,r.jump=0;break}n-=r.jump+1}}},function(t,e,n){"use strict";var i=n(48),r=n(0).has,s=n(0).isValidEntityCode,o=n(0).fromCodePoint,a=/^&#((?:x[a-f0-9]{1,8}|[0-9]{1,8}));/i,l=/^&([a-z][a-z0-9]{1,31});/i;t.exports=function(t,e){var n,c,u=t.pos,h=t.posMax;if(38!==t.src.charCodeAt(u))return!1;if(u+1<h)if(35===t.src.charCodeAt(u+1)){if(c=t.src.slice(u).match(a))return e||(n="x"===c[1][0].toLowerCase()?parseInt(c[1].slice(1),16):parseInt(c[1],10),t.pending+=o(s(n)?n:65533)),t.pos+=c[0].length,!0}else if((c=t.src.slice(u).match(l))&&r(i,c[1]))return e||(t.pending+=i[c[1]]),t.pos+=c[0].length,!0;return e||(t.pending+="&"),t.pos++,!0}},function(t,e,n){"use strict";for(var i=n(0).isSpace,r=[],s=0;s<256;s++)r.push(0);"\\!\"#$%&'()*+,./:;<=>?@[]^_`{|}~-".split("").forEach(function(t){r[t.charCodeAt(0)]=1}),t.exports=function(t,e){var n,s=t.pos,o=t.posMax;if(92!==t.src.charCodeAt(s))return!1;if(++s<o){if((n=t.src.charCodeAt(s))<256&&0!==r[n])return e||(t.pending+=t.src[s]),t.pos+=2,!0;if(10===n){for(e||t.push("hardbreak","br",0),s++;s<o&&(n=t.src.charCodeAt(s),i(n));)s++;return t.pos=s,!0}}return e||(t.pending+="\\"),t.pos++,!0}},function(t,e,n){"use strict";var i=n(49).HTML_TAG_RE;t.exports=function(t,e){var n,r,s,o,a=t.pos;return!(!t.md.options.html||(s=t.posMax,60!==t.src.charCodeAt(a)||a+2>=s||33!==(n=t.src.charCodeAt(a+1))&&63!==n&&47!==n&&!function(t){var e=32|t;return e>=97&&e<=122}(n)||!(r=t.src.slice(a).match(i))||(e||(o=t.push("html_inline","",0),o.content=t.src.slice(a,a+r[0].length)),t.pos+=r[0].length,0)))}},function(t,e,n){"use strict";var i=n(0).normalizeReference,r=n(0).isSpace;t.exports=function(t,e){var n,s,o,a,l,c,u,h,d,p,f,m,v,g="",_=t.pos,b=t.posMax;if(33!==t.src.charCodeAt(t.pos))return!1;if(91!==t.src.charCodeAt(t.pos+1))return!1;if(c=t.pos+2,(l=t.md.helpers.parseLinkLabel(t,t.pos+1,!1))<0)return!1;if((u=l+1)<b&&40===t.src.charCodeAt(u)){for(u++;u<b&&(s=t.src.charCodeAt(u),r(s)||10===s);u++);if(u>=b)return!1;for(v=u,(d=t.md.helpers.parseLinkDestination(t.src,u,t.posMax)).ok&&(g=t.md.normalizeLink(d.str),t.md.validateLink(g)?u=d.pos:g=""),v=u;u<b&&(s=t.src.charCodeAt(u),r(s)||10===s);u++);if(d=t.md.helpers.parseLinkTitle(t.src,u,t.posMax),u<b&&v!==u&&d.ok)for(p=d.str,u=d.pos;u<b&&(s=t.src.charCodeAt(u),r(s)||10===s);u++);else p="";if(u>=b||41!==t.src.charCodeAt(u))return t.pos=_,!1;u++}else{if(void 0===t.env.references)return!1;if(u<b&&91===t.src.charCodeAt(u)?(v=u+1,(u=t.md.helpers.parseLinkLabel(t,u))>=0?a=t.src.slice(v,u++):u=l+1):u=l+1,a||(a=t.src.slice(c,l)),!(h=t.env.references[i(a)]))return t.pos=_,!1;g=h.href,p=h.title}return e||(o=t.src.slice(c,l),t.md.inline.parse(o,t.md,t.env,m=[]),(f=t.push("image","img",0)).attrs=n=[["src",g],["alt",""]],f.children=m,f.content=o,p&&n.push(["title",p])),t.pos=u,t.posMax=b,!0}},function(t,e,n){"use strict";var i=n(0).normalizeReference,r=n(0).isSpace;t.exports=function(t,e){var n,s,o,a,l,c,u,h,d,p="",f=t.pos,m=t.posMax,v=t.pos,g=!0;if(91!==t.src.charCodeAt(t.pos))return!1;if(l=t.pos+1,(a=t.md.helpers.parseLinkLabel(t,t.pos,!0))<0)return!1;if((c=a+1)<m&&40===t.src.charCodeAt(c)){for(g=!1,c++;c<m&&(s=t.src.charCodeAt(c),r(s)||10===s);c++);if(c>=m)return!1;for(v=c,(u=t.md.helpers.parseLinkDestination(t.src,c,t.posMax)).ok&&(p=t.md.normalizeLink(u.str),t.md.validateLink(p)?c=u.pos:p=""),v=c;c<m&&(s=t.src.charCodeAt(c),r(s)||10===s);c++);if(u=t.md.helpers.parseLinkTitle(t.src,c,t.posMax),c<m&&v!==c&&u.ok)for(d=u.str,c=u.pos;c<m&&(s=t.src.charCodeAt(c),r(s)||10===s);c++);else d="";(c>=m||41!==t.src.charCodeAt(c))&&(g=!0),c++}if(g){if(void 0===t.env.references)return!1;if(c<m&&91===t.src.charCodeAt(c)?(v=c+1,(c=t.md.helpers.parseLinkLabel(t,c))>=0?o=t.src.slice(v,c++):c=a+1):c=a+1,o||(o=t.src.slice(l,a)),!(h=t.env.references[i(o)]))return t.pos=f,!1;p=h.href,d=h.title}return e||(t.pos=l,t.posMax=a,t.push("link_open","a",1).attrs=n=[["href",p]],d&&n.push(["title",d]),t.md.inline.tokenize(t),t.push("link_close","a",-1)),t.pos=c,t.posMax=m,!0}},function(t,e,n){"use strict";var i=n(0).isSpace;t.exports=function(t,e){var n,r,s=t.pos;if(10!==t.src.charCodeAt(s))return!1;for(n=t.pending.length-1,r=t.posMax,e||(n>=0&&32===t.pending.charCodeAt(n)?n>=1&&32===t.pending.charCodeAt(n-1)?(t.pending=t.pending.replace(/ +$/,""),t.push("hardbreak","br",0)):(t.pending=t.pending.slice(0,-1),t.push("softbreak","br",0)):t.push("softbreak","br",0)),s++;s<r&&i(t.src.charCodeAt(s));)s++;return t.pos=s,!0}},function(t,e,n){"use strict";function i(t,e,n,i){this.src=t,this.env=n,this.md=e,this.tokens=i,this.pos=0,this.posMax=this.src.length,this.level=0,this.pending="",this.pendingLevel=0,this.cache={},this.delimiters=[]}var r=n(32),s=n(0).isWhiteSpace,o=n(0).isPunctChar,a=n(0).isMdAsciiPunct;i.prototype.pushPending=function(){var t=new r("text","",0);return t.content=this.pending,t.level=this.pendingLevel,this.tokens.push(t),this.pending="",t},i.prototype.push=function(t,e,n){this.pending&&this.pushPending();var i=new r(t,e,n);return n<0&&this.level--,i.level=this.level,n>0&&this.level++,this.pendingLevel=this.level,this.tokens.push(i),i},i.prototype.scanDelims=function(t,e){var n,i,r,l,c,u,h,d,p,f=t,m=!0,v=!0,g=this.posMax,_=this.src.charCodeAt(t);for(n=t>0?this.src.charCodeAt(t-1):32;f<g&&this.src.charCodeAt(f)===_;)f++;return r=f-t,i=f<g?this.src.charCodeAt(f):32,h=a(n)||o(String.fromCharCode(n)),p=a(i)||o(String.fromCharCode(i)),u=s(n),(d=s(i))?m=!1:p&&(u||h||(m=!1)),u?v=!1:h&&(d||p||(v=!1)),e?(l=m,c=v):(l=m&&(!v||h),c=v&&(!m||p)),{can_open:l,can_close:c,length:r}},i.prototype.Token=r,t.exports=i},function(t,e,n){"use strict";function i(t){switch(t){case 10:case 33:case 35:case 36:case 37:case 38:case 42:case 43:case 45:case 58:case 60:case 61:case 62:case 64:case 91:case 92:case 93:case 94:case 95:case 96:case 123:case 125:case 126:return!0;default:return!1}}t.exports=function(t,e){for(var n=t.pos;n<t.posMax&&!i(t.src.charCodeAt(n));)n++;return n!==t.pos&&(e||(t.pending+=t.src.slice(t.pos,n)),t.pos=n,!0)}},function(t,e,n){"use strict";t.exports=function(t){var e,n,i=0,r=t.tokens,s=t.tokens.length;for(e=n=0;e<s;e++)i+=r[e].nesting,r[e].level=i,"text"===r[e].type&&e+1<s&&"text"===r[e+1].type?r[e+1].content=r[e].content+r[e+1].content:(e!==n&&(r[n]=r[e]),n++);e!==n&&(r.length=n)}},function(t,e,n){"use strict";function i(t,e){var n;return"string"!=typeof e&&(e=i.defaultChars),n=function(t){var e,n,i=r[t];if(i)return i;for(i=r[t]=[],e=0;e<128;e++)n=String.fromCharCode(e),i.push(n);for(e=0;e<t.length;e++)i[n=t.charCodeAt(e)]="%"+("0"+n.toString(16).toUpperCase()).slice(-2);return i}(e),t.replace(/(%[a-f0-9]{2})+/gi,function(t){var e,i,r,s,o,a,l,c="";for(e=0,i=t.length;e<i;e+=3)(r=parseInt(t.slice(e+1,e+3),16))<128?c+=n[r]:192==(224&r)&&e+3<i&&128==(192&(s=parseInt(t.slice(e+4,e+6),16)))?(c+=(l=r<<6&1984|63&s)<128?"��":String.fromCharCode(l),e+=3):224==(240&r)&&e+6<i&&(s=parseInt(t.slice(e+4,e+6),16),o=parseInt(t.slice(e+7,e+9),16),128==(192&s)&&128==(192&o))?(c+=(l=r<<12&61440|s<<6&4032|63&o)<2048||l>=55296&&l<=57343?"���":String.fromCharCode(l),e+=6):240==(248&r)&&e+9<i&&(s=parseInt(t.slice(e+4,e+6),16),o=parseInt(t.slice(e+7,e+9),16),a=parseInt(t.slice(e+10,e+12),16),128==(192&s)&&128==(192&o)&&128==(192&a))?((l=r<<18&1835008|s<<12&258048|o<<6&4032|63&a)<65536||l>1114111?c+="����":(l-=65536,c+=String.fromCharCode(55296+(l>>10),56320+(1023&l))),e+=9):c+="�";return c})}var r={};i.defaultChars=";/?:@&=+$,#",i.componentChars="",t.exports=i},function(t,e,n){"use strict";function i(t){var e,n,i=s[t];if(i)return i;for(i=s[t]=[],e=0;e<128;e++)n=String.fromCharCode(e),/^[0-9a-z]$/i.test(n)?i.push(n):i.push("%"+("0"+e.toString(16).toUpperCase()).slice(-2));for(e=0;e<t.length;e++)i[t.charCodeAt(e)]=t[e];return i}function r(t,e,n){var s,o,a,l,c,u="";for("string"!=typeof e&&(n=e,e=r.defaultChars),void 0===n&&(n=!0),c=i(e),s=0,o=t.length;s<o;s++)if(a=t.charCodeAt(s),n&&37===a&&s+2<o&&/^[0-9a-f]{2}$/i.test(t.slice(s+1,s+3)))u+=t.slice(s,s+3),s+=2;else if(a<128)u+=c[a];else if(a>=55296&&a<=57343){if(a>=55296&&a<=56319&&s+1<o&&(l=t.charCodeAt(s+1))>=56320&&l<=57343){u+=encodeURIComponent(t[s]+t[s+1]),s++;continue}u+="%EF%BF%BD"}else u+=encodeURIComponent(t[s]);return u}var s={};r.defaultChars=";/?:@&=+$,-_.!~*'()#",r.componentChars="-_.!~*'()",t.exports=r},function(t,e,n){"use strict";t.exports=function(t){var e="";return e+=t.protocol||"",e+=t.slashes?"//":"",e+=t.auth?t.auth+"@":"",t.hostname&&-1!==t.hostname.indexOf(":")?e+="["+t.hostname+"]":e+=t.hostname||"",e+=t.port?":"+t.port:"",e+=t.pathname||"",(e+=t.search||"")+(t.hash||"")}},function(t,e,n){"use strict";function i(){this.protocol=null,this.slashes=null,this.auth=null,this.port=null,this.hostname=null,this.hash=null,this.search=null,this.pathname=null}var r=/^([a-z0-9.+-]+:)/i,s=/:[0-9]*$/,o=/^(\/\/?(?!\/)[^\?\s]*)(\?[^\s]*)?$/,a=["{","}","|","\\","^","`"].concat(["<",">",'"',"`"," ","\r","\n","\t"]),l=["'"].concat(a),c=["%","/","?",";","#"].concat(l),u=["/","?","#"],h=/^[+a-z0-9A-Z_-]{0,63}$/,d=/^([+a-z0-9A-Z_-]{0,63})(.*)$/,p={javascript:!0,"javascript:":!0},f={http:!0,https:!0,ftp:!0,gopher:!0,file:!0,"http:":!0,"https:":!0,"ftp:":!0,"gopher:":!0,"file:":!0};i.prototype.parse=function(t,e){var n,i,s,a,l,m=t;if(m=m.trim(),!e&&1===t.split("#").length){var v=o.exec(m);if(v)return this.pathname=v[1],v[2]&&(this.search=v[2]),this}var g=r.exec(m);if(g&&(s=(g=g[0]).toLowerCase(),this.protocol=g,m=m.substr(g.length)),(e||g||m.match(/^\/\/[^@\/]+@[^@\/]+/))&&(!(l="//"===m.substr(0,2))||g&&p[g]||(m=m.substr(2),this.slashes=!0)),!p[g]&&(l||g&&!f[g])){var _,b,y=-1;for(n=0;n<u.length;n++)-1!==(a=m.indexOf(u[n]))&&(-1===y||a<y)&&(y=a);for(-1!==(b=-1===y?m.lastIndexOf("@"):m.lastIndexOf("@",y))&&(_=m.slice(0,b),m=m.slice(b+1),this.auth=_),y=-1,n=0;n<c.length;n++)-1!==(a=m.indexOf(c[n]))&&(-1===y||a<y)&&(y=a);-1===y&&(y=m.length),":"===m[y-1]&&y--;var x=m.slice(0,y);m=m.slice(y),this.parseHost(x),this.hostname=this.hostname||"";var k="["===this.hostname[0]&&"]"===this.hostname[this.hostname.length-1];if(!k){var w=this.hostname.split(/\./);for(n=0,i=w.length;n<i;n++){var C=w[n];if(C&&!C.match(h)){for(var S="",T=0,V=C.length;T<V;T++)C.charCodeAt(T)>127?S+="x":S+=C[T];if(!S.match(h)){var $=w.slice(0,n),j=w.slice(n+1),O=C.match(d);O&&($.push(O[1]),j.unshift(O[2])),j.length&&(m=j.join(".")+m),this.hostname=$.join(".");break}}}}this.hostname.length>255&&(this.hostname=""),k&&(this.hostname=this.hostname.substr(1,this.hostname.length-2))}var A=m.indexOf("#");-1!==A&&(this.hash=m.substr(A),m=m.slice(0,A));var I=m.indexOf("?");return-1!==I&&(this.search=m.substr(I),m=m.slice(0,I)),m&&(this.pathname=m),f[s]&&this.hostname&&!this.pathname&&(this.pathname=""),this},i.prototype.parseHost=function(t){var e=s.exec(t);e&&(":"!==(e=e[0])&&(this.port=e.substr(1)),t=t.substr(0,t.length-e.length)),t&&(this.hostname=t)},t.exports=function(t,e){if(t&&t instanceof i)return t;var n=new i;return n.parse(t,e),n}},function(t,e,n){(function(t,i){var r;!function(i){function s(t){throw new RangeError($[t])}function o(t,e){for(var n=t.length,i=[];n--;)i[n]=e(t[n]);return i}function a(t,e){var n=t.split("@"),i="";return n.length>1&&(i=n[0]+"@",t=n[1]),i+o((t=t.replace(V,".")).split("."),e).join(".")}function l(t){for(var e,n,i=[],r=0,s=t.length;r<s;)(e=t.charCodeAt(r++))>=55296&&e<=56319&&r<s?56320==(64512&(n=t.charCodeAt(r++)))?i.push(((1023&e)<<10)+(1023&n)+65536):(i.push(e),r--):i.push(e);return i}function c(t){return o(t,function(t){var e="";return t>65535&&(e+=A((t-=65536)>>>10&1023|55296),t=56320|1023&t),e+A(t)}).join("")}function u(t){return t-48<10?t-22:t-65<26?t-65:t-97<26?t-97:g}function h(t,e){return t+22+75*(t<26)-((0!=e)<<5)}function d(t,e,n){var i=0;for(t=n?O(t/x):t>>1,t+=O(t/e);t>j*b>>1;i+=g)t=O(t/j);return O(i+(j+1)*t/(t+y))}function p(t){var e,n,i,r,o,a,l,h,p,f,m=[],y=t.length,x=0,S=w,T=k;for((n=t.lastIndexOf(C))<0&&(n=0),i=0;i<n;++i)t.charCodeAt(i)>=128&&s("not-basic"),m.push(t.charCodeAt(i));for(r=n>0?n+1:0;r<y;){for(o=x,a=1,l=g;r>=y&&s("invalid-input"),((h=u(t.charCodeAt(r++)))>=g||h>O((v-x)/a))&&s("overflow"),x+=h*a,!(h<(p=l<=T?_:l>=T+b?b:l-T));l+=g)a>O(v/(f=g-p))&&s("overflow"),a*=f;T=d(x-o,e=m.length+1,0==o),O(x/e)>v-S&&s("overflow"),S+=O(x/e),x%=e,m.splice(x++,0,S)}return c(m)}function f(t){var e,n,i,r,o,a,c,u,p,f,m,y,x,S,T,V=[];for(y=(t=l(t)).length,e=w,n=0,o=k,a=0;a<y;++a)(m=t[a])<128&&V.push(A(m));for(i=r=V.length,r&&V.push(C);i<y;){for(c=v,a=0;a<y;++a)(m=t[a])>=e&&m<c&&(c=m);for(c-e>O((v-n)/(x=i+1))&&s("overflow"),n+=(c-e)*x,e=c,a=0;a<y;++a)if((m=t[a])<e&&++n>v&&s("overflow"),m==e){for(u=n,p=g;!(u<(f=p<=o?_:p>=o+b?b:p-o));p+=g)T=u-f,S=g-f,V.push(A(h(f+T%S,0))),u=O(T/S);V.push(A(h(u,0))),o=d(n,x,i==r),n=0,++i}++n,++e}return V.join("")}"object"==typeof e&&e&&e.nodeType,"object"==typeof t&&t&&t.nodeType;var m,v=2147483647,g=36,_=1,b=26,y=38,x=700,k=72,w=128,C="-",S=/^xn--/,T=/[^\x20-\x7E]/,V=/[\x2E\u3002\uFF0E\uFF61]/g,$={overflow:"Overflow: input needs wider integers to process","not-basic":"Illegal input >= 0x80 (not a basic code point)","invalid-input":"Invalid input"},j=g-_,O=Math.floor,A=String.fromCharCode;m={version:"1.4.1",ucs2:{decode:l,encode:c},decode:p,encode:f,toASCII:function(t){return a(t,function(t){return T.test(t)?"xn--"+f(t):t})},toUnicode:function(t){return a(t,function(t){return S.test(t)?p(t.slice(4).toLowerCase()):t})}},void 0!==(r=function(){return m}.call(e,n,e,t))&&(t.exports=r)}()}).call(e,n(197)(t),n(196))},function(t,e){t.exports='@[toc](Catalog)\n\nMarkdown Guide\n===\n> Detailed: [http://commonmark.org/help/](http://commonmark.org/help/)\n\n## **Bold**\n```\n**bold**\n__bold__\n```\n## *Italic*\n```\n*italic*\n_italic_\n```\n## Header\n```\n# h1 #\nh1\n====\n## h2 ##\nh2\n----\n### h3 ###\n#### h4 ####\n##### h5 #####\n###### h6 ######\n```\n## Dividing line\n```\n***\n---\n```\n****\n## ^Super^script & ~Sub~script\n```\nsuper x^2^\nsub H~2~0\n```\n## ++Underline++ & ~~Strikethrough~~\n```\n++underline++\n~~strikethrough~~\n```\n## ==Mark==\n```\n==mark==\n```\n## Quote\n\n```\n> quote 1\n>> quote 2\n>>> quote 3\n...\n```\n\n## List\n```\nol\n1.\n2.\n3.\n...\n\nul\n-\n-\n...\n```\n\n## Todo List\n\n- [x] task 1\n- [ ] task 2\n\n```\n- [x] task 1\n- [ ] task 2\n```\n\n## Link\n```\nText Link\n[Text](www.baidu.com)\n\nImage Link\n![Text](http://www.image.com)\n```\n## Code\n\\``` type\n\ncode block\n\n\\```\n\n\\` code \\`\n\n```c++\nint main()\n{\n printf("hello world!");\n}\n```\n`code`\n\n## Table\n```\n| th1 | th2 | th3 |\n| :-- | :--: | ----: |\n| left | center | right |\n```\n| th1 | th2 | th3 |\n| :-- | :--: | ----: |\n| left | center | right |\n| ---------------------- | ------------- | ----------------- |\n## Footnote\n```\nhello[^hello]\n```\n\nLook at the bottom[^hello]\n\n[^hello]: footnote\n\n## Emojis\nDetailed: [https://www.webpagefx.com/tools/emoji-cheat-sheet/](https://www.webpagefx.com/tools/emoji-cheat-sheet/)\n```\n:laughing:\n:blush:\n:smiley:\n:)\n...\n```\n:laughing::blush::smiley::)\n\n## $\\KaTeX$ Mathematics\n\nWe can render formulas for example:$x_i + y_i = z_i$ and $\\sum_{i=1}^n a_i=0$\nWe can also single-line rendering\n$$\\sum_{i=1}^n a_i=0$$\nDetailed: [katex](http://www.intmath.com/cg5/katex-mathjax-comparison.php)和[katex function](https://github.com/Khan/KaTeX/wiki/Function-Support-in-KaTeX)以及[latex](https://math.meta.stackexchange.com/questions/5020/mathjax-basic-tutorial-and-quick-reference)\n\n## Layout\n\n::: hljs-left\n`::: hljs-left`\n`left`\n`:::`\n:::\n\n::: hljs-center\n`::: hljs-center`\n`center`\n`:::`\n:::\n\n::: hljs-right\n`::: hljs-right`\n`right`\n`:::`\n:::\n\n## deflist\n\nTerm 1\n\n: Definition 1\n\nTerm 2 with *inline markup*\n\n: Definition 2\n\n { some code, part of Definition 2 }\n\n Third paragraph of definition 2.\n\n```\nTerm 1\n\n: Definition 1\n\nTerm 2 with *inline markup*\n\n: Definition 2\n\n { some code, part of Definition 2 }\n\n Third paragraph of definition 2.\n\n```\n\n## abbr\n*[HTML]: Hyper Text Markup Language\n*[W3C]: World Wide Web Consortium\nThe HTML specification\nis maintained by the W3C.\n```\n*[HTML]: Hyper Text Markup Language\n*[W3C]: World Wide Web Consortium\nThe HTML specification\nis maintained by the W3C.\n```\n'},function(t,e){t.exports='@[toc](Catalogue)\n\nGuide Markdown\n==============\n> Détail : [http://commonmark.org/help/](http://commonmark.org/help/)\n\n## **Bold**\n```\n**bold**\n__bold__\n```\n## *Italic*\n```\n*italic*\n_italic_\n```\n## Header\n```\n# h1 #\nh1\n====\n## h2 ##\nh2\n----\n### h3 ###\n#### h4 ####\n##### h5 #####\n###### h6 ######\n```\n## Dividing line\n```\n***\n---\n```\n****\n## ^Super^script & ~Sub~script\n```\nsuper x^2^\nsub H~2~0\n```\n## ++Underline++ & ~~Strikethrough~~\n```\n++underline++\n~~strikethrough~~\n```\n## ==Mark==\n```\n==mark==\n```\n## Quote\n\n```\n> quote 1\n>> quote 2\n>>> quote 3\n...\n```\n\n## List\n```\nol\n1.\n2.\n3.\n...\n\nul\n-\n-\n...\n```\n## Link\n\n## Todo List\n\n- [x] Équipe 1\n- [ ] Équipe 2\n\n```\n- [x] Équipe 1\n- [ ] Équipe 2\n```\n\n```\nText Link\n[Text](www.baidu.com)\n\nImage Link\n![Text](http://www.image.com)\n```\n## Code\n\\``` type\n\ncode block\n\n\\```\n\n\\` code \\`\n\n```c++\nint main()\n{\n printf("hello world!");\n}\n```\n`code`\n\n## Table\n```\n| th1 | th2 | th3 |\n| :-- | :--: | ----: |\n| left | center | right |\n```\n| th1 | th2 | th3 |\n| :-- | :--: | ----: |\n| left | center | right |\n| ---------------------- | ------------- | ----------------- |\n## Footnote\n```\nhello[^hello]\n```\n\nLook at the bottom[^hello]\n\n[^hello]: footnote\n\n## Emojis\nDetailed: [https://www.webpagefx.com/tools/emoji-cheat-sheet/](https://www.webpagefx.com/tools/emoji-cheat-sheet/)\n```\n:laughing:\n:blush:\n:smiley:\n:)\n...\n```\n:laughing::blush::smiley::)\n\n## $\\KaTeX$ Mathematics\n\nWe can render formulas for example:$x_i + y_i = z_i$ and $\\sum_{i=1}^n a_i=0$\nWe can also single-line rendering\n$$\\sum_{i=1}^n a_i=0$$\nDetailed: [katex](http://www.intmath.com/cg5/katex-mathjax-comparison.php)和[katex function](https://github.com/Khan/KaTeX/wiki/Function-Support-in-KaTeX)以及[latex](https://math.meta.stackexchange.com/questions/5020/mathjax-basic-tutorial-and-quick-reference)\n\n## Layout\n\n::: hljs-left\n`::: hljs-left`\n`left`\n`:::`\n:::\n\n::: hljs-center\n`::: hljs-center`\n`center`\n`:::`\n:::\n\n::: hljs-right\n`::: hljs-right`\n`right`\n`:::`\n:::\n\n## deflist\n\nTerm 1\n\n: Definition 1\n\nTerm 2 with *inline markup*\n\n: Definition 2\n\n { some code, part of Definition 2 }\n\n Third paragraph of definition 2.\n\n```\nTerm 1\n\n: Definition 1\n\nTerm 2 with *inline markup*\n\n: Definition 2\n\n { some code, part of Definition 2 }\n\n Third paragraph of definition 2.\n\n```\n\n## abbr\n*[HTML]: Hyper Text Markup Language\n*[W3C]: World Wide Web Consortium\nThe HTML specification\nis maintained by the W3C.\n```\n*[HTML]: Hyper Text Markup Language\n*[W3C]: World Wide Web Consortium\nThe HTML specification\nis maintained by the W3C.\n```\n'},function(t,e){t.exports='@[toc](Directory)\n\nGuia Markdown\n===\n> Detalhes: [http://commonmark.org/help/](http://commonmark.org/help/)\n\n## **Negrito**\n```\n**negrito**\n__negrito__\n```\n## *Itálico*\n```\n*itálico*\n_itálico_\n```\n## Cabeçalho\n```\n# h1 #\nh1\n====\n## h2 ##\nh2\n----\n### h3 ###\n#### h4 ####\n##### h5 #####\n###### h6 ######\n```\n## Linha Divisora\n```\n***\n---\n```\n****\n## ^Sobre^scrito & ~Sub~scrito\n```\nsobre x^2^\nsub H~2~0\n```\n## ++Sublinhar++ & ~~Tachar~~\n```\n++sublinhar++\n~~tachar~~\n```\n## ==Marcador==\n```\n==marcador==\n```\n## Citação\n\n```\n> citação 1\n>> citação 2\n>>> citação 3\n...\n```\n\n## Listas\n```\nlista Numerada\n1.\n2.\n3.\n...\n\nlista com marcadores\n-\n-\n...\n```\n\n## Todo Listas\n\n- [x] Tarefa 1\n- [ ] Tarefa 2\n\n```\n- [x] Tarefa 1\n- [ ] Tarefa 2\n```\n\n## Link\n```\nLink Texto\n[Text](www.baidu.com)\n\nLink Imagem\n![Text](http://www.image.com)\n```\n## Código\n\\``` tipo\n\nbloco de código\n\n\\```\n\n\\` código \\`\n\n```c++\nint main()\n{\n printf("hello world!");\n}\n```\n`code`\n\n## Tabela\n```\n| th1 | th2 | th3 |\n| :-- | :--: | ----: |\n| esquerda | centro | direita |\n```\n| th1 | th2 | th3 |\n| :-- | :--: | ----: |\n| esquerda | centro | direita |\n| ---------------------- | ------------- | ----------------- |\n## Rodapé\n```\nolá[^olá]\n```\n\nOlhe para baixo[^olá]\n\n[^olá]: rodapé\n\n## Emojis\nDetalhes: [https://www.webpagefx.com/tools/emoji-cheat-sheet/](https://www.webpagefx.com/tools/emoji-cheat-sheet/)\n```\n:laughing:\n:blush:\n:smiley:\n:)\n...\n```\n:laughing::blush::smiley::)\n\n## $\\KaTeX$ Mathematics\n\nPodemos mostrar fórmulas por exemplo:$x_i + y_i = z_i$ and $\\sum_{i=1}^n a_i=0$\nPodemos também mostrar em uma única linha:\n$$\\sum_{i=1}^n a_i=0$$\nDetalhes: [katex](http://www.intmath.com/cg5/katex-mathjax-comparison.php)和[katex function](https://github.com/Khan/KaTeX/wiki/Function-Support-in-KaTeX)以及[latex](https://math.meta.stackexchange.com/questions/5020/mathjax-basic-tutorial-and-quick-reference)\n\n## Layout\n\n::: hljs-left\n`::: hljs-left`\n`esquerda`\n`:::`\n:::\n\n::: hljs-center\n`::: hljs-center`\n`centro`\n`:::`\n:::\n\n::: hljs-right\n`::: hljs-right`\n`direita`\n`:::`\n:::\n\n## Definições\n\nTermo 1\n\n: Definição 1\n\nTermo 2 com *markup inline*\n\n: Definição 2\n\n { um pouco de código, parte da Definição 2 }\n\n Terceiro parágrafo da definição 2.\n\n```\nTermo 1\n\n: Definição 1\n\nTermo 2 com *markup inline*\n\n: Definição 2\n\n { um pouco de código, parte da Definição 2 }\n\n Terceiro parágrafo da definição 2.\n\n```\n\n## Abreviações\n*[HTML]: Hyper Text Markup Language\n*[W3C]: World Wide Web Consortium\nA especificação HTML\né mantida pela W3C.\n```\n*[HTML]: Hyper Text Markup Language\n*[W3C]: World Wide Web Consortium\nThe HTML specification\né mantida pela W3C.\n```\n'},function(t,e){t.exports='@[toc](Catalog) \n \nMarkdown помощь \n=== \n> Подробнее: [http://commonmark.org/help/](http://commonmark.org/help/) \n \n## **Полужирный** \n``` \n**Полужирный** \n__Полужирный__ \n``` \n## *Курсив* \n``` \n*Курсив* \n_Курсив_ \n``` \n## Заголовок \n``` \n# h1 # \nh1 \n==== \n## h2 ## \nh2 \n---- \n### h3 ### \n#### h4 #### \n##### h5 ##### \n###### h6 ###### \n``` \n## Разделительная линия \n``` \n*** \n--- \n``` \n**** \n## ^Верхний^индекс & ~Нижний~индекс \n``` \nверхний x^2^ \nнижний H~2~0 \n``` \n## ++Подчеркнутый++ & ~~Зачеркнутый~~ \n``` \n++Подчеркнутый++ \n~~Зачеркнутый~~ \n``` \n## ==Отметка== \n``` \n==Отметка== \n``` \n## Цитата \n \n``` \n> Цитата \n>> Цитата 2 \n>>> Цитата 3 \n... \n``` \n \n## Список \n``` \nol \n1. \n2. \n3. \n... \n \nul \n- \n- \n... \n``` \n \n## Список задач \n \n- [x] Задача 1 \n- [ ] Задача 2 \n \n``` \n- [x] Задача 1 \n- [ ] Задача 2 \n``` \n \n## Ссылка \n``` \nСсылка \n[Текст](www.baidu.com) \n \nСсылка изображения \n![Текст](http://www.image.com) \n``` \n## Код \n\\``` type \n \ncode block \n \n\\``` \n \n\\` code \\` \n \n```c++ \nint main() \n{ \n printf("hello world!");} \n``` \n`code` \n \n## Таблица \n``` \n| th1 | th2 | th3 | \n| :-- | :--: | ----: | \n| left | center | right | \n``` \n| th1 | th2 | th3 | \n| :-- | :--: | ----: | \n| left | center | right | \n| ---------------------- | ------------- | ----------------- | \n## Сноска \n``` \nПривет[^Привет] \n``` \n \nТут что-то непонятное[^Привет] \n \n[^Привет]: А тут объяснение \n \n## Emojis \nПодробнее: [https://www.webpagefx.com/tools/emoji-cheat-sheet/](https://www.webpagefx.com/tools/emoji-cheat-sheet/) \n``` \n:laughing: \n:blush: \n:smiley: \n:) \n... \n``` \n:laughing::blush::smiley::) \n \n## $\\KaTeX$ Mathematics \n \nМожно выводить такие формулы:$x_i + y_i = z_i$ and $\\sum_{i=1}^n a_i=0$ \nА также в одну строку:\n$$\\sum_{i=1}^n a_i=0$$ \nПодробнее: \n- [katex](http://www.intmath.com/cg5/katex-mathjax-comparison.php)\n- [katex function](https://github.com/Khan/KaTeX/wiki/Function-Support-in-KaTeX)\n- [latex](https://math.meta.stackexchange.com/questions/5020/mathjax-basic-tutorial-and-quick-reference) \n \n## Разметка\n \n::: hljs-left \n`::: hljs-left` \n`left` \n`:::` \n::: \n \n::: hljs-center \n`::: hljs-center` \n`center` \n`:::` \n::: \n \n::: hljs-right \n`::: hljs-right` \n`right` \n`:::` \n::: \n \n## Список определений\n \nТермин 1 \n \n: Определение 1 \n \nТермин 2 с использованием *разметки*\n \n: Определение 2 \n \n { Какой-нибудь код, часть определения 2 } \n Третий параграф определения 2. \n``` \nТермин 1 \n \n: Определение 1 \n \nТермин 2 с использованием *разметки*\n \n: Определение 2 \n \n { Какой-нибудь код, часть определения 2 } \n Третий параграф определения 2. \n``` \n \n## Сокращения\n*[HTML]: Hyper Text Markup Language \n*[W3C]: World Wide Web Consortium \nThe HTML specification \nis maintained by the W3C. \n``` \n*[HTML]: Hyper Text Markup Language \n*[W3C]: World Wide Web Consortium \nThe HTML specification \nis maintained by the W3C. \n```\n'},function(t,e){t.exports='@[toc](目录)\n\nMarkdown 语法简介\n=============\n> [语法详解](http://commonmark.org/help/)\n\n## **粗体**\n```\n**粗体**\n__粗体__\n```\n## *斜体*\n```\n*斜体*\n_斜体_\n```\n## 标题\n```\n# 一级标题 #\n一级标题\n====\n## 二级标题 ##\n二级标题\n----\n### 三级标题 ###\n#### 四级标题 ####\n##### 五级标题 #####\n###### 六级标题 ######\n```\n## 分割线\n```\n***\n---\n```\n****\n## ^上^角~下~标\n```\n上角标 x^2^\n下角标 H~2~0\n```\n## ++下划线++ ~~中划线~~\n```\n++下划线++\n~~中划线~~\n```\n## ==标记==\n```\n==标记==\n```\n## 段落引用\n```\n> 一级\n>> 二级\n>>> 三级\n...\n```\n\n## 列表\n```\n有序列表\n1.\n2.\n3.\n...\n无序列表\n-\n-\n...\n```\n\n## 任务列表\n\n- [x] 已完成任务\n- [ ] 未完成任务\n\n```\n- [x] 已完成任务\n- [ ] 未完成任务\n```\n\n## 链接\n```\n[链接](www.baidu.com)\n![图片描述](http://www.image.com)\n```\n## 代码段落\n\\``` type\n\n代码段落\n\n\\```\n\n\\` 代码块 \\`\n\n```c++\nint main()\n{\n printf("hello world!");\n}\n```\n`code`\n## 表格(table)\n```\n| 标题1 | 标题2 | 标题3 |\n| :-- | :--: | ----: |\n| 左对齐 | 居中 | 右对齐 |\n| ---------------------- | ------------- | ----------------- |\n```\n| 标题1 | 标题2 | 标题3 |\n| :-- | :--: | ----: |\n| 左对齐 | 居中 | 右对齐 |\n| ---------------------- | ------------- | ----------------- |\n## 脚注(footnote)\n```\nhello[^hello]\n```\n\n见底部脚注[^hello]\n\n[^hello]: 一个注脚\n\n## 表情(emoji)\n[参考网站: https://www.webpagefx.com/tools/emoji-cheat-sheet/](https://www.webpagefx.com/tools/emoji-cheat-sheet/)\n```\n:laughing:\n:blush:\n:smiley:\n:)\n...\n```\n:laughing::blush::smiley::)\n\n## $\\KaTeX$公式\n\n我们可以渲染公式例如:$x_i + y_i = z_i$和$\\sum_{i=1}^n a_i=0$\n我们也可以单行渲染\n$$\\sum_{i=1}^n a_i=0$$\n具体可参照[katex文档](http://www.intmath.com/cg5/katex-mathjax-comparison.php)和[katex支持的函数](https://github.com/Khan/KaTeX/wiki/Function-Support-in-KaTeX)以及[latex文档](https://math.meta.stackexchange.com/questions/5020/mathjax-basic-tutorial-and-quick-reference)\n\n## 布局\n\n::: hljs-left\n`::: hljs-left`\n`居左`\n`:::`\n:::\n\n::: hljs-center\n`::: hljs-center`\n`居中`\n`:::`\n:::\n\n::: hljs-right\n`::: hljs-right`\n`居右`\n`:::`\n:::\n\n## 定义\n\n术语一\n\n: 定义一\n\n包含有*行内标记*的术语二\n\n: 定义二\n\n {一些定义二的文字或代码}\n\n 定义二的第三段\n\n```\n术语一\n\n: 定义一\n\n包含有*行内标记*的术语二\n\n: 定义二\n\n {一些定义二的文字或代码}\n\n 定义二的第三段\n\n```\n\n## abbr\n*[HTML]: Hyper Text Markup Language\n*[W3C]: World Wide Web Consortium\nHTML 规范由 W3C 维护\n```\n*[HTML]: Hyper Text Markup Language\n*[W3C]: World Wide Web Consortium\nHTML 规范由 W3C 维护\n```\n\n'},function(t,e){t.exports=/[\xAD\u0600-\u0605\u061C\u06DD\u070F\u08E2\u180E\u200B-\u200F\u202A-\u202E\u2060-\u2064\u2066-\u206F\uFEFF\uFFF9-\uFFFB]|\uD804\uDCBD|\uD82F[\uDCA0-\uDCA3]|\uD834[\uDD73-\uDD7A]|\uDB40[\uDC01\uDC20-\uDC7F]/},function(t,e,n){"use strict";e.Any=n(55),e.Cc=n(53),e.Cf=n(184),e.P=n(33),e.Z=n(54)},function(t,e,n){var i=!1,r=n(16)(n(58),n(188),function(t){i||n(191)},null,null);r.options.__file="D:\\webstrom\\workplace\\mavonEditor\\node_modules\\auto-textarea\\auto-textarea.vue",r.esModule&&Object.keys(r.esModule).some(function(t){return"default"!==t&&"__"!==t.substr(0,2)})&&console.error("named exports are not supported in *.vue files."),r.options.functional&&console.error("[vue-loader] auto-textarea.vue: functional components are not supported with templates, they should use render functions."),t.exports=r.exports},function(t,e,n){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"v-right-item"},[t._t("right-toolbar-before"),t._v(" "),t.toolbars.navigation?n("button",{directives:[{name:"show",rawName:"v-show",value:!t.s_navigation,expression:"!s_navigation"}],staticClass:"op-icon fa fa-mavon-bars",attrs:{type:"button","aria-hidden":"true",title:t.d_words.tl_navigation_on+" (F8)"},on:{click:function(e){t.$clicks("navigation")}}}):t._e(),t._v(" "),t.toolbars.navigation?n("button",{directives:[{name:"show",rawName:"v-show",value:t.s_navigation,expression:"s_navigation"}],staticClass:"op-icon fa fa-mavon-bars selected",attrs:{type:"button","aria-hidden":"true",title:t.d_words.tl_navigation_off+" (F8)"},on:{click:function(e){t.$clicks("navigation")}}}):t._e(),t._v(" "),t.toolbars.preview?n("button",{directives:[{name:"show",rawName:"v-show",value:t.s_preview_switch,expression:"s_preview_switch"}],staticClass:"op-icon fa fa-mavon-eye-slash selected",attrs:{type:"button","aria-hidden":"true",title:t.d_words.tl_edit+" (F9)"},on:{click:function(e){t.$clicks("preview")}}}):t._e(),t._v(" "),t.toolbars.preview?n("button",{directives:[{name:"show",rawName:"v-show",value:!t.s_preview_switch,expression:"!s_preview_switch"}],staticClass:"op-icon fa fa-mavon-eye",attrs:{type:"button","aria-hidden":"true",title:t.d_words.tl_preview+" (F9)"},on:{click:function(e){t.$clicks("preview")}}}):t._e(),t._v(" "),t.toolbars.fullscreen?n("button",{directives:[{name:"show",rawName:"v-show",value:!t.s_fullScreen,expression:"!s_fullScreen"}],staticClass:"op-icon fa fa-mavon-arrows-alt",attrs:{type:"button",title:t.d_words.tl_fullscreen_on+" (F10)","aria-hidden":"true"},on:{click:function(e){t.$clicks("fullscreen")}}}):t._e(),t._v(" "),t.toolbars.fullscreen?n("button",{directives:[{name:"show",rawName:"v-show",value:t.s_fullScreen,expression:"s_fullScreen"}],staticClass:"op-icon fa fa-mavon-compress selected",attrs:{type:"button",title:t.d_words.tl_fullscreen_off+" (F10)","aria-hidden":"true"},on:{click:function(e){t.$clicks("fullscreen")}}}):t._e(),t._v(" "),t.toolbars.readmodel?n("button",{staticClass:"op-icon fa fa-mavon-window-maximize",attrs:{type:"button","aria-hidden":"true",title:t.d_words.tl_read+" (F11)"},on:{click:function(e){t.$clicks("read")}}}):t._e(),t._v(" "),t.toolbars.subfield?n("button",{staticClass:"op-icon fa fa-mavon-columns",class:{selected:t.s_subfield},attrs:{type:"button","aria-hidden":"true",title:(t.s_subfield?t.d_words.tl_single_column:t.d_words.tl_double_column)+" (F12)"},on:{click:function(e){t.$clicks("subfield")}}}):t._e(),t._v(" "),t.toolbars.help&&t.toolbars.htmlcode&&t.toolbars.readmodel&&t.toolbars.fullscreen&&t.toolbars.subfield&&t.toolbars.navigation?n("span",{staticClass:"op-icon-divider"}):t._e(),t._v(" "),t.toolbars.htmlcode?n("button",{directives:[{name:"show",rawName:"v-show",value:!t.s_html_code,expression:"!s_html_code"}],staticClass:"op-icon fa fa-mavon-code",attrs:{type:"button",title:t.d_words.tl_html_on,"aria-hidden":"true"},on:{click:function(e){t.$clicks("html")}}}):t._e(),t._v(" "),t.toolbars.htmlcode?n("button",{directives:[{name:"show",rawName:"v-show",value:t.s_html_code,expression:"s_html_code"}],staticClass:"op-icon fa fa-mavon-code selected",attrs:{type:"button",title:t.d_words.tl_html_off,"aria-hidden":"true"},on:{click:function(e){t.$clicks("html")}}}):t._e(),t._v(" "),t.toolbars.help?n("button",{staticClass:"op-icon fa fa-mavon-question-circle",staticStyle:{"font-size":"17px",padding:"5px 6px 5px 3px"},attrs:{type:"button",title:t.d_words.tl_help,"aria-hidden":"true"},on:{click:function(e){t.$clicks("help")}}}):t._e(),t._v(" "),t._t("right-toolbar-after")],2)},staticRenderFns:[]},t.exports.render._withStripped=!0},function(t,e,n){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"auto-textarea-wrapper",style:{fontSize:t.fontSize,lineHeight:t.lineHeight,height:t.fullHeight?"100%":"auto"}},[n("pre",{staticClass:"auto-textarea-block",style:{fontSize:t.fontSize,lineHeight:t.lineHeight,minHeight:t.fullHeight?"100%":"auto"}},[n("br"),t._v(t._s(t.temp_value)+" ")]),t._v(" "),n("textarea",{directives:[{name:"model",rawName:"v-model",value:t.temp_value,expression:"temp_value"}],ref:"vTextarea",staticClass:"auto-textarea-input",class:{"no-border":!t.border,"no-resize":!t.resize},style:{fontSize:t.fontSize,lineHeight:t.lineHeight},attrs:{autofocus:t.s_autofocus,spellcheck:"false",placeholder:t.placeholder},domProps:{value:t.temp_value},on:{keyup:t.change,input:function(e){e.target.composing||(t.temp_value=e.target.value)}}})])},staticRenderFns:[]},t.exports.render._withStripped=!0},function(t,e,n){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"v-left-item"},[t._t("left-toolbar-before"),t._v(" "),t.toolbars.bold?n("button",{staticClass:"op-icon fa fa-mavon-bold",attrs:{disabled:!t.editable,type:"button","aria-hidden":"true",title:t.d_words.tl_bold+" (ctrl+b)"},on:{click:function(e){t.$clicks("bold")}}}):t._e(),t._v(" "),t.toolbars.italic?n("button",{staticClass:"op-icon fa fa-mavon-italic",attrs:{disabled:!t.editable,type:"button","aria-hidden":"true",title:t.d_words.tl_italic+" (ctrl+i)"},on:{click:function(e){t.$clicks("italic")}}}):t._e(),t._v(" "),t.toolbars.header?n("div",{staticClass:"op-icon fa fa-mavon-header dropdown dropdown-wrapper",class:{selected:t.s_header_dropdown_open},attrs:{disabled:!t.editable,type:"button","aria-hidden":"true",title:t.d_words.tl_header+" (ctrl+h)"},on:{mouseleave:t.$mouseleave_header_dropdown,mouseenter:t.$mouseenter_header_dropdown}},[n("transition",{attrs:{name:"fade"}},[n("div",{directives:[{name:"show",rawName:"v-show",value:t.s_header_dropdown_open,expression:"s_header_dropdown_open"}],staticClass:"op-header popup-dropdown",on:{mouseenter:t.$mouseenter_header_dropdown,mouseleave:t.$mouseleave_header_dropdown}},[n("div",{staticClass:"dropdown-item",attrs:{title:"#"},on:{click:function(e){e.stopPropagation(),t.$click_header("header1")}}},[n("span",[t._v(t._s(t.d_words.tl_header_one))])]),t._v(" "),n("div",{staticClass:"dropdown-item",attrs:{title:"## "},on:{click:function(e){e.stopPropagation(),t.$click_header("header2")}}},[n("span",[t._v(t._s(t.d_words.tl_header_two))])]),t._v(" "),n("div",{staticClass:"dropdown-item",attrs:{title:"### "},on:{click:function(e){e.stopPropagation(),t.$click_header("header3")}}},[n("span",[t._v(t._s(t.d_words.tl_header_three))])]),t._v(" "),n("div",{staticClass:"dropdown-item",attrs:{title:"#### "},on:{click:function(e){e.stopPropagation(),t.$click_header("header4")}}},[n("span",[t._v(t._s(t.d_words.tl_header_four))])]),t._v(" "),n("div",{staticClass:"dropdown-item",attrs:{title:"##### "},on:{click:function(e){e.stopPropagation(),t.$click_header("header5")}}},[n("span",[t._v(t._s(t.d_words.tl_header_five))])]),t._v(" "),n("div",{staticClass:"dropdown-item",attrs:{title:"###### "},on:{click:function(e){e.stopPropagation(),t.$click_header("header6")}}},[n("span",[t._v(t._s(t.d_words.tl_header_six))])])])])],1):t._e(),t._v(" "),t.toolbars.header||t.toolbars.italic||t.toolbars.bold?n("span",{staticClass:"op-icon-divider"}):t._e(),t._v(" "),t.toolbars.underline?n("button",{staticClass:"op-icon fa fa-mavon-underline",attrs:{disabled:!t.editable,type:"button",title:t.d_words.tl_underline+" (ctrl+u)","aria-hidden":"true"},on:{click:function(e){t.$clicks("underline")}}}):t._e(),t._v(" "),t.toolbars.strikethrough?n("button",{staticClass:"op-icon fa fa-mavon-strikethrough",attrs:{disabled:!t.editable,type:"button",title:t.d_words.tl_strikethrough+" (ctrl+shift+d)","aria-hidden":"true"},on:{click:function(e){t.$clicks("strikethrough")}}}):t._e(),t._v(" "),t.toolbars.mark?n("button",{staticClass:"op-icon fa fa-mavon-thumb-tack",attrs:{disabled:!t.editable,type:"button",title:t.d_words.tl_mark+" (ctrl+m)","aria-hidden":"true"},on:{click:function(e){t.$clicks("mark")}}}):t._e(),t._v(" "),t.toolbars.superscript?n("button",{staticClass:"op-icon fa fa-mavon-superscript",attrs:{disabled:!t.editable,type:"button","aria-hidden":"true",title:t.d_words.tl_superscript+" (ctrl+alt+s)"},on:{click:function(e){t.$clicks("superscript")}}}):t._e(),t._v(" "),t.toolbars.subscript?n("button",{staticClass:"op-icon fa fa-mavon-subscript",attrs:{disabled:!t.editable,type:"button","aria-hidden":"true",title:t.d_words.tl_subscript+" (ctrl+shift+s)"},on:{click:function(e){t.$clicks("subscript")}}}):t._e(),t._v(" "),t.toolbars.alignleft?n("button",{staticClass:"op-icon fa fa-mavon-align-left",attrs:{disabled:!t.editable,type:"button","aria-hidden":"true",title:t.d_words.tl_alignleft+" (ctrl+l)"},on:{click:function(e){t.$clicks("alignleft")}}}):t._e(),t._v(" "),t.toolbars.aligncenter?n("button",{staticClass:"op-icon fa fa-mavon-align-center",attrs:{disabled:!t.editable,type:"button","aria-hidden":"true",title:t.d_words.tl_aligncenter+" (ctrl+e)"},on:{click:function(e){t.$clicks("aligncenter")}}}):t._e(),t._v(" "),t.toolbars.alignright?n("button",{staticClass:"op-icon fa fa-mavon-align-right",attrs:{disabled:!t.editable,type:"button","aria-hidden":"true",title:t.d_words.tl_alignright+" (ctrl+r)"},on:{click:function(e){t.$clicks("alignright")}}}):t._e(),t._v(" "),t.toolbars.superscript||t.toolbars.subscript||t.toolbars.underline||t.toolbars.strikethrough||t.toolbars.mark?n("span",{staticClass:"op-icon-divider"}):t._e(),t._v(" "),t.toolbars.quote?n("button",{staticClass:"op-icon fa fa-mavon-quote-left",attrs:{disabled:!t.editable,type:"button","aria-hidden":"true",title:t.d_words.tl_quote+" (ctrl+q)"},on:{click:function(e){t.$clicks("quote")}}}):t._e(),t._v(" "),t.toolbars.ol?n("button",{staticClass:"op-icon fa fa-mavon-list-ol",attrs:{disabled:!t.editable,type:"button","aria-hidden":"true",title:t.d_words.tl_ol+" (ctrl+o)"},on:{click:function(e){t.$clicks("ol")}}}):t._e(),t._v(" "),t.toolbars.ul?n("button",{staticClass:"op-icon fa fa-mavon-list-ul",attrs:{disabled:!t.editable,type:"button","aria-hidden":"true",title:t.d_words.tl_ul+" (ctrl+alt+u)"},on:{click:function(e){t.$clicks("ul")}}}):t._e(),t._v(" "),t.toolbars.ul||t.toolbars.ol||t.toolbars.quote?n("span",{staticClass:"op-icon-divider"}):t._e(),t._v(" "),t.toolbars.link?n("button",{staticClass:"op-icon fa fa-mavon-link",attrs:{disabled:!t.editable,type:"button","aria-hidden":"true",title:t.d_words.tl_link+" (ctrl+l)"},on:{click:function(e){e.stopPropagation(),t.$toggle_imgLinkAdd("link")}}}):t._e(),t._v(" "),t.toolbars.imagelink?n("div",{staticClass:"op-icon fa fa-mavon-picture-o dropdown dropdown-wrapper",class:{selected:t.s_img_dropdown_open},attrs:{disabled:!t.editable,type:"button","aria-hidden":"true"},on:{mouseleave:t.$mouseleave_img_dropdown,mouseenter:t.$mouseenter_img_dropdown}},[n("transition",{attrs:{name:"fade"}},[n("div",{directives:[{name:"show",rawName:"v-show",value:t.s_img_dropdown_open,expression:"s_img_dropdown_open"}],staticClass:"op-image popup-dropdown",on:{mouseleave:t.$mouseleave_img_dropdown,mouseenter:t.$mouseenter_img_dropdown}},[n("div",{staticClass:"dropdown-item",on:{click:function(e){e.stopPropagation(),t.$toggle_imgLinkAdd("imagelink")}}},[n("span",[t._v(t._s(t.d_words.tl_image))])]),t._v(" "),n("div",{staticClass:"dropdown-item",staticStyle:{overflow:"hidden"}},[n("input",{attrs:{type:"file",accept:"image/gif,image/jpeg,image/jpg,image/png,image/svg",multiple:"multiple"},on:{change:function(e){t.$imgAdd(e)}}}),t._v(t._s(t.d_words.tl_upload)+"\n ")]),t._v(" "),t._l(t.img_file,function(e,i){return e&&e[0]?n("div",{key:i,staticClass:"dropdown-item dropdown-images",attrs:{title:e[0].name},on:{click:function(e){e.stopPropagation(),t.$imgFileListClick(i)}}},[n("span",[t._v(t._s(e[0].name))]),t._v(" "),n("button",{staticClass:"op-icon fa fa-mavon-trash-o",attrs:{slot:"right",type:"button","aria-hidden":"true",title:t.d_words.tl_upload_remove},on:{click:function(e){e.stopPropagation(),t.$imgDel(i)}},slot:"right"}),t._v(" "),n("img",{staticClass:"image-show",attrs:{src:e[0].miniurl,alt:"none"}})]):t._e()})],2)])],1):t._e(),t._v(" "),t.toolbars.code?n("button",{staticClass:"op-icon fa fa-mavon-code",attrs:{disabled:!t.editable,type:"button","aria-hidden":"true",title:t.d_words.tl_code+" (ctrl+alt+c)"},on:{click:function(e){t.$clicks("code")}}}):t._e(),t._v(" "),t.toolbars.table?n("button",{staticClass:"op-icon fa fa-mavon-table",attrs:{disabled:!t.editable,type:"button","aria-hidden":"true",title:t.d_words.tl_table+" (ctrl+alt+t)"},on:{click:function(e){t.$clicks("table")}}}):t._e(),t._v(" "),t.toolbars.link||t.toolbars.imagelink||t.toolbars.code||t.toolbars.table?n("span",{staticClass:"op-icon-divider"}):t._e(),t._v(" "),t.toolbars.undo?n("button",{staticClass:"op-icon fa fa-mavon-undo",attrs:{type:"button","aria-hidden":"true",title:t.d_words.tl_undo+" (ctrl+z)"},on:{click:function(e){t.$clicks("undo")}}}):t._e(),t._v(" "),t.toolbars.redo?n("button",{staticClass:"op-icon fa fa-mavon-repeat",attrs:{type:"button","aria-hidden":"true",title:t.d_words.tl_redo+" (ctrl+y)"},on:{click:function(e){t.$clicks("redo")}}}):t._e(),t._v(" "),t.toolbars.trash?n("button",{staticClass:"op-icon fa fa-mavon-trash-o",attrs:{type:"button","aria-hidden":"true",title:t.d_words.tl_trash+" (ctrl+breakspace)"},on:{click:function(e){t.$clicks("trash")}}}):t._e(),t._v(" "),t.toolbars.save?n("button",{staticClass:"op-icon fa fa-mavon-floppy-o",attrs:{type:"button","aria-hidden":"true",title:t.d_words.tl_save+" (ctrl+s)"},on:{click:function(e){t.$clicks("save")}}}):t._e(),t._v(" "),t._t("left-toolbar-after"),t._v(" "),n("transition",{attrs:{name:"fade"}},[t.s_img_link_open?n("div",{staticClass:"add-image-link-wrapper"},[n("div",{staticClass:"add-image-link"},[n("i",{staticClass:"fa fa-mavon-times",attrs:{"aria-hidden":"true"},on:{click:function(e){e.stopPropagation(),e.preventDefault(),t.s_img_link_open=!1}}}),t._v(" "),n("h3",{staticClass:"title"},[t._v(t._s("link"==t.link_type?t.d_words.tl_popup_link_title:t.d_words.tl_popup_img_link_title))]),t._v(" "),n("div",{staticClass:"link-text input-wrapper"},[n("input",{directives:[{name:"model",rawName:"v-model",value:t.link_text,expression:"link_text"}],ref:"linkTextInput",attrs:{type:"text",placeholder:"link"==t.link_type?t.d_words.tl_popup_link_text:t.d_words.tl_popup_img_link_text},domProps:{value:t.link_text},on:{input:function(e){e.target.composing||(t.link_text=e.target.value)}}})]),t._v(" "),n("div",{staticClass:"link-addr input-wrapper"},[n("input",{directives:[{name:"model",rawName:"v-model",value:t.link_addr,expression:"link_addr"}],attrs:{type:"text",placeholder:"link"==t.link_type?t.d_words.tl_popup_link_addr:t.d_words.tl_popup_img_link_addr},domProps:{value:t.link_addr},on:{input:function(e){e.target.composing||(t.link_addr=e.target.value)}}})]),t._v(" "),n("div",{staticClass:"op-btn cancel",on:{click:function(e){e.stopPropagation(),t.s_img_link_open=!1}}},[t._v(t._s(t.d_words.tl_popup_link_cancel))]),t._v(" "),n("div",{staticClass:"op-btn sure",on:{click:function(e){e.stopPropagation(),t.$imgLinkAdd()}}},[t._v(t._s(t.d_words.tl_popup_link_sure))])])]):t._e()])],2)},staticRenderFns:[]},t.exports.render._withStripped=!0},function(t,e,n){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"v-note-wrapper markdown-body",class:[{fullscreen:t.s_fullScreen}]},[n("div",{directives:[{name:"show",rawName:"v-show",value:t.toolbarsFlag,expression:"toolbarsFlag"}],staticClass:"v-note-op",class:{shadow:t.boxShadow}},[n("v-md-toolbar-left",{ref:"toolbar_left",attrs:{editable:t.editable,d_words:t.d_words,toolbars:t.toolbars,image_filter:t.imageFilter},on:{toolbar_left_click:t.toolbar_left_click,toolbar_left_addlink:t.toolbar_left_addlink,imgAdd:t.$imgAdd,imgDel:t.$imgDel,imgTouch:t.$imgTouch}},[t._t("left-toolbar-before",null,{slot:"left-toolbar-before"}),t._v(" "),t._t("left-toolbar-after",null,{slot:"left-toolbar-after"})],2),t._v(" "),n("v-md-toolbar-right",{ref:"toolbar_right",attrs:{d_words:t.d_words,toolbars:t.toolbars,s_subfield:t.s_subfield,s_preview_switch:t.s_preview_switch,s_fullScreen:t.s_fullScreen,s_html_code:t.s_html_code,s_navigation:t.s_navigation},on:{toolbar_right_click:t.toolbar_right_click}},[t._t("right-toolbar-before",null,{slot:"right-toolbar-before"}),t._v(" "),t._t("right-toolbar-after",null,{slot:"right-toolbar-after"})],2)],1),t._v(" "),n("div",{staticClass:"v-note-panel",class:{shadow:t.boxShadow}},[n("div",{ref:"vNoteEdit",staticClass:"v-note-edit divarea-wrapper",class:{"scroll-style":t.s_scrollStyle,"single-edit":!t.s_preview_switch&&!t.s_html_code,"single-show":!t.s_subfield&&t.s_preview_switch||!t.s_subfield&&t.s_html_code},on:{scroll:t.$v_edit_scroll,click:t.textAreaFocus}},[n("div",{staticClass:"content-input-wrapper"},[n("v-autoTextarea",{ref:"vNoteTextarea",staticClass:"content-input",attrs:{placeholder:t.placeholder?t.placeholder:t.d_words.start_editor,fontSize:t.fontSize,lineHeight:"1.5",fullHeight:""},model:{value:t.d_value,callback:function(e){t.d_value=e},expression:"d_value"}})],1)]),t._v(" "),n("div",{directives:[{name:"show",rawName:"v-show",value:t.s_preview_switch||t.s_html_code,expression:"s_preview_switch || s_html_code"}],staticClass:"v-note-show",class:{"single-show":!t.s_subfield&&t.s_preview_switch||!t.s_subfield&&t.s_html_code}},[n("div",{directives:[{name:"show",rawName:"v-show",value:!t.s_html_code,expression:"!s_html_code"}],ref:"vShowContent",staticClass:"v-show-content",class:{"scroll-style":t.s_scrollStyle},domProps:{innerHTML:t._s(t.d_render)}}),t._v(" "),n("div",{directives:[{name:"show",rawName:"v-show",value:t.s_html_code,expression:"s_html_code"}],staticClass:"v-show-content-html",class:{"scroll-style":t.s_scrollStyle}},[t._v("\n "+t._s(t.d_render)+"\n ")])]),t._v(" "),n("transition",{attrs:{name:"slideTop"}},[n("div",{directives:[{name:"show",rawName:"v-show",value:t.s_navigation,expression:"s_navigation"}],staticClass:"v-note-navigation-wrapper",class:{shadow:t.boxShadow}},[n("div",{staticClass:"v-note-navigation-title",class:{shadow:t.boxShadow}},[t._v("\n "+t._s(t.d_words.navigation_title)),n("i",{staticClass:"fa fa-mavon-times v-note-navigation-close",attrs:{"aria-hidden":"true"},on:{click:function(e){t.toolbar_right_click("navigation")}}})]),t._v(" "),n("div",{ref:"navigationContent",staticClass:"v-note-navigation-content scroll-style"})])])],1),t._v(" "),n("transition",{attrs:{name:"fade"}},[n("div",{ref:"help"},[t.s_help?n("div",{staticClass:"v-note-help-wrapper",on:{click:function(e){t.toolbar_right_click("help")}}},[n("div",{staticClass:"v-note-help-content markdown-body",class:{shadow:t.boxShadow}},[n("i",{staticClass:"fa fa-mavon-times",attrs:{"aria-hidden":"true"},on:{click:function(e){e.stopPropagation(),e.preventDefault(),t.toolbar_right_click("help")}}}),t._v(" "),n("div",{staticClass:"scroll-style v-note-help-show",domProps:{innerHTML:t._s(t.d_help)}})])]):t._e()])]),t._v(" "),n("transition",{attrs:{name:"fade"}},[t.d_preview_imgsrc?n("div",{staticClass:"v-note-img-wrapper",on:{click:function(e){t.d_preview_imgsrc=null}}},[n("img",{attrs:{src:t.d_preview_imgsrc,alt:"none"}})]):t._e()]),t._v(" "),n("div",{ref:"vReadModel",staticClass:"v-note-read-model scroll-style",class:{show:t.s_readmodel}},[n("div",{ref:"vNoteReadContent",staticClass:"v-note-read-content",domProps:{innerHTML:t._s(t.d_render)}})])],1)},staticRenderFns:[]},t.exports.render._withStripped=!0},function(t,e,n){var i=n(101);"string"==typeof i&&(i=[[t.i,i,""]]),i.locals&&(t.exports=i.locals),n(17)("c0faed68",i,!1,{})},function(t,e,n){var i=n(102);"string"==typeof i&&(i=[[t.i,i,""]]),i.locals&&(t.exports=i.locals),n(17)("118de024",i,!1,{})},function(t,e,n){var i=n(103);"string"==typeof i&&(i=[[t.i,i,""]]),i.locals&&(t.exports=i.locals),n(17)("2f84471f",i,!1,{})},function(t,e,n){var i=n(104);"string"==typeof i&&(i=[[t.i,i,""]]),i.locals&&(t.exports=i.locals),n(17)("6daa4aa0",i,!1,{})},function(t,e){t.exports=function(t,e){for(var n=[],i={},r=0;r<e.length;r++){var s=e[r],o=s[0],a={id:t+":"+r,css:s[1],media:s[2],sourceMap:s[3]};i[o]?i[o].parts.push(a):n.push(i[o]={id:o,parts:[a]})}return n}},function(t,e){var n;n=function(){return this}();try{n=n||Function("return this")()||(0,eval)("this")}catch(t){"object"==typeof window&&(n=window)}t.exports=n},function(t,e){t.exports=function(t){return t.webpackPolyfill||(t.deprecate=function(){},t.paths=[],t.children||(t.children=[]),Object.defineProperty(t,"loaded",{enumerable:!0,get:function(){return t.l}}),Object.defineProperty(t,"id",{enumerable:!0,get:function(){return t.i}}),t.webpackPolyfill=1),t}},function(t,e){t.exports={start_editor:"Begin editing...",navigation_title:"Navigation",tl_bold:"Bold",tl_italic:"Italic",tl_header:"Header",tl_header_one:"Header 1",tl_header_two:"Header 2",tl_header_three:"Header 3",tl_header_four:"Header 4",tl_header_five:"Header 5",tl_header_six:"Header 6",tl_underline:"Underline",tl_strikethrough:"Strikethrough",tl_mark:"Mark",tl_superscript:"Superscript",tl_subscript:"Subscript",tl_quote:"Quote",tl_ol:"Ol",tl_ul:"Ul",tl_link:"Link",tl_image:"Image Link",tl_code:"Code",tl_table:"Table",tl_undo:"Undo",tl_redo:"Redo",tl_trash:"Trash",tl_save:"Save",tl_navigation_on:"Navigation ON",tl_navigation_off:"Navigation OFF",tl_preview:"Preview",tl_aligncenter:"Center text",tl_alignleft:"Clamp text to the left",tl_alignright:"Clamp text to the right",tl_edit:"Edit",tl_single_column:"Single Column",tl_double_column:"Double Columns",tl_fullscreen_on:"FullScreen ON",tl_fullscreen_off:"FullScreen OFF",tl_read:"Read Model",tl_html_on:"HTML ON",tl_html_off:"HTML OFF",tl_help:"Markdown Guide",tl_upload:"Upload Images",tl_upload_remove:"Remove",tl_popup_link_title:"Add Link",tl_popup_link_text:"Link text",tl_popup_link_addr:"Link address",tl_popup_img_link_title:"Add Image",tl_popup_img_link_text:"Image Text",tl_popup_img_link_addr:"Image Link",tl_popup_link_sure:"Sure",tl_popup_link_cancel:"Cancel"}},function(t,e){t.exports={start_editor:"Début d'édition...",navigation_title:"Navigation",tl_bold:"Gras",tl_italic:"Italique",tl_header:"Entête",tl_header_one:"Entête 1",tl_header_two:"Entête 2",tl_header_three:"Entête 3",tl_header_four:"Entête 4",tl_header_five:"Entête 5",tl_header_six:"Entête 6",tl_underline:"Souligné",tl_strikethrough:"Barré",tl_mark:"Mark",tl_superscript:"Exposant",tl_subscript:"Sous-exposant",tl_quote:"Quote",tl_ol:"Liste ",tl_ul:"Puce",tl_link:"Lien",tl_image:"Image Lien",tl_code:"Code",tl_table:"Table",tl_undo:"Annuler",tl_redo:"Refaire",tl_trash:"Supprimer",tl_save:"Sauver",tl_navigation_on:"Activer la navigation",tl_navigation_off:"Désactiver le navigation",tl_preview:"Previsualisé",tl_aligncenter:"Center le texte",tl_alignleft:"Férer le texte à gauche",tl_alignright:"Férer le texte à droite",tl_edit:"Editer",tl_single_column:"Seule Colonne",tl_double_column:"Colonnes Doubles",tl_fullscreen_on:"Activer le mode plein écran",tl_fullscreen_off:"Désactiver le mode plein écran",tl_read:"Lire le modèle",tl_html_on:"Activer le mode HTML",tl_html_off:"Désactiver le mode HTML",tl_help:"Guide Markdown",tl_upload:"Télécharger les images",tl_upload_remove:"Supprimer",tl_popup_link_title:"Ajouter un lien",tl_popup_link_text:"Description",tl_popup_link_addr:"Link",tl_popup_img_link_title:"Ajouter une image",tl_popup_img_link_text:"Description",tl_popup_img_link_addr:"Link",tl_popup_link_sure:"sûr",tl_popup_link_cancel:"Annuler"}},function(t,e){t.exports={start_editor:"Começar edição...",navigation_title:"Navegação",tl_bold:"Negrito",tl_italic:"Itálico",tl_header:"Cabeçalho",tl_header_one:"Cabeçalho 1",tl_header_two:"Cabeçalho 2",tl_header_three:"Cabeçalho 3",tl_header_four:"Cabeçalho 4",tl_header_five:"Cabeçalho 5",tl_header_six:"Cabeçalho 6",tl_underline:"Sublinhar",tl_strikethrough:"Tachar",tl_mark:"Marcação",tl_superscript:"Sobrescrito",tl_subscript:"Subscrito",tl_quote:"Citação",tl_ol:"Lista Numerada",tl_ul:"Lista com marcadores",tl_link:"Link",tl_image:"Link de imagem",tl_code:"Código",tl_table:"Tabela",tl_undo:"Desfazer",tl_redo:"Refazer",tl_trash:"Lixo",tl_save:"Salvar",tl_navigation_on:"Mostrar Navegação",tl_navigation_off:"Esconder Navegação",tl_preview:"Preview",tl_aligncenter:"Alinhar no centro",tl_alignleft:"Alinhar à esquerda",tl_alignright:"Alinhar à direita",tl_edit:"Editar",tl_single_column:"Coluna Única",tl_double_column:"Duas Colunas",tl_fullscreen_on:"Ligar Tela Cheia",tl_fullscreen_off:"Desligar Tela Cheia",tl_read:"Modo de Leitura",tl_html_on:"Ligar HTML",tl_html_off:"Desligar HTML",tl_help:"Guia Markdown",tl_upload:"Upload de Imagens",tl_upload_remove:"Remover",tl_popup_link_title:"Adicionar Link",tl_popup_link_text:"Descrição",tl_popup_link_addr:"Link",tl_popup_img_link_title:"Adicionar fotos",tl_popup_img_link_text:"Descrição",tl_popup_img_link_addr:"Link",tl_popup_link_sure:"Confirmar",tl_popup_link_cancel:"Cancelar"}},function(t,e){t.exports={start_editor:"Начните редактирование...",navigation_title:"Навигация",tl_bold:"Полужирный",tl_italic:"Курсив",tl_header:"Заголовки",tl_header_one:"Заголовок 1",tl_header_two:"Заголовок 2",tl_header_three:"Заголовок 3",tl_header_four:"Заголовок 4",tl_header_five:"Заголовок 5",tl_header_six:"Заголовок 6",tl_underline:"Подчеркнутый",tl_strikethrough:"Зачеркнутый",tl_mark:"Отметка",tl_superscript:"Верхний индекс",tl_subscript:"Нижний индекс",tl_quote:"Цитата",tl_ol:"Нумерованный список",tl_ul:"Список",tl_link:"Ссылка",tl_image:"Ссылка изображения",tl_code:"Код",tl_table:"Таблица",tl_undo:"Отменить",tl_redo:"Вернуть",tl_trash:"Удалить",tl_save:"Сохранить",tl_navigation_on:"Показать навигацию",tl_navigation_off:"Скрыть навигацию",tl_preview:"Предпросмотр",tl_aligncenter:"Выровнять по центру",tl_alignleft:"Выровнять по левому краю",tl_alignright:"Выровнять по правому краю",tl_edit:"Редактор",tl_single_column:"Одно поле",tl_double_column:"Два поля",tl_fullscreen_on:"Полноэкранный режим",tl_fullscreen_off:"Выключить полноэкранный режим",tl_read:"Режим чтения",tl_html_on:"Показать HTML",tl_html_off:"Убрать HTML",tl_help:"Markdown помощь",tl_upload:"Загрузить изображение",tl_upload_remove:"Удалить",tl_popup_link_title:"Добавить ссылку",tl_popup_link_text:"Текст ссылки",tl_popup_link_addr:"Адрес ссылки",tl_popup_img_link_title:"Локальное изображение",tl_popup_img_link_text:"Текст изображения",tl_popup_img_link_addr:"Ссылка изображения",tl_popup_link_sure:"Добавить",tl_popup_link_cancel:"Отменить"}},function(t,e){t.exports={start_editor:"开始编辑...",navigation_title:"导航目录",tl_bold:"粗体",tl_italic:"斜体",tl_header:"标题",tl_header_one:"一级标题",tl_header_two:"二级标题",tl_header_three:"三级标题",tl_header_four:"四级标题",tl_header_five:"五级标题",tl_header_six:"六级标题",tl_underline:"下划线",tl_strikethrough:"中划线",tl_mark:"标记",tl_superscript:"上角标",tl_subscript:"下角标",tl_quote:"段落引用",tl_ol:"有序列表",tl_ul:"无序列表",tl_link:"链接",tl_image:"添加图片链接",tl_code:"代码块",tl_table:"表格",tl_undo:"上一步",tl_redo:"下一步",tl_trash:"清空",tl_save:"保存",tl_navigation_on:"开启标题导航",tl_navigation_off:"关闭标题导航",tl_preview:"预览",tl_aligncenter:"居中",tl_alignleft:"居左",tl_alignright:"居右",tl_edit:"编辑",tl_single_column:"单栏",tl_double_column:"双栏",tl_fullscreen_on:"全屏编辑",tl_fullscreen_off:"退出全屏",tl_read:"沉浸式阅读",tl_html_on:"查看html文本",tl_html_off:"返回markdown文本",tl_help:"markdown语法帮助",tl_upload:"上传图片",tl_upload_remove:"删除",tl_popup_link_title:"添加链接",tl_popup_link_text:"链接描述",tl_popup_link_addr:"链接地址",tl_popup_img_link_title:"添加图片",tl_popup_img_link_text:"图片描述",tl_popup_img_link_addr:"图片链接",tl_popup_link_sure:"确定",tl_popup_link_cancel:"取消"}}])},module.exports=t()},"VU/8":function(t,e){t.exports=function(t,e,n,i,r,s){var o,a=t=t||{},l=typeof t.default;"object"!==l&&"function"!==l||(o=t,a=t.default);var c,u="function"==typeof a?a.options:a;if(e&&(u.render=e.render,u.staticRenderFns=e.staticRenderFns,u._compiled=!0),n&&(u.functional=!0),r&&(u._scopeId=r),s?(c=function(t){(t=t||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext)||"undefined"==typeof __VUE_SSR_CONTEXT__||(t=__VUE_SSR_CONTEXT__),i&&i.call(this,t),t&&t._registeredComponents&&t._registeredComponents.add(s)},u._ssrRegister=c):i&&(c=i),c){var h=u.functional,d=h?u.render:u.beforeCreate;h?(u._injectStyles=c,u.render=function(t,e){return c.call(e),d(t,e)}):u.beforeCreate=d?[].concat(d,c):[c]}return{esModule:o,exports:a,options:u}}}}); //# sourceMappingURL=vendor.c3bec5030583e34a0cab.js.map
640.016445
349,063
0.669996
c5e1631c1b0065e225db412401f084da37aee44c
545,495
js
JavaScript
lab/exercises/10-mixed/critical-connections.data.js
PokhrelAnish/dsa.js-data-structures-algorithms-javascript
9175b628caec24d07b683463a836430add88cddf
[ "MIT" ]
4,365
2019-06-28T13:26:14.000Z
2022-03-31T09:16:59.000Z
lab/exercises/10-mixed/critical-connections.data.js
PokhrelAnish/dsa.js-data-structures-algorithms-javascript
9175b628caec24d07b683463a836430add88cddf
[ "MIT" ]
74
2019-06-28T20:48:25.000Z
2022-03-09T04:13:31.000Z
lab/exercises/10-mixed/critical-connections.data.js
PokhrelAnish/dsa.js-data-structures-algorithms-javascript
9175b628caec24d07b683463a836430add88cddf
[ "MIT" ]
609
2019-07-01T16:54:25.000Z
2022-03-31T10:12:52.000Z
module.exports = { test1000: { n: 1000, connections: [[1,0],[2,1],[3,1],[4,2],[5,4],[6,3],[7,4],[8,2],[9,4],[10,8],[11,5],[12,10],[13,0],[14,5],[15,5],[16,11],[17,1],[18,4],[19,10],[20,9],[21,18],[22,5],[23,18],[24,13],[25,8],[26,23],[27,1],[28,18],[29,1],[30,0],[31,13],[32,21],[33,27],[34,24],[35,24],[36,9],[37,16],[38,14],[39,15],[40,30],[41,8],[42,36],[43,36],[44,16],[45,3],[46,24],[47,9],[48,43],[49,46],[50,45],[51,17],[52,8],[53,19],[54,28],[55,14],[56,42],[57,25],[58,12],[59,43],[60,14],[61,50],[62,30],[63,37],[64,36],[65,53],[66,39],[67,64],[68,29],[69,9],[70,53],[71,29],[72,17],[73,17],[74,35],[75,65],[76,12],[77,56],[78,44],[79,5],[80,43],[81,14],[82,40],[83,60],[84,40],[85,41],[86,13],[87,46],[88,56],[89,85],[90,76],[91,8],[92,33],[93,33],[94,26],[95,54],[96,6],[97,7],[98,66],[99,33],[100,5],[101,90],[102,68],[103,12],[104,65],[105,31],[106,93],[107,81],[108,91],[109,56],[110,17],[111,54],[112,63],[113,47],[114,44],[115,50],[116,0],[117,6],[118,67],[119,37],[120,30],[121,24],[122,121],[123,2],[124,51],[125,85],[126,61],[127,54],[128,124],[129,90],[130,8],[131,73],[132,21],[133,127],[134,26],[135,50],[136,108],[137,0],[138,28],[139,4],[140,79],[141,121],[142,93],[143,59],[144,112],[145,119],[146,97],[147,46],[148,103],[149,121],[150,148],[151,81],[152,134],[153,93],[154,69],[155,139],[156,44],[157,153],[158,145],[159,1],[160,109],[161,138],[162,87],[163,4],[164,25],[165,48],[166,139],[167,68],[168,28],[169,148],[170,164],[171,65],[172,132],[173,39],[174,159],[175,126],[176,44],[177,171],[178,99],[179,48],[180,125],[181,37],[182,152],[183,164],[184,107],[185,42],[186,54],[187,50],[188,181],[189,29],[190,113],[191,67],[192,169],[193,190],[194,46],[195,20],[196,195],[197,79],[198,165],[199,177],[200,183],[201,13],[202,22],[203,103],[204,143],[205,142],[206,65],[207,68],[208,56],[209,113],[210,66],[211,34],[212,70],[213,73],[214,14],[215,98],[216,198],[217,201],[218,13],[219,81],[220,159],[221,144],[222,47],[223,23],[224,26],[225,102],[226,33],[227,99],[228,94],[229,10],[230,113],[231,59],[232,172],[233,111],[234,131],[235,126],[236,155],[237,163],[238,183],[239,100],[240,42],[241,226],[242,213],[243,236],[244,82],[245,171],[246,18],[247,11],[248,179],[249,110],[250,105],[251,189],[252,18],[253,120],[254,164],[255,99],[256,108],[257,249],[258,54],[259,80],[260,193],[261,74],[262,206],[263,231],[264,91],[265,115],[266,213],[267,142],[268,254],[269,239],[270,6],[271,74],[272,221],[273,22],[274,7],[275,218],[276,129],[277,1],[278,96],[279,176],[280,102],[281,174],[282,267],[283,15],[284,154],[285,94],[286,285],[287,83],[288,43],[289,4],[290,141],[291,241],[292,144],[293,229],[294,129],[295,262],[296,228],[297,218],[298,128],[299,147],[300,118],[301,123],[302,250],[303,268],[304,68],[305,213],[306,4],[307,91],[308,4],[309,23],[310,284],[311,139],[312,238],[313,136],[314,254],[315,262],[316,75],[317,216],[318,181],[319,67],[320,303],[321,302],[322,208],[323,287],[324,93],[325,234],[326,57],[327,322],[328,200],[329,19],[330,307],[331,97],[332,286],[333,294],[334,119],[335,117],[336,264],[337,158],[338,91],[339,254],[340,207],[341,274],[342,32],[343,209],[344,163],[345,258],[346,317],[347,1],[348,151],[349,55],[350,183],[351,324],[352,31],[353,115],[354,337],[355,117],[356,217],[357,337],[358,183],[359,233],[360,179],[361,188],[362,234],[363,111],[364,99],[365,0],[366,136],[367,334],[368,251],[369,308],[370,11],[371,295],[372,291],[373,6],[374,140],[375,230],[376,342],[377,274],[378,84],[379,111],[380,208],[381,138],[382,116],[383,273],[384,176],[385,383],[386,273],[387,231],[388,286],[389,4],[390,333],[391,384],[392,238],[393,333],[394,149],[395,164],[396,212],[397,391],[398,312],[399,374],[400,393],[401,394],[402,183],[403,223],[404,56],[405,331],[406,253],[407,334],[408,148],[409,136],[410,254],[411,57],[412,285],[413,352],[414,19],[415,44],[416,173],[417,251],[418,127],[419,190],[420,155],[421,319],[422,32],[423,2],[424,124],[425,325],[426,398],[427,261],[428,68],[429,225],[430,260],[431,289],[432,187],[433,155],[434,27],[435,351],[436,20],[437,218],[438,36],[439,4],[440,187],[441,96],[442,389],[443,67],[444,364],[445,235],[446,326],[447,181],[448,269],[449,333],[450,77],[451,190],[452,436],[453,399],[454,23],[455,368],[456,142],[457,14],[458,51],[459,275],[460,410],[461,252],[462,40],[463,159],[464,383],[465,284],[466,229],[467,92],[468,248],[469,276],[470,80],[471,291],[472,367],[473,379],[474,234],[475,243],[476,121],[477,182],[478,64],[479,22],[480,244],[481,306],[482,113],[483,391],[484,39],[485,247],[486,409],[487,473],[488,176],[489,287],[490,155],[491,289],[492,35],[493,342],[494,299],[495,1],[496,178],[497,341],[498,339],[499,374],[500,394],[501,332],[502,85],[503,352],[504,5],[505,203],[506,0],[507,60],[508,87],[509,348],[510,53],[511,197],[512,228],[513,159],[514,488],[515,158],[516,230],[517,489],[518,439],[519,278],[520,268],[521,380],[522,278],[523,213],[524,190],[525,80],[526,257],[527,391],[528,220],[529,272],[530,501],[531,381],[532,1],[533,32],[534,22],[535,35],[536,262],[537,475],[538,366],[539,132],[540,184],[541,213],[542,315],[543,328],[544,26],[545,267],[546,180],[547,408],[548,190],[549,173],[550,422],[551,148],[552,251],[553,551],[554,29],[555,234],[556,179],[557,550],[558,486],[559,186],[560,201],[561,40],[562,494],[563,133],[564,453],[565,279],[566,244],[567,395],[568,353],[569,492],[570,433],[571,140],[572,428],[573,37],[574,519],[575,227],[576,449],[577,38],[578,531],[579,422],[580,341],[581,207],[582,318],[583,439],[584,185],[585,73],[586,342],[587,208],[588,102],[589,388],[590,582],[591,467],[592,293],[593,185],[594,518],[595,262],[596,126],[597,544],[598,441],[599,444],[600,488],[601,72],[602,267],[603,491],[604,472],[605,295],[606,228],[607,385],[608,298],[609,416],[610,541],[611,69],[612,7],[613,255],[614,166],[615,469],[616,277],[617,174],[618,79],[619,470],[620,249],[621,259],[622,323],[623,149],[624,241],[625,358],[626,19],[627,555],[628,539],[629,242],[630,258],[631,210],[632,442],[633,398],[634,233],[635,471],[636,594],[637,99],[638,188],[639,212],[640,339],[641,572],[642,306],[643,78],[644,391],[645,383],[646,3],[647,171],[648,224],[649,200],[650,35],[651,530],[652,641],[653,533],[654,598],[655,431],[656,614],[657,43],[658,35],[659,640],[660,167],[661,369],[662,467],[663,352],[664,512],[665,241],[666,202],[667,84],[668,28],[669,628],[670,321],[671,272],[672,660],[673,270],[674,350],[675,565],[676,281],[677,60],[678,163],[679,413],[680,350],[681,426],[682,467],[683,190],[684,476],[685,575],[686,556],[687,142],[688,678],[689,411],[690,114],[691,646],[692,197],[693,475],[694,232],[695,37],[696,346],[697,38],[698,407],[699,121],[700,655],[701,628],[702,324],[703,217],[704,472],[705,102],[706,337],[707,358],[708,623],[709,131],[710,313],[711,654],[712,161],[713,471],[714,526],[715,398],[716,249],[717,709],[718,486],[719,433],[720,323],[721,705],[722,436],[723,599],[724,391],[725,528],[726,208],[727,310],[728,622],[729,51],[730,377],[731,46],[732,88],[733,567],[734,692],[735,700],[736,218],[737,704],[738,342],[739,471],[740,533],[741,571],[742,348],[743,245],[744,189],[745,655],[746,122],[747,94],[748,283],[749,378],[750,717],[751,93],[752,662],[753,746],[754,557],[755,165],[756,554],[757,658],[758,691],[759,454],[760,553],[761,644],[762,155],[763,496],[764,68],[765,330],[766,124],[767,406],[768,339],[769,65],[770,712],[771,714],[772,769],[773,367],[774,34],[775,117],[776,193],[777,452],[778,364],[779,467],[780,11],[781,137],[782,552],[783,767],[784,0],[785,228],[786,281],[787,295],[788,24],[789,619],[790,751],[791,296],[792,9],[793,236],[794,330],[795,37],[796,665],[797,447],[798,267],[799,95],[800,697],[801,560],[802,489],[803,97],[804,179],[805,798],[806,665],[807,278],[808,336],[809,727],[810,512],[811,629],[812,519],[813,319],[814,730],[815,203],[816,797],[817,75],[818,380],[819,426],[820,212],[821,760],[822,807],[823,591],[824,810],[825,233],[826,564],[827,366],[828,1],[829,678],[830,696],[831,234],[832,70],[833,610],[834,668],[835,237],[836,466],[837,611],[838,419],[839,297],[840,351],[841,806],[842,468],[843,839],[844,319],[845,338],[846,33],[847,290],[848,641],[849,794],[850,291],[851,613],[852,771],[853,449],[854,607],[855,132],[856,454],[857,287],[858,530],[859,689],[860,505],[861,785],[862,428],[863,528],[864,840],[865,90],[866,768],[867,218],[868,59],[869,655],[870,360],[871,497],[872,428],[873,511],[874,445],[875,163],[876,594],[877,78],[878,556],[879,340],[880,84],[881,536],[882,446],[883,413],[884,282],[885,193],[886,607],[887,130],[888,198],[889,17],[890,408],[891,554],[892,331],[893,673],[894,44],[895,662],[896,652],[897,14],[898,600],[899,109],[900,300],[901,710],[902,100],[903,23],[904,759],[905,346],[906,109],[907,235],[908,651],[909,113],[910,769],[911,909],[912,259],[913,522],[914,582],[915,720],[916,169],[917,208],[918,136],[919,381],[920,69],[921,781],[922,1],[923,118],[924,432],[925,390],[926,827],[927,118],[928,330],[929,88],[930,141],[931,416],[932,633],[933,879],[934,69],[935,897],[936,582],[937,850],[938,597],[939,740],[940,462],[941,853],[942,826],[943,387],[944,870],[945,451],[946,763],[947,817],[948,803],[949,411],[950,363],[951,843],[952,132],[953,622],[954,249],[955,85],[956,613],[957,315],[958,667],[959,625],[960,282],[961,259],[962,917],[963,305],[964,73],[965,25],[966,786],[967,196],[968,527],[969,877],[970,732],[971,124],[972,755],[973,94],[974,176],[975,78],[976,141],[977,479],[978,63],[979,295],[980,201],[981,558],[982,941],[983,110],[984,196],[985,82],[986,559],[987,22],[988,400],[989,865],[990,947],[991,687],[992,492],[993,309],[994,810],[995,733],[996,595],[997,93],[998,547],[999,663],[487,202],[888,260],[643,239],[637,365],[183,74],[833,290],[602,144],[565,107],[650,610],[843,606],[114,112],[937,117],[479,207],[721,296],[198,177],[823,300],[520,132],[973,308],[696,525],[996,43],[318,33],[877,197],[676,238],[835,553],[492,17],[559,151],[919,357],[628,425],[810,638],[998,983],[528,398],[786,382],[619,209],[257,198],[919,222],[434,406],[445,299],[704,560],[904,774],[667,282],[679,23],[745,219],[59,57],[257,113],[155,117],[890,732],[840,818],[399,383],[465,131],[888,303],[633,631],[526,435],[499,30],[870,816],[988,17],[610,47],[885,310],[859,601],[716,278],[977,792],[819,307],[591,174],[979,92],[549,353],[513,329],[750,171],[843,522],[452,303],[891,607],[95,78],[784,337],[443,51],[871,491],[935,478],[977,645],[460,251],[688,100],[619,614],[834,495],[784,524],[919,891],[568,283],[988,880],[884,664],[785,591],[347,263],[826,659],[966,401],[890,342],[791,769],[641,603],[338,302],[611,155],[620,494],[484,218],[306,135],[913,16],[470,267],[72,5],[390,211],[794,487],[450,330],[446,69],[433,91],[638,171],[572,69],[287,247],[529,103],[795,58],[733,608],[986,232],[478,469],[858,245],[981,96],[819,700],[693,361],[842,670],[823,672],[909,588],[961,418],[673,178],[409,395],[388,114],[692,569],[919,777],[219,68],[960,683],[881,308],[916,465],[299,77],[683,630],[897,448],[788,296],[812,632],[943,465],[83,56],[994,617],[875,22],[886,412],[836,758],[577,103],[981,99],[859,126],[195,129],[636,484],[922,253],[477,359],[983,443],[534,253],[973,503],[798,480],[789,300],[686,514],[469,342],[838,721],[889,363],[929,526],[604,141],[335,31],[862,616],[970,225],[957,466],[533,341],[485,4],[549,432],[905,210],[557,105],[794,625],[415,265],[720,115],[862,642],[153,30],[867,588],[724,19],[507,488],[778,281],[495,28],[869,274],[859,60],[496,41],[982,436],[354,192],[734,567],[584,374],[770,292],[863,258],[510,375],[989,311],[349,99],[834,311],[934,851],[595,584],[223,135],[223,144],[606,216],[837,748],[129,5],[257,19],[464,318],[670,228],[879,848],[636,439],[243,206],[973,647],[362,215],[331,211],[737,139],[701,239],[968,578],[627,138],[950,908],[835,651],[574,84],[964,378],[630,558],[435,243],[185,39],[771,560],[551,495],[699,19],[969,574],[865,700],[599,323],[897,254],[610,183],[590,521],[205,117],[325,84],[938,547],[780,500],[952,441],[699,254],[882,233],[727,46],[417,318],[653,171],[777,413],[946,444],[789,323],[704,473],[985,170],[760,389],[709,538],[896,697],[795,81],[683,482],[941,895],[585,278],[472,41],[816,470],[673,382],[591,441],[591,63],[810,198],[610,524],[43,12],[699,112],[956,149],[602,111],[893,265],[748,18],[530,342],[978,374],[269,82],[310,15],[425,313],[609,341],[953,500],[771,348],[950,452],[923,890],[370,139],[848,515],[750,323],[788,218],[675,133],[501,174],[966,35],[595,209],[617,18],[887,255],[549,148],[677,94],[787,610],[737,129],[829,49],[788,637],[610,515],[402,193],[176,149],[660,435],[490,62],[886,877],[258,14],[930,716],[940,742],[971,298],[749,460],[704,423],[964,325],[436,197],[908,428],[859,193],[327,213],[906,99],[921,612],[621,586],[636,434],[962,71],[814,24],[267,188],[675,198],[929,459],[357,97],[687,635],[753,331],[838,157],[856,816],[786,447],[470,178],[675,385],[724,204],[501,88],[817,185],[244,9],[749,173],[805,691],[461,304],[335,72],[519,451],[322,139],[911,175],[923,87],[708,106],[191,71],[954,96],[683,530],[899,93],[748,718],[885,312],[539,139],[337,16],[988,567],[554,262],[496,416],[765,464],[828,125],[576,217],[276,239],[946,844],[452,434],[803,765],[892,658],[816,765],[869,319],[976,317],[875,156],[396,22],[933,717],[938,608],[296,240],[612,319],[960,218],[284,144],[727,538],[654,163],[318,281],[361,344],[628,35],[494,226],[572,285],[879,561],[449,239],[955,421],[575,463],[26,12],[581,18],[431,25],[964,478],[845,316],[898,12],[460,128],[811,759],[187,75],[710,703],[741,503],[147,88],[437,302],[951,671],[725,139],[851,265],[700,289],[902,636],[512,425],[243,162],[708,386],[252,141],[20,13],[811,161],[762,416],[497,383],[879,476],[637,108],[333,158],[940,172],[376,341],[753,689],[158,27],[699,541],[405,358],[649,62],[426,24],[665,271],[963,580],[263,6],[925,575],[816,148],[509,475],[485,12],[938,896],[964,532],[892,43],[44,39],[621,540],[262,199],[810,128],[881,749],[609,92],[812,17],[983,242],[735,502],[989,282],[885,154],[679,365],[466,405],[991,570],[883,171],[865,30],[285,235],[801,419],[517,36],[920,567],[914,359],[993,568],[609,352],[403,382],[425,185],[545,469],[692,229],[478,227],[977,778],[941,710],[728,51],[420,218],[659,533],[416,213],[412,387],[755,19],[878,489],[640,67],[527,369],[624,283],[176,157],[632,148],[581,311],[660,564],[786,287],[738,554],[512,102],[663,376],[706,300],[661,140],[933,517],[776,532],[660,509],[122,20],[92,88],[715,415],[852,326],[246,136],[602,466],[161,117],[524,379],[261,199],[901,631],[779,508],[353,342],[488,74],[225,208],[365,339],[628,468],[409,379],[188,114],[709,152],[727,323],[760,134],[829,262],[834,363],[612,72],[289,113],[523,4],[534,242],[401,335],[369,29],[638,400],[535,14],[836,791],[711,691],[499,253],[973,861],[724,435],[852,504],[871,90],[965,928],[743,658],[437,422],[95,38],[625,583],[567,496],[640,182],[617,166],[910,184],[967,331],[792,563],[717,152],[876,338],[257,189],[139,16],[130,20],[559,538],[814,316],[423,54],[764,513],[795,428],[629,341],[571,96],[652,566],[230,208],[943,748],[555,189],[247,244],[737,7],[326,248],[632,599],[902,684],[929,380],[825,139],[876,762],[781,116],[544,79],[248,67],[734,230],[672,117],[837,154],[562,439],[795,641],[971,382],[473,436],[913,191],[859,796],[912,47],[323,264],[813,695],[605,271],[520,407],[845,450],[969,93],[879,289],[790,73],[965,426],[374,1],[881,815],[931,662],[496,187],[996,451],[611,261],[965,664],[785,589],[506,72],[778,320],[750,167],[368,79],[787,721],[943,429],[699,18],[765,119],[507,293],[557,342],[313,210],[955,871],[266,240],[795,567],[761,414],[955,845],[554,30],[819,602],[945,17],[955,807],[693,331],[232,71],[931,282],[987,924],[721,521],[913,388],[979,582],[991,6],[786,457],[660,426],[928,770],[583,525],[758,94],[153,151],[222,141],[411,378],[786,234],[564,428],[624,112],[646,359],[945,227],[298,172],[219,118],[687,502],[892,16],[965,456],[949,31],[990,690],[988,527],[722,225],[517,467],[748,673],[104,80],[722,146],[495,477],[465,415],[905,316],[724,257],[973,524],[660,231],[829,110],[423,40],[776,248],[869,738],[415,336],[807,242],[608,15],[686,589],[251,171],[700,12],[390,355],[842,654],[987,610],[830,97],[923,413],[173,82],[935,395],[415,354],[425,352],[821,633],[416,280],[466,285],[326,21],[677,164],[493,45],[703,245],[790,766],[772,743],[841,544],[942,270],[805,619],[704,696],[898,586],[986,605],[528,46],[819,814],[844,523],[632,411],[805,646],[473,161],[797,41],[887,217],[989,136],[715,295],[527,48],[942,57],[767,664],[442,18],[972,100],[736,346],[736,96],[728,530],[683,161],[564,390],[496,431],[870,730],[805,266],[751,305],[726,508],[454,244],[901,401],[866,311],[583,546],[407,190],[565,476],[629,557],[589,58],[759,4],[261,195],[698,599],[332,283],[482,116],[911,393],[958,428],[471,260],[393,3],[663,401],[945,212],[183,109],[501,45],[362,109],[788,706],[634,418],[908,47],[877,128],[628,377],[875,12],[937,904],[434,52],[697,407],[853,490],[471,335],[508,285],[594,308],[117,29],[662,356],[599,69],[883,595],[627,536],[414,208],[809,23],[719,351],[818,517],[582,89],[411,313],[332,207],[480,473],[216,18],[336,3],[810,482],[251,176],[990,886],[737,617],[356,268],[946,832],[451,287],[777,420],[825,115],[922,82],[871,96],[803,395],[996,817],[901,891],[516,163],[736,721],[189,139],[776,569],[138,99],[349,204],[550,542],[779,357],[647,485],[924,127],[867,277],[731,714],[890,776],[960,395],[686,429],[830,341],[902,109],[455,100],[544,365],[680,525],[807,282],[535,503],[811,574],[641,573],[755,283],[782,93],[572,361],[925,843],[402,328],[942,845],[918,424],[737,476],[723,97],[556,480],[268,115],[651,417],[711,97],[395,308],[762,577],[886,735],[487,349],[138,109],[847,479],[916,646],[969,808],[164,81],[97,36],[529,64],[289,86],[993,444],[710,320],[525,522],[595,311],[361,180],[983,880],[334,37],[442,351],[879,563],[596,240],[694,456],[285,40],[363,139],[487,203],[950,880],[878,584],[744,236],[804,78],[483,49],[234,21],[795,473],[678,164],[565,440],[882,679],[401,114],[641,366],[922,900],[748,460],[248,219],[601,447],[441,64],[421,334],[894,75],[592,303],[338,157],[925,690],[887,614],[538,136],[275,120],[762,168],[947,780],[938,601],[914,436],[808,770],[617,315],[654,503],[744,319],[205,21],[861,736],[366,247],[724,222],[435,112],[604,378],[798,559],[408,63],[545,526],[957,371],[827,275],[209,164],[864,495],[277,107],[948,504],[432,152],[854,381],[926,79],[772,521],[695,71],[762,21],[647,60],[503,205],[590,345],[797,364],[926,78],[809,390],[933,826],[966,446],[627,506],[705,343],[873,550],[759,753],[693,423],[556,297],[467,260],[574,277],[389,371],[814,618],[499,268],[475,224],[100,76],[868,255],[845,77],[877,93],[851,778],[617,578],[773,617],[508,242],[809,374],[426,2],[315,137],[212,10],[678,156],[466,342],[279,266],[516,293],[929,474],[838,512],[764,335],[539,468],[278,56],[716,329],[976,441],[483,168],[290,148],[877,475],[868,513],[783,744],[364,308],[852,76],[940,375],[864,592],[391,252],[516,43],[813,311],[58,43],[897,628],[919,120],[430,322],[866,40],[952,872],[760,481],[792,186],[48,34],[828,738],[869,341],[118,49],[532,366],[522,448],[609,34],[848,625],[428,194],[922,867],[86,50],[489,463],[311,32],[726,291],[881,644],[547,294],[480,149],[846,303],[714,420],[154,39],[166,153],[611,609],[948,603],[839,81],[250,189],[683,325],[894,769],[438,24],[228,114],[966,944],[138,50],[816,49],[635,501],[773,506],[449,434],[413,10],[971,144],[951,946],[841,227],[350,171],[500,333],[539,389],[841,445],[550,318],[626,257],[318,273],[545,16],[579,147],[547,505],[985,40],[805,538],[669,274],[954,678],[843,581],[181,55],[493,124],[835,152],[929,713],[131,109],[243,19],[941,7],[911,832],[742,85],[250,170],[764,278],[636,63],[404,361],[632,615],[566,509],[961,809],[545,517],[759,657],[782,105],[383,381],[725,561],[923,512],[813,559],[878,116],[392,303],[740,47],[940,672],[809,382],[611,416],[745,575],[942,380],[556,328],[664,294],[393,360],[525,427],[970,328],[846,735],[191,110],[702,692],[965,180],[536,409],[685,247],[553,328],[565,426],[797,485],[280,252],[626,609],[857,629],[478,18],[555,129],[970,703],[964,303],[486,58],[354,139],[812,66],[942,599],[484,96],[518,283],[817,108],[738,80],[668,492],[873,724],[929,519],[848,287],[413,391],[504,470],[295,54],[924,62],[303,2],[439,318],[961,171],[811,189],[966,878],[685,655],[760,394],[904,373],[284,48],[302,267],[869,768],[670,74],[782,576],[999,778],[814,55],[896,372],[777,293],[853,653],[520,36],[263,53],[363,213],[901,418],[702,689],[489,444],[923,491],[698,18],[899,120],[619,182],[223,196],[876,366],[904,495],[617,67],[997,71],[691,678],[950,690],[280,192],[323,158],[731,24],[530,131],[931,187],[838,213],[728,75],[567,56],[754,177],[320,282],[914,418],[852,325],[140,14],[959,145],[203,78],[880,449],[555,287],[826,340],[954,50],[980,531],[300,255],[77,0],[92,0],[441,338],[381,11],[444,398],[115,3],[520,335],[129,43],[815,469],[446,115],[575,96],[604,485],[691,675],[982,779],[804,395],[480,194],[864,582],[929,682],[874,133],[391,70],[865,164],[950,515],[136,26],[680,157],[557,483],[845,195],[836,522],[692,512],[406,161],[664,605],[913,30],[699,51],[935,394],[925,269],[296,8],[645,71],[921,274],[797,597],[728,480],[196,178],[555,317],[711,400],[784,509],[827,657],[989,713],[787,599],[624,238],[869,828],[267,194],[552,288],[814,286],[344,271],[782,4],[889,409],[365,227],[167,117],[452,182],[957,577],[844,522],[577,29],[729,196],[493,303],[749,540],[537,115],[829,770],[979,861],[211,6],[851,132],[542,66],[406,238],[476,360],[553,421],[162,32],[743,106],[622,387],[748,142],[328,244],[639,33],[127,34],[894,299],[763,316],[252,127],[596,105],[479,259],[132,46],[392,324],[651,6],[416,94],[629,488],[606,296],[847,181],[566,130],[697,146],[647,600],[536,79],[542,79],[823,631],[518,190],[419,32],[659,496],[569,316],[752,685],[83,51],[952,87],[628,351],[647,10],[858,814],[946,106],[895,719],[596,523],[880,115],[507,89],[727,135],[746,12],[751,340],[728,297],[296,124],[865,263],[603,423],[972,817],[242,40],[997,963],[552,231],[278,143],[89,73],[355,60],[431,262],[708,638],[683,314],[451,390],[190,50],[867,367],[909,387],[45,32],[534,6],[348,273],[594,306],[933,208],[223,79],[963,605],[672,616],[995,670],[549,532],[719,63],[927,744],[626,72],[920,21],[982,206],[906,65],[530,271],[664,436],[850,314],[663,258],[990,171],[738,139],[628,290],[683,62],[236,235],[294,11],[844,242],[973,799],[713,398],[726,682],[946,717],[966,294],[656,476],[35,28],[791,123],[327,110],[658,68],[584,569],[347,242],[201,82],[721,595],[756,372],[667,129],[625,193],[713,360],[77,7],[884,879],[861,646],[512,108],[699,507],[850,178],[174,147],[371,25],[977,217],[236,188],[495,131],[932,63],[556,100],[645,0],[893,48],[941,837],[561,67],[614,415],[303,53],[715,161],[225,76],[665,356],[459,73],[604,559],[484,385],[769,206],[748,29],[980,812],[603,6],[728,628],[596,345],[863,565],[724,419],[838,410],[987,839],[909,171],[316,161],[108,99],[893,614],[827,424],[587,397],[612,352],[400,243],[481,458],[561,320],[511,495],[876,660],[910,667],[702,426],[543,163],[962,611],[499,417],[728,564],[800,734],[595,298],[863,259],[888,85],[629,616],[728,539],[869,53],[827,15],[769,41],[195,189],[551,505],[402,359],[336,17],[721,261],[917,724],[253,109],[557,385],[897,98],[117,48],[830,277],[989,33],[810,122],[500,118],[590,121],[451,216],[462,224],[861,589],[364,118],[108,26],[615,345],[633,82],[410,38],[719,485],[843,114],[985,119],[849,137],[962,657],[984,331],[425,369],[409,140],[677,414],[702,608],[867,317],[815,649],[717,506],[976,882],[783,242],[937,929],[650,387],[142,133],[964,140],[688,521],[862,130],[617,271],[770,227],[655,267],[863,47],[559,488],[609,440],[428,231],[460,25],[504,12],[551,163],[882,275],[555,76],[631,331],[401,182],[212,74],[917,860],[233,200],[225,104],[199,159],[48,4],[813,432],[914,483],[598,234],[893,202],[558,198],[490,232],[796,726],[693,390],[987,454],[883,560],[975,120],[955,747],[873,553],[505,183],[786,731],[663,317],[468,385],[580,183],[976,102],[755,523],[640,402],[715,707],[431,175],[724,519],[862,595],[614,13],[604,222],[556,467],[310,308],[430,275],[634,415],[856,125],[946,186],[758,91],[758,372],[956,856],[760,635],[551,520],[530,200],[758,566],[514,153],[880,851],[965,592],[976,240],[348,346],[816,674],[607,454],[779,603],[966,403],[639,259],[360,178],[487,461],[278,149],[240,134],[901,569],[987,127],[983,696],[889,118],[206,36],[851,762],[604,18],[969,24],[639,350],[747,579],[916,774],[402,27],[116,84],[351,91],[340,274],[784,390],[856,514],[877,270],[224,205],[991,785],[486,97],[443,310],[833,421],[949,925],[811,2],[829,612],[906,888],[204,86],[843,107],[607,53],[946,360],[848,215],[165,130],[731,437],[959,212],[82,41],[813,200],[931,93],[748,40],[434,224],[98,57],[830,694],[377,277],[386,37],[906,674],[950,36],[596,339],[962,790],[300,204],[847,537],[420,227],[943,632],[148,110],[347,169],[751,32],[729,626],[729,510],[852,224],[978,658],[483,325],[345,289],[801,53],[119,65],[140,13],[804,424],[897,125],[971,399],[989,144],[601,486],[694,92],[681,676],[999,936],[713,315],[682,49],[549,186],[266,36],[156,46],[646,238],[479,19],[603,102],[889,186],[693,453],[307,122],[959,311],[183,129],[712,333],[754,182],[690,472],[820,457],[599,507],[184,166],[892,483],[696,55],[686,68],[371,230],[641,383],[997,889],[668,194],[970,748],[437,26],[956,863],[934,4],[317,188],[747,703],[550,264],[440,5],[757,477],[481,463],[210,65],[420,387],[294,8],[689,347],[991,235],[851,358],[697,597],[511,264],[685,276],[890,417],[904,60],[210,183],[965,87],[906,235],[960,352],[712,278],[324,126],[792,187],[923,375],[157,126],[914,812],[891,585],[796,349],[980,744],[977,96],[710,365],[648,75],[205,108],[533,303],[940,467],[720,437],[470,458],[941,177],[967,345],[819,156],[547,14],[879,436],[249,44],[669,369],[715,206],[335,187],[808,106],[890,0],[973,833],[521,328],[709,159],[650,629],[459,63],[290,177],[279,16],[725,332],[87,23],[785,744],[679,245],[931,368],[894,413],[534,405],[828,441],[815,106],[720,325],[820,271],[623,218],[400,245],[908,799],[872,788],[750,189],[866,423],[879,833],[393,207],[628,10],[868,76],[557,344],[111,6],[985,518],[910,109],[495,117],[213,161],[751,98],[809,103],[688,548],[656,578],[412,4],[587,403],[261,219],[842,740],[456,155],[882,340],[586,19],[779,678],[209,8],[543,106],[818,29],[868,527],[710,203],[917,563],[731,38],[962,686],[966,949],[927,426],[750,283],[537,186],[949,643],[211,53],[961,174],[977,970],[941,630],[938,693],[207,125],[967,705],[315,133],[317,144],[686,551],[955,938],[785,757],[696,502],[832,658],[753,732],[668,192],[493,238],[586,459],[358,293],[486,112],[744,60],[867,612],[498,230],[156,79],[805,222],[177,11],[776,561],[679,491],[994,592],[910,48],[974,769],[689,80],[304,216],[316,0],[816,357],[879,381],[507,49],[844,587],[953,108],[975,615],[951,252],[600,244],[480,188],[972,465],[843,69],[367,270],[927,343],[788,305],[993,958],[177,37],[864,506],[984,894],[480,141],[539,524],[225,63],[891,550],[427,383],[526,37],[998,195],[940,805],[105,68],[782,749],[662,349],[480,270],[368,81],[681,650],[436,3],[409,313],[878,69],[352,313],[966,636],[562,200],[126,33],[386,380],[366,307],[877,139],[800,161],[704,168],[930,450],[533,202],[600,69],[486,294],[587,269],[529,520],[560,309],[777,249],[423,298],[942,532],[670,0],[967,189],[989,908],[425,421],[785,545],[770,718],[951,158],[667,556],[399,245],[490,74],[839,226],[739,402],[958,941],[652,515],[760,578],[733,682],[901,387],[543,448],[730,697],[452,264],[405,329],[820,810],[724,154],[653,85],[550,121],[901,193],[876,28],[130,122],[677,521],[510,273],[954,36],[493,138],[165,156],[851,274],[713,200],[220,12],[408,260],[327,49],[476,465],[921,788],[348,6],[615,452],[971,556],[893,278],[645,8],[694,650],[809,502],[754,195],[487,257],[829,762],[925,449],[796,117],[734,361],[848,324],[989,532],[932,173],[610,506],[315,4],[702,63],[970,736],[510,385],[380,96],[788,455],[166,141],[760,87],[653,173],[602,454],[836,363],[394,249],[405,163],[612,403],[679,76],[538,381],[936,197],[756,459],[733,659],[120,2],[262,141],[758,496],[965,800],[391,37],[939,934],[432,285],[591,411],[263,101],[133,27],[915,10],[957,599],[554,39],[446,168],[773,178],[847,13],[226,3],[966,655],[704,149],[557,424],[596,327],[699,542],[899,706],[399,376],[100,30],[976,23],[920,645],[479,125],[661,340],[893,712],[703,192],[871,264],[266,238],[490,75],[333,219],[629,575],[398,333],[615,49],[641,545],[313,275],[803,299],[717,166],[826,421],[919,546],[736,43],[233,19],[948,382],[508,76],[732,104],[511,272],[681,111],[564,497],[974,453],[288,184],[946,681],[721,335],[741,100],[820,39],[611,457],[983,229],[585,316],[627,198],[644,379],[847,507],[687,0],[813,396],[670,163],[278,107],[952,25],[992,290],[401,342],[943,306],[738,549],[962,921],[968,468],[725,326],[780,45],[337,252],[966,42],[794,783],[866,1],[695,466],[931,375],[981,802],[548,464],[710,364],[986,299],[539,460],[940,63],[835,122],[518,493],[721,142],[707,97],[473,178],[667,562],[757,576],[565,438],[697,625],[735,643],[935,713],[710,418],[449,232],[313,263],[483,175],[991,246],[422,348],[151,119],[831,293],[501,463],[531,174],[632,286],[935,598],[828,339],[327,88],[619,143],[899,610],[649,33],[810,219],[715,562],[486,162],[686,270],[949,338],[279,3],[468,384],[743,73],[937,910],[729,235],[951,889],[73,67],[827,126],[234,10],[748,489],[610,502],[540,66],[344,313],[400,171],[480,255],[709,264],[984,772],[876,739],[974,293],[579,324],[606,266],[955,797],[559,394],[275,149],[907,397],[442,80],[978,948],[455,73],[982,50],[775,349],[985,627],[512,276],[762,3],[750,582],[586,199],[355,329],[632,419],[468,57],[887,148],[985,212],[958,748],[893,501],[887,170],[481,247],[340,211],[983,549],[960,816],[939,479],[569,295],[467,457],[798,178],[565,457],[380,337],[703,293],[748,375],[88,82],[543,296],[418,268],[778,7],[612,515],[808,800],[170,167],[774,493],[711,344],[792,26],[521,42],[987,873],[804,444],[382,72],[955,480],[470,11],[842,402],[706,627],[890,314],[367,77],[631,298],[531,231],[696,400],[912,49],[639,478],[864,278],[812,348],[940,841],[830,138],[25,17],[821,553],[644,206],[809,33],[557,495],[913,289],[516,349],[733,348],[750,7],[457,200],[946,490],[995,589],[876,23],[881,658],[603,345],[503,348],[161,43],[987,73],[947,207],[571,93],[810,371],[356,296],[734,355],[894,450],[664,491],[792,735],[940,205],[639,552],[580,454],[306,255],[699,113],[400,253],[338,65],[777,655],[974,182],[258,185],[502,202],[105,15],[683,483],[674,373],[425,120],[805,106],[650,84],[487,425],[628,379],[205,42],[575,213],[290,252],[558,56],[295,154],[975,810],[927,236],[407,43],[799,473],[807,802],[832,458],[809,641],[588,499],[984,931],[913,905],[886,542],[444,373],[600,56],[804,145],[690,65],[743,248],[944,538],[985,238],[916,140],[992,33],[201,20],[270,222],[937,875],[644,387],[485,27],[842,807],[397,173],[984,423],[221,52],[484,54],[807,86],[351,15],[603,507],[539,444],[799,125],[969,923],[832,322],[876,332],[786,4],[840,627],[962,215],[52,43],[375,110],[782,0],[818,328],[36,12],[828,584],[716,575],[386,145],[381,75],[769,547],[639,25],[646,176],[747,562],[523,105],[992,212],[981,391],[950,56],[514,209],[959,532],[973,41],[995,806],[198,113],[582,75],[828,470],[881,675],[885,348],[998,756],[453,356],[535,421],[824,275],[88,0],[974,736],[532,274],[777,684],[896,282],[384,142],[111,103],[667,416],[905,25],[859,116],[636,241],[878,875],[439,2],[936,684],[561,377],[894,42],[900,128],[728,426],[557,56],[520,98],[651,548],[640,63],[937,450],[485,102],[644,280],[352,109],[643,353],[879,61],[491,429],[953,261],[642,56],[953,118],[978,629],[661,98],[903,693],[493,71],[586,522],[255,234],[745,27],[861,322],[805,742],[372,136],[647,235],[905,624],[924,544],[947,771],[529,402],[304,196],[631,371],[623,381],[960,260],[864,328],[405,213],[307,131],[518,173],[699,180],[918,359],[862,81],[889,163],[768,354],[730,9],[899,94],[455,33],[555,494],[758,481],[838,92],[779,726],[301,136],[851,624],[562,441],[783,61],[771,271],[763,640],[622,320],[833,135],[367,238],[950,237],[262,80],[961,154],[575,116],[767,304],[288,100],[558,17],[657,9],[624,258],[953,514],[815,510],[361,6],[622,69],[633,497],[982,979],[514,211],[748,529],[854,143],[530,388],[834,663],[868,22],[650,307],[875,226],[650,525],[231,212],[891,663],[759,378],[822,219],[746,340],[678,478],[810,803],[349,31],[881,294],[770,647],[874,301],[811,80],[778,646],[355,195],[500,181],[825,606],[692,358],[901,684],[636,343],[793,500],[594,536],[171,156],[744,676],[671,18],[808,684],[845,574],[670,222],[919,321],[737,27],[615,537],[671,219],[591,351],[851,623],[529,315],[923,542],[425,70],[315,17],[712,641],[831,363],[778,259],[666,445],[923,656],[802,759],[346,267],[332,295],[502,323],[919,332],[470,310],[572,167],[619,197],[650,246],[299,221],[884,148],[329,84],[999,696],[764,372],[525,87],[668,297],[806,475],[575,234],[763,580],[598,258],[319,54],[273,150],[740,666],[381,51],[593,378],[812,89],[854,842],[249,214],[886,733],[971,247],[857,132],[264,99],[593,422],[629,515],[802,246],[931,860],[814,411],[412,51],[329,111],[539,308],[470,302],[413,351],[747,338],[804,780],[925,919],[934,361],[538,281],[872,352],[897,608],[765,725],[754,34],[457,245],[735,602],[995,180],[559,61],[558,550],[896,214],[904,215],[449,217],[545,138],[988,474],[348,185],[957,111],[399,393],[600,492],[487,31],[953,822],[436,126],[614,123],[804,501],[281,224],[937,750],[794,711],[395,169],[180,28],[957,366],[566,282],[588,73],[710,578],[666,259],[585,481],[966,741],[412,41],[587,132],[944,115],[889,484],[251,230],[746,0],[970,40],[966,414],[196,192],[918,102],[720,537],[684,354],[206,69],[396,94],[369,235],[777,503],[454,362],[225,122],[935,408],[798,628],[637,410],[737,320],[777,541],[874,384],[416,341],[700,215],[854,10],[973,869],[776,112],[953,723],[739,699],[272,69],[469,399],[866,293],[821,570],[457,444],[134,78],[945,313],[964,79],[817,525],[827,671],[874,736],[798,86],[740,450],[868,472],[568,161],[478,127],[666,22],[876,651],[620,463],[744,391],[938,336],[866,584],[482,33],[937,307],[910,33],[347,259],[124,68],[529,89],[939,533],[858,56],[575,426],[584,517],[618,274],[954,928],[485,88],[720,678],[825,702],[872,602],[434,23],[115,30],[783,432],[905,891],[415,21],[813,45],[308,218],[337,27],[928,551],[610,277],[567,539],[772,79],[775,660],[759,396],[953,478],[645,608],[633,57],[687,412],[888,792],[114,74],[746,631],[404,245],[817,438],[558,129],[887,81],[234,94],[708,344],[851,812],[419,245],[375,15],[581,516],[865,541],[507,104],[91,74],[262,92],[992,159],[265,239],[860,491],[161,106],[839,269],[943,779],[870,658],[381,153],[590,487],[935,883],[880,697],[676,41],[656,545],[981,450],[727,152],[537,382],[985,470],[490,486],[734,435],[971,524],[401,150],[714,235],[799,702],[300,243],[779,8],[502,22],[717,456],[642,299],[879,522],[700,672],[68,34],[422,282],[658,541],[642,551],[842,820],[210,73],[97,11],[439,68],[858,837],[473,450],[401,334],[800,557],[223,42],[569,93],[730,97],[756,531],[951,395],[300,189],[999,340],[514,57],[964,225],[251,212],[733,552],[681,352],[994,54],[478,353],[754,14],[577,124],[616,450],[611,194],[344,23],[641,214],[128,94],[866,235],[680,149],[961,448],[422,298],[908,577],[963,45],[585,274],[307,205],[554,527],[971,384],[974,652],[858,577],[598,313],[602,503],[341,28],[744,56],[936,825],[774,401],[537,460],[516,468],[303,65],[164,82],[397,394],[746,434],[857,680],[895,287],[253,101],[477,216],[450,363],[611,504],[861,80],[720,31],[215,142],[384,301],[300,219],[237,152],[268,113],[684,681],[573,389],[626,321],[573,78],[921,133],[607,115],[743,346],[885,243],[863,316],[982,56],[194,161],[728,97],[927,486],[608,304],[847,100],[900,796],[776,314],[484,220],[932,123],[778,624],[910,13],[939,344],[577,95],[669,461],[974,422],[246,44],[725,276],[983,220],[712,63],[771,253],[828,478],[710,463],[344,295],[888,176],[827,85],[980,7],[959,954],[431,260],[833,522],[448,246],[681,72],[651,212],[477,126],[498,33],[748,724],[676,559],[728,161],[762,161],[309,187],[416,326],[845,245],[975,696],[766,339],[618,488],[242,117],[590,29],[797,710],[479,212],[470,182],[691,187],[973,662],[900,48],[730,202],[421,281],[131,117],[706,304],[634,284],[868,763],[598,394],[757,478],[668,476],[537,110],[811,23],[735,172],[634,516],[761,271],[869,727],[915,738],[902,213],[844,315],[440,273],[911,480],[882,127],[927,325],[873,618],[694,684],[993,449],[537,423],[672,101],[405,317],[967,199],[721,342],[651,524],[986,514],[981,799],[784,191],[944,107],[656,637],[212,166],[534,457],[753,295],[849,280],[413,381],[896,211],[788,66],[985,84],[873,701],[500,298],[592,573],[847,130],[788,487],[464,196],[845,711],[964,666],[807,37],[486,91],[918,383],[327,282],[843,326],[172,148],[708,454],[293,163],[902,817],[472,423],[316,28],[588,108],[996,358],[818,758],[836,192],[396,161],[655,628],[817,176],[802,435],[650,552],[932,236],[172,26],[561,161],[806,416],[946,602],[944,545],[732,291],[884,827],[761,730],[933,72],[939,321],[834,3],[610,82],[337,59],[719,659],[408,243],[765,283],[939,755],[937,312],[382,297],[550,285],[726,228],[641,512],[786,443],[744,282],[374,13],[392,362],[998,923],[910,263],[227,187],[845,29],[985,922],[504,301],[634,407],[707,272],[222,200],[810,63],[525,424],[624,242],[980,119],[765,7],[450,12],[990,461],[510,376],[902,517],[532,277],[921,197],[752,13],[680,413],[558,301],[664,206],[697,109],[719,257],[841,270],[988,118],[698,56],[943,768],[881,349],[956,870],[501,342],[549,0],[763,10],[469,426],[720,212],[491,453],[857,67],[398,102],[686,261],[658,154],[553,140],[467,200],[739,173],[935,890],[631,512],[893,397],[548,407],[632,603],[768,575],[780,325],[486,375],[987,976],[670,531],[296,139],[742,141],[840,388],[983,894],[376,307],[912,316],[652,133],[689,398],[198,184],[636,629],[803,302],[295,32],[782,247],[510,275],[584,77],[421,373],[774,394],[633,286],[690,325],[881,14],[467,123],[973,842],[857,102],[923,577],[765,667],[665,520],[741,196],[702,480],[867,389],[200,45],[415,374],[968,590],[810,524],[933,894],[537,529],[954,322],[530,71],[495,139],[719,232],[847,407],[542,185],[576,533],[686,537],[740,108],[726,710],[222,35],[995,133],[751,205],[418,401],[939,29],[675,18],[638,602],[190,96],[791,272],[783,211],[506,130],[472,111],[770,734],[519,432],[654,218],[689,485],[960,798],[748,293],[345,237],[712,522],[157,138],[799,576],[750,300],[373,192],[966,97],[345,186],[709,449],[532,146],[705,229],[815,479],[636,56],[110,109],[557,68],[287,18],[760,32],[984,369],[882,673],[744,449],[406,97],[386,187],[963,404],[419,332],[181,77],[244,112],[785,0],[513,435],[874,656],[515,452],[688,109],[934,869],[776,551],[594,191],[549,125],[718,658],[839,831],[847,248],[280,127],[488,224],[996,100],[735,473],[568,220],[859,710],[465,112],[791,551],[937,871],[925,466],[576,43],[660,642],[772,624],[529,440],[674,152],[442,26],[222,187],[807,152],[267,135],[999,18],[939,6],[167,76],[789,291],[819,337],[998,73],[811,26],[913,897],[538,517],[960,244],[915,83],[867,302],[701,530],[877,559],[868,858],[986,202],[644,575],[381,29],[959,822],[597,446],[813,108],[827,351],[481,292],[755,383],[436,143],[340,226],[752,163],[943,460],[401,30],[268,80],[947,252],[527,479],[961,433],[656,473],[748,133],[352,193],[864,370],[806,559],[484,119],[854,796],[934,287],[988,219],[719,636],[270,58],[730,115],[349,214],[359,17],[803,734],[870,96],[789,703],[906,894],[542,158],[616,504],[780,46],[990,704],[307,43],[539,161],[493,74],[926,344],[879,109],[737,285],[514,493],[523,22],[862,602],[854,333],[566,55],[414,253],[186,45],[546,124],[239,85],[979,875],[267,170],[892,90],[408,92],[794,160],[839,307],[541,372],[529,331],[406,261],[547,372],[984,955],[530,310],[619,550],[823,75],[984,607],[463,313],[723,609],[676,624],[388,2],[365,296],[546,57],[590,235],[710,690],[985,860],[424,40],[487,169],[798,288],[595,31],[569,150],[157,17],[464,378],[210,94],[634,60],[648,107],[389,146],[819,140],[601,439],[970,515],[812,51],[984,829],[732,245],[539,394],[744,429],[691,20],[741,31],[953,482],[865,414],[570,426],[971,772],[693,274],[374,344],[317,117],[311,270],[919,457],[830,638],[226,162],[862,748],[938,696],[244,242],[774,85],[535,277],[630,334],[585,537],[959,801],[838,567],[781,594],[199,129],[968,234],[245,6],[471,460],[465,337],[870,686],[780,465],[808,552],[516,99],[831,365],[653,257],[480,40],[725,369],[982,99],[831,87],[918,279],[875,561],[541,26],[648,571],[971,706],[853,507],[863,157],[230,139],[732,29],[318,34],[936,661],[990,312],[58,56],[495,5],[786,664],[858,30],[546,236],[949,865],[913,898],[956,208],[495,167],[232,51],[493,73],[661,193],[315,107],[997,271],[947,588],[863,633],[20,17],[610,362],[781,537],[799,262],[279,5],[307,36],[975,592],[266,166],[873,243],[853,837],[911,760],[538,358],[774,290],[917,29],[823,185],[573,231],[358,187],[610,134],[905,462],[928,525],[870,344],[896,767],[953,150],[912,384],[546,490],[929,427],[331,59],[685,325],[581,399],[870,518],[626,463],[419,241],[258,223],[557,547],[983,817],[843,607],[534,359],[525,10],[824,302],[708,484],[429,9],[487,41],[661,453],[942,448],[913,880],[611,458],[626,546],[595,208],[829,333],[993,615],[139,83],[622,50],[961,917],[557,430],[320,212],[988,741],[503,26],[863,580],[521,276],[986,97],[897,274],[946,424],[810,517],[666,203],[943,190],[624,168],[668,543],[711,409],[410,389],[857,450],[568,292],[654,515],[815,88],[843,534],[446,125],[549,369],[257,49],[834,511],[421,197],[458,414],[423,203],[275,129],[974,685],[260,127],[939,540],[922,894],[372,295],[436,346],[967,53],[918,253],[770,479],[454,30],[275,138],[330,166],[847,342],[292,119],[700,226],[722,555],[86,8],[932,482],[640,328],[925,336],[863,663],[592,191],[942,487],[464,395],[738,413],[858,153],[937,433],[720,664],[874,351],[228,131],[682,189],[752,625],[729,95],[944,105],[118,9],[405,265],[922,359],[706,202],[625,268],[851,409],[691,54],[881,243],[996,452],[943,585],[718,614],[231,85],[950,419],[458,194],[927,538],[976,316],[613,247],[311,27],[491,73],[495,369],[911,3],[735,415],[517,153],[735,193],[851,556],[727,15],[719,81],[609,488],[444,370],[293,292],[640,555],[636,11],[967,939],[769,724],[135,31],[870,364],[762,154],[741,672],[866,288],[899,705],[874,333],[103,37],[490,51],[749,334],[503,389],[331,187],[874,82],[577,191],[488,415],[784,673],[314,87],[245,125],[951,517],[697,662],[766,350],[956,654],[788,407],[512,29],[692,339],[726,249],[991,621],[692,3],[744,536],[832,416],[883,257],[763,637],[644,425],[787,701],[888,225],[939,333],[865,178],[982,668],[948,41],[562,469],[395,37],[669,29],[782,558],[627,396],[354,9],[253,3],[532,292],[865,432],[212,18],[775,270],[628,111],[929,903],[668,39],[439,329],[380,87],[948,188],[372,267],[525,279],[727,3],[966,483],[814,753],[625,566],[826,699],[856,237],[572,101],[416,240],[617,204],[767,616],[878,168],[564,334],[729,563],[787,378],[787,781],[913,294],[121,79],[711,708],[830,628],[887,181],[784,299],[903,54],[916,595],[278,192],[449,144],[675,469],[919,95],[438,398],[265,263],[442,10],[724,647],[456,389],[901,325],[926,59],[113,2],[282,200],[534,0],[459,88],[903,383],[774,701],[786,293],[741,317],[658,456],[968,59],[705,196],[818,453],[496,177],[872,221],[848,144],[889,473],[937,241],[475,27],[870,534],[828,89],[874,308],[732,198],[443,88],[300,287],[646,490],[842,289],[609,33],[870,259],[813,496],[949,74],[726,481],[955,26],[995,612],[674,633],[691,424],[460,179],[812,705],[886,40],[851,574],[558,557],[488,152],[736,606],[420,38],[365,362],[857,593],[845,127],[340,228],[445,69],[463,402],[277,233],[907,512],[585,444],[521,492],[458,154],[660,538],[922,633],[951,697],[640,332],[264,258],[703,504],[936,632],[730,92],[990,324],[883,842],[882,476],[925,231],[384,79],[697,665],[625,294],[734,297],[479,228],[937,698],[931,286],[447,51],[774,208],[484,426],[739,129],[200,38],[467,179],[474,79],[714,18],[592,428],[690,192],[975,387],[685,563],[948,517],[477,72],[388,165],[857,827],[644,534],[705,113],[579,191],[841,837],[585,452],[912,792],[741,382],[445,362],[657,565],[367,244],[280,229],[849,423],[949,154],[229,40],[742,341],[785,520],[204,140],[841,385],[144,133],[987,788],[801,775],[161,93],[908,899],[671,626],[675,543],[514,248],[969,482],[933,318],[792,299],[395,354],[734,547],[904,367],[924,144],[967,901],[921,625],[760,589],[980,593],[473,102],[483,251],[864,473],[949,505],[927,472],[508,153],[896,411],[751,293],[807,271],[613,496],[822,118],[322,215],[576,251],[511,184],[668,455],[599,110],[777,580],[722,83],[954,842],[289,220],[881,448],[575,226],[868,178],[929,744],[603,506],[712,677],[929,245],[271,17],[523,192],[965,36],[334,171],[259,252],[968,91],[886,649],[904,235],[872,372],[785,371],[326,102],[530,437],[258,208],[522,97],[763,520],[294,17],[873,262],[781,462],[517,460],[852,487],[163,37],[745,616],[658,78],[915,55],[963,85],[688,330],[243,177],[826,134],[938,631],[826,601],[555,34],[969,25],[380,177],[594,368],[952,592],[639,285],[940,821],[365,211],[906,709],[975,296],[608,57],[956,620],[31,15],[623,407],[993,207],[889,110],[907,104],[954,910],[996,92],[543,488],[677,656],[795,516],[739,169],[871,731],[694,118],[874,697],[742,552],[973,367],[851,539],[691,521],[761,189],[706,67],[585,476],[557,416],[928,777],[509,198],[692,626],[534,114],[819,221],[693,680],[171,15],[799,496],[204,20],[708,442],[677,12],[477,350],[455,382],[760,198],[494,427],[866,806],[662,548],[357,266],[737,675],[315,207],[829,736],[688,43],[803,247],[800,10],[659,268],[271,46],[686,96],[529,209],[595,589],[746,342],[786,488],[404,191],[369,200],[777,8],[934,280],[196,134],[646,50],[917,162],[207,119],[765,254],[861,145],[722,493],[846,184],[348,166],[880,832],[980,150],[966,568],[997,482],[407,22],[682,320],[484,173],[533,95],[913,283],[957,650],[489,459],[909,189],[578,420],[593,90],[844,530],[638,533],[175,70],[570,483],[790,521],[536,145],[526,38],[936,532],[841,353],[259,25],[832,25],[875,635],[662,32],[377,209],[568,228],[989,526],[855,703],[512,61],[688,417],[832,268],[404,115],[748,289],[941,660],[556,154],[387,280],[774,712],[549,471],[235,50],[841,689],[688,127],[191,17],[578,351],[933,734],[750,11],[612,283],[418,302],[790,89],[464,228],[295,183],[873,9],[991,849],[538,487],[359,242],[769,296],[924,134],[764,239],[293,7],[957,658],[959,348],[285,274],[129,126],[989,571],[933,586],[667,54],[823,492],[745,593],[674,639],[310,237],[984,335],[540,371],[760,487],[934,729],[908,455],[449,424],[56,27],[310,230],[363,315],[802,772],[952,99],[860,276],[899,13],[304,265],[640,267],[999,54],[896,537],[879,214],[236,147],[621,471],[923,315],[817,163],[807,343],[404,331],[614,301],[992,463],[526,203],[587,254],[791,347],[433,389],[765,343],[855,318],[640,635],[309,100],[987,457],[328,35],[938,184],[436,431],[596,360],[984,441],[515,392],[610,159],[408,87],[650,633],[806,683],[878,409],[935,162],[946,837],[441,240],[835,599],[527,319],[685,214],[380,34],[668,618],[591,156],[714,302],[892,95],[669,328],[896,488],[509,223],[770,362],[575,406],[312,8],[846,457],[343,319],[900,500],[840,152],[895,690],[531,427],[563,188],[285,213],[662,50],[607,23],[863,455],[723,51],[819,608],[814,450],[689,587],[603,264],[601,39],[980,674],[27,12],[393,243],[476,418],[751,336],[364,57],[541,157],[985,471],[280,75],[495,488],[777,676],[927,392],[738,377],[719,452],[544,5],[918,345],[888,295],[978,814],[410,27],[375,317],[513,69],[740,79],[669,193],[998,436],[676,574],[887,394],[973,372],[733,648],[995,650],[688,113],[415,225],[770,176],[688,551],[932,161],[728,441],[954,343],[169,12],[741,343],[606,197],[844,615],[182,77],[240,180],[669,168],[986,330],[675,83],[749,614],[729,454],[662,312],[528,246],[969,587],[995,42],[642,11],[946,756],[742,261],[511,30],[988,203],[465,328],[963,892],[617,207],[324,178],[686,408],[992,352],[662,493],[372,161],[535,210],[680,475],[282,236],[917,508],[703,378],[688,383],[862,204],[912,125],[653,555],[875,629],[509,99],[313,169],[781,29],[404,342],[896,155],[958,25],[552,208],[589,342],[489,401],[140,124],[944,307],[640,313],[273,192],[371,160],[600,184],[508,279],[639,336],[705,204],[905,777],[819,401],[770,279],[354,268],[325,46],[922,153],[629,157],[995,889],[747,308],[784,745],[934,878],[566,423],[970,659],[704,508],[803,55],[723,278],[341,44],[498,495],[335,198],[618,297],[980,208],[901,535],[493,27],[866,373],[763,143],[352,66],[701,633],[984,178],[692,0],[702,62],[247,87],[150,70],[878,176],[445,176],[739,687],[973,432],[891,489],[581,224],[126,27],[596,82],[697,150],[954,777],[182,18],[457,252],[735,438],[350,25],[350,210],[904,494],[570,145],[900,76],[785,262],[473,262],[621,411],[545,396],[250,100],[949,198],[668,109],[939,487],[355,93],[965,620],[879,103],[808,473],[517,123],[564,437],[854,815],[724,599],[914,57],[974,330],[730,601],[965,822],[736,539],[331,3],[707,79],[433,218],[981,652],[225,175],[618,7],[843,602],[77,74],[221,108],[489,172],[243,26],[949,274],[962,774],[929,140],[529,40],[604,2],[798,784],[539,363],[795,785],[801,278],[145,83],[911,674],[795,286],[405,146],[475,336],[940,306],[648,363],[613,425],[256,37],[600,345],[989,222],[566,106],[699,86],[827,422],[509,327],[154,40],[259,191],[872,211],[508,106],[947,701],[514,371],[858,440],[194,56],[996,814],[473,253],[669,441],[990,439],[985,974],[497,332],[483,38],[817,67],[870,85],[904,26],[608,316],[649,347],[890,573],[782,418],[705,254],[846,419],[748,321],[900,362],[887,397],[558,195],[361,127],[740,313],[760,356],[958,869],[496,228],[301,222],[721,410],[777,169],[653,567],[988,196],[909,327],[649,106],[193,144],[903,151],[680,478],[517,310],[311,189],[637,452],[570,236],[585,29],[829,272],[558,385],[531,88],[546,4],[721,262],[639,500],[858,833],[852,592],[708,175],[725,633],[973,57],[724,421],[477,178],[888,112],[886,693],[737,484],[399,386],[508,237],[934,852],[830,190],[663,430],[953,274],[571,50],[273,242],[730,384],[507,478],[993,374],[939,531],[981,405],[836,585],[143,131],[292,159],[769,400],[274,6],[890,832],[38,15],[930,3],[809,357],[426,277],[995,548],[362,117],[908,335],[847,300],[391,385],[792,716],[334,48],[641,579],[751,256],[721,480],[785,212],[352,319],[412,260],[830,369],[683,446],[115,10],[698,401],[549,171],[920,31],[826,516],[907,465],[915,609],[863,197],[451,425],[598,558],[893,300],[650,323],[932,384],[912,477],[336,142],[756,672],[225,62],[418,76],[958,722],[618,432],[763,410],[943,739],[579,21],[801,426],[944,565],[972,85],[586,265],[787,170],[996,264],[862,12],[941,707],[869,208],[570,159],[774,723],[408,249],[405,103],[633,341],[814,193],[604,214],[490,21],[892,399],[806,135],[775,351],[536,47],[555,254],[834,827],[609,27],[769,364],[925,146],[635,191],[298,29],[201,68],[443,168],[680,133],[358,266],[555,222],[91,25],[979,128],[835,224],[746,43],[959,133],[149,88],[824,106],[874,425],[869,160],[420,311],[534,52],[740,632],[615,424],[753,113],[841,430],[794,503],[756,556],[760,349],[884,56],[347,132],[276,141],[651,286],[508,333],[642,231],[926,429],[840,268],[746,741],[723,307],[576,518],[373,224],[398,235],[919,454],[417,42],[976,819],[644,577],[939,893],[705,510],[327,245],[266,29],[738,637],[919,423],[674,342],[857,624],[729,537],[697,273],[453,193],[856,477],[681,521],[666,20],[921,666],[960,197],[731,578],[588,426],[937,67],[870,145],[584,413],[190,116],[250,88],[980,95],[591,368],[589,425],[485,67],[663,114],[467,30],[753,351],[671,232],[800,362],[310,304],[522,98],[951,614],[750,435],[304,127],[652,434],[532,276],[954,700],[703,224],[990,112],[656,512],[757,307],[872,179],[713,621],[607,79],[187,13],[309,148],[379,286],[787,324],[875,94],[812,296],[676,649],[912,468],[623,165],[481,391],[384,376],[484,427],[377,189],[375,36],[999,757],[563,507],[743,392],[992,643],[491,222],[603,208],[637,398],[176,72],[177,173],[516,417],[866,2],[998,757],[721,617],[992,532],[934,396],[780,60],[847,95],[960,357],[698,692],[580,494],[415,13],[512,318],[821,798],[368,302],[624,526],[377,68],[322,91],[763,314],[835,687],[520,88],[759,42],[885,402],[489,428],[256,213],[811,30],[854,654],[390,334],[515,484],[726,158],[764,37],[982,809],[488,149],[830,487],[901,441],[945,526],[399,24],[993,460],[829,566],[787,778],[849,146],[716,520],[296,119],[974,355],[840,734],[976,73],[757,235],[462,139],[898,434],[299,262],[328,194],[859,380],[914,81],[851,28],[827,195],[782,21],[235,222],[418,236],[436,94],[362,90],[902,240],[791,651],[264,48],[709,186],[569,97],[628,401],[531,318],[595,316],[393,389],[872,40],[868,473],[554,240],[784,233],[525,84],[983,652],[558,504],[680,28],[739,160],[961,167],[637,404],[991,442],[813,475],[247,105],[827,727],[870,455],[212,201],[766,347],[589,51],[568,434],[274,93],[488,400],[746,711],[974,107],[723,586],[572,50],[595,393],[930,434],[719,373],[226,94],[851,531],[909,890],[880,733],[783,67],[882,543],[775,255],[674,252],[769,289],[526,331],[418,96],[841,765],[363,32],[712,292],[676,99],[879,375],[557,379],[568,153],[370,212],[728,609],[934,598],[720,669],[428,1],[480,316],[524,5],[563,501],[864,242],[880,261],[960,681],[810,251],[836,802],[374,357],[602,279],[245,127],[232,46],[431,95],[858,409],[457,78],[991,720],[844,183],[166,53],[639,441],[365,344],[938,711],[747,423],[648,188],[652,636],[739,690],[948,441],[677,63],[872,39],[437,225],[572,241],[945,609],[772,118],[994,894],[860,753],[911,442],[987,738],[831,566],[606,342],[913,632],[968,521],[981,682],[731,108],[838,333],[387,238],[696,336],[243,168],[954,317],[858,711],[993,660],[967,920],[864,504],[833,344],[701,405],[343,134],[646,281],[546,435],[502,105],[979,173],[668,453],[883,116],[423,201],[483,182],[590,336],[316,114],[944,299],[955,397],[128,40],[576,514],[617,490],[480,432],[758,80],[873,329],[158,33],[431,369],[639,474],[955,139],[752,718],[938,57],[972,826],[982,516],[829,310],[728,651],[628,490],[588,124],[815,448],[865,228],[776,109],[768,511],[921,440],[936,685],[967,335],[512,416],[836,543],[586,61],[685,505],[320,135],[672,430],[688,400],[783,704],[249,227],[258,12],[732,570],[264,178],[590,361],[869,418],[183,103],[407,39],[594,177],[598,337],[734,561],[380,371],[951,501],[302,88],[881,107],[967,174],[413,12],[124,0],[692,673],[539,275],[823,293],[945,761],[971,312],[929,19],[780,682],[909,540],[289,128],[539,439],[994,159],[759,282],[769,474],[971,822],[898,274],[86,60],[810,776],[763,504],[288,38],[997,613],[423,109],[536,32],[710,602],[989,547],[272,142],[565,308],[908,305],[275,235],[409,248],[679,600],[216,157],[550,331],[377,10],[987,514],[607,379],[633,73],[270,140],[699,364],[448,209],[946,17],[855,345],[164,108],[896,657],[656,14],[221,176],[823,800],[919,354],[858,206],[880,567],[235,17],[980,76],[519,296],[614,506],[690,660],[647,433],[720,358],[483,379],[368,339],[425,316],[518,395],[646,396],[717,44],[402,22],[708,177],[889,730],[684,119],[679,221],[759,39],[554,530],[209,26],[293,211],[817,408],[931,765],[231,144],[556,502],[507,203],[732,361],[264,174],[979,37],[820,421],[674,628],[973,258],[787,277],[893,29],[556,436],[723,419],[389,359],[801,125],[747,607],[152,1],[867,139],[235,120],[956,271],[973,330],[386,126],[994,806],[416,141],[717,485],[358,14],[794,720],[581,58],[277,104],[924,628],[913,743],[636,498],[809,668],[919,130],[876,846],[452,419],[365,317],[213,26],[434,304],[298,78],[871,172],[848,217],[163,73],[521,354],[990,500],[894,614],[585,190],[375,366],[557,388],[867,316],[791,587],[612,589],[782,58],[313,302],[815,727],[588,398],[858,374],[246,223],[257,164],[843,465],[543,168],[634,51],[601,571],[841,600],[498,130],[781,414],[792,171],[907,366],[567,47],[542,320],[925,920],[846,826],[757,630],[912,8],[953,908],[994,595],[275,67],[461,136],[434,262],[845,128],[576,124],[963,698],[881,647],[977,594],[969,386],[250,84],[945,4],[937,706],[823,270],[904,130],[460,457],[799,103],[969,946],[228,41],[995,744],[466,238],[858,249],[357,81],[967,654],[735,368],[383,80],[539,494],[669,32],[867,201],[544,137],[617,470],[967,270],[591,321],[495,128],[741,282],[566,412],[948,675],[896,595],[927,44],[531,497],[309,260],[955,94],[374,45],[217,95],[601,278],[578,370],[433,353],[704,558],[462,138],[522,424],[685,222],[238,157],[825,232],[390,152],[474,84],[975,259],[540,164],[991,199],[473,104],[637,244],[576,107],[789,165],[731,688],[568,86],[968,510],[989,426],[673,287],[857,504],[891,381],[670,552],[485,11],[614,255],[870,275],[977,701],[823,731],[702,493],[482,338],[942,933],[669,349],[170,70],[227,160],[981,778],[279,42],[833,497],[908,125],[915,454],[605,305],[877,490],[663,422],[737,502],[482,309],[750,537],[249,179],[558,266],[585,64],[839,642],[733,632],[803,540],[904,440],[601,339],[836,171],[984,377],[687,645],[880,316],[950,852],[351,61],[710,192],[851,11],[690,435],[807,468],[494,4],[37,29],[861,430],[655,26],[543,364],[871,502],[885,601],[365,181],[941,104],[637,295],[52,13],[910,795],[920,452],[717,4],[832,117],[810,460],[292,111],[334,95],[883,790],[392,132],[866,811],[392,39],[336,154],[856,378],[461,125],[457,8],[522,1],[865,67],[961,545],[617,150],[740,270],[895,393],[497,10],[819,381],[651,77],[638,338],[622,368],[726,719],[193,10],[682,258],[813,697],[436,325],[876,229],[959,190],[680,54],[863,4],[409,198],[887,409],[553,373],[771,0],[814,573],[536,388],[961,924],[532,510],[951,579],[426,193],[867,725],[397,141],[113,80],[971,373],[873,284],[647,557],[930,856],[614,439],[321,55],[699,391],[524,189],[859,200],[884,272],[873,366],[654,457],[725,664],[440,23],[324,201],[594,418],[860,400],[905,247],[616,460],[335,40],[629,474],[717,348],[349,290],[622,615],[974,288],[286,153],[902,401],[164,48],[815,768],[21,7],[901,311],[217,113],[238,144],[918,357],[603,76],[969,539],[888,99],[834,42],[917,483],[71,24],[66,24],[647,291],[625,288],[579,62],[789,178],[742,674],[649,234],[933,838],[573,284],[257,67],[885,98],[951,842],[420,374],[271,251],[773,657],[99,97],[963,257],[730,335],[871,79],[859,591],[769,647],[359,322],[900,255],[875,560],[779,73],[301,288],[563,135],[987,321],[727,209],[886,685],[498,369],[921,603],[996,554],[760,731],[983,286],[629,507],[946,903],[931,809],[478,470],[724,26],[804,41],[169,7],[550,498],[520,504],[499,35],[884,715],[306,221],[324,141],[81,20],[853,409],[694,194],[765,449],[986,634],[776,383],[535,249],[840,477],[525,265],[594,30],[558,353],[566,51],[601,271],[493,405],[913,785],[821,372],[753,568],[709,87],[704,461],[361,162],[170,163],[606,327],[745,121],[239,23],[981,22],[846,111],[955,605],[712,309],[882,669],[874,692],[611,126],[468,407],[974,463],[575,11],[483,273],[316,282],[834,400],[733,562],[418,189],[906,226],[704,597],[985,467],[686,134],[331,252],[834,780],[874,626],[259,140],[977,134],[382,285],[385,125],[926,661],[937,749],[350,92],[362,247],[161,75],[812,214],[944,572],[369,24],[837,110],[497,53],[688,110],[758,612],[658,8],[286,222],[909,563],[603,403],[632,183],[695,124],[504,101],[919,540],[943,657],[841,119],[629,21],[554,269],[351,312],[880,360],[720,282],[505,324],[717,414],[194,110],[486,353],[463,449],[668,102],[380,15],[138,6],[754,163],[905,533],[801,239],[276,220],[576,133],[548,331],[412,384],[899,640],[788,557],[772,68],[486,293],[382,304],[446,106],[790,699],[971,244],[823,236],[690,70],[938,779],[781,471],[792,160],[645,449],[509,343],[634,359],[866,721],[330,34],[919,910],[762,514],[975,860],[342,101],[886,190],[272,149],[779,673],[470,89],[953,143],[526,58],[685,294],[695,642],[803,545],[691,671],[974,93],[998,97],[560,397],[501,97],[339,264],[708,326],[888,220],[547,171],[644,259],[855,406],[968,677],[701,644],[278,233],[130,14],[874,247],[574,171],[634,520],[956,258],[350,155],[616,264],[286,212],[538,57],[486,344],[871,770],[818,729],[295,64],[874,235],[754,21],[895,461],[912,473],[527,22],[637,462],[439,67],[846,481],[783,383],[271,219],[920,696],[703,448],[952,768],[797,208],[409,27],[993,746],[844,26],[631,441],[756,397],[943,116],[729,192],[142,99],[168,109],[569,34],[784,49],[542,295],[347,70],[705,153],[250,94],[917,324],[490,153],[699,529],[621,302],[923,309],[958,138],[905,778],[991,512],[564,466],[332,68],[480,158],[805,547],[998,236],[874,241],[786,550],[898,843],[946,596],[420,149],[789,140],[505,384],[920,197],[797,530],[860,67],[924,874],[613,348],[620,125],[608,365],[984,190],[623,612],[859,722],[932,388],[465,416],[794,307],[527,313],[216,78],[573,460],[685,410],[277,132],[629,246],[839,784],[119,67],[804,177],[707,58],[844,298],[311,148],[116,34],[878,385],[794,140],[909,97],[167,157],[883,648],[887,567],[472,34],[302,0],[400,197],[362,282],[835,249],[263,11],[730,557],[459,265],[673,444],[651,538],[806,199],[565,520],[499,176],[913,654],[272,179],[797,747],[342,27],[698,334],[882,364],[919,893],[432,381],[702,516],[768,150],[824,1],[901,658],[521,15],[684,483],[905,440],[458,322],[396,72],[746,259],[735,437],[984,88],[543,11],[810,83],[904,320],[463,384],[729,46],[293,172],[463,428],[911,678],[770,539],[947,251],[807,799],[796,497],[826,202],[739,105],[648,365],[441,238],[855,169],[633,179],[841,528],[702,315],[388,197],[775,9],[685,435],[997,583],[458,452],[717,137],[946,33],[879,130],[638,128],[159,7],[881,764],[493,91],[780,415],[482,85],[661,411],[997,709],[988,280],[299,162],[870,458],[766,161],[806,774],[713,111],[852,482],[992,110],[879,713],[960,476],[468,102],[607,603],[284,271],[814,158],[344,276],[903,14],[456,416],[400,382],[878,74],[866,27],[832,272],[728,249],[905,464],[922,279],[204,56],[878,10],[756,60],[940,922],[545,355],[869,756],[330,35],[774,255],[815,477],[229,159],[829,613],[256,61],[796,34],[990,898],[441,163],[939,536],[890,203],[626,237],[893,169],[879,540],[880,238],[775,506],[816,534],[519,450],[648,576],[743,333],[523,332],[349,40],[802,194],[529,86],[693,637],[328,112],[817,32],[688,486],[873,162],[899,243],[749,513],[658,44],[537,536],[254,226],[966,668],[883,395],[579,557],[935,789],[723,134],[855,700],[711,62],[620,272],[702,166],[563,196],[610,24],[268,51],[428,320],[327,36],[667,450],[307,145],[809,53],[628,569],[800,379],[722,6],[846,791],[714,708],[838,39],[639,296],[984,727],[796,722],[886,788],[590,555],[650,469],[902,717],[207,5],[234,135],[918,585],[98,6],[687,381],[866,575],[484,332],[315,199],[404,313],[150,5],[734,585],[665,439],[818,128],[915,909],[792,782],[700,479],[958,697],[729,597],[732,671],[953,33],[803,89],[719,412],[773,414],[443,131],[776,311],[616,21],[838,402],[529,20],[292,23],[565,454],[373,31],[703,693],[484,128],[530,518],[570,153],[893,47],[663,71],[223,190],[787,404],[564,81],[189,21],[794,517],[690,112],[603,144],[862,348],[922,865],[706,89],[592,299],[828,687],[533,262],[350,305],[993,920],[852,780],[922,718],[386,146],[792,530],[747,321],[438,133],[995,418],[984,706],[236,139],[873,411],[735,587],[801,487],[849,679],[555,513],[654,536],[99,30],[479,433],[864,232],[959,243],[999,966],[118,19],[660,516],[973,553],[730,565],[820,530],[683,521],[411,284],[682,303],[553,494],[982,427],[858,568],[352,268],[822,492],[173,85],[634,207],[884,270],[342,68],[541,268],[654,443],[510,479],[548,215],[616,475],[877,399],[649,5],[826,128],[771,491],[612,219],[577,498],[641,193],[800,558],[217,117],[438,208],[571,393],[913,755],[452,364],[877,60],[782,185],[481,312],[811,716],[801,57],[757,693],[767,126],[689,160],[488,24],[656,493],[747,208],[676,426],[728,251],[356,349],[287,101],[166,2],[523,54],[184,63],[482,353],[617,327],[671,156],[671,343],[660,204],[707,316],[639,22],[697,166],[625,299],[998,374],[681,467],[905,377],[523,298],[490,108],[465,63],[613,598],[844,100],[808,536],[424,236],[513,491],[449,366],[356,20],[376,192],[737,728],[898,487],[285,117],[427,205],[155,54],[551,313],[994,92],[690,228],[645,588],[303,234],[538,224],[950,321],[940,288],[757,403],[762,10],[672,333],[906,146],[682,146],[468,33],[749,256],[815,256],[969,635],[757,99],[818,57],[269,137],[845,291],[767,272],[593,386],[828,570],[499,443],[876,605],[952,427],[707,254],[832,751],[392,221],[386,221],[309,125],[117,100],[698,105],[395,60],[858,100],[785,479],[213,85],[434,14],[968,354],[506,407],[668,449],[689,128],[518,471],[890,78],[681,362],[841,237],[749,408],[585,358],[721,309],[838,598],[993,418],[775,70],[686,50],[698,388],[967,817],[991,571],[937,148],[969,818],[922,0],[750,8],[543,56],[703,421],[148,113],[800,227],[630,580],[926,839],[658,208],[390,267],[742,124],[849,471],[962,715],[875,439],[868,333],[981,208],[444,14],[764,231],[731,569],[445,303],[643,398],[927,196],[802,676],[834,186],[848,446],[932,15],[964,686],[591,571],[661,320],[382,279],[647,43],[827,208],[287,223],[311,163],[385,339],[685,558],[707,116],[376,94],[835,645],[938,770],[681,18],[687,215],[832,261],[969,13],[330,1],[734,293],[963,549],[713,160],[672,397],[193,15],[492,1],[557,59],[857,661],[778,111],[630,185],[719,24],[963,576],[670,2],[597,421],[421,1],[328,7],[808,649],[554,168],[984,600],[946,188],[518,331],[840,805],[619,242],[828,676],[623,183],[72,40],[447,306],[630,43],[689,498],[851,800],[806,119],[870,237],[604,78],[506,367],[92,89],[872,223],[640,346],[435,322],[471,120],[941,357],[842,430],[725,378],[991,875],[815,198],[322,267],[598,519],[819,301],[830,329],[818,484],[970,639],[986,511],[952,613],[153,81],[224,179],[745,605],[747,488],[373,296],[800,105],[540,114],[743,192],[628,433],[986,334],[667,656],[546,505],[980,976],[555,514],[897,191],[354,238],[509,114],[301,89],[929,134],[194,83],[296,282],[169,120],[891,874],[859,844],[529,185],[426,1],[954,326],[570,458],[611,127],[527,401],[458,362],[362,328],[743,474],[907,691],[898,143],[812,439],[480,193],[809,667],[787,140],[889,804],[774,176],[876,399],[766,596],[939,38],[784,494],[357,163],[924,592],[541,142],[363,173],[490,71],[849,375],[498,285],[889,393],[416,34],[809,354],[801,196],[485,2],[506,202],[659,426],[591,159],[411,60],[441,40],[347,130],[5,1],[615,330],[292,109],[616,278],[145,2],[688,186],[838,245],[242,78],[745,93],[431,39],[970,207],[85,67],[725,371],[886,374],[183,66],[597,232],[686,135],[999,548],[751,724],[619,157],[226,51],[710,469],[416,158],[323,172],[880,774],[468,43],[862,766],[204,52],[361,227],[838,661],[292,200],[579,296],[857,626],[940,646],[548,305],[796,323],[847,501],[795,481],[513,284],[595,516],[843,776],[938,606],[864,670],[111,7],[855,291],[664,369],[695,341],[951,606],[943,195],[496,435],[857,391],[621,443],[793,687],[665,661],[694,465],[760,204],[288,160],[975,230],[486,365],[778,347],[727,638],[649,561],[781,468],[846,628],[240,96],[322,84],[816,781],[298,91],[303,191],[928,632],[825,51],[892,99],[808,720],[965,812],[965,73],[998,413],[715,376],[882,0],[970,854],[563,84],[578,510],[150,118],[523,272],[898,657],[618,244],[479,131],[714,650],[419,377],[800,714],[226,215],[902,781],[838,82],[916,538],[238,113],[395,19],[708,422],[572,105],[673,594],[746,244],[162,88],[864,230],[911,868],[718,94],[891,336],[897,635],[763,511],[520,321],[999,925],[379,302],[741,730],[642,367],[495,319],[557,20],[726,667],[880,742],[662,328],[494,465],[775,160],[577,542],[704,48],[739,35],[139,48],[848,441],[921,85],[637,522],[521,506],[743,589],[928,604],[840,167],[128,39],[854,214],[911,99],[760,595],[527,148],[493,111],[487,302],[820,114],[290,274],[951,227],[623,233],[750,122],[664,449],[653,418],[333,114],[221,89],[993,441],[767,518],[375,243],[551,261],[992,698],[961,68],[418,52],[727,104],[959,171],[875,415],[507,204],[840,561],[815,467],[940,659],[838,505],[679,304],[767,435],[303,12],[654,284],[756,318],[557,85],[443,227],[821,618],[581,47],[866,212],[933,741],[762,249],[720,242],[288,273],[582,498],[514,262],[784,446],[343,327],[867,23],[515,43],[807,142],[615,404],[762,445],[308,6],[839,213],[683,142],[788,750],[599,34],[608,64],[461,382],[990,613],[748,187],[928,360],[687,686],[769,169],[488,19],[941,843],[485,208],[669,363],[971,132],[333,189],[834,733],[809,326],[599,386],[329,130],[482,345],[726,197],[825,20],[42,38],[987,57],[580,139],[664,499],[487,309],[392,166],[985,683],[968,690],[455,45],[291,186],[841,423],[970,348],[772,566],[41,10],[617,228],[816,509],[660,575],[927,682],[762,351],[884,861],[616,577],[678,522],[619,152],[712,546],[561,554],[638,503],[360,22],[248,59],[362,175],[841,783],[193,35],[992,611],[881,401],[952,498],[830,253],[310,166],[959,210],[696,247],[241,178],[653,266],[567,166],[849,382],[404,15],[689,318],[776,361],[911,749],[196,76],[721,50],[549,495],[520,314],[770,18],[861,751],[955,858],[623,258],[965,516],[877,622],[510,194],[619,598],[309,190],[924,587],[883,693],[815,635],[154,113],[498,418],[999,701],[745,281],[828,415],[857,249],[602,166],[847,138],[759,600],[677,74],[950,208],[360,132],[745,689],[718,543],[331,10],[662,24],[996,366],[746,80],[729,143],[717,631],[711,614],[801,558],[913,433],[713,387],[976,215],[957,891],[775,362],[707,507],[903,603],[343,118],[840,456],[650,577],[102,36],[978,627],[587,547],[824,766],[534,377],[953,498],[763,615],[957,80],[736,685],[834,174],[320,131],[829,39],[169,32],[316,45],[888,610],[686,151],[431,56],[395,304],[688,254],[607,520],[921,4],[365,118],[718,438],[975,311],[445,407],[843,476],[539,5],[953,933],[287,34],[930,126],[666,432],[603,240],[643,162],[481,315],[669,105],[400,132],[644,270],[955,92],[739,53],[276,144],[729,725],[454,106],[606,332],[517,175],[809,125],[346,107],[988,533],[629,82],[829,720],[431,146],[903,19],[972,481],[82,73],[484,52],[968,74],[478,459],[735,658],[471,391],[458,382],[886,196],[411,213],[918,330],[748,684],[731,604],[611,96],[239,52],[621,552],[801,87],[946,877],[67,60],[599,14],[928,277],[830,463],[456,182],[690,339],[971,62],[458,34],[880,674],[786,46],[513,249],[855,254],[655,312],[216,145],[959,55],[654,497],[859,616],[985,544],[821,444],[903,449],[255,132],[334,69],[396,232],[373,346],[967,500],[670,295],[719,16],[950,859],[305,51],[536,66],[460,117],[838,57],[946,698],[810,708],[828,378],[544,99],[856,824],[747,233],[948,663],[224,36],[948,229],[760,516],[855,229],[942,209],[598,212],[970,459],[792,419],[384,104],[721,478],[665,609],[938,676],[806,209],[461,396],[478,109],[552,439],[446,73],[477,279],[396,259],[875,743],[991,532],[773,680],[430,395],[950,192],[112,93],[803,213],[997,887],[994,569],[678,288],[295,57],[871,622],[492,11],[542,473],[772,119],[340,41],[107,45],[501,113],[760,179],[891,377],[995,63],[597,531],[717,156],[740,268],[987,32],[512,424],[940,539],[895,96],[925,92],[703,456],[798,700],[527,161],[985,380],[662,196],[824,806],[564,313],[866,257],[846,435],[449,339],[449,360],[459,298],[769,748],[836,776],[740,522],[287,41],[831,447],[350,253],[619,280],[874,558],[263,257],[640,465],[799,430],[966,459],[631,470],[502,25],[749,739],[684,211],[942,789],[715,283],[682,54],[831,755],[936,860],[727,84],[641,326],[904,834],[225,149],[232,117],[538,26],[678,171],[761,115],[583,6],[509,418],[629,128],[835,660],[741,524],[445,281],[678,15],[825,704],[442,42],[838,218],[420,60],[555,243],[185,121],[913,275],[449,18],[672,371],[699,429],[812,515],[868,144],[934,226],[910,848],[952,368],[443,350],[668,23],[712,535],[515,282],[782,262],[862,102],[857,812],[180,73],[959,636],[454,203],[790,365],[935,404],[971,221],[889,378],[837,684],[380,237],[382,70],[934,555],[831,289],[556,171],[624,455],[358,144],[789,275],[786,106],[374,181],[214,31],[991,551],[777,150],[929,318],[890,626],[362,25],[649,27],[955,210],[911,150],[369,137],[738,259],[554,494],[851,774],[361,360],[759,476],[984,376],[469,223],[263,215],[394,7],[286,277],[897,297],[627,235],[873,3],[987,603],[415,220],[497,352],[995,948],[785,38],[502,358],[532,121],[718,44],[538,349],[587,323],[844,196],[537,43],[346,90],[818,79],[409,189],[769,207],[830,217],[676,130],[782,752],[616,241],[445,230],[614,88],[559,293],[871,673],[463,271],[534,109],[468,72],[762,20],[757,740],[760,267],[453,72],[932,348],[727,594],[712,618],[662,561],[946,938],[662,539],[799,291],[994,633],[526,503],[920,46],[473,30],[799,306],[991,360],[769,339],[892,288],[809,68],[722,718],[957,455],[596,37],[838,748],[939,153],[787,699],[862,53],[562,508],[936,344],[421,358],[989,702],[734,185],[822,585],[998,630],[717,583],[845,234],[752,672],[913,543],[452,98],[920,496],[855,514],[879,443],[904,697],[930,332],[469,263],[885,708],[744,634],[398,352],[868,406],[592,106],[517,419],[870,650],[67,37],[140,28],[932,840],[856,385],[372,351],[617,66],[937,762],[637,248],[252,86],[900,114],[951,86],[950,326],[335,152],[508,268],[706,26],[502,456],[670,11],[957,740],[617,291],[947,442],[905,208],[260,181],[866,262],[106,24],[702,220],[242,160],[914,663],[906,254],[381,256],[856,52],[156,17],[397,361],[753,676],[741,552],[988,106],[838,601],[919,437],[805,631],[778,760],[424,412],[882,140],[650,443],[375,200],[759,523],[317,45],[798,351],[579,1],[104,60],[650,644],[997,143],[768,183],[165,151],[747,634],[630,34],[363,61],[269,134],[318,2],[906,346],[605,44],[884,800],[325,161],[337,313],[884,251],[865,610],[737,685],[352,292],[348,143],[663,196],[521,27],[554,432],[177,105],[987,584],[584,498],[743,122],[434,215],[797,468],[744,421],[109,68],[937,282],[506,308],[654,474],[213,208],[671,397],[251,76],[760,501],[417,361],[60,37],[179,75],[718,362],[362,33],[348,83],[873,80],[259,190],[644,418],[208,89],[686,251],[860,587],[218,48],[997,471],[785,504],[920,37],[835,731],[828,684],[808,204],[552,520],[526,0],[736,304],[775,260],[973,942],[812,419],[328,262],[549,127],[813,131],[692,656],[721,620],[926,400],[766,337],[867,626],[945,515],[867,8],[988,413],[785,497],[806,746],[907,405],[529,318],[415,401],[797,591],[727,684],[505,239],[718,141],[301,50],[206,140],[180,127],[677,456],[803,95],[747,666],[653,18],[973,64],[830,360],[938,105],[658,99],[485,445],[505,504],[915,451],[798,486],[978,625],[257,141],[675,65],[843,823],[353,29],[324,130],[853,795],[752,637],[795,347],[886,722],[905,357],[713,593],[318,260],[860,344],[265,87],[153,133],[477,428],[476,208],[202,47],[392,64],[990,78],[500,6],[928,221],[167,160],[427,137],[613,431],[829,375],[930,562],[759,570],[906,31],[396,355],[929,482],[760,81],[731,256],[279,275],[861,10],[971,232],[279,231],[787,559],[783,517],[252,224],[613,29],[197,5],[422,61],[886,150],[773,249],[475,99],[888,740],[735,392],[139,111],[242,138],[813,96],[454,373],[496,50],[259,57],[971,222],[806,543],[756,443],[680,338],[435,347],[287,88],[537,347],[744,51],[923,648],[910,450],[766,449],[665,466],[679,573],[940,222],[704,653],[831,34],[858,52],[927,413],[984,470],[961,932],[863,482],[538,443],[549,374],[477,144],[833,418],[939,853],[945,552],[495,48],[733,489],[574,115],[563,67],[692,163],[373,281],[764,655],[72,41],[337,50],[76,34],[987,441],[918,656],[922,710],[748,641],[540,430],[630,619],[826,411],[766,381],[652,345],[593,141],[912,640],[989,968],[914,797],[714,187],[811,497],[281,81],[551,256],[963,647],[727,628],[972,664],[892,0],[208,184],[822,575],[438,87],[374,254],[651,182],[705,353],[505,216],[873,137],[603,213],[955,606],[536,57],[498,277],[705,243],[766,90],[948,942],[938,194],[685,396],[982,780],[905,51],[388,219],[700,66],[215,118],[248,97],[950,299],[902,585],[812,578],[936,21],[660,513],[634,154],[976,534],[383,130],[980,816],[551,455],[388,280],[522,74],[473,448],[785,56],[783,96],[753,181],[706,497],[683,587],[966,40],[701,304],[417,254],[649,619],[480,369],[723,519],[348,247],[253,212],[366,16],[899,671],[918,457],[771,323],[549,386],[963,47],[865,854],[651,141],[849,487],[844,815],[878,493],[650,499],[793,582],[782,380],[293,13],[794,298],[790,229],[904,838],[385,20],[776,167],[840,704],[290,110],[747,319],[734,392],[350,166],[980,903],[736,236],[429,186],[960,864],[682,169],[568,321],[864,821],[585,448],[766,79],[729,221],[622,596],[650,632],[269,58],[889,689],[908,113],[716,687],[733,263],[796,140],[374,20],[689,420],[975,325],[415,64],[486,462],[775,618],[118,64],[969,668],[664,437],[714,473],[890,748],[318,19],[836,801],[231,70],[682,336],[502,44],[533,168],[677,574],[686,647],[800,164],[881,640],[481,383],[719,315],[865,615],[653,558],[286,145],[682,342],[637,361],[969,703],[541,498],[742,739],[212,89],[560,480],[540,358],[804,578],[818,479],[910,746],[148,95],[856,84],[978,880],[915,777],[267,233],[796,325],[849,106],[783,180],[997,934],[710,224],[645,519],[959,940],[619,512],[869,678],[419,165],[785,47],[786,325],[995,83],[606,376],[592,328],[914,390],[896,329],[157,89],[726,671],[327,114],[895,778],[956,69],[856,313],[618,403],[872,133],[723,119],[789,69],[903,434],[488,270],[515,354],[964,199],[270,14],[100,9],[501,469],[303,32],[761,694],[658,460],[883,564],[635,201],[999,323],[915,614],[53,4],[685,640],[868,457],[218,97],[548,251],[668,475],[949,440],[492,382],[168,112],[897,870],[408,315],[883,812],[746,52],[609,164],[813,87],[818,281],[862,499],[878,702],[348,19],[689,440],[612,364],[820,511],[964,31],[942,769],[384,87],[651,47],[870,752],[532,301],[281,136],[571,310],[763,120],[987,905],[366,152],[768,682],[871,691],[848,335],[748,509],[840,750],[711,202],[265,168],[897,39],[996,236],[582,527],[854,587],[371,130],[592,577],[733,144],[236,144],[613,410],[935,729],[805,621],[967,896],[650,309],[420,303],[966,720],[625,233],[768,372],[186,107],[884,33],[531,440],[911,146],[564,336],[931,852],[861,249],[781,762],[77,30],[856,158],[487,238],[582,488],[890,105],[878,839],[190,37],[692,594],[873,509],[830,724],[874,200],[679,422],[597,589],[905,135],[949,144],[466,213],[81,15],[809,699],[624,347],[757,138],[284,119],[731,650],[243,136],[936,178],[864,591],[479,254],[430,215],[787,561],[605,285],[407,268],[226,116],[671,336],[589,64],[650,579],[714,257],[601,252],[608,71],[905,453],[896,187],[367,3],[348,201],[930,42],[359,306],[744,166],[151,54],[840,139],[479,347],[641,87],[686,215],[784,629],[902,458],[675,92],[264,130],[665,399],[696,513],[912,206],[910,718],[904,359],[48,16],[905,750],[744,135],[600,218],[853,525],[811,181],[876,484],[558,37],[896,200],[902,812],[780,731],[180,91],[816,189],[917,32],[714,541],[886,881],[261,131],[753,658],[944,622],[874,584],[405,152],[930,307],[555,232],[803,588],[533,250],[647,493],[847,28],[112,13],[895,64],[908,656],[614,334],[732,559],[516,460],[971,840],[422,279],[623,209],[459,101],[640,269],[840,519],[918,638],[967,897],[985,50],[914,779],[536,531],[939,837],[902,301],[243,76],[906,154],[874,48],[818,723],[878,213],[992,106],[907,433],[381,261],[815,245],[800,613],[829,813],[939,824],[881,804],[928,222],[729,513],[928,342],[109,26],[393,281],[732,159],[909,463],[88,33],[855,577],[969,493],[680,251],[197,190],[669,96],[895,721],[308,18],[857,79],[631,518],[848,659],[880,793],[581,263],[876,677],[565,488],[603,17],[349,234],[791,558],[793,227],[923,202],[479,99],[917,803],[921,328],[418,115],[684,48],[905,14],[485,172],[200,54],[567,337],[724,62],[702,616],[937,554],[701,302],[998,965],[639,67],[265,202],[863,757],[671,373],[949,155],[224,211],[166,55],[705,664],[460,16],[961,939],[530,67],[927,244],[821,457],[860,193],[953,540],[96,33],[921,108],[102,70],[768,391],[771,475],[978,17],[929,865],[558,351],[923,246],[974,484],[819,439],[989,291],[274,3],[708,190],[588,316],[884,36],[587,277],[847,83],[996,656],[879,339],[988,973],[695,188],[489,76],[810,573],[748,492],[310,36],[887,471],[523,518],[804,258],[127,80],[483,86],[768,558],[706,352],[120,91],[973,744],[685,188],[915,324],[834,151],[516,156],[639,580],[928,195],[734,160],[956,105],[317,312],[547,117],[726,340],[951,251],[748,413],[525,273],[328,248],[878,67],[444,7],[616,251],[493,433],[903,348],[236,116],[393,200],[567,292],[986,296],[513,33],[827,826],[952,664],[673,40],[606,193],[930,254],[232,121],[762,544],[275,202],[760,549],[318,293],[353,3],[925,371],[494,131],[689,502],[739,673],[952,11],[456,444],[818,269],[664,192],[656,492],[708,136],[822,739],[517,154],[425,390],[730,464],[641,515],[466,447],[887,347],[912,452],[615,207],[868,354],[801,285],[908,203],[259,169],[668,395],[883,838],[457,272],[867,851],[821,490],[685,420],[778,427],[220,74],[396,219],[519,241],[741,307],[970,46],[891,6],[683,362],[607,169],[477,251],[973,480],[405,298],[899,477],[367,6],[824,759],[998,176],[534,471],[454,339],[727,25],[484,333],[502,231],[448,252],[668,317],[679,488],[884,431],[229,33],[811,98],[675,464],[711,683],[535,447],[98,73],[782,551],[490,248],[819,12],[556,453],[348,330],[997,890],[816,516],[464,376],[544,155],[511,163],[293,254],[695,316],[533,363],[183,131],[998,962],[452,291],[599,518],[483,359],[229,93],[644,420],[861,819],[914,729],[611,368],[475,365],[852,706],[695,265],[956,110],[734,382],[947,667],[569,311],[993,765],[703,596],[516,39],[755,467],[894,824],[526,368],[686,663],[427,41],[970,691],[679,432],[783,595],[220,22],[217,206],[332,152],[459,206],[973,248],[770,382],[966,754],[658,30],[719,241],[885,358],[417,61],[856,497],[604,128],[734,572],[969,1],[816,372],[496,486],[979,335],[528,48],[860,356],[945,187],[295,152],[992,957],[226,14],[877,229],[946,580],[273,102],[696,2],[672,164],[443,14],[506,487],[554,295],[949,548],[280,279],[262,109],[799,196],[797,477],[788,33],[935,544],[650,247],[758,134],[833,136],[305,288],[507,85],[805,735],[668,371],[738,41],[980,512],[701,391],[166,3],[611,374],[821,605],[867,752],[570,430],[954,124],[598,135],[813,224],[447,10],[701,433],[571,451],[964,936],[961,443],[801,663],[717,710],[569,353],[751,12],[904,125],[534,225],[916,261],[993,8],[894,234],[970,364],[806,368],[961,758],[936,603],[305,259],[215,189],[611,310],[962,561],[956,234],[843,450],[602,231],[428,37],[238,218],[737,106],[737,34],[752,113],[747,512],[242,226],[406,104],[864,126],[589,370],[585,228],[701,93],[299,196],[823,43],[746,269],[277,0],[832,520],[876,577],[893,414],[724,51],[493,178],[909,205],[232,129],[406,151],[661,408],[783,64],[857,483],[802,506],[809,643],[714,344],[867,262],[394,327],[729,682],[982,890],[886,613],[720,45],[845,645],[947,733],[424,320],[650,402],[355,335],[551,339],[882,458],[376,363],[157,33],[262,59],[622,497],[992,545],[955,846],[804,102],[262,79],[822,818],[406,314],[293,268],[855,370],[777,405],[659,234],[576,167],[458,341],[395,377],[961,921],[600,217],[814,619],[929,881],[671,309],[431,365],[683,599],[465,216],[995,544],[727,12],[785,767],[286,80],[726,655],[833,748],[500,312],[508,233],[687,214],[954,307],[905,49],[605,517],[189,10],[921,46],[933,188],[431,223],[676,597],[809,90],[483,179],[374,90],[464,78],[790,157],[908,605],[782,506],[188,165],[764,494],[974,284],[641,237],[898,76],[690,289],[851,395],[247,167],[499,84],[711,258],[732,651],[982,119],[936,637],[846,522],[909,361],[661,392],[164,144],[611,51],[842,700],[966,952],[843,817],[436,121],[165,21],[373,348],[627,435],[363,51],[827,138],[674,625],[302,226],[812,229],[502,74],[897,375],[651,202],[651,193],[616,523],[485,3],[960,155],[976,378],[215,92],[370,87],[846,155],[531,99],[727,284],[414,22],[657,290],[647,154],[330,237],[745,9],[967,573],[862,341],[694,489],[780,117],[868,790],[950,284],[944,137],[469,457],[990,429],[782,758],[776,737],[590,515],[550,3],[836,727],[946,701],[979,275],[655,20],[391,220],[804,612],[834,708],[372,29],[870,595],[689,622],[318,161],[950,746],[547,11],[599,578],[943,412],[421,128],[727,671],[398,318],[889,80],[638,212],[398,16],[931,71],[622,397],[900,790],[852,192],[960,148],[550,76],[678,419],[296,170],[819,276],[716,93],[889,194],[420,151],[859,759],[459,421],[619,191],[756,87],[820,576],[763,701],[530,282],[470,119],[796,674],[635,629],[482,141],[902,678],[713,518],[793,26],[330,235],[335,37],[941,510],[902,50],[789,264],[728,150],[242,201],[724,522],[570,463],[826,225],[861,571],[605,491],[677,125],[737,324],[507,353],[554,191],[882,298],[980,630],[549,123],[809,733],[841,840],[831,821],[827,588],[261,68],[544,528],[882,677],[829,815],[762,666],[878,847],[507,80],[453,76],[200,7],[617,579],[336,236],[992,66],[356,246],[950,665],[470,227],[310,28],[678,300],[858,412],[390,69],[776,213],[705,278],[469,298],[282,184],[526,345],[940,258],[767,418],[881,589],[577,85],[647,527],[565,223],[627,350],[297,85],[637,627],[454,375],[871,712],[828,127],[668,382],[777,22],[527,39],[609,240],[422,74],[894,308],[701,552],[799,740],[844,363],[683,637],[920,396],[367,329],[532,330],[519,370],[741,49],[558,429],[834,459],[742,633],[787,508],[784,349],[628,209],[423,292],[580,386],[489,464],[956,795],[726,129],[961,260],[508,227],[852,265],[972,324],[800,748],[973,8],[783,381],[851,573],[340,146],[781,440],[228,58],[220,38],[214,209],[511,140],[356,215],[936,25],[833,514],[759,551],[249,160],[837,29],[208,83],[939,509],[869,349],[626,563],[375,16],[948,306],[183,176],[245,44],[832,168],[764,31],[922,280],[403,287],[931,382],[587,297],[709,442],[695,31],[806,477],[793,385],[987,30],[536,340],[762,254],[395,352],[858,364],[799,393],[258,139],[991,200],[211,192],[453,331],[315,117],[862,772],[483,177],[766,420],[362,231],[697,110],[823,704],[949,476],[759,102],[287,20],[940,299],[386,301],[324,217],[528,376],[927,418],[894,766],[724,308],[682,510],[929,111],[847,666],[897,884],[981,959],[540,290],[337,118],[746,86],[706,324],[358,131],[961,840],[337,60],[877,12],[536,346],[929,226],[283,205],[585,66],[986,554],[967,317],[984,302],[859,25],[965,895],[574,300],[720,132],[287,208],[474,69],[801,51],[220,156],[351,2],[233,227],[274,108],[892,98],[955,526],[568,213],[836,746],[824,68],[763,24],[191,33],[629,69],[940,239],[825,71],[766,348],[758,714],[820,466],[232,85],[410,31],[83,68],[502,466],[890,195],[512,35],[459,170],[693,124],[527,335],[824,25],[975,525],[526,335],[732,415],[936,184],[747,86],[973,412],[249,220],[931,373],[482,464],[840,383],[154,46],[770,687],[592,343],[779,293],[562,30],[579,455],[716,399],[929,533],[929,729],[688,664],[421,210],[109,12],[569,487],[868,520],[908,673],[393,289],[459,243],[399,139],[210,83],[890,571],[838,590],[965,691],[734,509],[677,299],[768,206],[677,544],[955,915],[568,109],[571,438],[248,208],[273,263],[942,588],[519,98],[535,125],[334,290],[280,248],[418,341],[535,261],[814,57],[298,8],[821,303],[985,270],[473,34],[737,472],[679,615],[584,277],[251,88],[974,568],[669,396],[916,77],[581,407],[840,619],[602,176],[841,523],[899,813],[867,159],[910,412],[347,17],[871,157],[699,486],[897,432],[853,812],[809,541],[409,287],[765,219],[204,92],[681,218],[353,83],[907,54],[751,666],[965,363],[972,615],[311,259],[372,68],[926,324],[117,93],[348,116],[908,53],[725,187],[790,764],[161,109],[691,465],[724,396],[635,166],[420,290],[462,390],[237,151],[466,357],[532,439],[647,353],[319,198],[859,638],[815,599],[946,114],[185,156],[444,439],[879,498],[389,317],[501,272],[885,67],[710,536],[782,145],[933,25],[740,464],[883,715],[989,817],[765,630],[649,16],[356,110],[421,6],[728,36],[716,519],[404,123],[827,278],[869,252],[698,274],[811,462],[504,359],[866,836],[684,87],[918,434],[426,59],[454,230],[499,218],[518,378],[714,261],[963,324],[723,250],[546,149],[39,5],[849,586],[774,324],[420,228],[954,915],[963,368],[940,932],[886,292],[253,12],[423,47],[930,517],[480,25],[605,593],[816,184],[704,142],[934,718],[981,289],[638,209],[688,437],[757,254],[326,70],[884,9],[802,209],[823,66],[796,72],[204,35],[333,11],[885,126],[461,244],[571,497],[64,45],[351,222],[621,519],[638,464],[632,119],[452,40],[334,22],[490,439],[922,187],[665,592],[620,251],[849,304],[627,238],[930,671],[753,208],[767,285],[679,374],[421,283],[483,66],[515,186],[886,270],[371,278],[900,499],[947,730],[267,149],[717,568],[814,182],[811,646],[659,240],[726,203],[336,102],[738,218],[753,350],[371,253],[893,133],[275,250],[720,533],[866,229],[914,544],[378,87],[486,274],[999,607],[426,254],[334,205],[674,109],[830,439],[694,104],[592,100],[305,120],[610,387],[683,19],[543,161],[739,289],[459,19],[724,377],[834,405],[377,198],[752,337],[836,780],[730,20],[858,161],[655,254],[972,20],[312,104],[551,528],[924,348],[496,340],[893,204],[613,356],[546,279],[999,125],[569,69],[300,106],[69,10],[376,279],[523,452],[156,36],[981,309],[241,95],[585,354],[730,297],[740,514],[992,24],[701,205],[404,219],[746,205],[532,519],[637,402],[679,624],[752,705],[575,364],[738,335],[149,105],[603,542],[507,194],[518,317],[200,92],[799,667],[964,122],[476,6],[523,151],[631,438],[612,54],[536,71],[738,9],[825,405],[986,15],[912,743],[767,148],[848,629],[584,339],[728,677],[823,53],[620,78],[515,455],[781,546],[466,203],[975,306],[982,488],[899,210],[887,251],[719,69],[907,629],[740,508],[582,27],[521,495],[983,683],[377,47],[738,37],[805,93],[573,135],[577,307],[867,501],[332,84],[878,579],[971,129],[394,195],[590,85],[400,329],[787,213],[255,59],[174,1],[952,135],[967,730],[894,625],[803,444],[600,295],[531,328],[906,465],[929,218],[969,799],[555,0],[887,784],[595,544],[911,531],[829,274],[697,220],[976,19],[654,440],[497,127],[995,695],[750,682],[253,38],[345,77],[717,333],[858,405],[760,104],[419,90],[865,674],[897,811],[929,505],[977,415],[223,50],[999,81],[703,22],[422,299],[800,717],[668,550],[687,477],[596,42],[687,682],[883,481],[769,182],[733,28],[784,287],[556,501],[974,943],[251,148],[432,188],[623,511],[777,719],[820,556],[822,647],[864,828],[628,359],[985,699],[737,157],[716,301],[722,574],[588,243],[971,488],[410,408],[841,662],[340,18],[460,215],[390,340],[478,35],[874,847],[606,372],[169,158],[949,744],[571,170],[503,437],[238,93],[588,467],[461,281],[461,74],[378,150],[730,451],[765,498],[643,177],[170,143],[482,34],[547,157],[817,461],[284,164],[628,274],[135,37],[807,341],[912,794],[825,297],[300,265],[508,43],[885,315],[205,37],[807,89],[535,167],[608,539],[818,145],[301,114],[800,498],[712,409],[892,816],[187,105],[982,924],[792,457],[842,365],[973,742],[945,383],[699,646],[359,262],[372,300],[681,96],[912,471],[825,452],[820,797],[471,17],[846,10],[799,198],[787,736],[380,9],[442,334],[573,249],[798,258],[721,199],[760,557],[382,360],[922,157],[619,482],[814,565],[575,249],[934,919],[649,218],[760,727],[655,291],[593,109],[343,198],[624,329],[505,266],[703,485],[909,853],[706,134],[505,244],[334,181],[713,296],[839,600],[786,284],[954,315],[540,400],[444,90],[882,350],[749,118],[58,30],[743,327],[366,258],[907,435],[878,848],[859,786],[890,555],[593,550],[928,878],[298,134],[353,208],[795,487],[632,327],[464,372],[923,300],[781,748],[863,650],[915,305],[986,548],[729,227],[831,111],[769,660],[752,646],[981,664],[449,136],[575,516],[772,660],[801,591],[785,309],[844,365],[783,684],[373,319],[523,12],[849,385],[353,14],[698,313],[522,33],[471,245],[470,265],[184,32],[787,393],[918,633],[232,62],[721,94],[740,200],[467,427],[565,175],[340,177],[613,42],[729,561],[530,406],[687,351],[759,163],[937,463],[850,323],[834,32],[111,34],[911,292],[591,128],[978,693],[789,716],[399,199],[435,19],[876,441],[833,79],[394,175],[893,478],[986,35],[659,238],[665,257],[935,856],[248,131],[798,769],[807,276],[675,538],[960,470],[396,147],[529,478],[758,730],[460,362],[786,97],[602,125],[457,57],[909,786],[152,6],[780,237],[279,191],[987,780],[960,207],[894,605],[500,160],[934,168],[786,383],[276,59],[822,382],[957,107],[878,310],[203,192],[776,215],[522,204],[418,68],[896,136],[694,591],[510,187],[899,126],[697,319],[798,10],[964,517],[952,156],[222,98],[873,784],[442,371],[510,45],[950,103],[954,35],[890,192],[770,604],[737,250],[407,133],[698,445],[548,229],[727,566],[946,928],[180,51],[100,99],[565,227],[961,650],[487,32],[674,249],[232,115],[553,474],[485,127],[402,279],[918,214],[934,571],[661,473],[294,125],[985,79],[212,7],[554,237],[705,477],[833,186],[961,729],[542,38],[719,317],[766,659],[682,404],[575,351],[587,187],[704,443],[705,48],[822,404],[873,846],[948,695],[575,503],[847,84],[689,531],[365,229],[547,229],[902,182],[785,14],[740,63],[695,253],[741,664],[889,756],[983,710],[578,448],[903,853],[369,291],[937,343],[883,236],[603,254],[284,10],[892,395],[729,642],[790,714],[114,83],[863,15],[544,111],[671,205],[821,200],[863,398],[250,50],[996,613],[399,25],[786,582],[488,47],[665,495],[649,159],[784,275],[517,102],[879,159],[955,950],[928,686],[746,100],[689,433],[867,503],[812,303],[815,790],[562,302],[221,24],[906,634],[776,180],[396,217],[310,114],[821,694],[991,171],[695,24],[851,612],[561,157],[172,156],[960,105],[401,376],[769,521],[298,50],[490,279],[599,342],[364,23],[386,184],[112,107],[369,68],[947,797],[670,356],[375,152],[296,292],[504,109],[875,356],[958,731],[924,527],[692,605],[837,380],[461,381],[970,203],[482,333],[948,397],[380,374],[648,472],[562,6],[539,198],[457,195],[486,230],[444,363],[703,692],[778,513],[749,394],[620,345],[446,23],[774,757],[926,676],[720,139],[755,145],[711,18],[561,42],[927,246],[815,109],[891,863],[668,214],[947,394],[957,507],[438,231],[461,253],[867,814],[941,107],[628,158],[577,429],[730,2],[768,23],[964,317],[826,811],[629,126],[612,269],[833,613],[482,84],[351,271],[414,411],[994,53],[755,171],[603,344],[972,287],[628,415],[857,377],[952,898],[758,314],[869,413],[662,336],[709,291],[939,274],[965,616],[540,256],[565,461],[369,250],[312,118],[746,526],[734,679],[626,176],[818,463],[994,498],[884,173],[552,13],[352,19],[522,519],[395,97],[974,904],[752,353],[283,161],[439,78],[855,51],[797,765],[584,222],[980,676],[479,30],[752,579],[386,287],[906,853],[656,517],[269,231],[329,62],[821,241],[692,574],[449,132],[863,141],[285,133],[698,131],[806,751],[927,758],[508,180],[704,317],[859,634],[474,294],[904,274],[969,476],[580,136],[842,810],[830,693],[693,198],[466,353],[728,694],[900,302],[775,340],[427,77],[833,622],[690,476],[692,202],[922,684],[746,512],[950,846],[948,53],[985,248],[195,60],[478,319],[535,418],[954,327],[862,593],[333,138],[145,58],[914,109],[862,349],[726,561],[533,317],[986,79],[621,379],[445,93],[910,587],[999,822],[694,174],[511,260],[762,600],[952,775],[204,42],[663,647],[963,915],[586,25],[909,251],[527,89],[412,261],[775,284],[884,161],[869,378],[322,56],[793,53],[312,177],[750,376],[302,170],[982,760],[816,528],[514,301],[315,190],[897,525],[864,89],[872,675],[374,242],[594,42],[719,185],[979,568],[735,414],[722,322],[484,359],[972,210],[660,41],[635,309],[857,415],[469,312],[565,273],[881,739],[868,652],[828,206],[897,502],[536,7],[434,399],[848,280],[459,80],[910,476],[317,219],[659,4],[942,458],[833,638],[965,340],[365,159],[726,125],[240,235],[624,237],[749,692],[754,320],[917,289],[721,295],[258,74],[565,249],[949,182],[795,411],[913,556],[963,140],[826,570],[708,590],[764,662],[541,435],[748,132],[906,905],[765,247],[779,463],[618,526],[410,226],[624,467],[311,110],[166,54],[730,460],[859,307],[710,370],[834,176],[634,5],[575,557],[846,650],[314,165],[370,109],[942,55],[708,40],[645,371],[602,27],[853,529],[587,228],[763,612],[804,769],[795,639],[799,206],[348,118],[907,340],[750,671],[172,53],[782,746],[888,171],[880,450],[147,34],[483,315],[772,442],[142,49],[729,546],[556,341],[956,138],[794,230],[614,122],[235,82],[839,322],[719,178],[828,656],[714,99],[465,11],[428,341],[899,355],[817,249],[912,835],[185,177],[934,521],[422,16],[723,464],[475,57],[836,619],[868,811],[874,140],[453,410],[872,721],[609,56],[945,8],[519,353],[245,158],[358,126],[782,729],[991,971],[540,531],[774,452],[938,855],[728,209],[344,129],[892,60],[801,201],[536,127],[566,322],[747,600],[748,229],[650,66],[390,322],[882,587],[942,645],[881,72],[530,489],[527,367],[326,139],[959,51],[59,56],[602,342],[737,567],[857,397],[752,339],[868,400],[703,528],[855,340],[303,181],[817,483],[764,433],[833,47],[891,286],[559,520],[336,181],[548,121],[840,787],[772,618],[979,607],[567,382],[751,420],[828,111],[615,360],[86,5],[852,355],[878,159],[666,498],[623,615],[967,206],[818,639],[910,748],[887,845],[818,703],[742,253],[205,88],[948,876],[467,10],[996,598],[590,215],[885,270],[809,207],[712,229],[609,58],[799,299],[742,267],[405,169],[902,370],[415,36],[369,295],[816,814],[152,78],[616,453],[736,575],[999,687],[697,133],[725,386],[890,44],[423,59],[44,10],[818,87],[777,204],[296,93],[989,522],[669,619],[85,33],[906,558],[434,397],[821,359],[764,115],[673,453],[989,984],[709,199],[968,132],[654,205],[510,188],[111,10],[687,354],[413,79],[555,546],[712,135],[323,207],[286,260],[803,798],[568,186],[547,423],[646,467],[177,175],[886,611],[953,840],[929,373],[774,520],[955,326],[755,657],[661,291],[911,49],[850,536],[501,31],[549,187],[977,669],[884,824],[351,34],[382,233],[86,34],[738,108],[631,31],[697,53],[691,478],[813,360],[541,10],[184,70],[975,533],[937,785],[155,113],[927,37],[910,720],[190,86],[816,379],[746,333],[260,118],[548,283],[847,733],[971,898],[365,95],[703,404],[950,283],[664,415],[885,884],[800,543],[973,791],[760,184],[732,701],[988,917],[487,291],[616,145],[968,253],[953,473],[422,42],[837,118],[968,13],[532,66],[373,308],[979,248],[721,316],[910,554],[637,128],[706,592],[516,173],[605,84],[294,58],[739,496],[416,145],[698,558],[230,151],[682,446],[763,103],[937,300],[606,92],[888,887],[972,654],[658,444],[349,18],[771,29],[714,117],[986,286],[907,309],[325,28],[743,734],[306,233],[301,251],[405,376],[909,382],[955,565],[659,152],[897,878],[621,136],[952,222],[971,508],[577,131],[725,124],[950,66],[627,270],[418,412],[467,409],[904,385],[466,404],[978,747],[742,652],[883,133],[802,282],[816,488],[171,55],[891,506],[792,431],[877,555],[439,406],[732,272],[914,402],[370,221],[852,198],[183,107],[602,356],[658,173],[661,99],[977,689],[620,64],[828,790],[525,489],[533,54],[613,407],[170,71],[999,976],[707,201],[440,27],[301,127],[516,135],[611,360],[829,787],[805,197],[754,601],[805,435],[576,232],[750,482],[530,276],[711,11],[693,270],[690,317],[693,691],[604,258],[698,342],[667,397],[737,67],[655,82],[277,185],[445,337],[537,303],[309,40],[491,142],[295,40],[346,293],[759,130],[844,60],[932,809],[948,248],[820,513],[767,197],[667,644],[733,358],[899,626],[640,185],[928,193],[401,305],[525,129],[770,353],[987,796],[318,182],[735,322],[767,558],[304,88],[245,131],[187,96],[916,275],[263,124],[262,32],[200,118],[925,211],[491,470],[513,146],[667,1],[742,156],[807,155],[495,286],[860,411],[784,676],[988,742],[409,332],[208,28],[970,360],[929,77],[751,251],[95,5],[603,479],[385,314],[377,127],[646,108],[849,435],[926,549],[278,160],[390,141],[455,219],[293,2],[915,579],[976,152],[525,92],[855,841],[256,69],[937,789],[984,758],[589,376],[953,609],[728,645],[217,176],[930,379],[385,139],[793,312],[959,296],[197,132],[784,517],[567,112],[649,138],[908,383],[660,595],[876,377],[519,267],[656,183],[701,496],[947,138],[829,786],[666,463],[929,588],[535,214],[893,759],[413,123],[895,469],[343,92],[414,50],[270,167],[347,190],[740,257],[563,521],[645,48],[768,317],[191,7],[558,388],[236,223],[964,360],[708,306],[736,137],[380,175],[884,99],[970,835],[659,380],[348,76],[425,198],[773,219],[840,502],[948,424],[722,309],[617,399],[710,108],[132,28],[487,294],[741,239],[972,202],[996,650],[932,561],[355,96],[927,197],[746,160],[378,237],[837,673],[794,586],[918,414],[684,11],[802,225],[908,41],[914,870],[150,86],[940,340],[922,491],[842,83],[587,378],[276,92],[791,444],[888,596],[478,267],[371,191],[295,47],[938,698],[734,505],[938,602],[550,385],[650,409],[976,388],[513,322],[634,485],[718,54],[666,247],[660,517],[942,109],[109,43],[840,790],[970,172],[77,52],[572,253],[929,664],[828,140],[481,331],[547,426],[835,266],[519,332],[850,788],[909,567],[967,36],[780,529],[809,547],[649,352],[114,85],[58,38],[874,98],[951,733],[910,44],[840,551],[761,207],[891,866],[889,291],[636,627],[910,233],[535,81],[760,144],[474,34],[797,622],[867,719],[469,114],[960,258],[870,89],[339,159],[530,228],[592,319],[709,258],[741,124],[937,843],[525,272],[685,341],[648,558],[896,223],[980,750],[473,94],[639,340],[434,280],[589,44],[829,420],[895,865],[926,467],[526,187],[813,408],[769,590],[914,238],[924,384],[561,503],[328,125],[755,516],[526,524],[852,32],[952,418],[983,328],[799,502],[997,670],[986,177],[548,387],[41,29],[716,224],[763,361],[812,521],[837,230],[939,269],[663,21],[784,536],[503,366],[452,108],[550,61],[599,132],[611,100],[746,618],[822,96],[580,94],[705,70],[382,82],[339,265],[327,216],[786,189],[822,750],[862,288],[999,728],[822,640],[688,495],[521,383],[984,625],[620,149],[727,668],[986,321],[911,216],[924,632],[512,130],[745,550],[242,162],[891,409],[170,30],[820,666],[841,615],[116,96],[267,139],[722,260],[778,60],[442,131],[358,212],[640,287],[980,538],[635,495],[950,189],[61,21],[429,211],[637,135],[676,661],[967,552],[923,482],[421,101],[975,665],[242,59],[699,471],[858,173],[837,13],[805,279],[459,314],[486,400],[753,227],[751,416],[764,43],[417,273],[574,157],[490,187],[479,27],[746,260],[466,158],[377,187],[630,304],[903,7],[100,37],[237,80],[639,90],[823,755],[797,592],[926,428],[679,383],[565,9],[916,510],[295,281],[737,539],[971,726],[434,119],[970,340],[972,676],[989,932],[741,355],[800,268],[691,516],[891,720],[974,40],[889,879],[761,51],[287,263],[628,434],[710,460],[868,114],[665,174],[384,193],[887,95],[716,115],[335,88],[707,520],[586,535],[335,261],[621,293],[766,477],[978,746],[635,239],[153,45],[332,109],[598,466],[766,101],[990,340],[253,208],[856,721],[324,151],[767,487],[589,336],[858,415],[591,503],[820,514],[993,911],[510,199],[842,97],[984,905],[960,835],[443,22],[854,403],[678,201],[672,113],[124,21],[998,881],[526,74],[843,268],[503,78],[369,104],[933,693],[301,12],[315,239],[754,165],[751,265],[500,383],[643,197],[891,260],[412,348],[882,789],[990,302],[713,222],[409,288],[514,223],[476,474],[992,357],[538,277],[891,1],[939,803],[473,411],[900,312],[757,711],[773,180],[544,530],[492,249],[533,282],[941,203],[440,16],[611,288],[379,112],[486,439],[995,225],[950,54],[462,459],[855,243],[549,451],[797,767],[974,194],[842,244],[142,42],[689,203],[658,139],[893,466],[706,369],[783,433],[5,2],[613,334],[624,125],[745,717],[916,369],[736,136],[964,180],[979,181],[571,52],[873,89],[857,506],[870,78],[355,268],[589,76],[582,398],[578,42],[879,614],[798,155],[929,82],[995,884],[694,176],[480,80],[715,250],[307,126],[323,149],[687,133],[922,915],[997,967],[608,97],[925,181],[530,504],[622,583],[938,297],[315,68],[721,121],[658,19],[835,559],[614,423],[501,326],[741,45],[819,594],[859,770],[675,67],[486,196],[643,530],[726,656],[986,335],[412,166],[136,24],[739,666],[752,263],[629,81],[884,411],[868,533],[706,91],[521,441],[888,750],[578,107],[986,435],[653,89],[914,788],[197,50],[743,593],[441,275],[284,210],[432,208],[820,10],[829,269],[473,113],[482,110],[807,458],[744,390],[463,245],[714,329],[958,195],[160,92],[925,765],[561,344],[870,745],[715,421],[945,753],[843,92],[770,384],[706,147],[810,14],[467,194],[843,697],[114,95],[234,33],[387,270],[959,481],[789,676],[308,123],[944,734],[494,321],[564,200],[983,464],[886,224],[726,644],[975,270],[941,752],[915,23],[789,587],[723,128],[996,129],[545,398],[761,526],[915,417],[509,243],[448,43],[935,36],[822,741],[888,477],[613,114],[981,750],[973,739],[332,50],[748,556],[759,560],[980,392],[602,261],[604,3],[951,880],[654,147],[831,491],[353,263],[550,126],[509,407],[995,636],[829,347],[204,71],[695,173],[631,15],[493,372],[479,305],[885,423],[999,850],[726,469],[180,174],[934,142],[935,201],[328,198],[976,544],[849,207],[901,350],[869,103],[656,555],[202,201],[902,670],[237,116],[976,32],[829,646],[276,246],[206,130],[364,229],[678,631],[402,186],[395,73],[377,60],[535,387],[547,502],[887,804],[649,127],[788,461],[272,260],[862,670],[475,425],[983,745],[955,572],[768,257],[722,654],[574,213],[746,151],[983,184],[684,482],[999,305],[143,47],[379,168],[442,124],[694,377],[572,416],[378,239],[420,23],[534,247],[304,78],[708,618],[712,186],[392,310],[810,380],[643,253],[527,461],[709,686],[635,130],[442,181],[660,155],[884,137],[758,363],[828,700],[695,108],[353,294],[522,194],[490,342],[380,204],[900,123],[387,350],[201,142],[890,757],[254,138],[988,773],[574,378],[280,116],[393,115],[881,875],[831,824],[658,297],[757,331],[427,24],[923,116],[796,148],[219,172],[137,92],[770,391],[729,24],[658,251],[986,24],[630,565],[568,368],[952,945],[922,910],[952,250],[743,278],[616,607],[447,399],[887,32],[889,271],[791,91],[586,368],[687,653],[889,787],[165,85],[124,25],[963,500],[397,258],[816,683],[613,61],[974,746],[974,630],[903,707],[822,103],[811,614],[755,311],[451,268],[496,225],[387,301],[907,825],[981,526],[772,201],[598,523],[806,643],[517,351],[182,155],[511,506],[911,416],[924,281],[586,118],[640,290],[720,182],[707,154],[602,512],[584,128],[778,15],[381,86],[615,45],[663,331],[981,819],[995,820],[566,444],[693,650],[793,381],[803,606],[495,212],[379,203],[908,632],[590,525],[427,228],[306,182],[830,119],[608,191],[638,236],[327,58],[295,247],[297,57],[319,278],[781,11],[860,697],[749,164],[791,29],[425,415],[540,348],[409,113],[589,309],[85,54],[926,411],[742,610],[618,188],[981,758],[397,382],[128,126],[691,462],[950,886],[492,85],[835,395],[916,233],[933,324],[857,242],[957,242],[667,142],[937,116],[682,166],[873,394],[95,36],[880,394],[842,22],[966,142],[825,663],[472,242],[182,117],[655,302],[813,288],[103,69],[788,649],[742,701],[551,463],[857,762],[928,353],[745,171],[363,292],[960,505],[702,13],[718,236],[473,440],[415,23],[704,120],[700,434],[764,139],[519,416],[900,229],[274,209],[875,732],[945,340],[971,118],[807,10],[767,424],[788,248],[294,139],[615,232],[848,536],[497,314],[477,300],[983,498],[985,626],[918,477],[438,176],[575,490],[178,176],[990,653],[288,122],[253,189],[891,432],[514,89],[617,143],[373,287],[983,547],[852,361],[810,651],[557,514],[937,542],[968,320],[360,78],[940,292],[865,273],[831,18],[488,109],[383,0],[852,617],[868,694],[127,43],[238,230],[915,260],[616,156],[387,112],[497,477],[868,446],[749,590],[462,307],[854,329],[762,323],[960,638],[823,686],[132,93],[717,139],[735,59],[516,134],[815,2],[902,11],[322,159],[825,298],[339,231],[783,107],[423,328],[717,458],[943,407],[620,20],[734,34],[597,208],[431,364],[84,80],[401,21],[901,183],[631,190],[579,363],[997,361],[923,859],[960,186],[566,47],[757,419],[490,479],[763,704],[680,128],[561,144],[518,476],[616,514],[492,184],[737,18],[126,22],[667,300],[960,164],[960,640],[174,154],[469,294],[748,64],[760,571],[692,366],[733,493],[438,18],[256,114],[927,163],[684,286],[317,177],[527,444],[569,425],[568,430],[467,401],[889,562],[388,309],[585,509],[986,624],[601,461],[193,79],[67,26],[822,620],[790,178],[625,345],[899,380],[945,416],[420,222],[687,626],[989,97],[861,764],[578,365],[513,288],[485,158],[819,706],[804,230],[460,56],[472,293],[846,143],[287,174],[683,406],[971,698],[33,7],[999,214],[752,254],[165,154],[757,47],[969,787],[995,615],[493,38],[201,108],[913,330],[992,947],[794,38],[174,9],[790,408],[926,54],[437,141],[931,856],[619,178],[627,584],[545,198],[845,279],[892,258],[833,758],[960,166],[390,54],[967,941],[994,978],[669,568],[524,213],[610,369],[961,567],[924,115],[318,137],[554,214],[535,96],[131,77],[701,316],[348,324],[785,296],[527,449],[346,85],[272,125],[850,276],[965,746],[532,476],[92,2],[859,350],[231,205],[614,8],[961,654],[801,121],[488,50],[984,504],[636,474],[674,588],[89,48],[614,443],[477,444],[562,137],[596,157],[992,684],[202,168],[446,52],[450,167],[295,94],[874,538],[516,338],[924,1],[775,656],[894,32],[140,125],[856,733],[653,205],[597,256],[948,415],[736,158],[934,91],[680,369],[746,588],[816,208],[442,277],[975,35],[488,454],[755,663],[655,629],[759,467],[292,170],[996,743],[527,132],[846,324],[641,228],[933,391],[333,7],[610,262],[641,303],[380,16],[585,2],[930,683],[870,478],[485,119],[433,76],[904,515],[955,65],[901,700],[358,19],[19,5],[911,65],[901,763],[731,575],[519,286],[961,613],[742,282],[543,509],[814,244],[913,13],[935,551],[472,341],[588,248],[957,447],[412,352],[693,417],[703,112],[764,430],[869,326],[651,393],[952,406],[689,236],[487,273],[575,143],[305,160],[768,357],[537,327],[811,512],[826,146],[939,508],[425,300],[526,453],[935,493],[527,381],[939,49],[913,893],[474,193],[877,385],[625,93],[221,195],[854,655],[895,606],[748,708],[549,262],[549,483],[604,294],[965,529],[912,624],[618,332],[761,554],[965,857],[855,356],[631,396],[719,71],[100,24],[844,478],[982,159],[897,339],[786,372],[314,188],[661,354],[723,702],[855,713],[907,190],[721,514],[672,230],[442,149],[648,111],[503,14],[487,419],[408,189],[684,415],[773,451],[922,258],[497,436],[778,167],[970,739],[817,513],[767,611],[344,43],[953,64],[472,340],[167,20],[997,428],[770,498],[354,51],[676,493],[807,556],[616,480],[940,544],[297,29],[853,766],[874,179],[997,362],[905,633],[928,625],[872,562],[844,328],[284,125],[757,89],[938,516],[813,142],[919,336],[443,360],[624,204],[830,747],[859,364],[493,276],[370,295],[733,564],[845,816],[596,531],[671,575],[953,161],[645,427],[635,489],[655,53],[314,194],[389,293],[836,197],[989,208],[751,129],[881,471],[945,441],[559,362],[536,248],[491,298],[545,68],[619,431],[332,15],[691,674],[960,742],[891,591],[990,56],[777,422],[899,255],[931,565],[963,167],[65,3],[944,579],[816,239],[827,134],[558,499],[988,836],[868,743],[395,42],[896,251],[999,206],[707,126],[625,195],[251,210],[685,599],[829,182],[870,239],[950,711],[737,692],[192,109],[914,280],[848,769],[662,6],[778,71],[217,211],[704,563],[206,52],[760,316],[869,222],[575,215],[925,267],[381,131],[903,177],[887,262],[724,622],[613,134],[746,627],[601,165],[197,58],[419,206],[891,78],[560,210],[795,674],[832,400],[595,353],[648,542],[487,445],[880,484],[421,382],[363,25],[797,33],[937,768],[590,352],[529,481],[367,87],[631,622],[738,254],[466,118],[952,241],[838,759],[447,48],[358,149],[851,638],[786,454],[769,459],[451,211],[398,19],[135,131],[411,310],[255,181],[433,116],[911,640],[716,109],[889,720],[852,541],[348,268],[252,126],[527,245],[374,325],[714,110],[591,168],[53,47],[482,189],[797,236],[863,353],[682,583],[831,152],[543,210],[297,96],[922,24],[714,122],[773,285],[198,125],[876,823],[970,689],[866,292],[606,333],[528,185],[647,18],[298,125],[313,264],[594,252],[379,195],[902,649],[212,16],[318,146],[719,413],[727,482],[517,328],[390,133],[769,111],[450,345],[750,284],[849,602],[973,733],[770,135],[402,219],[303,178],[914,661],[745,632],[990,139],[621,154],[637,527],[989,868],[922,806],[417,10],[940,614],[191,183],[731,89],[625,351],[539,521],[827,252],[595,573],[682,130],[559,430],[962,907],[945,164],[235,200],[891,786],[699,597],[545,186],[817,69],[646,422],[995,17],[950,921],[798,629],[795,778],[254,143],[849,172],[479,136],[972,612],[792,343],[460,356],[780,487],[976,564],[407,76],[962,410],[677,215],[916,585],[995,768],[705,290],[884,418],[243,217],[773,650],[622,401],[855,186],[967,763],[970,400],[895,824],[751,513],[611,327],[768,51],[389,278],[660,648],[446,194],[356,243],[674,313],[674,603],[456,438],[205,70],[323,67],[785,319],[837,731],[851,152],[869,478],[863,596],[958,342],[970,317],[176,160],[953,38],[756,43],[944,797],[765,4],[958,272],[70,19],[915,791],[754,211],[578,362],[328,299],[783,640],[281,254],[745,432],[605,186],[618,323],[319,99],[463,254],[296,248],[610,92],[945,891],[980,863],[517,24],[667,166],[654,432],[473,70],[823,592],[927,98],[961,82],[951,512],[871,291],[681,102],[281,201],[932,803],[929,308],[871,763],[589,478],[663,457],[200,141],[711,142],[841,23],[641,68],[669,499],[830,749],[928,341],[843,292],[162,135],[881,22],[990,772],[770,31],[765,113],[319,11],[955,233],[91,77],[102,13],[682,677],[458,285],[362,270],[645,35],[836,564],[886,790],[745,31],[511,99],[825,279],[873,558],[511,479],[952,584],[465,238],[218,139],[532,29],[597,29],[557,188],[241,105],[872,723],[723,565],[814,31],[843,726],[79,55],[990,473],[431,151],[935,673],[195,6],[813,355],[834,86],[444,76],[885,117],[113,11],[386,201],[801,498],[873,146],[908,339],[712,555],[449,114],[984,366],[29,3],[856,1],[624,583],[857,408],[693,544],[650,591],[760,756],[743,304],[959,347],[870,129],[632,453],[213,178],[191,1],[856,196],[531,483],[893,190],[205,203],[984,674],[816,755],[494,13],[829,490],[732,202],[891,121],[712,12],[633,324],[665,48],[924,771],[443,428],[553,501],[887,345],[702,294],[703,517],[44,21],[756,47],[784,319],[985,912],[995,212],[812,798],[888,532],[926,90],[804,624],[516,456],[827,324],[717,6],[762,502],[952,681],[747,682],[967,297],[377,101],[650,44],[885,25],[740,433],[923,784],[994,327],[994,55],[989,341],[858,512],[993,233],[950,933],[546,492],[750,346],[630,559],[604,535],[652,563],[488,265],[163,124],[967,589],[540,381],[309,139],[799,424],[852,647],[446,222],[934,163],[280,144],[645,484],[800,142],[306,133],[988,521],[968,17],[815,399],[166,109],[961,401],[206,196],[527,81],[932,209],[462,104],[801,670],[158,120],[787,322],[260,153],[261,187],[711,578],[544,441],[832,591],[895,616],[985,155],[995,340],[367,42],[941,223],[623,210],[623,551],[915,473],[678,440],[781,32],[107,52],[760,711],[922,524],[692,238],[618,26],[225,194],[683,333],[842,105],[367,220],[955,549],[949,771],[721,446],[430,114],[301,147],[256,57],[508,303],[976,150],[319,192],[732,143],[911,16],[976,616],[907,801],[572,222],[460,229],[633,546],[820,717],[252,244],[877,202],[775,69],[733,105],[166,164],[491,479],[470,224],[509,49],[321,148],[957,496],[744,80],[706,437],[377,268],[789,487],[783,95],[791,40],[753,23],[688,517],[507,256],[662,346],[811,681],[450,266],[837,811],[360,215],[785,161],[925,256],[973,377],[969,503],[777,261],[209,41],[318,253],[926,257],[924,118],[592,40],[812,682],[953,188],[989,567],[977,862],[391,241],[959,399],[355,9],[893,710],[573,219],[845,540],[945,54],[377,170],[724,238],[994,456],[445,12],[911,225],[698,88],[772,735],[847,728],[637,168],[692,59],[735,339],[335,114],[483,126],[355,210],[714,387],[731,700],[835,805],[996,959],[855,83],[942,33],[810,10],[964,696],[247,159],[773,22],[589,295],[548,103],[455,260],[504,393],[906,416],[639,72],[656,438],[607,524],[800,149],[855,461],[929,666],[753,387],[851,266],[762,333],[478,423],[206,15],[598,596],[816,228],[917,434],[904,737],[437,376],[900,697],[972,573],[170,150],[823,615],[917,295],[696,343],[320,43],[292,40],[828,120],[986,347],[953,415],[579,435],[371,250],[870,824],[217,199],[76,9],[255,97],[581,370],[134,108],[971,267],[509,250],[218,92],[961,519],[588,16],[657,93],[770,242],[931,867],[730,512],[740,3],[618,187],[397,143],[963,161],[858,215],[775,430],[325,199],[616,165],[971,484],[962,193],[665,474],[825,130],[781,100],[989,28],[960,471],[569,405],[702,295],[726,329],[673,109],[335,3],[522,195],[819,610],[620,181],[512,186],[911,403],[202,144],[951,798],[785,286],[714,649],[717,313],[569,552],[920,859],[461,24],[884,550],[949,755],[183,157],[933,417],[961,12],[284,34],[600,596],[645,1],[956,508],[961,852],[837,174],[730,160],[684,430],[745,699],[890,345],[514,333],[782,761],[728,168],[680,486],[780,741],[550,35],[259,126],[725,314],[695,101],[921,602],[690,503],[775,120],[374,244],[679,324],[655,154],[781,662],[722,489],[249,87],[914,717],[960,77],[944,463],[521,177],[616,548],[476,396],[511,164],[543,185],[965,579],[210,110],[248,2],[884,376],[760,477],[423,261],[764,682],[757,5],[989,862],[700,373],[580,509],[299,170],[144,13],[579,312],[878,142],[686,646],[994,26],[266,173],[519,392],[378,30],[815,794],[698,300],[556,318],[576,341],[988,378],[459,286],[986,211],[255,100],[944,633],[661,621],[194,181],[920,262],[763,255],[505,352],[967,32],[557,411],[706,54],[472,376],[913,261],[780,29],[819,172],[83,79],[953,631],[984,501],[693,172],[602,24],[979,561],[456,178],[991,320],[590,147],[820,185],[642,122],[928,1],[821,647],[526,466],[438,100],[940,730],[870,158],[973,271],[630,509],[478,36],[799,459],[838,407],[808,464],[318,280],[734,108],[574,336],[804,552],[787,768],[868,759],[561,478],[442,98],[717,611],[887,867],[765,711],[789,415],[844,150],[352,159],[504,185],[983,442],[178,161],[724,130],[566,67],[805,590],[487,467],[861,194],[655,84],[753,501],[549,511],[999,961],[414,67],[372,222],[626,268],[789,403],[827,314],[845,655],[635,236],[707,156],[908,823],[982,96],[907,358],[705,577],[479,55],[992,894],[490,267],[708,646],[622,452],[670,156],[578,283],[540,285],[781,309],[664,342],[645,572],[906,662],[803,8],[748,743],[979,562],[859,192],[705,545],[768,346],[974,193],[804,472],[215,212],[354,348],[977,53],[616,604],[790,690],[777,716],[946,514],[901,770],[688,182],[295,89],[437,21],[864,332],[806,198],[864,206],[490,198],[554,499],[272,185],[785,610],[976,422],[482,259],[584,165],[845,116],[326,257],[795,643],[393,253],[862,817],[880,465],[560,104],[840,323],[747,651],[868,20],[914,904],[780,58],[772,387],[880,625],[633,239],[532,315],[759,470],[862,830],[915,150],[822,23],[476,179],[731,576],[450,161],[450,268],[495,81],[286,207],[861,822],[117,21],[889,793],[333,227],[928,611],[595,540],[933,688],[104,54],[721,382],[847,401],[810,367],[825,484],[744,506],[925,2],[868,229],[936,889],[947,323],[83,25],[698,399],[370,164],[901,704],[709,270],[947,562],[861,332],[819,496],[931,423],[769,496],[697,253],[718,357],[983,460],[740,285],[839,308],[276,259],[842,99],[692,217],[760,676],[685,668],[430,198],[865,818],[866,68],[380,305],[782,617],[747,476],[820,28],[909,406],[943,878],[579,386],[341,249],[514,170],[994,196],[501,455],[560,88],[794,414],[957,329],[780,665],[533,379],[690,256],[575,187],[424,376],[762,325],[654,547],[312,247],[119,57],[823,387],[595,487],[605,162],[361,183],[772,436],[958,423],[810,37],[855,152],[287,98],[563,85],[605,367],[448,89],[431,370],[862,361],[867,85],[913,360],[214,27],[925,76],[712,150],[842,143],[892,669],[871,232],[718,229],[535,83],[889,403],[589,275],[391,38],[266,247],[851,439],[390,280],[819,20],[291,13],[718,687],[306,64],[838,791],[924,692],[475,312],[635,352],[720,643],[545,431],[728,415],[649,354],[791,544],[426,186],[355,171],[248,10],[539,496],[443,204],[812,370],[682,136],[730,424],[755,151],[401,162],[633,26],[631,311],[923,170],[632,426],[718,118],[249,96],[237,77],[879,513],[564,137],[910,118],[541,90],[750,45],[779,252],[879,432],[949,196],[95,87],[994,685],[812,33],[360,336],[696,330],[858,697],[408,342],[736,241],[818,69],[803,203],[954,737],[496,87],[445,414],[368,128],[960,149],[724,646],[396,294],[813,625],[293,189],[738,461],[419,398],[830,188],[963,584],[998,728],[636,173],[478,160],[959,327],[961,26],[335,237],[945,605],[895,238],[931,475],[851,485],[593,323],[627,333],[863,10],[451,383],[651,306],[764,0],[965,572],[436,33],[862,41],[635,393],[84,41],[388,216],[883,295],[866,49],[469,84],[667,205],[339,195],[981,932],[646,345],[949,335],[270,233],[989,59],[965,200],[562,227],[999,89],[361,310],[947,70],[635,25],[795,300],[792,599],[444,361],[234,152],[388,23],[921,796],[719,269],[928,422],[485,302],[963,616],[228,142],[675,189],[337,207],[490,242],[609,220],[906,86],[572,178],[859,648],[618,536],[483,7],[450,289],[962,835],[848,660],[841,567],[998,259],[426,252],[464,463],[293,156],[979,496],[920,294],[880,835],[996,614],[983,793],[574,533],[745,34],[772,362],[386,291],[854,323],[951,873],[675,179],[327,157],[828,717],[772,419],[889,400],[965,443],[434,278],[616,463],[741,643],[997,204],[318,62],[349,326],[976,725],[249,156],[853,773],[534,227],[696,253],[620,333],[427,279],[638,255],[663,552],[975,211],[871,370],[951,185],[934,241],[819,264],[733,436],[840,508],[794,246],[625,546],[979,811],[545,480],[812,287],[436,424],[937,196],[455,267],[887,136],[878,726],[728,573],[683,195],[496,116],[980,695],[784,675],[569,45],[532,382],[765,306],[117,12],[594,478],[774,421],[446,139],[901,170],[892,65],[808,155],[651,38],[857,655],[864,464],[279,249],[212,96],[699,645],[322,266],[999,750],[626,428],[542,403],[391,91],[788,767],[476,241],[944,616],[639,257],[923,513],[807,676],[862,340],[374,330],[447,311],[716,256],[843,239],[926,149],[284,235],[919,253],[259,256],[919,899],[485,8],[513,188],[462,428],[644,412],[884,718],[593,292],[749,344],[740,465],[648,108],[713,28],[719,149],[872,544],[450,359],[906,425],[872,236],[955,741],[985,93],[927,85],[91,39],[291,148],[941,315],[610,566],[990,25],[591,464],[222,37],[861,330],[991,622],[879,787],[846,724],[850,486],[949,775],[338,138],[607,413],[819,807],[443,343],[912,220],[830,25],[787,665],[552,438],[149,126],[953,6],[721,482],[96,53],[976,665],[984,13],[717,481],[931,113],[719,56],[872,419],[989,487],[224,146],[868,847],[44,7],[221,152],[617,424],[511,108],[411,256],[849,374],[922,330],[882,137],[515,7],[807,45],[246,244],[802,497],[828,622],[923,605],[864,814],[435,37],[603,325],[289,79],[961,794],[868,385],[608,198],[986,249],[914,861],[890,594],[441,439],[488,434],[974,896],[950,756],[233,161],[806,351],[78,5],[551,395],[838,138],[870,691],[945,457],[802,718],[798,638],[953,565],[965,737],[986,927],[916,439],[726,580],[197,130],[592,174],[789,760],[720,562],[980,460],[871,312],[493,258],[677,192],[965,390],[591,412],[876,508],[555,71],[601,324],[175,100],[256,9],[796,579],[958,879],[557,296],[867,462],[228,9],[481,113],[778,550],[988,509],[709,157],[793,186],[182,159],[736,675],[856,8],[196,92],[936,745],[943,394],[560,227],[381,144],[709,611],[986,835],[844,519],[471,319],[565,192],[289,107],[836,259],[755,556],[295,222],[723,335],[980,539],[839,506],[921,790],[747,65],[340,174],[441,252],[428,207],[953,276],[743,104],[443,368],[830,503],[584,124],[627,26],[583,128],[824,453],[927,884],[798,176],[756,693],[755,464],[739,216],[837,777],[793,226],[394,389],[900,537],[796,357],[800,547],[680,93],[831,106],[779,582],[669,312],[960,136],[417,386],[792,422],[679,455],[832,156],[402,30],[855,496],[620,592],[980,230],[544,175],[959,384],[863,606],[561,457],[488,53],[599,528],[210,24],[614,43],[598,320],[86,40],[414,124],[484,317],[504,168],[984,629],[841,485],[946,617],[843,317],[823,325],[979,265],[975,624],[853,363],[892,31],[613,291],[545,403],[517,89],[798,153],[485,450],[400,352],[486,203],[840,683],[937,694],[946,747],[987,201],[925,163],[628,537],[675,458],[954,710],[779,555],[783,183],[759,123],[764,588],[388,212],[373,7],[526,255],[548,515],[279,186],[883,558],[601,407],[641,434],[568,467],[934,847],[788,737],[933,290],[573,130],[930,417],[857,424],[685,320],[951,776],[355,354],[412,33],[752,121],[934,863],[577,456],[487,167],[862,774],[695,279],[865,367],[962,346],[930,396],[931,440],[944,81],[609,96],[985,77],[710,90],[845,9],[593,452],[725,643],[928,246],[474,83],[664,438],[550,521],[930,64],[779,335],[399,48],[568,310],[498,284],[941,300],[743,564],[730,309],[740,532],[528,317],[785,671],[953,179],[428,324],[522,264],[417,284],[911,580],[97,82],[766,674],[451,139],[845,55],[886,280],[787,565],[945,36],[672,438],[775,539],[854,784],[526,387],[819,137],[482,190],[189,118],[450,373],[344,65],[604,12],[893,628],[520,52],[802,469],[732,337],[408,351],[541,390],[609,272],[414,44],[832,675],[438,114],[887,415],[924,900],[936,648],[739,114],[667,502],[409,26],[591,256],[641,426],[714,692],[662,472],[266,149],[459,165],[811,487],[934,339],[744,412],[882,73],[985,331],[925,260],[707,179],[799,483],[875,167],[311,144],[996,712],[459,411],[596,415],[147,21],[909,488],[818,728],[970,67],[914,405],[998,810],[352,223],[966,809],[745,624],[870,652],[233,123],[648,278],[783,250],[714,359],[984,641],[966,293],[939,39],[812,522],[941,544],[887,426],[753,571],[448,291],[477,141],[832,731],[964,597],[185,1],[674,157],[780,253],[387,257],[904,447],[713,407],[995,938],[872,399],[786,306],[467,173],[989,467],[619,77],[791,311],[269,27],[57,19],[621,16],[579,69],[491,143],[350,96],[822,99],[862,168],[940,223],[707,575],[735,214],[704,66],[539,260],[500,78],[320,114],[132,60],[579,96],[962,478],[705,605],[578,4],[274,182],[876,810],[712,254],[709,692],[607,164],[944,155],[463,131],[895,290],[289,180],[192,165],[534,292],[888,461],[669,98],[660,277],[521,261],[381,198],[353,253],[685,50],[535,500],[588,436],[917,93],[546,473],[786,362],[458,247],[943,431],[558,196],[950,901],[193,184],[932,266],[984,174],[853,600],[517,133],[314,252],[594,230],[890,526],[679,644],[989,265],[554,477],[863,1],[232,120],[346,250],[694,80],[385,300],[338,21],[918,501],[701,158],[389,223],[565,420],[952,307],[761,557],[916,334],[139,104],[678,498],[905,344],[889,492],[967,864],[793,54],[621,548],[348,202],[708,662],[491,418],[664,624],[808,165],[832,818],[688,210],[802,734],[277,214],[472,53],[934,483],[895,240],[585,581],[461,12],[804,301],[470,264],[942,625],[768,734],[682,223],[340,241],[799,275],[688,285],[714,146],[769,156],[365,2],[737,16],[752,275],[227,118],[503,439],[794,67],[682,247],[784,541],[129,22],[867,811],[940,19],[855,639],[495,111],[667,595],[485,286],[552,1],[228,127],[953,662],[566,340],[447,67],[497,204],[356,63],[645,271],[646,513],[350,9],[996,155],[262,100],[547,376],[645,637],[969,549],[647,491],[589,334],[460,208],[526,475],[617,485],[776,76],[731,643],[337,6],[833,339],[515,453],[707,169],[496,235],[487,39],[904,49],[108,92],[563,395],[529,396],[922,774],[692,521],[965,882],[638,87],[503,138],[801,572],[374,319],[294,189],[989,814],[425,142],[527,395],[500,22],[747,586],[940,280],[848,16],[877,354],[727,604],[987,973],[159,52],[452,280],[842,455],[812,569],[819,355],[182,25],[121,100],[602,472],[621,312],[988,953],[119,35],[529,448],[948,31],[771,17],[515,130],[794,382],[345,52],[908,191],[376,126],[984,337],[546,51],[981,679],[997,38],[893,773],[397,281],[824,76],[365,277],[869,684],[791,294],[892,240],[874,292],[941,624],[985,173],[320,130],[352,332],[503,156],[802,139],[672,299],[282,207],[939,299],[590,479],[699,196],[974,653],[550,164],[643,490],[525,198],[159,2],[862,400],[473,27],[981,421],[853,264],[380,24],[949,866],[737,175],[686,539],[266,156],[980,65],[923,469],[515,208],[405,2],[677,58],[912,515],[863,496],[508,398],[927,311],[972,508],[672,249],[875,332],[968,634],[177,9],[371,335],[944,717],[817,121],[933,250],[421,340],[856,44],[152,53],[447,356],[660,476],[184,172],[535,453],[271,236],[749,252],[711,270],[519,492],[732,497],[584,341],[515,419],[151,120],[662,216],[824,484],[719,281],[748,693],[601,18],[578,237],[772,435],[769,734],[377,282],[407,270],[967,465],[719,410],[519,469],[801,368],[897,257],[866,244],[636,319],[810,658],[190,179],[505,222],[685,186],[581,99],[986,797],[695,416],[296,236],[132,3],[660,649],[960,706],[971,658],[451,127],[810,447],[208,180],[694,115],[783,379],[654,590],[874,346],[630,505],[731,164],[981,828],[637,457],[821,419],[605,314],[824,711],[935,656],[501,403],[220,33],[749,423],[825,74],[851,346],[535,53],[370,210],[732,26],[304,58],[907,48],[861,36],[838,523],[991,34],[918,837],[616,15],[941,212],[338,312],[522,341],[676,436],[460,431],[965,119],[610,425],[740,335],[943,671],[798,438],[982,192],[836,353],[195,81],[700,618],[582,367],[779,691],[625,284],[690,685],[910,379],[794,7],[879,544],[722,5],[558,501],[849,706],[917,892],[771,447],[854,551],[649,635],[813,175],[810,139],[841,15],[922,247],[472,361],[806,776],[929,367],[899,453],[881,108],[816,145],[791,231],[360,268],[220,52],[820,211],[811,805],[866,621],[958,825],[400,262],[756,112],[559,502],[892,614],[956,445],[586,52],[882,227],[753,606],[773,395],[703,354],[505,307],[719,633],[207,181],[605,441],[378,327],[669,566],[77,73],[142,127],[409,194],[559,379],[842,485],[758,339],[764,550],[783,46],[659,231],[862,84],[937,790],[904,437],[810,769],[860,192],[920,674],[499,495],[926,376],[801,680],[859,670],[485,451],[944,871],[248,43],[324,252],[691,185],[438,138],[649,642],[756,84],[871,600],[561,432],[36,4],[634,384],[720,691],[328,174],[819,533],[705,423],[500,101],[393,301],[616,157],[608,157],[532,387],[173,150],[902,680],[843,628],[814,202],[351,174],[590,81],[530,88],[865,32],[981,540],[978,364],[227,192],[862,146],[949,907],[950,571],[321,139],[797,501],[102,30],[589,131],[488,226],[645,565],[938,839],[834,110],[998,457],[720,440],[970,763],[827,274],[874,803],[595,585],[791,429],[479,469],[624,332],[992,284],[400,342],[913,467],[907,496],[717,370],[636,160],[796,584],[358,281],[892,567],[555,531],[701,233],[419,182],[382,352],[528,195],[441,314],[251,13],[801,76],[983,266],[931,120],[200,80],[703,540],[410,128],[991,766],[928,438],[938,888],[898,592],[569,117],[948,579],[932,452],[549,442],[814,490],[916,401],[556,519],[689,652],[352,253],[322,34],[403,39],[489,84],[807,724],[539,153],[369,249],[782,205],[386,75],[850,256],[929,766],[822,143],[997,141],[928,282],[802,423],[896,520],[364,225],[927,194],[548,317],[951,644],[783,77],[433,211],[453,301],[372,197],[840,680],[663,392],[690,207],[733,6],[927,485],[490,140],[947,946],[228,206],[934,705],[170,23],[980,480],[829,70],[455,118],[652,569],[616,509],[527,387],[619,190],[596,193],[346,78],[693,519],[978,344],[665,98],[999,135],[960,959],[991,647],[185,113],[784,715],[331,281],[707,53],[478,363],[925,837],[561,356],[365,123],[375,330],[933,864],[338,51],[967,837],[621,246],[579,517],[738,686],[709,61],[911,672],[238,94],[234,43],[623,473],[552,521],[464,366],[856,336],[574,180],[675,493],[732,175],[594,22],[425,116],[965,22],[575,210],[360,353],[206,178],[273,221],[673,117],[565,527],[896,6],[589,352],[543,536],[528,347],[847,445],[868,657],[420,188],[894,73],[793,16],[733,88],[166,18],[914,356],[803,468],[973,451],[775,732],[493,92],[411,240],[789,288],[219,34],[292,102],[564,165],[873,311],[678,367],[277,124],[861,569],[548,35],[288,40],[439,365],[957,296],[476,437],[365,145],[711,131],[767,269],[794,135],[332,38],[792,624],[970,79],[762,657],[982,243],[982,36],[245,167],[729,75],[849,705],[793,363],[793,630],[352,202],[560,143],[887,739],[588,97],[987,792],[644,536],[986,287],[960,442],[330,135],[982,366],[396,341],[585,220],[584,250],[868,297],[695,111],[828,803],[371,84],[969,307],[857,726],[938,434],[580,359],[945,147],[634,36],[950,911],[315,181],[325,175],[769,361],[751,356],[606,477],[593,449],[359,9],[862,4],[237,17],[461,17],[720,563],[372,35],[422,218],[422,104],[997,165],[876,46],[927,495],[818,590],[28,19],[451,38],[325,87],[895,638],[763,716],[937,350],[720,308],[964,82],[779,334],[377,61],[241,78],[945,927],[991,10],[850,785],[690,165],[134,65],[117,82],[925,541],[779,706],[735,95],[555,224],[975,606],[797,522],[438,244],[885,511],[848,309],[872,207],[971,410],[409,54],[490,339],[895,350],[712,188],[922,564],[605,120],[449,390],[647,81],[899,672],[563,438],[578,271],[690,274],[678,433],[859,809],[958,627],[603,59],[728,360],[760,534],[859,142],[659,339],[494,290],[984,328],[610,184],[890,11],[629,358],[885,832],[519,440],[881,879],[607,165],[394,386],[803,469],[914,449],[407,57],[797,300],[735,89],[922,438],[976,546],[675,147],[477,145],[870,866],[904,706],[640,195],[730,296],[985,475],[656,576],[404,179],[817,480],[805,716],[479,164],[979,314],[463,318],[874,176],[959,583],[976,699],[435,189],[933,568],[681,667],[720,187],[347,324],[427,369],[863,512],[763,666],[641,142],[733,253],[809,86],[801,671],[794,313],[445,19],[433,65],[578,530],[501,291],[292,187],[552,198],[920,421],[948,10],[431,172],[841,664],[377,341],[821,679],[855,840],[997,652],[983,979],[326,142],[982,22],[623,450],[326,229],[448,59],[916,769],[662,618],[737,62],[993,861],[459,458],[848,440],[287,95],[879,442],[913,220],[848,729],[503,128],[410,131],[138,5],[839,78],[411,110],[644,612],[920,269],[606,360],[505,399],[433,374],[996,929],[836,256],[930,866],[871,358],[830,643],[220,132],[782,20],[922,357],[682,670],[629,361],[357,210],[359,190],[861,44],[938,345],[431,360],[745,645],[852,230],[853,177],[558,452],[198,171],[709,702],[406,165],[711,19],[389,236],[447,58],[904,269],[258,209],[821,307],[435,378],[274,42],[651,642],[872,631],[937,112],[479,352],[463,143],[960,780],[888,429],[969,335],[975,126],[859,841],[942,349],[824,119],[552,88],[226,15],[958,75],[789,479],[649,515],[666,487],[641,207],[450,368],[664,653],[837,246],[827,792],[517,248],[122,58],[424,281],[822,325],[614,406],[835,425],[722,134],[350,37],[413,200],[934,8],[565,468],[418,105],[972,216],[966,124],[654,78],[119,0],[727,475],[866,591],[382,110],[750,592],[987,410],[561,262],[791,508],[872,685],[915,809],[968,168],[866,706],[772,405],[316,240],[784,127],[960,530],[813,444],[630,397],[982,615],[621,130],[495,417],[648,162],[835,417],[961,248],[984,488],[992,118],[669,374],[797,640],[640,476],[743,556],[449,337],[813,329],[881,665],[897,747],[664,388],[838,758],[873,565],[711,630],[684,394],[73,34],[897,445],[677,667],[747,657],[653,458],[634,368],[805,348],[263,156],[848,564],[642,186],[760,233],[696,666],[918,753],[661,508],[654,390],[279,48],[838,522],[821,141],[870,231],[860,12],[994,292],[821,592],[879,219],[903,794],[640,611],[846,101],[827,326],[905,66],[130,62],[965,605],[732,261],[284,149],[663,179],[848,296],[569,83],[975,118],[839,516],[531,228],[457,25],[867,773],[272,237],[491,46],[538,66],[804,729],[411,76],[255,238],[834,434],[659,124],[665,127],[499,193],[519,389],[578,131],[386,308],[719,328],[462,110],[791,242],[601,375],[743,284],[883,349],[472,179],[857,497],[788,468],[858,224],[629,510],[692,314],[466,205],[651,35],[706,678],[489,238],[486,114],[628,337],[740,307],[113,56],[629,406],[686,436],[557,390],[915,538],[796,518],[751,472],[550,297],[506,442],[900,63],[537,308],[317,159],[653,579],[886,7],[627,539],[838,642],[735,426],[834,721],[596,528],[902,615],[326,129],[555,545],[596,135],[779,139],[401,70],[973,507],[750,485],[475,317],[716,347],[663,591],[633,624],[190,156],[848,135],[815,705],[975,939],[735,478],[990,853],[694,576],[171,139],[980,430],[965,912],[813,121],[708,340],[283,219],[945,192],[528,142],[292,55],[508,79],[730,138],[644,400],[421,187],[789,765],[467,381],[554,284],[823,544],[936,513],[357,319],[782,187],[707,670],[348,139],[977,892],[610,212],[838,18],[201,93],[190,145],[548,126],[799,146],[714,360],[383,371],[664,96],[501,499],[951,533],[469,434],[831,726],[318,159],[806,607],[490,384],[872,561],[974,39],[667,665],[786,388],[669,178],[257,38],[808,38],[913,338],[876,500],[913,474],[551,158],[818,553],[918,351],[847,765],[706,599],[139,38],[544,66],[880,855],[153,96],[485,17],[247,245],[923,64],[807,307],[832,116],[966,307],[354,297],[939,917],[671,607],[545,192],[604,199],[563,361],[934,669],[347,322],[995,728],[983,907],[685,193],[679,452],[681,342],[943,205],[707,235],[854,546],[798,205],[638,106],[180,134],[339,249],[565,180],[534,289],[613,154],[489,139],[976,650],[815,481],[873,210],[853,846],[100,18],[881,802],[865,31],[648,622],[884,793],[764,481],[527,26],[989,624],[779,491],[726,114],[461,162],[450,222],[721,436],[710,456],[606,539],[736,255],[975,301],[537,223],[792,399],[640,62],[453,44],[489,46],[415,295],[635,634],[268,261],[811,810],[685,221],[242,99],[656,453],[265,169],[161,51],[204,149],[737,103],[943,547],[663,78],[628,342],[429,159],[540,454],[481,278],[630,550],[695,27],[554,323],[625,283],[318,63],[888,210],[639,369],[379,326],[592,46],[945,411],[907,369],[275,237],[692,323],[980,168],[529,319],[237,39],[648,552],[586,316],[158,122],[76,17],[587,36],[602,7],[341,65],[931,875],[709,513],[861,212],[640,453],[560,2],[789,650],[912,799],[596,277],[653,99],[933,36],[549,7],[652,29],[473,93],[975,536],[940,247],[571,188],[569,371],[879,363],[731,699],[355,302],[575,222],[849,242],[892,856],[826,560],[754,337],[417,364],[926,249],[525,47],[760,24],[640,507],[970,830],[678,290],[494,324],[685,350],[986,813],[674,524],[527,167],[677,489],[818,111],[630,227],[356,90],[487,219],[936,817],[969,337],[380,92],[607,175],[416,276],[702,371],[289,147],[888,312],[874,344],[619,522],[878,153],[900,260],[752,444],[745,477],[873,274],[921,130],[618,330],[846,634],[396,135],[784,213],[911,242],[608,544],[987,741],[668,185],[815,763],[787,257],[756,698],[952,676],[955,337],[347,206],[793,438],[791,328],[73,35],[466,338],[459,27],[256,247],[953,724],[556,454],[838,663],[773,729],[929,754],[827,703],[980,776],[365,74],[539,201],[489,11],[524,251],[977,212],[611,490],[722,568],[668,338],[303,1],[217,10],[694,242],[650,273],[557,118],[869,706],[836,11],[582,578],[257,48],[961,183],[652,2],[158,60],[724,361],[805,416],[630,300],[922,650],[529,385],[820,169],[926,837],[424,117],[958,857],[668,1],[651,179],[925,126],[752,81],[370,246],[844,550],[513,89],[918,561],[595,452],[949,618],[681,313],[930,442],[707,494],[890,133],[565,484],[977,166],[944,860],[771,248],[854,195],[245,78],[705,578],[212,194],[737,469],[637,79],[566,1],[478,413],[415,195],[521,55],[806,662],[654,214],[719,519],[86,44],[476,229],[454,224],[798,79],[753,720],[483,348],[984,567],[763,537],[180,11],[930,303],[418,40],[990,571],[686,217],[226,169],[755,542],[830,424],[978,368],[653,181],[411,209],[581,160],[697,282],[775,478],[164,132],[936,42],[422,76],[536,527],[832,139],[791,333],[746,373],[803,229],[946,860],[836,306],[379,8],[458,413],[686,575],[568,499],[911,607],[713,169],[774,608],[879,223],[621,490],[437,216],[743,509],[675,177],[397,159],[711,421],[830,774],[935,1],[863,181],[849,704],[795,492],[768,691],[814,580],[801,349],[465,272],[964,751],[974,510],[879,404],[816,724],[630,229],[667,513],[239,131],[605,228],[492,218],[678,572],[975,901],[800,515],[905,502],[750,603],[650,51],[36,2],[673,82],[903,597],[928,81],[474,2],[310,74],[624,281],[697,98],[684,155],[819,193],[853,389],[692,410],[900,384],[249,41],[611,133],[423,22],[956,590],[229,9],[218,54],[247,74],[968,419],[967,248],[999,10],[748,59],[951,679],[982,862],[869,144],[998,608],[773,656],[734,16],[860,247],[837,580],[150,92],[735,297],[197,70],[420,219],[397,274],[345,113],[896,356],[686,246],[854,166],[621,38],[966,44],[998,694],[831,582],[843,585],[648,42],[727,541],[838,289],[492,390],[941,835],[779,688],[607,203],[427,243],[255,152],[818,311],[615,322],[594,324],[568,247],[554,293],[642,153],[940,369],[668,173],[498,133],[827,104],[439,381],[771,389],[954,93],[711,477],[495,137],[707,261],[743,514],[609,579],[868,152],[624,449],[906,214],[780,379],[496,267],[883,98],[682,28],[862,471],[101,88],[671,363],[924,917],[916,879],[996,573],[989,75],[942,520],[762,693],[884,710],[697,575],[994,140],[816,651],[642,531],[410,337],[220,6],[849,584],[707,515],[407,246],[798,43],[376,169],[387,312],[836,182],[461,235],[521,280],[810,446],[645,440],[528,70],[790,331],[874,653],[914,562],[473,276],[690,658],[735,86],[726,150],[144,55],[638,417],[742,407],[619,516],[292,229],[486,59],[838,482],[487,394],[347,32],[655,127],[890,319],[698,471],[838,179],[362,314],[997,947],[819,297],[936,250],[894,116],[686,376],[967,4],[985,268],[447,352],[996,327],[552,349],[660,568],[323,274],[363,164],[698,100],[480,21],[938,650],[631,531],[490,230],[361,57],[527,329],[653,546],[994,748],[505,146],[316,190],[971,233],[737,156],[587,66],[703,469],[999,249],[511,323],[192,35],[687,445],[811,553],[626,106],[810,415],[77,34],[934,760],[994,125],[454,425],[326,43],[524,73],[899,564],[806,311],[594,415],[774,476],[426,31],[979,205],[814,18],[980,489],[745,233],[398,173],[931,532],[869,90],[641,295],[946,649],[806,207],[277,215],[824,59],[965,342],[967,414],[574,361],[945,619],[770,521],[679,213],[924,556],[952,90],[682,311],[538,471],[563,359],[754,527],[799,31],[931,18],[654,579],[990,311],[925,57],[827,196],[394,34],[841,346],[756,264],[367,157],[718,689],[653,391],[901,51],[411,161],[253,200],[805,373],[693,404],[694,482],[440,11],[200,88],[580,336],[944,668],[731,472],[741,95],[310,175],[771,486],[789,700],[630,254],[761,466],[684,332],[540,5],[608,211],[489,351],[899,330],[694,691],[699,277],[995,101],[998,383],[605,10],[592,182],[915,96],[437,32],[773,6],[733,500],[623,530],[108,98],[341,64],[840,432],[945,465],[168,29],[898,851],[411,206],[316,139],[679,224],[470,2],[872,99],[485,454],[966,167],[557,95],[991,533],[581,373],[932,599],[885,870],[939,468],[895,636],[581,441],[171,84],[46,35],[467,136],[886,335],[870,173],[680,452],[714,299],[979,113],[785,683],[713,604],[614,153],[697,27],[979,705],[418,118],[611,37],[285,180],[933,731],[457,410],[311,51],[701,8],[386,66],[335,157],[466,149],[644,497],[895,478],[668,143],[959,393],[449,179],[438,371],[386,133],[331,275],[361,226],[908,765],[855,433],[734,414],[477,319],[817,752],[711,84],[536,54],[528,459],[412,269],[757,667],[744,158],[838,361],[498,300],[369,171],[694,117],[651,46],[994,864],[979,763],[201,104],[381,125],[780,599],[644,535],[389,306],[898,206],[969,893],[223,207],[185,116],[390,150],[239,224],[264,204],[799,501],[679,231],[781,5],[548,27],[601,21],[724,669],[304,35],[529,28],[719,386],[986,301],[965,757],[886,302],[585,88],[870,162],[291,204],[633,487],[909,176],[707,73],[764,1],[646,444],[841,224],[673,333],[764,121],[280,216],[735,234],[905,371],[559,273],[438,151],[748,152],[675,509],[897,668],[506,371],[541,314],[598,565],[200,67],[231,154],[946,95],[481,1],[616,614],[736,34],[795,573],[548,185],[910,17],[964,327],[537,510],[564,286],[979,865],[815,647],[740,559],[901,67],[897,881],[976,333],[946,677],[864,798],[958,154],[891,274],[771,603],[870,764],[175,5],[967,572],[637,623],[103,39],[873,730],[135,111],[730,729],[914,214],[751,92],[978,825],[884,778],[639,204],[997,488],[967,499],[812,27],[762,274],[838,319],[958,153],[809,214],[832,735],[567,86],[366,359],[867,459],[408,344],[587,61],[591,376],[586,352],[471,94],[973,17],[575,535],[844,570],[398,130],[839,196],[749,108],[848,832],[620,215],[395,107],[808,699],[972,756],[947,436],[793,612],[711,629],[901,38],[730,581],[936,142],[793,506],[933,542],[909,880],[727,613],[589,209],[289,197],[556,131],[678,458],[849,194],[727,455],[991,75],[932,628],[558,161],[680,409],[891,367],[742,48],[823,250],[963,427],[884,497],[895,156],[345,321],[486,151],[919,876],[523,427],[594,258],[405,300],[786,146],[633,317],[947,356],[953,271],[718,532],[532,337],[390,119],[580,227],[368,241],[620,280],[211,62],[651,195],[707,356],[787,173],[516,180],[345,305],[526,410],[688,247],[145,103],[198,105],[469,393],[791,467],[694,458],[459,110],[485,477],[739,214],[450,214],[897,228],[736,287],[585,451],[150,2],[881,258],[392,189],[870,562],[789,669],[642,541],[710,684],[959,275],[699,573],[492,425],[628,492],[987,886],[880,15],[483,119],[470,97],[882,29],[593,251],[492,157],[558,352],[994,676],[672,563],[296,70],[513,154],[927,150],[239,32],[852,134],[457,285],[691,677],[565,503],[614,610],[649,637],[214,44],[295,216],[627,376],[798,437],[674,305],[892,12],[319,149],[262,105],[453,445],[842,725],[905,9],[473,76],[847,487],[869,498],[682,471],[587,114],[905,20],[877,240],[830,317],[718,698],[959,803],[518,424],[110,31],[764,324],[781,582],[544,361],[837,172],[921,286],[857,186],[649,256],[399,366],[843,467],[969,921],[722,701],[708,291],[904,245],[552,372],[645,319],[780,238],[936,84],[175,80],[910,871],[601,63],[895,498],[914,749],[777,154],[571,241],[521,308],[776,700],[583,566],[305,208],[799,437],[808,747],[798,256],[789,162],[446,275],[858,350],[330,18],[582,262],[931,880],[615,389],[896,804],[696,168],[694,208],[798,408],[788,340],[339,24],[381,348],[541,341],[502,495],[555,315],[942,733],[454,288],[650,582],[914,844],[741,696],[341,60],[925,245],[786,421],[617,422],[941,328],[246,108],[874,802],[275,107],[997,533],[320,286],[778,710],[477,419],[301,26],[490,201],[135,65],[578,386],[672,414],[154,105],[608,387],[441,396],[881,260],[436,129],[128,10],[989,204],[657,265],[908,462],[898,820],[408,302],[620,434],[291,42],[641,391],[733,351],[969,290],[303,238],[593,463],[783,415],[846,840],[244,163],[989,142],[449,214],[581,295],[981,806],[977,9],[977,351],[877,390],[866,679],[728,5],[651,586],[753,508],[849,828],[794,388],[39,35],[586,495],[994,438],[704,45],[212,196],[637,347],[869,310],[920,68],[628,329],[776,501],[774,175],[148,94],[604,60],[304,299],[906,491],[343,303],[541,323],[852,485],[445,163],[512,496],[864,197],[928,319],[562,151],[742,579],[743,657],[667,453],[783,531],[185,97],[796,23],[929,598],[631,510],[654,422],[995,809],[949,193],[552,41],[231,179],[820,135],[52,26],[778,748],[940,100],[176,163],[936,10],[720,193],[949,507],[363,182],[885,429],[952,750],[596,140],[943,545],[846,278],[992,961],[988,503],[845,12],[530,213],[903,900],[976,147],[699,9],[561,450],[506,45],[538,473],[804,599],[928,161],[789,460],[698,333],[616,204],[926,161],[717,146],[897,362],[824,361],[662,288],[541,80],[864,846],[475,228],[362,180],[795,292],[860,525],[772,194],[353,182],[896,639],[869,736],[780,469],[142,98],[213,29],[773,93],[463,285],[882,68],[692,536],[883,514],[98,49],[641,363],[444,368],[468,225],[867,650],[664,223],[920,836],[230,50],[587,517],[920,445],[313,1],[778,649],[425,362],[741,536],[801,714],[628,324],[216,183],[372,93],[757,191],[894,92],[544,243],[536,270],[904,741],[908,490],[906,373],[327,137],[679,203],[753,137],[939,483],[463,192],[644,397],[992,989],[944,92],[412,20],[909,653],[832,699],[340,198],[663,555],[961,593],[827,246],[788,122],[10,0],[678,55],[920,202],[855,139],[590,69],[973,716],[703,667],[306,168],[540,94],[765,732],[180,163],[384,184],[744,564],[804,51],[298,132],[230,134],[640,359],[823,744],[764,349],[436,410],[337,185],[922,92],[155,88],[945,626],[291,153],[881,207],[506,78],[634,29],[460,21],[505,417],[773,199],[426,384],[445,251],[850,278],[761,729],[742,668],[396,233],[899,859],[715,285],[175,68],[731,524],[915,430],[311,292],[815,603],[986,831],[916,716],[898,689],[842,21],[915,176],[576,469],[876,235],[797,470],[859,50],[713,386],[542,509],[944,767],[851,81],[680,531],[976,336],[981,167],[967,409],[735,447],[321,259],[530,327],[495,33],[576,227],[749,337],[531,146],[580,174],[993,298],[908,829],[902,163],[748,294],[672,362],[881,630],[784,641],[836,810],[810,473],[263,79],[883,552],[894,878],[915,71],[541,119],[594,144],[710,682],[478,383],[744,510],[647,570],[983,523],[992,418],[948,275],[887,569],[923,304],[844,683],[245,61],[417,338],[937,12],[920,721],[815,443],[589,138],[662,348],[709,559],[595,372],[728,63],[592,439],[677,664],[802,348],[414,31],[597,254],[721,453],[840,590],[610,403],[839,177],[856,280],[803,590],[470,146],[589,514],[915,802],[898,882],[609,390],[677,553],[721,259],[833,96],[774,295],[583,65],[698,248],[684,194],[687,211],[229,115],[295,147],[306,173],[959,779],[678,566],[711,200],[878,843],[425,241],[235,94],[688,328],[288,41],[809,151],[701,587],[749,207],[834,555],[443,216],[843,673],[620,599],[965,959],[121,101],[829,203],[988,499],[828,314],[593,539],[543,394],[853,485],[61,53],[346,55],[869,509],[496,2],[440,146],[839,542],[844,502],[841,93],[940,527],[532,167],[632,457],[977,683],[966,425],[767,47],[785,721],[254,109],[968,593],[340,137],[119,97],[943,719],[636,127],[778,208],[810,494],[684,9],[863,318],[196,23],[786,469],[619,605],[345,101],[527,442],[954,259],[954,810],[825,544],[893,183],[770,540],[861,326],[680,249],[337,215],[914,147],[244,50],[480,338],[889,36],[780,303],[858,493],[502,372],[305,82],[460,144],[836,400],[798,247],[969,34],[741,412],[196,34],[987,927],[640,180],[573,86],[989,41],[343,11],[592,378],[976,910],[697,95],[823,301],[288,35],[697,362],[880,234],[594,260],[955,327],[595,196],[408,65],[649,641],[745,610],[731,275],[949,482],[310,121],[812,208],[654,95],[486,182],[826,115],[683,547],[621,403],[823,380],[624,533],[202,162],[808,762],[380,301],[378,366],[549,487],[958,346],[914,181],[286,61],[803,44],[703,234],[997,282],[935,833],[903,739],[484,347],[373,369],[945,687],[928,156],[749,170],[817,686],[787,753],[506,481],[388,173],[950,738],[619,494],[732,286],[580,348],[767,427],[601,280],[538,13],[515,184],[912,116],[208,0],[702,481],[904,164],[121,91],[303,208],[870,769],[817,146],[728,118],[911,714],[890,609],[493,484],[970,412],[338,148],[736,266],[720,505],[748,117],[887,254],[609,566],[949,612],[694,274],[833,684],[399,87],[780,769],[946,453],[783,487],[366,221],[398,0],[489,410],[728,634],[852,53],[367,361],[717,221],[322,32],[718,623],[443,76],[779,199],[841,780],[689,385],[650,352],[223,129],[954,312],[886,551],[689,196],[354,26],[450,432],[513,223],[546,40],[987,167],[917,770],[645,274],[738,55],[416,390],[364,262],[983,897],[932,39],[908,195],[600,177],[731,484],[425,89],[703,309],[857,203],[381,93],[28,20],[409,146],[838,127],[599,488],[909,109],[782,567],[982,85],[325,185],[921,682],[317,270],[891,487],[153,12],[739,287],[701,9],[946,823],[948,395],[914,284],[513,24],[372,52],[482,247],[818,582],[657,360],[556,200],[755,256],[741,568],[722,534],[481,336],[629,478],[907,350],[834,12],[593,29],[267,237],[899,862],[620,419],[767,444],[850,737],[850,673],[684,110],[660,261],[958,262],[206,23],[204,142],[804,396],[471,174],[882,78],[416,210],[68,55],[412,326],[728,369],[552,15],[581,133],[657,325],[854,218],[910,630],[958,862],[140,8],[985,679],[943,138],[709,191],[388,75],[715,708],[853,488],[881,659],[900,838],[855,369],[712,230],[908,564],[949,359],[397,251],[842,51],[496,36],[800,740],[955,435],[871,281],[703,185],[655,224],[834,490],[184,36],[592,173],[966,753],[780,742],[701,497],[998,315],[818,376],[650,607],[195,146],[745,703],[228,227],[184,25],[991,774],[751,380],[531,52],[698,524],[977,752],[463,98],[804,60],[924,906],[285,22],[954,537],[758,701],[688,359],[462,375],[816,165],[689,123],[620,244],[908,876],[195,182],[786,360],[787,502],[833,784],[666,28],[850,269],[865,616],[771,536],[856,444],[732,715],[581,229],[944,50],[866,551],[840,526],[984,472],[467,124],[698,312],[925,599],[937,536],[897,79],[976,833],[748,15],[786,83],[434,433],[911,471],[668,535],[813,780],[902,779],[746,338],[943,437],[994,895],[538,464],[671,528],[383,86],[726,179],[191,98],[401,286],[783,483],[814,117],[357,9],[740,146],[796,327],[880,432],[903,637],[884,138],[331,288],[545,10],[473,297],[533,110],[924,83],[569,224],[711,326],[327,252],[141,82],[786,328],[406,268],[553,121],[648,240],[971,878],[930,530],[707,529],[905,802],[588,539],[690,33],[780,568],[840,714],[679,70],[907,563],[400,359],[916,90],[889,284],[756,10],[553,199],[633,413],[933,77],[427,104],[472,177],[977,675],[980,304],[200,35],[392,352],[712,614],[565,114],[957,630],[484,185],[574,528],[487,391],[793,541],[863,635],[289,117],[396,31],[901,547],[813,32],[454,326],[572,176],[739,678],[341,25],[529,514],[529,191],[550,158],[940,235],[766,107],[588,229],[800,555],[822,367],[872,33],[426,255],[847,352],[915,199],[427,342],[379,282],[760,643],[332,241],[635,33],[929,300],[353,36],[373,68],[521,272],[894,556],[811,329],[589,359],[278,165],[953,617],[978,24],[442,111],[967,61],[705,227],[765,589],[831,692],[404,296],[715,659],[727,299],[814,188],[594,562],[710,281],[977,42],[930,619],[472,458],[868,542],[965,801],[694,152],[925,784],[565,521],[850,101],[689,581],[808,531],[777,666],[841,824],[494,350],[506,49],[823,188],[364,252],[387,193],[125,60],[825,531],[292,281],[844,536],[393,157],[680,286],[98,85],[895,851],[538,144],[704,136],[802,523],[943,740],[604,233],[851,547],[673,482],[922,823],[583,436],[565,383],[515,388],[894,877],[724,485],[719,126],[865,681],[227,54],[777,194],[481,367],[734,207],[978,794],[776,266],[298,207],[846,670],[670,323],[803,345],[840,493],[879,107],[631,291],[784,320],[709,470],[79,7],[740,206],[359,56],[36,34],[804,196],[109,88],[961,434],[934,242],[726,438],[238,148],[874,779],[552,234],[858,163],[369,316],[953,608],[921,761],[244,218],[811,768],[617,344],[815,424],[956,850],[107,55],[847,335],[677,133],[467,337],[611,245],[557,146],[304,74],[363,187],[415,46],[542,439],[276,17],[808,463],[487,463],[895,682],[697,516],[882,96],[744,63],[974,474],[189,89],[445,45],[915,47],[898,156],[706,141],[970,569],[988,313],[972,179],[165,97],[319,209],[680,236],[472,350],[810,443],[356,64],[861,71],[454,290],[729,361],[874,700],[552,182],[635,148],[998,391],[217,116],[741,270],[950,694],[565,360],[861,846],[875,469],[975,701],[711,367],[610,203],[943,870],[963,668],[462,260],[928,91],[367,137],[975,826],[910,551],[844,165],[811,367],[207,122],[614,292],[767,683],[419,293],[965,284],[815,177],[261,37],[829,214],[967,954],[570,329],[252,27],[915,697],[734,565],[865,447],[347,20],[793,456],[696,527],[862,67],[786,178],[673,177],[835,302],[587,437],[978,504],[375,278],[556,445],[994,581],[588,256],[683,315],[553,346],[762,523],[518,218],[613,275],[818,394],[390,126],[400,76],[888,194],[739,235],[814,374],[935,666],[180,173],[784,331],[420,164],[996,609],[757,311],[792,393],[912,295],[979,827],[502,469],[848,783],[994,564],[979,946],[609,444],[812,700],[897,726],[866,432],[396,238],[347,54],[388,307],[869,721],[695,485],[876,151],[670,123],[270,247],[857,788],[511,280],[777,477],[960,430],[896,428],[689,307],[425,157],[543,195],[694,184],[939,363],[580,401],[121,43],[577,254],[782,42],[914,251],[839,558],[710,572],[997,423],[519,453],[356,98],[513,74],[618,233],[794,466],[647,88],[764,303],[579,278],[751,121],[753,712],[894,416],[950,211],[588,529],[776,172],[819,230],[560,106],[923,833],[456,113],[275,95],[562,21],[940,236],[769,556],[595,220],[300,88],[130,37],[998,168],[967,252],[529,282],[718,159],[149,132],[445,116],[898,257],[945,781],[700,385],[285,270],[219,174],[932,365],[870,471],[628,416],[529,67],[845,769],[805,372],[583,136],[791,183],[774,636],[751,652],[984,404],[522,43],[574,398],[697,687],[152,118],[780,110],[930,158],[653,278],[919,904],[734,733],[801,683],[454,414],[997,390],[409,346],[668,26],[898,540],[954,703],[998,372],[748,235],[897,279],[406,38],[975,486],[725,441],[634,89],[699,305],[857,518],[921,215],[297,281],[805,730],[721,473],[260,216],[919,888],[815,759],[853,732],[646,534],[766,518],[998,332],[519,188],[853,405],[702,580],[976,935],[981,41],[978,572],[581,354],[180,83],[648,369],[822,729],[452,33],[734,502],[987,172],[961,111],[396,249],[655,608],[861,164],[765,366],[539,442],[393,354],[890,884],[236,93],[537,97],[387,28],[704,80],[978,118],[873,23],[669,258],[319,306],[666,280],[730,25],[945,169],[457,322],[404,201],[821,305],[926,496],[894,244],[898,589],[421,296],[147,101],[745,189],[995,249],[607,78],[997,942],[898,279],[731,4],[439,236],[220,169],[635,440],[622,139],[375,38],[812,157],[955,366],[828,36],[603,250],[417,270],[385,322],[500,215],[951,919],[738,684],[218,187],[965,264],[822,601],[958,8],[320,259],[960,400],[465,450],[706,297],[310,238],[285,282],[975,765],[793,658],[590,10],[601,413],[664,200],[416,50],[584,324],[695,442],[514,163],[522,279],[529,165],[880,252],[519,302],[484,411],[896,146],[899,482],[274,221],[936,629],[639,240],[999,773],[960,443],[675,485],[854,383],[993,6],[686,568],[63,8],[359,114],[106,104],[906,529],[768,642],[993,842],[625,160],[374,197],[837,665],[729,375],[780,269],[970,880],[304,25],[968,489],[972,600],[765,120],[365,326],[418,394],[980,189],[965,50],[882,171],[751,306],[596,430],[801,749],[995,107],[620,63],[487,453],[734,280],[783,480],[215,112],[922,590],[455,231],[340,24],[651,104],[904,510],[654,461],[778,230],[511,292],[737,66],[111,67],[574,428],[664,527],[944,352],[631,620],[410,59],[601,12],[768,479],[396,150],[960,496],[606,390],[807,728],[526,181],[904,632],[868,179],[671,30],[464,215],[815,774],[298,121],[530,149],[794,402],[869,432],[759,90],[531,509],[699,70],[461,350],[743,557],[814,588],[681,237],[857,148],[313,251],[382,145],[927,475],[558,135],[997,187],[290,235],[736,279],[447,231],[741,14],[864,208],[660,241],[658,234],[774,223],[685,7],[899,217],[796,230],[707,635],[471,268],[750,602],[372,251],[293,102],[813,543],[481,377],[859,797],[906,743],[615,353],[429,377],[876,1],[521,369],[994,607],[573,227],[584,263],[969,654],[494,148],[463,195],[924,102],[637,117],[780,600],[761,83],[485,317],[695,293],[500,347],[674,534],[778,271],[537,396],[379,300],[667,261],[998,836],[148,14],[841,344],[578,180],[332,196],[928,311],[752,495],[821,671],[349,27],[154,86],[864,811],[753,47],[699,604],[890,25],[918,301],[968,769],[676,206],[830,633],[164,40],[583,335],[777,377],[832,351],[198,36],[471,252],[249,217],[871,140],[574,520],[842,823],[426,267],[101,60],[897,545],[757,395],[434,267],[869,450],[718,136],[411,14],[755,259],[228,70],[986,708],[987,119],[958,773],[931,371],[696,104],[720,247],[990,671],[885,349],[366,155],[786,584],[658,623],[863,712],[952,924],[894,298],[651,366],[860,712],[677,96],[783,770],[910,97],[685,65],[499,381],[813,783],[529,393],[776,497],[750,78],[306,250],[865,168],[552,355],[865,762],[943,886],[655,94],[565,500],[879,372],[857,127],[580,449],[814,62],[255,38],[654,330],[187,70],[224,202],[886,275],[765,87],[847,357],[895,693],[381,31],[462,263],[863,442],[845,167],[703,489],[815,126],[952,120],[649,533],[954,828],[790,771],[462,204],[790,395],[764,559],[352,269],[441,82],[975,719],[333,205],[604,293],[945,38],[630,273],[956,83],[144,52],[913,368],[985,659],[444,123],[611,75],[915,513],[710,520],[929,471],[739,468],[757,703],[87,59],[969,480],[611,305],[123,99],[817,543],[385,325],[506,315],[426,274],[593,198],[591,366],[132,35],[517,405],[338,285],[660,594],[819,766],[868,666],[904,327],[739,619],[878,541],[543,445],[760,467],[736,252],[356,225],[387,289],[427,400],[864,542],[694,352],[514,404],[895,127],[689,305],[388,203],[976,264],[638,454],[596,547],[467,414],[555,388],[906,230],[879,678],[938,584],[889,584],[544,321],[883,802],[988,333],[181,115],[990,663],[380,122],[549,303],[470,347],[311,14],[847,229],[998,780],[129,109],[611,198],[952,542],[458,406],[696,148],[629,54],[769,648],[418,151],[707,295],[928,697],[795,25],[796,149],[752,18],[277,229],[907,540],[789,58],[660,393],[650,257],[906,720],[888,519],[709,19],[241,77],[31,10],[388,71],[462,288],[915,557],[943,889],[201,44],[925,14],[458,63],[271,110],[369,335],[549,393],[805,237],[839,357],[648,382],[162,158],[896,662],[953,845],[699,270],[804,660],[651,412],[693,90],[889,608],[853,555],[862,257],[151,133],[825,661],[334,255],[946,365],[855,621],[570,160],[980,467],[604,14],[591,274],[890,249],[872,614],[435,312],[734,707],[864,45],[337,248],[294,88],[690,469],[704,322],[792,572],[887,17],[947,259],[550,543],[919,453],[307,245],[635,137],[850,729],[798,24],[515,279],[684,670],[986,484],[570,511],[294,132],[549,36],[945,765],[292,184],[920,346],[960,922],[395,336],[732,330],[419,126],[717,29],[982,782],[880,241],[995,552],[997,740],[318,54],[721,333],[354,137],[650,181],[954,329],[459,279],[545,249],[297,23],[826,28],[663,553],[624,222],[828,466],[475,335],[905,39],[710,161],[394,133],[726,320],[602,83],[782,46],[647,362],[629,276],[973,832],[636,546],[491,372],[849,35],[480,182],[371,135],[981,90],[691,427],[969,430],[477,460],[725,238],[992,236],[925,822],[791,385],[281,181],[961,546],[616,410],[285,193],[74,1],[988,707],[973,958],[695,298],[344,127],[819,705],[872,214],[908,116],[656,212],[752,318],[464,91],[453,208],[971,397],[540,250],[566,479],[639,154],[262,99],[714,87],[734,73],[726,293],[902,581],[428,204],[388,113],[101,32],[513,28],[362,361],[410,142],[82,54],[890,602],[596,142],[555,351],[856,343],[960,768],[175,127],[910,253],[660,470],[797,510],[856,493],[942,394],[653,602],[62,61],[592,422],[797,466],[910,87],[501,452],[870,184],[804,103],[995,508],[922,600],[869,730],[790,57],[711,592],[213,171],[732,71],[336,153],[859,645],[426,72],[793,33],[451,324],[668,46],[609,265],[980,146],[767,286],[885,71],[816,172],[667,501],[850,438],[957,460],[964,783],[929,705],[496,352],[991,218],[534,428],[782,609],[823,386],[537,468],[326,183],[835,103],[433,328],[593,319],[664,542],[984,365],[98,34],[773,632],[800,518],[236,204],[175,153],[811,546],[597,353],[652,527],[695,609],[777,327],[177,25],[789,299],[966,312],[762,476],[848,93],[698,687],[732,531],[579,89],[727,325],[903,299],[594,509],[945,185],[570,345],[459,304],[321,250],[939,634],[576,529],[681,138],[957,284],[711,512],[665,130],[951,70],[511,355],[578,519],[432,167],[350,235],[709,262],[944,108],[496,462],[893,657],[633,393],[871,531],[672,298],[732,427],[574,185],[871,508],[433,428],[640,621],[891,664],[553,38],[859,557],[850,757],[415,180],[603,82],[581,453],[720,332],[882,846],[294,118],[627,600],[664,277],[745,146],[170,60],[644,549],[975,21],[703,494],[641,167],[934,817],[482,82],[565,430],[986,747],[412,174],[723,229],[223,22],[740,406],[750,217],[873,217],[875,740],[416,61],[183,156],[380,49],[961,655],[430,295],[503,189],[818,629],[726,333],[501,407],[860,727],[642,353],[967,413],[958,524],[356,173],[764,299],[508,386],[704,491],[995,572],[487,173],[564,264],[929,736],[594,262],[639,108],[745,303],[173,113],[634,133],[158,74],[805,630],[932,110],[474,417],[886,299],[779,38],[764,351],[737,190],[825,655],[128,55],[625,373],[648,334],[313,294],[707,596],[918,146],[350,144],[348,257],[256,58],[617,563],[938,856],[574,557],[518,208],[942,893],[255,120],[693,34],[556,476],[921,740],[519,460],[851,544],[873,840],[681,624],[978,404],[953,628],[821,144],[866,410],[168,44],[740,274],[824,517],[773,168],[633,457],[983,422],[567,434],[405,399],[999,854],[716,21],[952,215],[675,79],[530,329],[872,416],[442,287],[893,880],[754,101],[563,56],[422,332],[880,695],[459,405],[334,190],[795,31],[753,724],[702,173],[632,339],[776,461],[877,290],[616,6],[624,148],[297,189],[523,28],[632,49],[986,16],[201,52],[737,9],[779,649],[831,493],[504,385],[369,333],[885,457],[895,72],[964,629],[697,373],[946,893],[488,481],[541,497],[553,349],[983,729],[608,88],[439,193],[629,269],[560,24],[839,352],[557,91],[77,39],[797,533],[790,740],[528,365],[604,425],[974,895],[321,245],[661,244],[939,181],[542,230],[676,644],[989,381],[606,164],[444,334],[478,336],[764,103],[298,267],[669,383],[66,44],[436,236],[956,512],[983,572],[920,90],[268,48],[583,398],[344,40],[392,347],[936,792],[162,157],[991,316],[906,597],[918,456],[845,431],[900,843],[605,262],[729,156],[254,145],[713,507],[337,44],[981,776],[314,249],[940,237],[928,780],[515,317],[453,355],[834,428],[362,176],[804,758],[215,69],[785,155],[836,162],[913,298],[812,704],[841,795],[817,717],[930,112],[474,147],[596,302],[270,81],[935,442],[283,191],[703,526],[225,61],[683,113],[282,263],[869,247],[257,120],[911,849],[651,372],[702,271],[797,634],[816,287],[969,582],[998,387],[777,140],[980,688],[488,98],[293,276],[547,38],[707,151],[651,604],[660,346],[915,235],[873,109],[546,140],[371,124],[903,899],[584,356],[568,286],[541,318],[395,40],[337,206],[943,259],[487,188],[987,805],[467,424],[622,224],[624,307],[167,77],[687,589],[775,331],[418,414],[643,94],[632,559],[610,341],[860,428],[848,82],[977,579],[778,341],[998,563],[950,118],[702,59],[748,510],[761,368],[977,302],[140,65],[513,161],[626,140],[804,316],[940,867],[999,791],[943,807],[842,633],[297,1],[524,450],[876,287],[156,104],[129,79],[354,232],[683,426],[821,511],[941,142],[603,490],[975,36],[989,45],[214,135],[568,163],[461,256],[758,271],[879,163],[863,680],[989,126],[826,162],[870,34],[935,722],[381,136],[819,591],[879,792],[674,380],[747,68],[841,350],[754,665],[822,486],[269,102],[536,11],[672,264],[777,730],[349,270],[795,791],[930,752],[172,106],[876,558],[780,264],[407,214],[876,690],[483,381],[360,29],[303,81],[837,187],[759,148],[602,567],[822,813],[937,9],[318,90],[813,169],[528,95],[952,315],[410,12],[92,44],[791,213],[671,341],[858,355],[543,141],[766,219],[280,224],[676,37],[940,599],[367,104],[777,588],[719,193],[238,58],[17,3],[329,202],[967,385],[734,194],[771,172],[633,24],[722,90],[568,416],[708,431],[930,662],[814,596],[821,608],[716,65],[967,445],[78,67],[714,399],[458,5],[517,464],[794,5],[717,236],[654,323],[460,39],[938,32],[900,599],[396,207],[724,145],[418,219],[377,223],[885,390],[536,291],[529,166],[711,67],[552,507],[879,111],[610,366],[832,506],[472,331],[560,241],[717,238],[729,8],[346,111],[897,797],[871,767],[946,432],[461,90],[774,261],[706,618],[526,377],[289,20],[683,291],[573,32],[684,162],[149,112],[509,102],[538,45],[767,186],[468,81],[517,513],[749,729],[445,181],[891,456],[395,13],[201,103],[790,391],[991,755],[891,333],[945,836],[217,90],[417,69],[886,760],[848,813],[105,57],[861,129],[951,464],[782,190],[423,367],[585,546],[773,251],[492,307],[886,880],[828,555],[674,475],[530,499],[812,16],[719,632],[306,71],[593,457],[631,630],[305,162],[952,570],[869,262],[738,529],[333,104],[577,33],[61,31],[944,286],[876,511],[469,28],[926,753],[589,113],[988,892],[469,12],[176,100],[499,102],[346,319],[761,379],[704,368],[562,363],[672,527],[765,56],[793,173],[962,458],[797,87],[586,526],[327,51],[447,202],[492,324],[225,181],[652,560],[950,198],[248,201],[653,405],[971,311],[326,304],[995,979],[603,316],[590,417],[191,47],[713,566],[629,270],[113,64],[838,366],[806,650],[671,618],[610,118],[489,443],[542,153],[430,265],[853,248],[924,162],[192,69],[544,127],[573,265],[345,153],[768,356],[612,569],[719,338],[914,134],[605,352],[554,361],[827,781],[900,88],[583,431],[677,551],[319,225],[589,326],[775,118],[910,236],[252,225],[376,299],[564,203],[78,33],[368,23],[924,142],[754,312],[896,399],[172,96],[396,116],[932,111],[872,669],[902,272],[944,124],[940,638],[755,336],[183,73],[760,160],[788,660],[361,129],[966,678],[251,6],[462,151],[770,354],[238,8],[766,245],[425,266],[513,315],[967,314],[439,320],[496,135],[874,447],[823,180],[336,213],[382,179],[827,776],[386,134],[807,795],[122,99],[368,269],[682,101],[364,264],[540,277],[837,159],[850,9],[854,30],[449,329],[957,222],[296,183],[841,710],[298,52],[604,268],[954,881],[941,501],[690,147],[766,732],[806,180],[358,325],[341,183],[995,906],[984,874],[747,482],[115,94],[208,141],[325,235],[451,4],[557,375],[973,790],[833,208],[664,321],[215,104],[822,297],[483,479],[989,884],[482,421],[819,90],[794,674],[649,85],[884,439],[525,485],[709,105],[909,108],[793,570],[436,110],[503,197],[743,604],[689,454],[99,62],[346,234],[794,146],[696,476],[915,469],[939,183],[292,37],[715,84],[558,547],[953,533],[117,90],[964,258],[862,654],[945,808],[544,40],[812,77],[811,323],[162,44],[278,263],[204,54],[628,346],[442,387],[965,410],[963,170],[812,100],[927,324],[951,846],[771,581],[979,43],[738,399],[539,4],[930,708],[470,392],[663,606],[773,705],[597,148],[636,430],[620,296],[993,721],[484,395],[751,729],[240,47],[713,401],[918,495],[773,730],[93,79],[614,167],[391,381],[679,612],[580,373],[847,513],[854,104],[837,458],[789,731],[864,350],[465,428],[851,558],[465,290],[845,331],[779,485],[952,131],[629,307],[963,480],[370,177],[825,267],[628,26],[648,578],[213,114],[324,108],[283,174],[774,619],[728,9],[436,217],[954,744],[547,425],[526,20],[606,287],[982,601],[210,17],[911,193],[671,560],[990,691],[799,545],[154,13],[303,194],[958,286],[412,183],[898,13],[251,23],[369,138],[887,216],[941,424],[669,444],[536,2],[724,16],[940,108],[802,325],[935,402],[554,55],[442,286],[600,365],[815,334],[268,169],[914,830],[266,155],[802,705],[347,179],[777,0],[622,19],[478,152],[299,37],[779,302],[750,656],[650,217],[824,442],[616,81],[954,121],[775,285],[952,951],[568,112],[643,228],[583,195],[838,311],[210,178],[991,880],[330,21],[939,295],[213,45],[981,541],[429,188],[952,669],[147,76],[766,260],[942,740],[608,226],[662,550],[884,529],[822,209],[655,201],[502,273],[522,487],[282,98],[956,669],[898,392],[894,745],[557,215],[587,190],[173,97],[778,745],[402,83],[948,219],[936,4],[942,421],[739,574],[728,94],[853,715],[562,89],[813,24],[706,632],[824,710],[858,24],[948,355],[212,146],[924,295],[235,172],[896,273],[983,212],[485,138],[667,639],[824,20],[140,78],[597,72],[989,727],[142,110],[796,56],[790,592],[423,38],[755,50],[940,725],[916,416],[193,70],[776,704],[942,929],[694,497],[369,356],[985,756],[441,307],[951,925],[838,84],[620,164],[733,369],[568,465],[543,395],[953,126],[788,46],[375,280],[643,166],[500,53],[489,286],[775,65],[902,800],[871,113],[802,799],[719,129],[927,679],[303,271],[922,546],[711,695],[736,615],[618,94],[810,332],[956,829],[889,621],[661,126],[855,231],[907,603],[810,572],[724,627],[729,331],[847,255],[954,233],[586,475],[916,383],[586,477],[500,65],[988,46],[937,725],[777,555],[727,37],[395,57],[908,476],[291,267],[925,90],[122,53],[952,937],[961,926],[917,349],[871,536],[777,64],[787,476],[949,895],[803,565],[962,232],[297,71],[618,231],[513,445],[266,101],[607,548],[564,6],[728,237],[850,491],[847,561],[800,347],[674,492],[921,374],[328,71],[816,400],[187,174],[792,203],[220,41],[568,173],[923,484],[729,293],[495,466],[806,527],[175,30],[878,757],[600,182],[307,67],[648,222],[838,761],[901,863],[931,814],[301,170],[611,324],[359,184],[481,229],[975,185],[290,54],[951,796],[996,145],[882,703],[811,795],[293,123],[979,654],[658,630],[768,110],[798,141],[930,84],[797,12],[279,62],[546,8],[588,585],[425,127],[509,304],[772,427],[571,338],[916,882],[662,141],[508,441],[748,720],[907,461],[832,100],[819,764],[591,338],[739,88],[525,338],[963,198],[812,617],[702,99],[543,262],[898,748],[939,272],[938,330],[458,167],[955,790],[816,12],[493,312],[571,205],[987,133],[516,133],[699,684],[231,76],[808,427],[795,122],[942,873],[793,626],[918,738],[734,176],[843,352],[536,181],[411,113],[435,280],[329,54],[627,400],[599,417],[982,911],[757,562],[277,26],[835,432],[723,378],[765,6],[910,117],[519,442],[638,554],[525,332],[797,46],[575,515],[298,19],[942,467],[393,198],[891,471],[953,569],[511,111],[720,338],[972,197],[486,128],[869,538],[713,139],[762,664],[314,297],[942,38],[799,321],[457,237],[364,11],[206,143],[793,306],[881,674],[580,568],[789,42],[312,252],[732,646],[808,745],[559,28],[529,415],[406,279],[764,41],[885,666],[586,289],[992,322],[751,187],[149,42],[338,110],[423,165],[844,362],[715,151],[826,769],[593,40],[863,304],[657,249],[601,385],[415,123],[779,742],[223,71],[699,334],[517,130],[722,666],[491,445],[846,745],[948,256],[614,227],[310,3],[663,205],[929,858],[859,143],[510,449],[613,310],[929,384],[265,226],[319,132],[660,134],[741,188],[842,58],[681,331],[673,556],[825,510],[926,335],[915,500],[560,532],[821,136],[729,645],[642,91],[550,409],[909,751],[697,232],[997,972],[294,76],[602,150],[906,107],[205,147],[611,120],[308,283],[779,173],[999,309],[692,543],[768,44],[420,260],[176,175],[423,158],[682,605],[845,653],[559,177],[989,440],[562,434],[607,307],[694,633],[789,292],[983,378],[775,655],[478,68],[315,271],[711,503],[418,358],[984,181],[266,94],[751,232],[992,461],[116,63],[998,604],[890,480],[875,488],[884,203],[166,41],[994,583],[657,247],[884,839],[639,600],[823,486],[821,155],[525,346],[720,390],[959,391],[276,22],[837,415],[946,67],[720,362],[914,630],[943,71],[890,525],[886,508],[107,12],[924,452],[86,33],[804,693],[936,327],[800,300],[666,596],[984,735],[994,590],[891,43],[643,314],[772,318],[964,575],[792,236],[670,212],[804,118],[793,346],[271,34],[51,48],[540,244],[439,138],[353,147],[209,16],[804,30],[328,86],[454,311],[322,1],[962,585],[660,89],[568,411],[631,537],[580,547],[705,485],[795,151],[206,81],[308,151],[667,96],[731,590],[581,232],[939,686],[884,168],[953,309],[985,681],[365,174],[996,147],[961,35],[670,192],[780,452],[474,398],[958,531],[562,113],[912,323],[658,518],[989,921],[324,131],[807,390],[989,537],[723,120],[572,455],[942,115],[934,644],[672,614],[735,240],[818,585],[90,6],[949,404],[632,591],[954,422],[509,113],[744,657],[405,341],[879,161],[780,385],[743,151],[970,184],[473,306],[735,638],[464,339],[984,177],[871,169],[729,587],[356,80],[968,801],[899,284],[819,306],[493,273],[842,656],[597,106],[771,689],[937,324],[699,25],[975,593],[997,92],[995,620],[256,250],[948,406],[359,106],[487,55],[397,64],[984,463],[506,154],[476,98],[880,728],[483,455],[981,312],[675,559],[714,536],[576,414],[902,736],[981,82],[688,341],[438,419],[632,61],[745,598],[844,638],[922,305],[136,42],[460,363],[388,375],[816,339],[455,2],[599,18],[359,330],[571,520],[733,581],[491,411],[804,753],[586,39],[916,467],[678,220],[820,341],[665,593],[593,500],[784,492],[792,596],[985,358],[285,124],[633,219],[884,310],[158,64],[485,157],[970,205],[411,107],[832,326],[815,810],[600,134],[970,156],[538,438],[775,136],[620,264],[852,692],[985,396],[296,249],[452,404],[462,410],[538,321],[865,229],[517,278],[323,136],[897,293],[703,278],[791,579],[230,28],[748,268],[806,653],[469,107],[641,633],[966,190],[500,122],[402,319],[819,247],[845,777],[888,686],[727,400],[865,8],[582,143],[391,183],[956,42],[650,481],[832,418],[788,753],[621,401],[689,490],[734,699],[267,152],[592,236],[755,647],[857,85],[884,351],[798,513],[574,400],[914,34],[193,63],[754,363],[626,289],[504,221],[798,662],[515,405],[875,3],[531,28],[884,809],[969,849],[323,7],[747,706],[646,181],[598,92],[380,133],[431,326],[215,211],[308,253],[871,707],[438,214],[779,393],[831,815],[842,613],[618,398],[338,167],[786,595],[663,420],[882,808],[797,150],[619,617],[988,838],[590,239],[497,168],[863,200],[707,554],[739,191],[881,420],[817,105],[922,394],[533,394],[716,507],[465,425],[667,362],[642,25],[667,177],[950,500],[364,38],[571,116],[780,12],[910,560],[865,440],[976,341],[489,253],[951,406],[797,110],[690,39],[411,67],[576,442],[878,311],[453,258],[305,274],[819,377],[449,227],[848,50],[621,85],[402,248],[671,407],[454,175],[432,179],[928,726],[622,620],[988,204],[848,489],[586,28],[763,117],[889,431],[919,105],[778,626],[987,99],[293,169],[844,305],[33,9],[314,156],[239,77],[937,530],[927,871],[949,64],[888,107],[905,421],[792,452],[252,235],[290,78],[797,350],[796,297],[400,216],[727,435],[535,148],[707,375],[759,313],[766,637],[808,465],[697,649],[338,336],[279,117],[752,176],[491,199],[463,343],[788,462],[977,678],[881,256],[863,300],[956,485],[993,92],[657,334],[895,187],[688,675],[959,591],[925,402],[499,77],[698,2],[560,517],[143,38],[513,390],[862,54],[472,380],[909,300],[516,432],[364,26],[737,164],[688,614],[712,40],[724,18],[705,669],[997,443],[472,2],[798,1],[542,466],[758,259],[929,87],[532,104],[980,664],[564,399],[538,121],[741,229],[952,829],[398,360],[596,114],[883,848],[549,271],[775,685],[798,413],[554,119],[399,345],[785,662],[740,221],[821,812],[839,582],[947,602],[708,303],[734,136],[473,402],[844,774],[624,57],[663,181],[913,483],[892,542],[979,656],[532,67],[629,520],[704,79],[817,36],[888,71],[657,572],[236,8],[508,372],[521,206],[637,332],[757,165],[251,64],[650,340],[961,153],[386,219],[450,123],[102,56],[711,524],[299,206],[886,195],[534,514],[977,812],[950,90],[897,507],[398,163],[531,263],[983,93],[209,145],[678,319],[482,418],[421,397],[655,280],[653,430],[243,67],[731,137],[331,72],[188,148],[493,374],[921,711],[670,303],[724,258],[851,443],[994,40],[745,99],[585,421],[224,69],[354,314],[185,35],[572,87],[682,453],[697,646],[808,399],[560,191],[817,384],[475,461],[913,147],[930,488],[870,245],[968,614],[873,113],[543,14],[929,733],[987,143],[476,215],[637,327],[682,436],[277,256],[662,394],[900,869],[427,192],[162,76],[840,285],[432,272],[866,194],[578,391],[402,220],[786,6],[598,438],[930,364],[920,619],[458,77],[329,182],[919,141],[96,20],[174,115],[645,196],[253,175],[797,520],[997,557],[662,96],[618,211],[413,221],[668,387],[310,78],[660,576],[428,427],[115,101],[918,634],[675,134],[640,75],[480,87],[930,577],[752,623],[544,212],[192,124],[815,589],[518,29],[903,146],[372,0],[763,304],[440,117],[563,136],[672,76],[910,904],[874,586],[601,232],[987,442],[941,323],[405,303],[167,25],[757,543],[774,699],[605,358],[635,35],[272,205],[985,602],[758,616],[745,115],[751,671],[718,164],[808,613],[201,194],[884,218],[413,250],[515,235],[244,153],[401,88],[718,674],[713,21],[876,19],[476,466],[812,107],[671,497],[230,158],[736,104],[824,258],[230,26],[330,108],[954,642],[986,355],[853,163],[367,188],[330,274],[379,1],[79,52],[545,483],[395,141],[224,112],[553,357],[632,231],[784,136],[907,4],[600,9],[779,233],[995,57],[692,641],[781,122],[845,631],[811,538],[820,723],[729,240],[180,30],[632,172],[861,144],[883,872],[934,42],[839,719],[938,651],[917,720],[929,234],[628,246],[305,72],[378,133],[666,363],[723,275],[472,86],[425,422],[715,149],[535,291],[196,120],[747,381],[302,154],[760,677],[863,808],[918,608],[358,332],[595,99],[653,351],[553,540],[929,859],[975,415],[180,117],[769,562],[454,169],[540,60],[563,98],[934,52],[526,89],[404,389],[441,432],[73,31],[76,43],[648,187],[916,172],[271,185],[395,149],[988,309],[186,102],[751,656],[621,436],[823,550],[754,516],[555,49],[231,49],[491,324],[736,253],[457,119],[618,214],[525,238],[996,204],[481,20],[695,655],[490,86],[969,108],[720,648],[979,454],[983,367],[188,72],[106,43],[702,248],[732,394],[417,164],[928,370],[961,774],[359,218],[751,67],[487,168],[741,366],[931,622],[870,497],[632,179],[689,592],[329,303],[888,50],[921,298],[800,725],[785,668],[353,337],[720,13],[970,671],[269,77],[803,170],[608,282],[461,294],[393,368],[700,433],[989,290],[442,397],[214,23],[631,309],[770,455],[976,332],[552,232],[915,88],[863,179],[453,158],[835,387],[840,572],[882,40],[471,284],[669,662],[817,173],[986,864],[569,336],[822,360],[205,57],[494,264],[357,77],[502,332],[885,104],[784,198],[591,145],[958,276],[898,378],[924,778],[644,450],[674,300],[405,284],[831,173],[989,29],[100,11],[187,0],[842,391],[477,226],[245,32],[754,434],[846,137],[747,194],[951,341],[897,465],[818,301],[890,295],[931,39],[919,786],[158,38],[620,137],[980,503],[803,138],[800,578],[667,202],[687,200],[441,42],[750,436],[781,385],[978,94],[849,565],[531,197],[971,735],[754,334],[782,719],[981,342],[382,318],[876,169],[711,460],[819,407],[875,837],[591,532],[475,31],[760,693],[575,493],[595,73],[762,18],[866,757],[919,103],[780,473],[220,216],[277,201],[574,511],[929,808],[617,194],[687,149],[872,530],[565,143],[997,873],[865,98],[664,48],[258,219],[166,73],[451,448],[939,459],[431,397],[813,679],[658,94],[638,587],[915,868],[636,380],[821,789],[123,67],[845,268],[195,55],[967,748],[581,184],[457,213],[936,419],[995,845],[920,600],[443,171],[988,933],[586,268],[641,277],[835,697],[910,798],[311,153],[289,276],[855,421],[936,24],[395,286],[978,690],[569,257],[583,357],[822,661],[929,147],[532,242],[872,822],[970,608],[631,22],[885,803],[625,176],[342,256],[980,657],[942,256],[523,139],[855,113],[984,247],[452,385],[939,162],[800,182],[731,132],[897,869],[270,79],[316,22],[652,334],[861,63],[769,291],[796,150],[242,29],[909,139],[633,23],[374,139],[945,899],[818,138],[738,182],[661,101],[857,815],[873,765],[843,200],[942,168],[946,816],[878,496],[758,321],[256,198],[802,196],[378,124],[960,232],[866,710],[580,555],[861,828],[785,345],[860,210],[907,681],[667,223],[195,173],[927,510],[660,318],[822,435],[783,536],[661,153],[639,181],[233,132],[313,42],[658,554],[962,251],[335,250],[707,572],[547,91],[592,13],[385,194],[296,291],[418,355],[947,561],[682,529],[653,644],[847,116],[480,65],[878,208],[362,135],[563,243],[924,718],[885,170],[707,627],[615,174],[542,243],[790,121],[999,973],[759,733],[487,476],[720,191],[185,148],[829,571],[608,302],[672,265],[996,283],[959,856],[527,460],[552,271],[763,522],[816,225],[541,115],[964,803],[683,501],[736,479],[663,70],[892,260],[757,6],[815,400],[712,108],[823,231],[385,219],[975,825],[806,240],[844,371],[943,77],[294,24],[922,539],[416,291],[904,629],[929,643],[740,731],[756,520],[968,866],[953,458],[689,580],[963,744],[819,525],[958,163],[730,626],[900,752],[537,235],[359,100],[831,176],[858,294],[357,271],[424,78],[993,50],[462,61],[669,394],[848,251],[537,479],[750,501],[915,215],[658,169],[736,375],[931,387],[993,509],[959,942],[969,538],[795,443],[274,47],[849,839],[681,257],[957,419],[942,560],[719,508],[262,1],[631,87],[185,160],[767,306],[876,317],[849,493],[756,252],[809,750],[418,298],[773,720],[925,692],[761,136],[506,466],[828,556],[595,251],[671,669],[603,351],[148,8],[701,547],[219,218],[725,377],[843,660],[816,484],[873,192],[880,159],[725,356],[759,553],[646,274],[704,68],[658,156],[678,263],[335,213],[955,158],[696,356],[673,558],[663,446],[614,344],[735,217],[809,669],[927,470],[987,318],[823,406],[499,205],[994,348],[833,584],[528,506],[785,563],[551,110],[670,636],[891,620],[868,46],[741,692],[781,676],[878,249],[319,12],[891,218],[425,291],[809,675],[37,19],[768,667],[780,497],[954,461],[759,385],[504,440],[594,237],[577,322],[852,144],[237,106],[633,69],[212,203],[469,43],[960,629],[480,9],[930,185],[468,122],[762,451],[975,973],[421,47],[514,294],[855,484],[902,357],[910,874],[157,127],[971,948],[500,139],[352,172],[608,195],[980,138],[445,206],[532,21],[585,216],[344,263],[845,221],[612,227],[699,436],[796,127],[813,462],[352,112],[231,110],[898,505],[402,154],[869,550],[987,858],[625,329],[796,237],[537,450],[594,113],[573,534],[886,797],[591,317],[242,157],[664,447],[995,95],[643,438],[875,780],[959,276],[976,694],[572,335],[853,256],[596,129],[819,333],[549,13],[533,290],[988,524],[842,534],[789,504],[899,485],[564,151],[541,261],[629,622],[568,51],[872,383],[968,698],[979,288],[489,155],[840,159],[975,637],[330,277],[996,111],[658,221],[726,454],[866,382],[853,595],[794,455],[862,241],[718,371],[825,667],[881,417],[404,387],[502,77],[794,9],[952,702],[430,304],[545,508],[744,360],[298,290],[951,221],[828,591],[850,474],[380,322],[470,353],[504,492],[666,533],[653,264],[563,153],[874,812],[397,74],[783,305],[820,699],[214,5],[518,338],[735,288],[695,399],[467,459],[947,630],[672,369],[950,449],[426,96],[794,111],[861,357],[945,509],[983,101],[496,317],[968,131],[466,437],[789,778],[670,468],[667,253],[586,581],[728,89],[996,210],[954,868],[940,282],[542,338],[479,11],[645,387],[948,533],[502,393],[945,261],[944,96],[519,263],[652,355],[804,311],[808,732],[989,657],[744,274],[180,40],[616,553],[516,344],[905,350],[845,277],[520,427],[692,357],[822,725],[666,329],[982,772],[988,874],[813,806],[968,883],[734,97],[644,333],[680,449],[395,121],[461,460],[976,542],[962,528],[749,348],[868,279],[791,335],[846,737],[951,876],[671,313],[398,277],[358,213],[357,209],[901,692],[790,247],[760,230],[811,277],[885,298],[832,650],[979,856],[847,656],[815,712],[981,350],[664,245],[666,123],[970,279],[911,874],[899,139],[752,197],[739,59],[647,509],[887,576],[359,340],[971,427],[466,157],[259,212],[897,831],[446,217],[985,592],[999,534],[524,65],[995,115],[533,238],[872,455],[737,230],[721,0],[617,443],[799,265],[405,323],[379,47],[603,339],[993,57],[516,160],[955,847],[738,4],[903,838],[822,658],[975,152],[205,1],[487,237],[587,149],[842,84],[996,177],[286,172],[868,862],[742,131],[398,97],[763,693],[692,174],[280,37],[710,428],[702,51],[474,251],[302,152],[858,609],[989,189],[520,274],[783,734],[779,640],[980,210],[449,120],[420,268],[163,119],[956,723],[959,354],[962,742],[708,544],[50,28],[873,797],[875,644],[749,231],[510,344],[150,59],[633,80],[825,245],[873,380],[711,130],[496,193],[425,215],[102,21],[290,283],[751,332],[771,426],[523,161],[79,2],[471,169],[686,312],[554,75],[728,340],[939,614],[693,40],[587,121],[292,2],[859,219],[709,130],[849,790],[707,213],[857,447],[689,165],[573,253],[721,293],[873,54],[916,696],[819,599],[664,60],[396,164],[747,245],[376,288],[149,43],[266,107],[586,482],[784,1],[628,182],[580,223],[259,65],[355,112],[385,302],[923,324],[927,800],[874,826],[989,756],[981,616],[640,516],[452,244],[887,500],[370,171],[950,12],[660,49],[783,702],[752,458],[212,57],[380,4],[49,43],[587,58],[803,506],[256,8],[857,345],[846,662],[564,400],[633,312],[548,186],[366,365],[404,133],[917,679],[437,345],[681,465],[434,313],[761,312],[714,189],[820,324],[722,346],[969,294],[668,469],[349,340],[498,237],[240,163],[802,590],[203,34],[907,640],[646,55],[863,334],[254,161],[564,335],[699,502],[922,158],[239,167],[634,144],[980,64],[546,496],[659,161],[620,372],[522,462],[955,698],[848,331],[931,140],[838,230],[228,215],[478,45],[930,852],[975,457],[418,179],[446,232],[667,342],[914,466],[907,375],[746,682],[350,219],[367,191],[267,38],[736,315],[491,299],[325,92],[784,6],[883,562],[397,225],[240,43],[833,144],[631,469],[112,104],[226,125],[589,251],[816,520],[680,482],[761,705],[601,259],[756,152],[523,92],[876,794],[602,495],[864,432],[335,229],[617,431],[943,591],[847,331],[559,83],[543,406],[797,472],[851,379],[731,536],[475,46],[883,574],[456,37],[478,465],[869,861],[103,8],[767,132],[314,163],[882,798],[327,239],[876,258],[388,143],[393,177],[730,409],[95,16],[882,385],[871,310],[525,170],[779,362],[188,101],[400,139],[633,411],[659,210],[819,712],[754,338],[895,42],[699,428],[875,472],[805,496],[918,754],[989,955],[742,225],[608,369],[910,509],[898,130],[896,149],[540,442],[857,226],[608,295],[747,386],[752,151],[242,182],[317,208],[945,67],[442,143],[838,367],[989,403],[899,881],[882,229],[783,387],[344,8],[156,94],[467,63],[299,168],[365,70],[578,12],[402,198],[846,286],[696,314],[500,393],[934,14],[856,241],[464,104],[687,685],[905,729],[964,485],[357,327],[513,166],[750,359],[645,400],[892,176],[890,749],[695,521],[652,607],[926,387],[128,70],[977,950],[599,545],[984,960],[887,527],[631,143],[826,147],[395,288],[448,213],[275,133],[781,703],[223,164],[501,151],[879,21],[623,600],[408,105],[521,89],[763,501],[658,473],[922,110],[923,633],[858,752],[981,674],[755,468],[696,227],[680,529],[902,563],[738,489],[402,75],[810,246],[263,62],[705,52],[990,637],[933,713],[471,409],[809,37],[742,614],[592,149],[144,39],[590,237],[966,385],[610,427],[225,172],[928,130],[962,744],[554,219],[940,588],[659,82],[388,60],[968,265],[220,181],[856,130],[794,348],[640,499],[839,689],[432,344],[105,58],[716,198],[881,136],[790,319],[517,342],[753,6],[254,162],[747,103],[710,392],[318,28],[254,91],[930,762],[942,451],[633,196],[779,200],[976,775],[432,17],[852,186],[527,296],[972,640],[856,552],[652,575],[398,270],[919,121],[584,475],[919,469],[684,599],[979,61],[962,214],[339,262],[667,619],[840,160],[733,412],[736,554],[987,470],[429,412],[652,186],[989,457],[768,79],[924,636],[941,348],[877,46],[727,126],[448,280],[852,751],[744,196],[493,81],[206,168],[924,669],[318,206],[682,167],[931,891],[898,23],[432,189],[970,362],[931,242],[980,282],[367,116],[943,627],[297,17],[243,10],[715,444],[812,529],[739,128],[839,440],[560,341],[544,39],[802,132],[415,397],[896,706],[272,61],[863,812],[897,140],[855,395],[932,843],[752,122],[421,305],[756,36],[849,510],[675,662],[735,131],[841,34],[108,8],[895,828],[975,364],[835,341],[385,165],[967,955],[839,435],[284,129],[490,215],[724,570],[795,656],[928,482],[956,952],[584,552],[265,209],[505,56],[995,686],[692,222],[814,481],[881,118],[811,129],[763,587],[811,278],[884,335],[997,685],[708,41],[760,488],[665,452],[920,801],[908,174],[967,139],[212,204],[549,35],[989,878],[313,307],[728,416],[712,55],[398,311],[939,167],[607,374],[801,438],[164,32],[561,521],[139,21],[759,406],[937,257],[357,46],[467,183],[884,124],[701,18],[866,514],[817,182],[874,714],[971,799],[977,141],[522,336],[855,423],[266,120],[391,117],[617,181],[979,723],[591,524],[816,611],[884,599],[946,630],[892,334],[855,289],[912,54],[835,695],[695,662],[717,138],[851,85],[171,20],[933,204],[860,580],[564,112],[881,747],[290,50],[611,485],[915,662],[784,333],[568,358],[638,276],[665,546],[782,277],[134,72],[356,278],[929,531],[902,9],[634,392],[985,556],[778,81],[809,566],[541,247],[723,412],[445,66],[621,14],[741,680],[856,448],[666,359],[444,287],[754,703],[928,764],[887,167],[534,35],[483,109],[821,426],[449,165],[738,639],[200,197],[864,361],[838,309],[593,63],[198,124],[389,326],[895,826],[885,694],[852,526],[602,483],[497,19],[633,112],[734,152],[392,120],[909,704],[681,477],[543,457],[309,180],[762,58],[791,326],[533,325],[658,192],[782,683],[791,227],[247,157],[968,728],[684,468],[792,133],[439,321],[629,97],[768,287],[463,193],[453,71],[781,37],[981,28],[758,58],[690,539],[562,145],[416,197],[745,362],[772,65],[911,634],[586,43],[809,128],[450,103],[545,26],[382,202],[704,635],[541,130],[752,77],[359,276],[834,390],[564,189],[923,24],[456,70],[823,447],[774,604],[492,383],[717,338],[858,767],[709,145],[964,645],[737,560],[606,330],[922,698],[403,189],[255,174],[902,681],[986,520],[784,256],[795,208],[595,84],[804,750],[950,323],[998,680],[482,451],[648,246],[516,48],[551,192],[970,688],[898,574],[409,362],[935,331],[222,43],[454,51],[925,641],[779,594],[705,209],[778,584],[355,135],[434,51],[680,357],[690,299],[336,174],[556,333],[417,325],[185,158],[203,202],[669,250],[945,415],[602,521],[530,224],[788,86],[654,541],[464,210],[943,367],[788,423],[295,279],[883,533],[607,401],[950,588],[665,253],[529,337],[950,937],[724,55],[918,789],[892,326],[987,409],[930,108],[731,574],[611,232],[733,53],[796,680],[595,376],[816,276],[327,70],[702,216],[392,162],[518,330],[912,341],[932,741],[428,252],[873,188],[389,120],[967,293],[511,48],[565,429],[656,613],[445,29],[981,893],[439,208],[588,417],[987,265],[769,283],[325,34],[859,811],[794,484],[962,529],[768,274],[401,233],[611,556],[431,209],[606,191],[873,539],[226,187],[567,338],[239,213],[615,331],[686,230],[865,7],[877,82],[892,289],[131,47],[573,247],[230,52],[592,150],[526,126],[915,80],[565,325],[560,245],[935,818],[974,237],[825,363],[513,215],[472,279],[863,657],[648,311],[966,574],[841,315],[699,84],[707,306],[980,237],[893,419],[914,302],[947,390],[941,304],[459,328],[651,545],[782,760],[617,536],[293,36],[826,790],[637,150],[826,295],[999,185],[673,506],[731,102],[994,19],[908,280],[406,96],[887,214],[940,14],[910,466],[524,344],[183,38],[219,117],[636,565],[775,493],[644,405],[782,765],[851,164],[840,89],[973,392],[981,255],[826,649],[438,360],[436,156],[172,15],[149,50],[931,818],[963,791],[765,166],[940,425],[568,139],[963,922],[819,393],[918,526],[720,407],[840,609],[179,85],[615,413],[921,483],[816,681],[900,799],[704,571],[288,9],[448,310],[591,373],[734,21],[718,505],[930,842],[910,193],[379,301],[731,249],[864,832],[769,587],[616,385],[906,759],[620,278],[897,405],[949,112],[839,409],[631,409],[982,319],[952,785],[355,276],[812,6],[650,24],[421,9],[536,316],[600,259],[370,101],[125,63],[191,108],[613,203],[793,394],[697,156],[624,26],[480,305],[877,499],[319,167],[683,204],[463,11],[884,469],[914,818],[763,757],[954,223],[347,325],[928,583],[799,158],[787,596],[991,864],[776,739],[961,36],[722,634],[597,204],[974,808],[627,151],[300,29],[442,393],[617,325],[359,253],[630,190],[642,491],[918,835],[848,685],[953,282],[231,149],[728,313],[994,653],[364,103],[644,533],[737,587],[813,401],[870,65],[736,156],[341,96],[153,68],[467,412],[947,735],[614,199],[513,321],[490,103],[390,34],[559,173],[936,570],[768,324],[513,505],[617,282],[807,722],[952,393],[541,57],[464,65],[797,366],[593,43],[441,386],[953,769],[142,36],[948,881],[666,72],[733,324],[887,857],[974,883],[363,60],[911,555],[959,157],[562,38],[803,324],[763,746],[987,724],[799,677],[948,900],[684,375],[373,263],[938,348],[827,166],[203,148],[822,660],[690,567],[800,211],[850,60],[773,410],[678,464],[661,495],[280,258],[378,343],[455,438],[815,146],[451,62],[167,52],[124,8],[643,565],[225,171],[892,407],[196,49],[896,162],[851,773],[701,267],[580,409],[625,96],[725,642],[248,104],[496,195],[882,542],[989,883],[447,388],[963,328],[939,454],[926,484],[403,102],[284,115],[943,246],[498,425],[413,108],[363,151],[907,594],[253,86],[761,294],[626,512],[983,243],[317,123],[911,121],[749,285],[878,598],[371,181],[891,569],[361,77],[997,499],[676,277],[928,177],[295,91],[859,120],[877,56],[866,325],[257,242],[842,40],[804,351],[884,709],[773,699],[684,75],[842,643],[552,31],[863,598],[975,875],[811,575],[616,372],[572,420],[950,719],[708,481],[870,4],[562,395],[832,98],[662,244],[264,81],[204,82],[814,789],[324,261],[563,412],[922,515],[309,110],[585,59],[874,532],[448,418],[807,85],[979,616],[292,243],[708,537],[718,364],[985,976],[640,434],[467,155],[752,196],[921,347],[891,39],[567,375],[628,185],[884,663],[957,811],[934,75],[494,457],[687,255],[869,60],[809,623],[512,2],[934,39],[116,6],[340,107],[769,744],[584,193],[851,39],[931,278],[119,18],[932,489],[650,310],[338,322],[445,152],[314,218],[875,366],[964,887],[879,468],[281,239],[901,355],[756,434],[699,537],[800,442],[642,348],[795,220],[986,956],[871,766],[636,61],[518,128],[961,39],[655,390],[884,340],[774,609],[933,383],[761,457],[521,310],[844,359],[945,835],[996,859],[130,102],[745,685],[553,460],[637,98],[976,110],[760,220],[310,33],[657,102],[897,328],[318,202],[583,336],[936,882],[608,397],[681,434],[687,139],[905,758],[200,95],[566,467],[523,175],[797,86],[436,162],[689,527],[614,197],[638,470],[753,742],[945,18],[744,399],[905,366],[561,502],[868,48],[845,30],[868,756],[449,11],[641,245],[516,434],[214,30],[395,59],[929,212],[482,16],[828,589],[866,734],[953,562],[971,933],[900,372],[859,544],[702,402],[588,400],[791,97],[330,66],[523,310],[842,437],[554,381],[284,15],[518,20],[825,1],[856,391],[797,84],[913,610],[551,477],[636,517],[327,165],[820,566],[547,466],[724,636],[674,55],[624,205],[878,780],[567,516],[464,367],[488,183],[586,275],[792,285],[417,343],[759,502],[544,382],[991,633],[871,528],[665,70],[624,398],[210,13],[930,628],[812,326],[160,133],[639,60],[463,363],[575,92],[373,160],[667,162],[456,159],[518,430],[847,102],[978,362],[578,403],[659,558],[269,61],[425,86],[151,11],[645,465],[545,202],[680,654],[485,336],[382,346],[592,244],[835,356],[634,423],[235,132],[838,199],[881,76],[496,358],[409,39],[847,616],[809,224],[928,309],[675,647],[368,300],[729,425],[514,140],[28,1],[893,874],[712,688],[324,117],[966,15],[944,730],[123,82],[319,56],[664,92],[888,5],[873,842],[883,393],[894,808],[530,301],[938,160],[888,616],[654,165],[635,371],[984,298],[957,485],[573,428],[823,536],[778,43],[834,163],[969,440],[580,256],[551,255],[377,327],[415,82],[998,570],[564,279],[940,668],[690,442],[932,280],[947,234],[396,96],[884,13],[754,472],[569,378],[456,396],[978,258],[620,235],[512,4],[912,30],[571,45],[386,192],[601,531],[643,301],[778,31],[874,493],[892,218],[986,850],[347,260],[987,288],[985,128],[883,735],[605,118],[288,241],[947,226],[947,358],[772,354],[992,486],[548,415],[949,719],[774,419],[708,497],[231,87],[668,570],[840,622],[364,271],[887,717],[979,120],[598,164],[433,137],[864,585],[911,85],[969,142],[774,250],[478,377],[125,52],[708,612],[976,607],[827,631],[337,7],[696,460],[455,342],[280,249],[773,231],[506,66],[423,415],[811,333],[270,17],[736,296],[574,72],[852,739],[764,561],[905,456],[900,22],[604,235],[888,622],[861,246],[321,271],[784,128],[249,26],[845,93],[661,3],[584,228],[849,240],[957,914],[733,75],[368,262],[719,422],[835,614],[690,482],[680,134],[703,317],[875,668],[361,339],[646,332],[901,377],[893,686],[718,482],[478,106],[736,443],[782,682],[773,188],[988,841],[786,161],[756,656],[810,181],[738,95],[918,372],[824,305],[403,337],[624,551],[426,363],[924,407],[880,406],[141,27],[975,300],[614,160],[452,446],[483,65],[445,398],[837,599],[533,46],[950,923],[686,290],[666,82],[592,342],[394,338],[486,76],[943,436],[930,719],[413,284],[491,332],[866,241],[905,616],[923,622],[779,239],[872,137],[213,136],[903,535],[375,188],[780,246],[831,811],[858,36],[902,62],[888,77],[803,113],[332,164],[947,288],[928,801],[924,903],[661,260],[487,225],[578,164],[565,51],[832,789],[712,371],[717,207],[687,462],[284,120],[540,329],[499,183],[818,568],[534,260],[267,83],[890,746],[873,871],[724,175],[809,632],[347,131],[826,599],[808,281],[636,467],[736,333],[790,653],[666,322],[186,64],[766,560],[911,296],[408,158],[639,495],[428,370],[540,89],[398,61],[436,185],[651,91],[388,63],[330,313],[655,377],[307,303],[760,632],[510,379],[893,659],[789,238],[710,467],[965,26],[82,59],[817,218],[365,164],[604,480],[778,112],[975,782],[654,52],[823,564],[712,332],[848,161],[976,179],[909,16],[931,151],[993,640],[901,609],[684,661],[436,99],[766,548],[464,353],[832,433],[913,600],[901,883],[804,722],[925,162],[892,52],[554,534],[405,212],[476,165],[747,495],[729,169],[163,134],[913,192],[656,628],[908,883],[542,317],[744,707],[377,343],[709,239],[886,140],[189,156],[923,829],[333,232],[932,858],[554,20],[645,212],[571,483],[634,105],[721,520],[986,676],[680,468],[862,427],[433,144],[743,338],[135,68],[897,108],[807,461],[665,535],[65,36],[267,262],[869,863],[412,176],[983,132],[992,616],[924,668],[470,469],[743,517],[774,146],[962,154],[904,640],[371,326],[749,270],[432,284],[561,408],[340,4],[195,120],[850,168],[897,778],[788,376],[628,97],[823,490],[909,887],[938,790],[328,218],[879,356],[989,751],[181,18],[326,177],[989,163],[459,8],[265,112],[869,305],[989,734],[221,131],[354,70],[880,131],[979,456],[815,345],[744,363],[92,45],[441,55],[975,542],[752,717],[925,828],[979,622],[880,745],[147,138],[551,109],[886,621],[926,643],[953,133],[945,586],[664,459],[469,152],[844,390],[479,302],[482,417],[85,63],[932,777],[950,458],[185,10],[715,509],[880,242],[520,494],[930,804],[550,33],[765,742],[425,410],[944,742],[84,39],[115,7],[508,466],[963,95],[435,82],[970,376],[822,558],[375,147],[824,32],[922,820],[608,376],[907,670],[820,673],[912,208],[335,145],[972,897],[727,431],[932,18],[854,707],[442,241],[922,752],[935,773],[960,930],[742,334],[472,174],[165,43],[364,80],[724,80],[903,393],[267,37],[947,464],[470,184],[529,404],[422,87],[972,444],[609,402],[563,392],[850,251],[917,509],[687,208],[334,50],[507,300],[808,368],[364,132],[776,300],[812,688],[985,280],[725,300],[712,517],[757,577],[998,811],[676,468],[895,454],[704,336],[53,36],[386,310],[382,149],[960,81],[346,301],[629,253],[827,532],[726,592],[741,403],[873,53],[639,95],[685,584],[977,92],[924,764],[845,199],[876,389],[813,661],[357,130],[836,605],[491,42],[966,380],[602,263],[792,147],[815,154],[190,94],[971,696],[710,189],[998,643],[991,582],[596,524],[932,411],[595,223],[774,455],[60,35],[413,99],[592,178],[159,9],[974,861],[753,366],[742,116],[931,519],[724,695],[858,304],[772,161],[676,374],[748,9],[791,485],[914,55],[733,277],[578,576],[913,793],[424,113],[669,85],[835,178],[813,788],[633,496],[294,282],[331,92],[908,155],[745,249],[532,424],[684,532],[347,200],[535,270],[593,332],[960,855],[340,296],[557,332],[917,469],[260,175],[851,359],[142,126],[902,475],[454,138],[615,238],[818,504],[888,88],[115,93],[867,697],[829,557],[252,250],[991,350],[707,408],[739,116],[891,357],[908,68],[657,227],[506,351],[404,136],[669,395],[975,424],[319,235],[490,349],[690,432],[586,4],[859,725],[924,569],[940,521],[413,335],[570,382],[805,337],[857,285],[928,556],[170,168],[158,14],[769,220],[525,305],[832,496],[880,806],[912,619],[873,267],[647,236],[343,333],[586,176],[488,280],[942,208],[950,892],[966,447],[969,767],[271,163],[548,364],[625,40],[711,312],[990,365],[776,77],[129,32],[994,707],[861,760],[927,547],[951,179],[851,481],[391,217],[279,174],[990,113],[949,663],[446,154],[694,495],[767,150],[345,146],[779,68],[666,302],[396,220],[894,621],[945,410],[913,448],[942,156],[260,188],[893,569],[985,311],[949,391],[657,314],[628,69],[818,357],[383,98],[850,574],[975,856],[736,276],[828,561],[34,32],[267,129],[846,681],[552,199],[985,939],[983,265],[60,23],[626,1],[887,431],[666,120],[802,732],[649,378],[809,481],[746,566],[716,130],[653,518],[733,481],[278,183],[868,705],[653,435],[970,358],[527,388],[981,166],[689,225],[577,487],[952,175],[109,18],[366,294],[277,176],[959,792],[662,387],[990,381],[464,387],[867,253],[840,33],[617,100],[734,504],[662,490],[508,179],[869,739],[924,42],[416,386],[752,442],[975,740],[539,509],[660,336],[546,290],[916,83],[772,599],[880,411],[787,760],[910,220],[470,31],[730,658],[694,191],[594,524],[397,243],[800,330],[862,159],[291,231],[338,297],[644,41],[986,470],[379,105],[691,493],[138,122],[341,103],[638,528],[824,457],[897,403],[685,79],[887,391],[895,575],[907,624],[726,720],[514,487],[370,56],[884,483],[145,10],[999,851],[925,863],[952,918],[417,94],[949,538],[999,255],[789,104],[856,534],[914,143],[803,474],[821,436],[957,619],[840,581],[707,223],[134,119],[743,455],[579,510],[369,241],[188,14],[869,237],[671,297],[824,739],[647,126],[813,777],[945,328],[149,127],[431,98],[961,628],[954,436],[949,470],[885,171],[896,892],[501,488],[639,423],[964,527],[677,448],[971,885],[993,235],[985,20],[606,140],[533,522],[547,166],[435,173],[857,439],[424,97],[529,195],[817,420],[831,300],[374,54],[682,96],[996,993],[746,734],[534,251],[838,244],[448,283],[758,487],[792,170],[799,20],[820,73],[526,229],[640,179],[849,519],[746,78],[990,326],[297,33],[861,468],[797,38],[768,115],[826,465],[597,62],[620,408],[669,428],[845,815],[527,445],[799,550],[772,72],[396,144],[622,33],[314,43],[986,304],[580,17],[418,239],[613,586],[735,704],[914,306],[984,203],[759,34],[617,483],[678,143],[425,321],[157,134],[943,188],[858,679],[930,175],[332,115],[278,142],[694,428],[205,62],[839,154],[766,332],[467,135],[795,328],[408,23],[458,425],[610,457],[858,282],[734,115],[940,62],[357,233],[248,50],[777,610],[265,250],[757,260],[460,369],[466,250],[224,63],[332,166],[958,234],[768,415],[991,101],[845,583],[810,263],[945,114],[597,221],[606,422],[911,763],[386,252],[754,656],[376,204],[986,890],[641,161],[275,124],[998,618],[885,793],[890,262],[918,711],[775,334],[741,457],[758,157],[655,462],[575,286],[609,110],[680,284],[788,226],[347,327],[603,375],[939,258],[506,422],[815,85],[458,144],[755,676],[194,64],[825,603],[845,425],[605,249],[362,158],[559,78],[464,342],[749,37],[947,479],[906,10],[709,402],[495,169],[650,118],[502,47],[729,64],[549,272],[797,506],[874,470],[651,2],[368,303],[615,204],[571,318],[892,367],[204,25],[528,438],[964,29],[967,625],[465,145],[991,1],[836,663],[939,412],[935,120],[651,53],[884,219],[779,142],[643,354],[911,746],[583,394],[315,8],[218,91],[665,331],[585,330],[362,299],[315,41],[226,90],[806,397],[732,374],[320,254],[432,26],[577,425],[994,737],[872,323],[291,60],[677,535],[829,169],[734,44],[768,516],[920,782],[647,249],[445,193],[915,140],[51,13],[711,600],[681,100],[511,75],[487,114],[741,703],[916,292],[907,35],[932,751],[979,278],[685,494],[487,150],[883,512],[382,122],[572,166],[699,669],[551,74],[960,228],[330,201],[910,251],[140,52],[882,820],[451,98],[726,410],[900,424],[910,803],[849,134],[640,353],[597,538],[788,290],[469,194],[628,517],[316,205],[744,76],[589,391],[695,120],[909,520],[720,194],[905,332],[716,77],[867,276],[508,97],[849,680],[947,103],[429,333],[329,299],[459,21],[775,664],[939,84],[350,138],[891,879],[218,8],[970,561],[846,22],[347,196],[850,418],[467,191],[815,153],[596,588],[632,517],[706,161],[616,270],[852,506],[727,122],[427,265],[924,869],[870,107],[958,311],[434,107],[683,353],[584,579],[952,564],[612,430],[830,753],[249,166],[931,231],[613,48],[386,2],[951,400],[393,69],[773,33],[510,111],[920,862],[677,239],[420,50],[780,548],[751,70],[995,555],[683,489],[636,631],[842,625],[843,653],[606,402],[954,679],[649,614],[539,292],[979,452],[416,73],[784,586],[468,190],[449,255],[651,322],[835,259],[878,819],[502,446],[772,580],[601,380],[954,687],[950,445],[531,89],[224,66],[953,873],[190,61],[600,417],[612,560],[107,89],[804,490],[113,44],[900,95],[990,124],[802,226],[957,297],[891,56],[362,291],[387,36],[698,138],[724,564],[708,614],[900,548],[383,91],[788,6],[524,477],[909,810],[197,84],[832,686],[361,256],[228,186],[444,153],[357,229],[161,68],[918,66],[634,399],[997,910],[452,81],[595,317],[583,288],[275,222],[917,219],[773,346],[274,133],[439,230],[383,337],[362,93],[547,511],[930,851],[57,31],[705,66],[352,286],[766,436],[919,463],[403,316],[718,709],[445,3],[560,123],[718,14],[446,335],[169,87],[876,175],[377,298],[979,243],[712,418],[438,43],[908,206],[566,48],[557,257],[593,65],[514,146],[855,90],[813,350],[832,702],[566,95],[661,65],[492,36],[791,675],[740,245],[125,96],[631,530],[921,351],[482,319],[839,279],[954,765],[744,518],[585,265],[838,363],[702,607],[702,681],[378,123],[731,705],[424,51],[650,512],[980,667],[721,417],[781,120],[714,74],[875,639],[861,728],[712,16],[949,142],[499,228],[384,31],[871,106],[907,500],[309,120],[559,436],[716,544],[916,616],[840,814],[874,688],[328,237],[680,513],[828,566],[714,205],[549,189],[942,346],[394,221],[742,5],[625,438],[838,647],[765,483],[234,101],[803,472],[247,139],[435,188],[739,555],[384,251],[808,116],[862,85],[817,100],[596,449],[490,474],[590,292],[848,212],[624,370],[932,287],[816,262],[302,173],[740,449],[887,658],[782,447],[965,766],[726,477],[645,195],[825,242],[993,533],[538,5],[981,793],[750,367],[556,527],[816,304],[416,263],[296,76],[942,614],[607,513],[329,136],[901,643],[993,785],[583,138],[536,260],[982,223],[301,178],[972,367],[385,345],[367,108],[615,321],[739,429],[652,234],[199,124],[739,433],[920,829],[766,229],[959,770],[485,108],[416,102],[944,479],[540,195],[733,141],[686,177],[249,117],[837,57],[910,246],[638,439],[832,785],[115,31],[517,139],[454,350],[955,777],[706,431],[655,512],[771,254],[734,607],[732,493],[299,244],[607,476],[247,206],[774,379],[847,390],[812,113],[474,24],[633,213],[971,800],[830,646],[341,134],[451,402],[766,238],[963,609],[735,277],[595,0],[674,576],[561,322],[917,319],[639,548],[803,196],[239,64],[843,669],[698,135],[257,25],[409,137],[957,13],[993,589],[669,309],[967,904],[354,325],[668,581],[669,583],[868,650],[974,37],[565,207],[887,261],[162,125],[984,450],[873,334],[717,219],[958,723],[994,405],[671,559],[803,432],[936,667],[992,207],[539,126],[691,63],[413,318],[453,111],[621,52],[867,754],[635,88],[668,483],[751,291],[426,52],[291,41],[718,109],[861,18],[370,209],[911,231],[761,382],[411,199],[544,153],[933,245],[462,331],[950,635],[697,444],[647,387],[994,528],[761,660],[499,125],[738,54],[229,199],[485,334],[581,556],[700,494],[992,946],[775,312],[885,822],[897,826],[882,667],[723,351],[600,579],[400,37],[403,42],[734,78],[656,556],[885,661],[654,429],[552,263],[723,408],[335,0],[499,54],[140,11],[989,636],[963,307],[574,567],[960,628],[875,347],[793,594],[608,395],[844,193],[821,281],[619,472],[770,580],[239,67],[181,162],[444,310],[332,202],[791,447],[812,634],[216,90],[911,767],[621,350],[995,797],[546,353],[905,849],[122,66],[912,347],[519,247],[738,164],[236,27],[641,160],[729,281],[706,222],[768,171],[491,0],[107,56],[367,139],[307,259],[473,352],[734,520],[933,883],[930,641],[809,229],[674,225],[937,141],[998,213],[230,119],[772,652],[658,51],[863,246],[886,638],[563,399],[564,271],[727,4],[716,147],[830,538],[661,619],[982,390],[659,357],[878,46],[743,396],[600,585],[722,97],[845,100],[752,509],[399,142],[383,119],[886,203],[627,508],[631,301],[629,273],[670,225],[232,99],[785,558],[461,444],[973,410],[991,670],[404,127],[777,112],[778,679],[910,887],[903,646],[969,355],[907,466],[696,311],[544,408],[453,400],[940,587],[877,387],[700,404],[887,608],[550,21],[785,569],[814,390],[428,62],[887,11],[509,160],[527,330],[494,158],[438,96],[875,115],[654,264],[630,529],[496,313],[822,401],[426,19],[206,60],[768,270],[620,146],[719,223],[716,671],[400,384],[654,529],[218,14],[700,469],[729,479],[766,569],[630,35],[975,827],[955,142],[363,138],[748,505],[908,436],[647,431],[809,55],[591,385],[767,734],[955,795],[619,99],[616,222],[284,234],[621,537],[674,400],[583,385],[860,34],[954,867],[211,184],[388,180],[885,843],[817,640],[729,335],[557,247],[995,694],[190,188],[670,311],[909,493],[236,52],[606,471],[572,472],[814,336],[543,76],[997,841],[481,52],[666,156],[865,465],[514,384],[411,135],[466,68],[801,770],[700,138],[352,139],[978,967],[899,336],[420,69],[762,64],[830,768],[981,282],[696,576],[917,832],[754,567],[647,333],[560,150],[348,66],[611,438],[863,189],[960,580],[628,127],[941,153],[212,1],[391,251],[698,338],[975,382],[854,771],[277,248],[540,181],[992,733],[985,407],[187,107],[555,143],[449,225],[784,153],[766,300],[544,429],[708,382],[788,70],[877,427],[309,159],[738,192],[787,149],[804,200],[792,213],[423,370],[702,156],[430,236],[606,567],[180,65],[503,146],[297,283],[781,534],[230,126],[424,279],[906,158],[519,256],[729,66],[881,669],[377,83],[487,235],[855,194],[225,148],[719,527],[809,297],[797,309],[161,84],[408,88],[944,492],[718,467],[693,678],[340,227],[992,504],[478,202],[342,326],[724,357],[762,370],[957,40],[861,712],[966,462],[849,216],[922,800],[814,141],[853,258],[730,378],[491,449],[657,3],[617,410],[569,322],[688,581],[353,162],[810,655],[809,659],[564,329],[891,71],[691,480],[762,587],[990,929],[473,194],[973,437],[635,603],[724,275],[405,305],[817,118],[595,305],[800,776],[285,156],[771,90],[781,517],[811,747],[823,162],[206,101],[729,457],[292,6],[669,275],[633,603],[701,540],[638,85],[738,555],[810,390],[830,520],[538,304],[388,385],[915,193],[370,166],[882,354],[494,347],[220,27],[845,671],[998,637],[376,372],[912,91],[741,694],[422,391],[394,251],[886,470],[646,470],[915,124],[986,805],[996,13],[794,308],[761,643],[650,546],[760,702],[361,178],[461,96],[716,593],[682,562],[651,596],[915,382],[582,185],[621,18],[939,216],[660,3],[283,124],[731,136],[864,523],[910,515],[791,491],[969,271],[586,521],[882,588],[927,827],[954,227],[897,142],[469,354],[856,299],[785,458],[863,803],[836,826],[964,235],[992,720],[924,5],[709,196],[800,731],[740,489],[436,303],[996,23],[722,615],[256,137],[830,614],[956,473],[46,9],[988,345],[621,159],[325,270],[879,535],[969,678],[943,893],[362,67],[811,541],[643,313],[231,9],[816,464],[996,2],[262,190],[473,183],[732,463],[782,201],[221,132],[736,322],[936,541],[690,23],[302,16],[405,225],[832,412],[427,235],[235,32],[551,454],[432,115],[510,466],[528,191],[357,37],[644,36],[647,147],[807,165],[965,958],[572,510],[671,596],[944,862],[826,235],[777,216],[890,569],[726,58],[949,224],[523,418],[680,578],[787,204],[656,111],[647,163],[770,60],[344,105],[818,597],[476,227],[959,78],[724,668],[784,398],[448,240],[268,56],[996,181],[947,34],[964,114],[948,606],[726,16],[535,514],[570,397],[576,312],[390,36],[942,514],[717,250],[731,386],[907,343],[671,418],[922,381],[730,106],[631,266],[643,25],[361,192],[774,206],[427,264],[486,386],[869,112],[974,207],[861,52],[947,769],[544,433],[917,885],[933,656],[958,707],[548,201],[867,487],[691,685],[614,224],[997,339],[555,477],[865,614],[993,376],[619,574],[196,20],[965,758],[761,163],[653,214],[990,447],[962,319],[325,315],[464,160],[887,684],[959,505],[682,596],[661,555],[43,23],[720,676],[658,261],[444,386],[389,61],[902,439],[514,232],[717,468],[628,204],[679,86],[467,366],[716,445],[629,59],[747,547],[889,63],[458,274],[978,195],[930,566],[456,218],[798,229],[109,61],[603,324],[588,350],[558,207],[584,189],[765,322],[567,277],[845,151],[373,2],[232,11],[930,218],[838,823],[453,248],[899,203],[930,810],[435,409],[390,296],[129,9],[866,197],[736,99],[820,738],[773,731],[866,414],[814,686],[406,312],[427,405],[827,22],[331,98],[554,60],[262,153],[918,909],[937,68],[259,1],[309,69],[537,282],[762,613],[904,71],[113,12],[962,79],[939,145],[232,220],[668,18],[246,117],[670,8],[937,842],[670,436],[503,379],[214,196],[278,81],[385,203],[995,474],[957,175],[854,491],[725,562],[884,574],[781,66],[855,10],[921,422],[960,360],[711,441],[634,484],[655,598],[995,601],[760,617],[975,183],[81,39],[800,788],[641,615],[667,395],[956,256],[789,393],[900,4],[144,49],[611,592],[754,315],[981,427],[904,828],[834,702],[955,715],[441,429],[817,267],[973,624],[874,393],[283,65],[94,6],[454,353],[295,102],[875,211],[650,136],[827,505],[655,70],[878,860],[883,518],[413,133],[206,17],[866,416],[839,744],[726,224],[958,410],[888,708],[790,160],[282,45],[934,836],[416,275],[995,635],[878,507],[472,365],[589,448],[559,189],[501,313],[941,502],[951,117],[329,290],[526,422],[728,704],[396,302],[763,19],[338,106],[485,18],[976,285],[866,697],[547,462],[745,285],[354,93],[199,111],[343,190],[559,302],[987,937],[489,370],[794,332],[532,406],[426,340],[690,418],[779,562],[956,77],[852,734],[687,88],[615,481],[516,359],[192,114],[445,232],[987,292],[375,248],[734,292],[369,286],[503,173],[898,424],[751,301],[666,234],[824,101],[962,674],[34,26],[792,513],[762,718],[739,276],[643,32],[135,40],[334,80],[711,86],[782,536],[858,728],[760,395],[470,287],[949,841],[422,331],[826,168],[791,137],[570,341],[899,339],[130,66],[883,699],[797,532],[816,22],[141,61],[942,219],[535,119],[559,220],[524,101],[854,808],[783,461],[236,187],[783,507],[681,392],[267,7],[773,160],[537,58],[128,62],[628,440],[621,611],[877,204],[625,488],[497,421],[829,637],[457,86],[315,280],[378,262],[539,377],[791,176],[868,421],[573,226],[429,124],[693,329],[472,399],[244,120],[410,135],[915,359],[181,36],[945,186],[974,561],[287,67],[829,811],[930,885],[789,761],[952,552],[818,239],[542,73],[498,77],[755,51],[688,396],[613,2],[831,66],[452,435],[916,582],[108,66],[923,620],[411,369],[928,172],[824,126],[742,569],[482,227],[969,712],[325,53],[860,399],[977,12],[337,303],[236,177],[730,478],[972,768],[677,387],[550,459],[309,39],[517,15],[817,98],[116,40],[291,132],[958,616],[690,7],[700,327],[944,818],[409,97],[937,404],[680,577],[687,179],[334,275],[843,430],[471,301],[311,94],[557,62],[833,167],[854,136],[557,233],[796,651],[840,221],[962,321],[545,466],[963,123],[936,301],[376,134],[612,391],[880,651],[313,89],[479,293],[809,75],[288,114],[709,535],[718,629],[907,328],[782,487],[576,11],[504,445],[820,608],[951,886],[795,346],[728,221],[870,814],[504,230],[907,109],[538,200],[749,649],[828,472],[774,6],[583,513],[628,353],[891,689],[725,367],[450,436],[474,409],[915,490],[137,76],[938,625],[444,308],[980,511],[737,674],[532,185],[999,890],[855,781],[577,488],[334,208],[774,445],[510,421],[469,344],[425,119],[431,318],[829,103],[810,266],[980,892],[786,282],[619,391],[642,104],[748,130],[120,72],[768,0],[747,613],[801,718],[856,845],[905,351],[801,363],[915,253],[303,4],[872,468],[882,481],[535,247],[373,335],[458,74],[856,427],[608,436],[606,209],[953,113],[905,204],[276,80],[850,579],[960,215],[365,89],[508,246],[758,99],[960,381],[624,36],[950,556],[921,70],[85,66],[112,55],[438,240],[823,0],[262,98],[617,538],[405,194],[538,197],[971,676],[693,27],[823,633],[514,241],[850,391],[968,336],[932,227],[113,45],[817,301],[468,151],[932,292],[942,374],[697,194],[772,188],[688,119],[715,378],[713,185],[844,322],[332,221],[965,144],[699,167],[830,39],[806,310],[673,542],[964,561],[638,190],[994,547],[305,95],[874,395],[327,147],[795,323],[638,301],[964,556],[511,39],[611,328],[628,404],[656,634],[750,727],[762,262],[744,219],[546,433],[579,254],[504,410],[396,7],[876,74],[601,540],[842,54],[810,619],[596,93],[643,33],[847,54],[609,243],[205,145],[825,660],[557,278],[727,229],[439,104],[826,824],[985,655],[982,407],[462,238],[997,149],[880,802],[658,619],[270,197],[479,73],[889,774],[983,654],[846,291],[994,368],[663,102],[467,79],[739,315],[384,354],[197,3],[833,270],[901,582],[953,652],[541,351],[339,101],[529,371],[957,675],[953,899],[703,270],[868,329],[778,78],[664,523],[745,275],[313,48],[633,617],[536,123],[268,122],[434,57],[942,486],[960,44],[972,912],[321,269],[872,407],[797,281],[516,411],[847,276],[605,362],[605,574],[261,204],[603,369],[999,120],[536,242],[512,125],[733,676],[592,155],[952,272],[735,448],[138,11],[114,93],[544,296],[616,193],[852,492],[450,313],[982,78],[755,44],[951,604],[907,626],[577,13],[365,251],[903,424],[972,512],[760,137],[484,327],[773,63],[219,166],[469,358],[494,461],[792,728],[950,120],[784,568],[750,580],[795,782],[620,598],[908,296],[555,519],[813,451],[726,155],[485,90],[881,98],[338,154],[751,487],[741,736],[541,410],[676,118],[180,90],[871,194],[955,60],[573,515],[661,182],[562,254],[545,344],[736,5],[499,25],[871,287],[811,141],[434,251],[407,116],[895,884],[600,1],[600,246],[484,25],[835,706],[477,231],[411,221],[488,173],[693,14],[607,384],[306,172],[612,118],[989,539],[621,506],[541,308],[982,218],[829,164],[978,508],[374,109],[447,282],[969,264],[373,143],[408,160],[892,438],[517,124],[180,68],[638,632],[153,94],[964,356],[306,36],[337,58],[216,191],[939,85],[896,51],[844,182],[666,526],[701,128],[985,167],[427,349],[989,572],[977,164],[930,249],[351,46],[722,300],[915,862],[210,53],[843,612],[895,769],[608,349],[392,65],[633,220],[909,893],[919,793],[464,323],[567,315],[167,124],[704,189],[288,150],[942,522],[589,500],[178,144],[722,274],[927,737],[816,345],[491,209],[765,36],[625,180],[515,215],[564,355],[412,296],[604,340],[198,59],[574,345],[937,209],[767,763],[867,757],[853,57],[450,201],[369,160],[306,261],[966,542],[381,76],[841,406],[336,116],[806,577],[226,159],[262,47],[362,238],[824,490],[595,66],[764,506],[785,600],[936,219],[954,365],[706,542],[910,226],[355,32],[440,371],[963,955],[473,66],[641,377],[496,260],[222,87],[893,840],[522,476],[739,378],[897,74],[367,132],[916,871],[986,434],[384,209],[303,296],[521,360],[252,167],[562,105],[995,937],[649,28],[519,364],[689,130],[190,69],[739,393],[826,24],[430,246],[379,317],[697,445],[494,129],[839,627],[847,258],[163,76],[955,182],[919,399],[721,360],[690,376],[770,660],[473,97],[834,359],[923,868],[354,261],[734,491],[220,178],[635,218],[924,4],[409,236],[920,827],[946,238],[569,276],[873,227],[853,219],[808,291],[717,492],[709,574],[856,163],[863,308],[886,734],[335,222],[871,124],[482,192],[431,4],[919,407],[987,274],[716,598],[694,1],[870,630],[977,771],[830,591],[662,148],[828,202],[677,600],[969,522],[246,16],[532,98],[395,279],[596,554],[574,67],[322,258],[620,289],[748,512],[847,265],[279,179],[541,154],[488,106],[296,274],[367,168],[930,801],[419,78],[879,370],[978,960],[319,133],[902,360],[603,534],[884,768],[437,107],[643,284],[924,909],[114,42],[810,570],[593,334],[567,410],[916,178],[962,50],[861,216],[534,521],[945,911],[846,353],[938,183],[891,810],[940,328],[233,50],[906,48],[497,117],[503,387],[420,392],[610,489],[398,365],[721,242],[136,110],[813,418],[606,69],[138,12],[615,319],[417,86],[986,13],[958,518],[907,214],[920,380],[147,58],[665,574],[623,35],[521,279],[686,162],[498,88],[451,206],[247,120],[553,2],[407,255],[154,96],[952,182],[855,221],[749,462],[509,174],[829,496],[808,500],[141,32],[72,29],[924,60],[261,133],[406,372],[462,256],[964,670],[842,822],[854,354],[901,361],[999,621],[797,139],[860,737],[351,17],[897,323],[287,11],[681,571],[953,10],[550,375],[765,342],[196,88],[996,45],[958,193],[742,371],[996,326],[609,588],[661,417],[441,274],[836,309],[512,421],[225,158],[918,22],[238,80],[802,490],[374,259],[508,100],[762,182],[209,108],[750,299],[866,558],[398,206],[668,342],[610,452],[396,87],[706,367],[290,227],[631,40],[873,728],[985,164],[889,70],[910,790],[987,965],[901,728],[877,720],[331,38],[799,405],[777,132],[987,934],[983,157],[842,135],[706,181],[688,479],[822,372],[241,170],[410,20],[728,496],[545,539],[462,413],[934,172],[802,596],[808,400],[336,172],[824,192],[826,250],[333,252],[991,175],[396,378],[571,436],[541,304],[477,43],[927,251],[394,377],[597,425],[660,518],[836,563],[872,185],[280,81],[805,236],[985,954],[298,55],[512,263],[647,267],[863,444],[795,395],[855,74],[654,315],[856,161],[676,415],[618,163],[942,762],[998,278],[913,765],[796,216],[863,322],[804,433],[893,243],[654,212],[524,440],[748,77],[911,519],[695,176],[387,293],[359,194],[686,272],[822,196],[920,49],[739,10],[820,476],[516,237],[463,10],[702,388],[880,405],[893,724],[783,629],[493,470],[637,579],[614,19],[720,649],[716,94],[784,499],[597,77],[625,581],[442,441],[961,898],[785,186],[652,261],[997,656],[942,828],[459,122],[879,677],[466,460],[950,378],[790,146],[932,833],[631,375],[977,635],[852,135],[635,339],[715,137],[758,90],[696,679],[935,168],[129,37],[781,30],[127,23],[835,479],[934,346],[603,189],[594,454],[219,186],[922,487],[737,10],[591,262],[830,183],[702,680],[722,172],[522,30],[924,531],[715,408],[958,601],[739,316],[839,397],[341,204],[399,63],[958,582],[425,27],[468,117],[346,170],[721,64],[839,816],[872,598],[321,194],[453,250],[623,575],[680,322],[552,257],[644,215],[707,59],[229,114],[450,320],[366,73],[597,330],[955,487],[723,135],[723,450],[506,450],[722,23],[830,627],[773,590],[151,83],[863,630],[738,497],[867,363],[922,913],[945,888],[789,499],[219,46],[995,266],[639,272],[508,141],[857,639],[833,361],[878,551],[367,330],[930,197],[797,259],[905,82],[546,101],[398,332],[778,328],[642,431],[136,21],[867,685],[565,313],[257,140],[862,549],[992,324],[567,355],[948,55],[779,120],[969,478],[911,676],[331,115],[516,149],[260,120],[795,432],[503,81],[892,459],[714,585],[557,334],[680,308],[645,151],[980,177],[938,145],[499,139],[493,181],[832,726],[686,281],[991,808],[688,493],[926,737],[763,491],[469,430],[652,90],[634,116],[699,75],[548,46],[69,14],[793,237],[758,3],[811,400],[949,689],[405,144],[678,226],[900,322],[267,231],[750,326],[820,455],[488,145],[55,34],[671,118],[761,303],[446,132],[824,108],[916,771],[310,14],[882,828],[596,201],[386,341],[950,537],[192,58],[710,472],[691,333],[992,795],[394,55],[771,332],[469,23],[593,345],[70,33],[660,498],[639,515],[988,696],[381,331],[234,192],[503,305],[653,72],[375,129],[928,678],[565,492],[991,207],[890,4],[678,605],[196,110],[728,130],[904,840],[926,783],[777,606],[485,171],[968,818],[216,33],[465,185],[414,62],[487,70],[555,343],[668,540],[257,33],[685,176],[66,33],[465,338],[892,135],[589,564],[849,648],[754,487],[253,240],[719,283],[800,428],[644,636],[843,799],[314,61],[956,735],[782,359],[979,210],[377,272],[735,48],[888,767],[844,606],[259,151],[829,567],[906,628],[863,647],[796,595],[547,54],[818,304],[507,132],[903,717],[553,272],[794,177],[288,224],[732,689],[68,32],[124,83],[977,283],[220,149],[950,60],[749,189],[956,757],[828,135],[956,184],[255,68],[549,419],[223,80],[463,173],[253,107],[834,307],[405,147],[910,377],[503,214],[708,409],[828,819],[480,2],[885,813],[938,168],[469,265],[964,591],[520,479],[333,322],[424,179],[727,238],[957,738],[337,177],[953,56],[766,83],[297,188],[556,486],[740,253],[377,41],[758,702],[651,371],[537,304],[423,185],[907,352],[494,463],[735,590],[467,80],[673,57],[952,474],[367,215],[856,641],[896,366],[881,806],[199,42],[704,105],[534,402],[937,461],[742,377],[871,307],[355,3],[477,420],[616,594],[954,555],[765,689],[964,938],[595,274],[508,472],[676,259],[513,192],[726,378],[887,434],[997,35],[818,467],[471,393],[632,89],[357,279],[922,632],[942,36],[459,151],[239,13],[736,469],[299,9],[742,249],[923,653],[772,504],[447,188],[885,572],[991,757],[706,658],[944,765],[698,25],[518,127],[833,125],[891,704],[997,905],[821,262],[465,151],[854,720],[889,39],[897,600],[436,163],[64,3],[270,50],[319,316],[935,527],[547,285],[714,221],[921,852],[983,538],[471,145],[345,329],[950,250],[790,34],[815,714],[805,210],[765,44],[765,738],[734,615],[994,889],[952,253],[671,663],[405,74],[325,247],[259,199],[342,43],[650,474],[883,747],[813,65],[229,207],[720,219],[791,784],[829,341],[853,605],[913,87],[770,726],[728,128],[859,132],[885,107],[148,11],[791,722],[569,321],[825,121],[348,111],[858,722],[394,107],[824,24],[371,246],[581,73],[891,68],[385,111],[867,635],[254,185],[997,83],[561,435],[88,64],[51,33],[603,294],[291,273],[706,191],[772,639],[570,136],[713,689],[805,491],[967,182],[846,599],[509,305],[885,631],[955,765],[362,209],[359,326],[676,533],[319,257],[510,131],[163,36],[807,350],[703,476],[734,658],[971,461],[951,947],[722,688],[841,784],[966,99],[814,715],[903,447],[934,215],[933,759],[157,110],[807,509],[906,443],[610,543],[220,175],[500,183],[215,188],[815,442],[713,325],[688,130],[808,325],[556,401],[722,409],[235,174],[602,341],[435,146],[989,221],[937,95],[980,403],[916,3],[652,370],[399,134],[396,202],[713,125],[470,385],[172,121],[695,330],[932,261],[430,345],[725,362],[393,85],[795,694],[843,730],[812,109],[935,111],[988,251],[486,92],[770,721],[321,310],[573,204],[753,10],[870,323],[516,395],[655,112],[879,158],[707,629],[272,256],[682,91],[834,529],[920,170],[332,184],[799,75],[486,325],[267,79],[839,428],[868,80],[585,511],[959,400],[734,650],[485,430],[765,1],[936,489],[936,399],[394,247],[985,661],[882,365],[715,639],[524,49],[988,275],[271,258],[755,114],[882,10],[369,113],[935,695],[810,231],[286,39],[225,47],[644,320],[528,309],[793,700],[692,14],[964,300],[281,43],[173,171],[939,660],[471,372],[425,276],[720,231],[247,111],[827,400],[521,227],[534,244],[261,120],[664,444],[975,524],[988,873],[869,175],[569,186],[638,250],[623,66],[499,452],[180,59],[99,8],[475,287],[437,233],[439,397],[779,554],[915,221],[395,321],[985,436],[859,37],[761,349],[779,295],[942,471],[502,119],[593,104],[743,447],[467,51],[452,448],[575,462],[972,23],[599,371],[181,102],[907,404],[810,272],[537,23],[839,636],[827,785],[850,591],[435,191],[463,302],[882,89],[787,256],[549,132],[859,495],[883,529],[768,18],[983,178],[906,259],[321,227],[912,462],[896,215],[508,18],[825,384],[603,0],[862,69],[570,380],[832,71],[759,601],[758,754],[789,434],[159,19],[622,257],[914,653],[810,416],[794,231],[167,96],[68,20],[705,616],[264,235],[848,231],[833,13],[405,290],[725,694],[190,9],[878,139],[673,201],[798,62],[598,145],[377,312],[814,375],[799,611],[702,58],[659,128],[952,521],[921,214],[953,944],[541,271],[468,370],[813,301],[801,447],[598,291],[769,265],[353,79],[630,215],[440,317],[929,257],[703,107],[834,87],[882,383],[336,128],[62,13],[783,296],[443,279],[926,690],[864,450],[277,20],[749,171],[277,237],[196,11],[196,44],[793,201],[635,500],[505,218],[841,69],[360,106],[514,54],[887,382],[893,109],[125,44],[805,593],[451,293],[904,664],[668,360],[878,446],[689,345],[964,638],[796,43],[728,632],[628,50],[774,338],[643,255],[907,606],[949,210],[360,95],[245,9],[869,348],[244,172],[766,158],[964,113],[797,565],[893,200],[899,443],[439,102],[678,460],[444,352],[736,690],[980,250],[938,863],[878,318],[636,525],[837,470],[501,416],[727,636],[534,267],[534,341],[454,293],[384,73],[893,471],[638,359],[436,213],[609,104],[322,249],[181,51],[591,53],[498,310],[766,455],[801,155],[566,527],[386,342],[809,642],[879,116],[934,399],[801,643],[788,421],[747,524],[946,611],[960,950],[571,375],[478,453],[824,304],[612,6],[886,217],[833,598],[864,68],[745,675],[742,269],[439,285],[792,209],[796,583],[809,801],[991,519],[679,194],[851,267],[927,288],[468,224],[850,116],[498,20],[846,221],[681,75],[328,97],[873,708],[205,61],[709,366],[955,658],[754,699],[895,345],[915,404],[761,299],[358,3],[161,14],[595,303],[961,184],[127,84],[596,346],[683,540],[921,324],[505,167],[819,510],[740,721],[828,207],[978,205],[783,573],[457,136],[913,384],[621,511],[446,432],[758,429],[552,155],[678,505],[936,605],[748,605],[279,171],[795,19],[863,550],[493,210],[742,152],[696,170],[786,545],[343,36],[468,183],[746,359],[295,232],[384,204],[943,59],[698,419],[969,871],[936,829],[790,123],[751,113],[488,133],[603,564],[617,231],[485,473],[810,242],[340,152],[998,741],[986,951],[549,467],[876,618],[608,495],[628,603],[561,338],[996,185],[99,15],[765,530],[514,349],[657,451],[897,59],[716,54],[944,135],[352,335],[760,753],[534,333],[994,831],[586,542],[612,42],[949,867],[623,315],[982,441],[645,138],[675,486],[870,700],[812,505],[784,487],[848,757],[733,139],[682,416],[548,544],[591,254],[586,208],[991,134],[827,471],[664,298],[919,393],[686,132],[969,47],[791,483],[980,944],[263,196],[902,248],[917,659],[560,128],[588,5],[498,198],[452,299],[619,229],[847,165],[684,294],[960,457],[915,401],[686,677],[576,150],[791,179],[382,5],[445,220],[827,607],[772,560],[683,97],[724,571],[717,214],[672,33],[975,318],[578,215],[907,27],[769,679],[730,295],[662,274],[845,388],[986,615],[114,82],[764,140],[762,108],[556,214],[93,92],[399,280],[622,612],[726,328],[973,232],[725,403],[671,307],[831,307],[150,49],[935,572],[735,46],[658,119],[753,35],[522,227],[446,176],[266,77],[441,239],[808,270],[753,254],[741,16],[206,138],[391,273],[664,637],[970,543],[944,838],[356,176],[804,530],[977,750],[599,61],[530,129],[477,41],[464,12],[133,121],[981,840],[816,277],[804,57],[653,465],[817,738],[727,204],[312,96],[771,431],[905,853],[801,584],[869,99],[678,271],[655,466],[805,565],[750,364],[969,132],[750,123],[943,63],[441,33],[423,373],[992,980],[837,560],[687,345],[611,214],[606,433],[651,319],[954,357],[250,34],[610,157],[609,184],[509,89],[547,272],[578,101],[545,65],[978,89],[698,215],[674,292],[727,305],[990,598],[723,295],[840,169],[980,916],[235,183],[484,389],[782,130],[745,236],[357,335],[663,367],[405,106],[541,402],[807,449],[244,53],[904,334],[497,351],[601,245],[408,316],[480,233],[799,202],[180,172],[735,612],[621,190],[598,419],[887,87],[897,746],[822,564],[918,529],[760,245],[877,124],[503,409],[761,65],[509,86],[915,902],[397,150],[286,22],[502,40],[312,164],[607,583],[914,721],[665,579],[409,18],[414,121],[551,302],[546,429],[268,79],[969,123],[687,339],[855,114],[798,622],[741,253],[832,65],[743,598],[728,536],[166,42],[596,518],[863,346],[663,624],[819,733],[752,272],[941,611],[816,661],[839,306],[288,252],[669,520],[415,145],[544,485],[395,154],[550,358],[779,268],[884,147],[776,718],[959,479],[842,325],[928,270],[899,708],[78,13],[998,931],[646,162],[928,186],[762,68],[490,11],[852,844],[504,271],[783,691],[242,71],[817,650],[964,668],[397,230],[582,58],[761,205],[892,251],[909,367],[762,644],[394,155],[790,139],[596,173],[981,120],[892,625],[867,763],[650,43],[987,72],[804,788],[947,643],[733,536],[868,411],[856,250],[419,270],[585,297],[764,632],[347,14],[991,399],[842,486],[965,810],[277,8],[610,597],[827,541],[349,62],[251,226],[687,24],[900,813],[836,5],[252,14],[527,85],[525,425],[930,82],[883,339],[795,546],[804,358],[349,33],[996,679],[864,719],[806,291],[939,223],[854,126],[551,147],[851,299],[867,738],[925,587],[628,183],[809,28],[211,142],[150,47],[980,209],[662,617],[378,312],[837,309],[973,275],[767,326],[878,80],[731,170],[673,213],[636,252],[332,134],[344,221],[717,262],[491,136],[395,5],[760,171],[464,427],[851,345],[463,50],[870,324],[865,379],[894,888],[517,396],[809,487],[655,46],[898,260],[919,803],[742,670],[394,105],[515,383],[596,537],[776,327],[120,93],[865,386],[926,605],[997,556],[933,369],[368,22],[180,96],[829,818],[414,148],[291,64],[879,197],[612,423],[539,478],[841,639],[913,581],[748,37],[913,287],[847,482],[552,149],[872,849],[565,451],[485,19],[455,225],[665,524],[987,386],[437,419],[669,430],[991,599],[705,441],[913,817],[758,248],[671,568],[224,215],[455,395],[671,172],[638,600],[986,626],[769,44],[272,71],[812,374],[500,267],[859,76],[935,274],[449,200],[302,299],[627,201],[293,181],[834,589],[706,670],[288,276],[812,403],[981,273],[913,617],[997,435],[792,313],[673,536],[703,53],[930,97],[312,122],[936,157],[708,125],[448,433],[748,153],[680,64],[462,225],[910,826],[657,621],[905,497],[825,153],[682,270],[915,205],[421,184],[424,233],[931,547],[562,56],[200,147],[600,3],[429,221],[262,50],[739,404],[242,207],[861,570],[809,732],[700,558],[158,21],[980,710],[894,180],[837,774],[814,25],[908,718],[352,42],[779,55],[921,5],[976,722],[523,227],[451,219],[593,578],[826,655],[399,312],[983,583],[918,894],[849,144],[866,117],[421,337],[925,12],[685,62],[807,171],[811,335],[973,775],[740,325],[943,933],[864,509],[334,57],[193,47],[888,300],[540,346],[479,184],[987,778],[879,45],[823,319],[648,529],[740,287],[815,378],[773,409],[616,495],[943,32],[297,278],[795,387],[339,215],[857,292],[233,230],[920,119],[921,89],[721,54],[989,0],[884,524],[728,668],[510,246],[925,418],[655,613],[846,602],[978,753],[999,345],[596,199],[857,647],[828,43],[888,658],[798,17],[960,541],[748,53],[330,98],[693,513],[894,132],[717,263],[480,364],[442,220],[435,248],[912,536],[572,184],[831,242],[772,302],[827,765],[358,239],[302,37],[427,263],[514,489],[831,132],[811,643],[907,94],[967,175],[891,370],[366,274],[128,14],[924,700],[548,501],[902,855],[749,288],[894,341],[624,601],[722,258],[402,129],[813,231],[767,2],[708,360],[522,160],[658,109],[696,408],[958,91],[736,525],[855,583],[840,155],[239,16],[746,562],[263,135],[741,500],[826,429],[541,183],[574,87],[695,467],[908,10],[724,67],[950,894],[494,178],[812,557],[686,378],[981,482],[715,358],[794,161],[431,78],[320,268],[110,77],[713,147],[796,632],[839,463],[761,478],[755,419],[720,312],[489,333],[348,55],[571,75],[351,147],[518,473],[772,249],[998,529],[811,412],[991,794],[792,141],[712,638],[919,821],[502,344],[799,14],[532,76],[653,612],[257,158],[954,622],[359,97],[271,15],[742,571],[918,471],[996,633],[562,296],[831,765],[752,3],[718,9],[417,406],[536,50],[551,539],[795,73],[804,347],[509,189],[939,876],[953,715],[616,70],[876,763],[798,720],[343,261],[340,17],[850,186],[537,326],[899,244],[388,127],[353,78],[430,256],[678,543],[779,1],[500,121],[257,78],[365,219],[314,162],[990,423],[788,285],[417,64],[924,739],[881,325],[342,77],[483,150],[669,551],[669,576],[980,366],[297,280],[716,104],[945,274],[781,344],[914,19],[779,723],[820,630],[303,16],[894,531],[826,730],[948,684],[918,490],[840,239],[922,690],[695,269],[359,165],[863,296],[448,331],[529,14],[619,126],[522,177],[575,139],[721,179],[202,190],[871,499],[277,101],[689,678],[486,186],[958,206],[861,371],[144,48],[723,7],[777,298],[751,217],[852,161],[176,114],[607,294],[966,569],[665,4],[630,428],[493,131],[679,41],[334,297],[676,56],[586,41],[779,759],[754,129],[803,696],[879,651],[839,31],[973,285],[378,363],[384,40],[824,805],[686,127],[227,201],[986,153],[865,678],[638,140],[737,718],[919,636],[887,874],[873,727],[681,373],[904,705],[944,550],[648,45],[809,718],[989,443],[608,85],[727,681],[633,1],[575,388],[760,466],[909,133],[816,240],[940,493],[251,69],[165,141],[567,32],[473,459],[423,11],[654,174],[742,139],[216,209],[577,407],[950,341],[627,255],[860,353],[958,386],[607,525],[660,199],[688,424],[189,31],[743,181],[644,555],[693,179],[256,135],[687,531],[916,354],[92,8],[868,717],[919,569],[760,532],[973,3],[924,226],[875,784],[881,126],[732,82],[674,375],[891,673],[429,413],[592,589],[976,296],[867,599],[744,703],[925,422],[617,446],[663,454],[251,74],[789,202],[607,418],[778,655],[267,45],[947,895],[554,466],[949,814],[770,769],[730,132],[909,838],[834,70],[549,344],[988,86],[690,164],[170,106],[228,178],[722,592],[979,740],[691,464],[651,26],[75,12],[418,143],[452,206],[887,155],[561,491],[757,355],[442,221],[964,347],[478,315],[459,221],[673,141],[836,513],[511,105],[707,698],[849,195],[620,346],[992,480],[232,153],[974,815],[853,131],[866,186],[386,233],[484,139],[907,203],[789,347],[634,318],[832,381],[821,293],[281,106],[935,443],[184,65],[712,2],[500,391],[995,102],[821,238],[937,647],[357,53],[276,121],[777,5],[971,526],[923,751],[390,23],[933,310],[546,15],[413,27],[594,212],[243,91],[457,414],[675,421],[399,119],[404,394],[271,243],[600,414],[311,234],[977,900],[329,24],[673,641],[719,184],[481,203],[985,215],[424,267],[917,838],[556,67],[887,523],[986,186],[849,181],[739,545],[224,15],[995,633],[937,27],[210,173],[210,196],[441,342],[484,251],[261,224],[694,300],[630,297],[942,746],[968,587],[950,393],[703,153],[814,713],[563,277],[365,146],[611,408],[994,340],[690,74],[556,465],[935,908],[330,264],[421,282],[161,9],[253,89],[793,142],[919,181],[554,250],[822,515],[233,162],[995,299],[979,726],[698,90],[865,538],[991,261],[516,89],[640,230],[792,404],[781,96],[772,690],[752,128],[436,202],[693,61],[113,46],[857,141],[640,506],[717,101],[810,228],[952,635],[805,336],[856,316],[955,783],[279,70],[571,424],[591,19],[626,311],[886,588],[581,539],[773,692],[988,1],[777,304],[785,222],[811,789],[738,276],[984,485],[909,791],[923,299],[553,48],[983,207],[620,242],[929,229],[353,231],[997,408],[605,83],[708,632],[303,203],[936,743],[870,647],[957,375],[673,164],[503,195],[723,137],[966,783],[506,342],[808,721],[574,486],[874,293],[732,425],[686,146],[156,35],[625,402],[985,59],[748,327],[731,588],[642,9],[819,673],[813,723],[417,109],[660,329],[155,13],[693,31],[815,803],[382,78],[797,420],[874,355],[789,38],[667,599],[648,194],[999,747],[273,213],[716,622],[605,377],[342,182],[460,223],[947,287],[647,1],[993,674],[582,481],[765,338],[736,689],[981,34],[608,570],[929,18],[463,226],[262,205],[965,254],[631,361],[732,113],[751,617],[688,94],[810,352],[235,68],[319,55],[634,72],[883,420],[988,986],[640,143],[795,585],[280,118],[473,386],[793,326],[162,128],[681,110],[538,196],[365,97],[226,30],[920,761],[362,355],[964,296],[194,26],[354,115],[934,269],[777,36],[938,21],[963,377],[887,365],[778,137],[811,655],[948,580],[790,455],[675,396],[702,148],[581,286],[809,17],[639,445],[721,612],[901,795],[612,203],[879,117],[468,31],[633,570],[636,414],[611,129],[952,683],[529,233],[635,234],[819,219],[903,715],[306,47],[112,46],[479,286],[674,310],[908,504],[968,898],[589,183],[323,10],[962,612],[994,162],[740,432],[845,584],[611,184],[826,816],[524,309],[869,357],[694,625],[620,194],[789,370],[528,162],[689,467],[920,306],[633,278],[545,316],[591,288],[678,492],[286,179],[907,36],[882,102],[830,610],[991,40],[800,27],[800,792],[494,173],[704,467],[531,114],[377,367],[567,412],[892,301],[501,318],[301,173],[520,59],[832,773],[811,362],[898,297],[936,552],[194,139],[730,73],[889,723],[388,380],[917,389],[587,305],[640,571],[476,367],[646,643],[957,144],[633,218],[640,22],[709,47],[511,256],[800,678],[771,182],[399,92],[699,590],[969,747],[887,805],[678,17],[577,373],[392,316],[781,469],[834,542],[500,109],[696,430],[804,733],[433,132],[308,77],[745,129],[329,40],[847,19],[731,379],[621,152],[536,239],[953,105],[582,555],[227,222],[969,420],[967,696],[875,515],[874,275],[628,504],[333,143],[764,438],[229,128],[750,103],[674,79],[805,165],[874,454],[987,114],[480,436],[696,267],[347,294],[713,642],[596,546],[841,191],[762,721],[780,280],[142,27],[644,389],[682,300],[747,723],[798,663],[860,432],[415,126],[658,620],[107,65],[411,229],[828,732],[827,13],[833,256],[564,80],[745,514],[628,174],[358,234],[859,427],[826,290],[505,294],[796,299],[719,710],[568,294],[740,32],[966,493],[873,657],[323,23],[749,519],[517,456],[527,158],[345,94],[948,814],[683,133],[405,181],[829,544],[826,320],[836,701],[416,177],[565,228],[307,137],[966,456],[878,829],[476,162],[961,949],[993,908],[245,5],[601,106],[877,444],[914,490],[521,93],[983,656],[526,87],[818,796],[569,128],[569,421],[588,85],[839,587],[771,338],[880,790],[893,339],[690,128],[216,20],[877,88],[859,133],[528,230],[446,192],[258,229],[666,5],[769,19],[360,41],[795,196],[895,548],[804,462],[554,525],[228,155],[388,76],[356,190],[589,515],[842,637],[807,369],[610,439],[523,37],[485,469],[991,941],[618,382],[854,12],[718,37],[504,44],[414,92],[912,155],[926,706],[414,102],[127,119],[779,440],[618,582],[692,393],[412,230],[336,185],[979,941],[222,4],[798,271],[372,322],[730,593],[389,118],[964,469],[948,97],[897,264],[72,65],[486,326],[400,294],[808,208],[863,678],[979,254],[827,175],[629,418],[492,257],[795,188],[698,513],[566,556],[191,143],[940,900],[587,443],[925,398],[677,486],[136,13],[479,445],[608,338],[563,282],[304,116],[726,568],[727,178],[631,198],[681,216],[732,244],[955,539],[870,273],[844,743],[899,803],[874,718],[932,828],[958,839],[210,14],[823,724],[536,221],[230,107],[404,354],[743,321],[312,181],[776,419],[890,553],[193,192],[933,659],[635,126],[467,344],[571,145],[317,111],[835,112],[712,257],[970,554],[962,593],[138,90],[637,430],[374,261],[480,82],[968,679],[757,729],[915,426],[973,720],[970,6],[684,485],[393,7],[847,299],[742,573],[823,85],[287,182],[968,96],[982,364],[146,32],[594,537],[438,224],[305,295],[552,508],[992,543],[216,152],[934,829],[75,29],[368,322],[495,427],[488,135],[772,759],[983,349],[774,312],[792,789],[575,459],[693,355],[699,98],[481,424],[821,181],[571,56],[914,157],[930,829],[567,552],[475,458],[550,413],[993,523],[554,188],[571,390],[481,45],[228,110],[479,49],[541,417],[748,140],[761,63],[867,352],[838,734],[912,789],[975,595],[998,896],[639,608],[879,860],[864,790],[997,337],[986,404],[392,108],[603,451],[516,435],[457,174],[997,212],[968,961],[972,433],[954,291],[974,838],[616,535],[644,609],[802,570],[261,175],[914,867],[829,193],[775,145],[153,86],[890,91],[298,249],[885,719],[865,640],[869,522],[787,493],[934,563],[853,261],[465,326],[276,216],[832,216],[359,250],[702,265],[984,838],[499,393],[974,386],[169,94],[282,67],[557,124],[773,547],[118,73],[304,191],[654,357],[414,406],[472,426],[244,173],[999,133],[437,78],[610,380],[831,214],[825,114],[791,144],[526,25],[139,76],[393,295],[507,237],[271,30],[902,634],[950,590],[721,22],[854,653],[745,107],[776,527],[787,423],[966,461],[862,494],[549,77],[670,503],[562,66],[643,240],[970,863],[528,109],[840,57],[639,135],[173,165],[822,681],[966,272],[603,350],[900,817],[676,458],[350,279],[485,327],[921,116],[963,519],[851,435],[752,59],[984,538],[785,656],[997,144],[463,148],[842,264],[742,42],[357,292],[623,158],[999,179],[181,167],[878,388],[389,10],[446,170],[930,672],[824,183],[942,325],[935,26],[994,832],[178,94],[653,492],[525,452],[580,105],[635,28],[176,51],[672,194],[574,259],[977,378],[789,589],[321,198],[621,108],[917,560],[338,299],[246,23],[964,534],[215,150],[852,528],[909,760],[652,231],[889,35],[936,307],[383,171],[902,405],[885,517],[743,608],[950,589],[658,113],[985,233],[703,463],[818,641],[680,163],[700,658],[958,213],[894,368],[998,886],[314,142],[669,559],[757,681],[504,115],[827,759],[616,210],[485,71],[887,285],[321,276],[879,477],[328,273],[428,321],[745,563],[460,96],[636,93],[932,253],[634,179],[464,437],[424,150],[192,83],[568,422],[783,534],[565,286],[902,627],[716,505],[896,831],[921,450],[708,692],[824,368],[959,565],[551,532],[507,434],[957,898],[503,237],[458,398],[559,259],[837,349],[816,381],[848,69],[889,814],[528,392],[468,241],[893,793],[580,134],[948,843],[140,39],[389,69],[669,302],[511,418],[588,50],[741,474],[997,959],[917,199],[793,34],[679,541],[558,520],[128,48],[624,327],[907,95],[588,269],[648,590],[501,115],[429,280],[728,660],[629,472],[445,114],[125,47],[809,290],[947,229],[703,375],[796,472],[595,200],[540,153],[833,325],[572,115],[762,539],[830,472],[328,251],[465,54],[627,157],[118,10],[833,733],[745,684],[756,472],[984,926],[889,198],[853,669],[674,250],[710,402],[957,606],[439,127],[610,49],[317,234],[878,21],[622,299],[666,548],[697,529],[937,179],[184,164],[822,499],[538,417],[458,91],[901,701],[771,384],[871,765],[569,179],[313,19],[823,200],[58,28],[604,571],[947,801],[467,91],[936,723],[606,61],[661,138],[749,119],[374,294],[459,214],[821,275],[573,566],[538,347],[886,41],[324,6],[611,139],[836,768],[564,545],[584,95],[951,542],[693,624],[552,181],[169,85],[896,730],[990,463],[521,60],[786,607],[875,867],[611,186],[183,138],[990,121],[890,83],[479,311],[518,391],[812,570],[662,452],[980,60],[905,206],[833,73],[572,539],[826,388],[858,509],[872,757],[641,201],[905,19],[699,100],[795,416],[340,121],[980,78],[981,325],[483,139],[733,470],[986,469],[863,216],[773,496],[823,627],[727,666],[620,43],[877,57],[971,801],[306,105],[440,383],[923,535],[837,569],[728,41],[945,110],[723,341],[533,316],[835,627],[608,138],[364,320],[883,282],[846,637],[634,542],[760,576],[223,95],[432,8],[323,63],[224,85],[984,509],[873,834],[558,256],[951,728],[487,303],[947,180],[658,1],[823,815],[802,103],[620,84],[982,740],[884,625],[539,2],[773,17],[339,335],[685,243],[637,163],[807,161],[123,86],[924,617],[660,585],[971,245],[977,285],[714,642],[975,40],[535,21],[628,411],[249,35],[116,79],[693,583],[352,324],[685,237],[853,10],[510,167],[810,230],[995,896],[859,161],[792,90],[661,131],[894,583],[485,206],[409,295],[830,634],[539,163],[727,491],[950,67],[466,257],[962,120],[649,237],[978,662],[926,264],[393,331],[505,305],[901,404],[884,734],[727,563],[469,260],[826,349],[622,321],[899,831],[989,715],[968,695],[380,29],[491,31],[761,374],[616,29],[492,255],[650,113],[714,558],[794,190],[843,304],[882,791],[631,595],[715,582],[620,80],[952,229],[639,452],[448,202],[545,389],[634,79],[824,452],[776,12],[965,151],[848,759],[729,306],[944,206],[469,123],[429,45],[842,685],[406,320],[809,574],[647,284],[854,678],[416,342],[411,181],[802,398],[847,72],[901,778],[867,429],[833,272],[494,146],[847,481],[743,91],[693,208],[845,309],[281,279],[947,606],[871,319],[908,387],[560,206],[880,848],[384,382],[993,501],[836,31],[966,717],[983,872],[448,354],[900,131],[989,760],[724,38],[948,17],[548,70],[659,203],[640,433],[636,200],[926,628],[533,330],[694,202],[699,260],[728,473],[962,442],[986,789],[875,151],[731,239],[934,497],[320,148],[186,13],[810,365],[737,480],[382,280],[646,636],[901,628],[973,158],[852,639],[179,83],[957,464],[879,59],[629,57],[357,294],[936,796],[536,523],[238,158],[898,193],[914,592],[958,274],[977,711],[333,222],[965,693],[340,283],[892,846],[96,9],[574,101],[823,124],[816,673],[917,249],[643,242],[462,449],[602,46],[514,29],[725,305],[951,625],[903,182],[632,529],[859,340],[817,660],[630,485],[869,785],[932,88],[363,271],[771,203],[134,17],[614,581],[946,788],[897,200],[782,220],[726,626],[763,475],[871,91],[771,229],[690,336],[529,359],[500,59],[337,265],[929,768],[870,616],[741,433],[268,176],[622,517],[648,520],[882,168],[750,514],[944,459],[880,44],[967,745],[399,324],[785,290],[913,351],[904,764],[318,162],[622,550],[882,832],[744,656],[737,505],[927,218],[797,95],[910,385],[552,448],[335,94],[829,804],[470,370],[321,144],[266,10],[531,41],[806,651],[885,299],[908,190],[962,960],[946,653],[275,58],[386,261],[556,340],[917,330],[705,29],[855,97],[194,124],[759,615],[605,167],[953,810],[177,106],[625,435],[339,97],[827,80],[903,442],[754,146],[232,146],[987,932],[637,247],[879,241],[964,334],[347,247],[621,301],[976,230],[644,228],[942,435],[441,306],[580,161],[542,336],[554,349],[682,354],[784,645],[465,344],[544,189],[915,332],[837,465],[431,30],[705,390],[999,842],[631,221],[838,231],[690,506],[422,119],[623,337],[995,935],[695,151],[598,445],[833,772],[979,899],[867,717],[868,535],[339,85],[621,608],[968,592],[476,407],[437,197],[801,733],[207,51],[533,30],[347,111],[442,433],[825,735],[914,191],[765,333],[415,257],[275,122],[811,304],[793,114],[726,518],[248,188],[614,75],[901,238],[540,342],[983,40],[913,681],[614,150],[651,146],[612,17],[798,670],[864,673],[477,336],[766,209],[505,364],[778,665],[929,272],[816,630],[973,875],[849,815],[780,373],[475,204],[791,532],[841,295],[663,117],[784,34],[607,469],[916,283],[530,377],[964,271],[813,517],[800,313],[142,55],[431,67],[771,671],[844,733],[835,449],[360,356],[976,212],[844,469],[821,683],[162,92],[221,156],[547,380],[903,138],[736,574],[989,344],[555,413],[509,466],[902,572],[865,134],[946,353],[738,723],[930,471],[939,306],[502,359],[955,650],[676,184],[997,965],[775,570],[413,16],[799,70],[527,326],[706,41],[768,256],[759,679],[987,350],[492,268],[529,351],[486,296],[849,376],[512,493],[892,778],[829,708],[987,125],[998,433],[762,275],[431,248],[604,201],[859,368],[819,486],[720,565],[411,68],[902,561],[788,154],[905,4],[933,763],[748,581],[702,394],[860,633],[407,141],[670,625],[417,191],[954,456],[438,265],[645,187],[618,443],[848,51],[182,52],[673,310],[884,260],[376,68],[989,292],[794,138],[928,336],[404,285],[142,123],[333,185],[684,400],[668,76],[534,269],[564,284],[625,29],[950,170],[818,519],[642,522],[744,376],[540,289],[500,314],[903,858],[331,62],[736,360],[995,269],[926,560],[711,225],[583,125],[249,147],[655,392],[343,25],[611,21],[893,493],[877,745],[106,10],[949,751],[847,708],[880,433],[733,600],[429,336],[468,172],[927,597],[585,39],[262,215],[864,12],[758,153],[746,579],[896,589],[504,91],[693,241],[399,38],[817,494],[965,160],[524,323],[626,480],[666,336],[981,200],[695,586],[469,264],[299,24],[874,608],[745,125],[449,153],[374,366],[760,300],[838,149],[350,254],[930,85],[968,939],[956,386],[58,33],[914,341],[125,111],[812,808],[630,368],[781,608],[621,318],[948,446],[991,299],[924,695],[228,153],[631,268],[886,850],[808,230],[679,279],[831,567],[971,503],[554,456],[536,212],[629,552],[704,498],[383,160],[524,445],[206,137],[905,640],[855,468],[839,832],[409,347],[932,394],[860,845],[453,155],[439,41],[850,280],[668,558],[709,587],[789,348],[646,268],[489,234],[459,186],[455,222],[175,133],[314,292],[243,96],[911,884],[880,384],[792,324],[774,429],[384,38],[874,265],[494,417],[851,465],[738,343],[121,76],[838,307],[853,557],[937,734],[472,324],[643,478],[959,183],[859,343],[565,327],[849,718],[92,16],[461,420],[442,58],[676,120],[613,612],[579,382],[994,783],[922,827],[729,672],[956,680],[704,38],[395,102],[473,423],[534,124],[445,99],[554,198],[809,380],[719,607],[750,277],[361,268],[791,95],[636,621],[33,19],[737,585],[678,638],[364,155],[267,150],[744,94],[838,781],[514,166],[111,102],[914,678],[405,68],[403,24],[446,270],[407,68],[639,444],[731,113],[306,35],[936,783],[850,140],[865,837],[804,745],[617,580],[544,65],[860,496],[46,0],[900,760],[585,252],[754,742],[661,227],[663,573],[862,25],[734,106],[467,105],[716,440],[622,57],[288,52],[809,799],[306,82],[736,204],[868,624],[884,775],[962,482],[466,194],[552,321],[914,828],[963,506],[870,86],[155,95],[959,497],[520,350],[262,49],[763,493],[665,595],[325,317],[563,58],[749,510],[736,432],[237,86],[543,109],[776,663],[731,302],[696,441],[822,440],[873,132],[936,886],[347,0],[609,562],[675,304],[628,615],[494,180],[418,59],[732,507],[897,45],[776,636],[567,325],[375,84],[982,406],[291,115],[920,354],[576,259],[731,41],[914,715],[930,91],[871,81],[366,21],[783,388],[778,730],[953,881],[563,425],[968,366],[524,470],[896,480],[899,148],[928,379],[900,595],[487,460],[680,570],[806,420],[892,731],[713,170],[876,283],[749,235],[647,500],[656,172],[199,22],[984,835],[539,21],[853,196],[738,631],[652,53],[991,263],[706,87],[841,17],[801,484],[501,237],[890,643],[751,715],[657,596],[324,52],[863,659],[283,178],[250,56],[842,301],[182,40],[728,46],[489,100],[878,523],[584,137],[879,859],[862,849],[919,38],[879,140],[885,658],[385,376],[742,313],[913,207],[752,7],[953,572],[687,124],[810,357],[564,468],[435,217],[997,168],[587,89],[603,430],[726,331],[456,394],[811,312],[775,4],[781,726],[901,880],[739,410],[329,260],[339,169],[365,232],[623,93],[753,333],[250,43],[397,121],[728,392],[904,283],[881,780],[693,489],[815,205],[449,221],[956,325],[947,843],[931,888],[825,7],[368,2],[742,421],[453,251],[968,506],[706,102],[620,337],[604,427],[796,634],[636,599],[537,370],[508,178],[216,107],[944,746],[694,453],[806,444],[580,511],[563,476],[824,697],[556,170],[399,309],[925,340],[520,502],[567,429],[411,32],[529,211],[870,632],[82,11],[581,576],[798,540],[720,114],[394,373],[824,692],[317,274],[690,153],[528,96],[655,524],[967,268],[517,499],[953,372],[539,113],[964,852],[552,186],[420,340],[958,501],[963,63],[555,206],[877,604],[632,297],[433,44],[154,23],[531,134],[325,299],[820,783],[980,348],[230,154],[649,550],[982,292],[421,292],[721,431],[950,636],[428,6],[718,33],[676,53],[715,658],[795,309],[727,265],[876,128],[561,310],[848,106],[927,394],[994,377],[714,476],[794,669],[360,232],[729,28],[315,119],[722,376],[461,104],[470,394],[960,703],[716,358],[557,116],[685,284],[305,148],[261,39],[995,203],[522,521],[753,420],[846,463],[485,366],[541,523],[174,94],[792,424],[827,571],[877,199],[767,412],[966,876],[632,21],[544,385],[748,184],[513,432],[841,572],[663,393],[823,534],[685,606],[447,298],[158,114],[828,483],[444,406],[929,648],[683,546],[894,420],[802,258],[536,462],[539,452],[946,268],[848,788],[718,598],[740,277],[976,891],[716,56],[804,602],[264,44],[355,293],[446,272],[944,207],[398,397],[844,236],[658,79],[909,443],[683,676],[872,67],[894,384],[881,369],[233,167],[863,747],[881,416],[867,289],[983,590],[972,297],[556,61],[970,578],[543,358],[910,216],[759,499],[791,9],[851,143],[915,866],[740,286],[313,105],[848,687],[753,232],[797,768],[892,388],[41,26],[391,289],[405,280],[824,732],[354,188],[956,779],[718,437],[576,511],[410,167],[170,142],[900,568],[433,200],[817,428],[729,706],[871,202],[303,242],[728,303],[644,207],[429,172],[784,114],[748,439],[895,269],[911,202],[707,248],[294,74],[745,283],[362,128],[743,454],[923,13],[647,174],[534,279],[676,129],[839,505],[564,518],[736,709],[523,232],[872,515],[911,781],[722,178],[890,266],[990,458],[867,817],[731,114],[506,333],[907,794],[943,51],[494,309],[894,661],[618,37],[215,100],[464,32],[242,19],[225,222],[996,682],[610,91],[553,327],[965,431],[245,63],[630,255],[980,545],[624,0],[790,647],[784,335],[967,417],[964,69],[305,199],[307,249],[748,414],[801,608],[417,181],[652,356],[395,314],[587,499],[355,159],[713,228],[369,183],[949,195],[950,171],[908,166],[763,750],[846,403],[720,175],[966,183],[419,393],[550,179],[660,360],[945,144],[822,131],[722,646],[476,160],[887,685],[615,586],[94,48],[102,50],[893,150],[888,698],[827,174],[936,784],[740,714],[888,431],[394,328],[844,213],[555,245],[742,648],[462,19],[521,71],[567,269],[624,170],[595,359],[961,334],[918,599],[758,545],[659,376],[927,17],[97,55],[471,240],[713,86],[723,334],[862,650],[788,695],[653,272],[838,439],[524,432],[732,364],[503,241],[708,694],[761,659],[605,148],[727,448],[724,427],[295,26],[969,269],[967,541],[712,429],[918,418],[898,673],[707,444],[966,67],[785,34],[710,527],[891,757],[820,430],[923,849],[843,537],[515,300],[926,463],[713,650],[726,586],[892,682],[209,159],[870,236],[796,795],[738,172],[993,447],[945,93],[659,520],[316,79],[501,47],[226,57],[442,178],[886,360],[876,544],[895,622],[994,959],[500,463],[957,594],[254,78],[988,629],[158,89],[604,13],[922,602],[650,407],[609,9],[584,138],[792,664],[433,156],[639,76],[983,479],[890,500],[651,533],[251,119],[358,146],[987,285],[485,53],[768,217],[435,249],[950,437],[404,200],[572,256],[51,38],[583,540],[914,694],[734,690],[954,792],[266,68],[605,123],[406,179],[510,156],[510,184],[597,346],[364,300],[998,371],[649,284],[850,838],[429,247],[733,661],[844,468],[974,942],[63,53],[637,435],[626,383],[984,246],[686,105],[761,53],[320,102],[987,732],[793,24],[249,159],[390,97],[333,282],[871,604],[986,753],[425,383],[613,553],[741,407],[570,462],[607,133],[786,55],[879,610],[916,453],[744,61],[751,402],[638,561],[979,882],[133,66],[359,59],[844,801],[533,243],[919,205],[618,259],[745,188],[989,277],[608,320],[903,248],[630,376],[322,61],[273,113],[771,503],[457,403],[767,89],[722,241],[554,404],[525,204],[964,340],[494,55],[581,72],[375,130],[437,341],[987,804],[785,482],[937,486],[767,492],[913,475],[579,226],[984,797],[193,55],[443,342],[485,369],[750,709],[597,376],[549,118],[855,463],[845,688],[882,212],[787,518],[822,819],[766,541],[782,613],[464,56],[727,518],[859,519],[585,218],[479,92],[881,202],[913,403],[893,141],[882,417],[871,836],[839,224],[652,532],[755,654],[912,336],[893,732],[968,499],[726,146],[884,520],[986,700],[963,14],[474,293],[408,21],[819,622],[468,442],[400,211],[702,34],[245,164],[915,100],[873,431],[952,562],[139,23],[492,269],[357,70],[613,344],[957,83],[983,138],[917,36],[745,399],[943,330],[102,69],[259,146],[602,447],[872,20],[697,132],[479,57],[799,101],[991,220],[948,371],[997,592],[830,77],[956,560],[984,525],[619,294],[658,626],[925,284],[790,201],[820,253],[864,681],[571,356],[307,169],[662,409],[870,610],[777,693],[183,182],[849,332],[754,229],[302,193],[715,360],[807,526],[551,485],[771,69],[479,275],[764,137],[928,580],[150,99],[919,764],[858,124],[883,610],[972,378],[762,133],[415,319],[909,168],[651,581],[819,366],[578,262],[79,63],[813,508],[404,32],[238,159],[525,441],[766,358],[800,561],[969,272],[659,274],[496,430],[274,11],[919,539],[573,414],[848,194],[924,673],[862,244],[828,292],[556,102],[658,224],[674,208],[416,412],[324,96],[919,697],[688,54],[897,702],[579,351],[51,15],[931,38],[544,106],[638,92],[344,297],[327,44],[545,497],[978,424],[541,87],[567,197],[886,529],[982,137],[774,218],[906,59],[664,81],[511,346],[602,478],[201,163],[797,426],[991,356],[380,254],[361,172],[792,667],[952,260],[127,123],[382,143],[459,370],[895,418],[773,171],[329,31],[630,166],[618,360],[484,222],[361,281],[869,609],[972,795],[698,689],[699,152],[290,123],[927,586],[812,320],[705,280],[111,39],[507,221],[624,289],[510,193],[715,354],[356,3],[92,26],[577,422],[546,121],[36,13],[856,323],[705,312],[479,303],[945,837],[865,166],[306,248],[316,87],[630,140],[770,667],[350,143],[794,463],[391,43],[686,321],[471,58],[553,187],[489,51],[286,158],[715,273],[684,70],[664,619],[782,34],[859,267],[982,666],[465,421],[753,639],[859,766],[688,282],[914,107],[283,31],[892,62],[776,624],[399,215],[751,117],[610,311],[281,187],[767,717],[970,146],[319,221],[420,16],[460,149],[874,807],[772,191],[850,264],[286,23],[351,290],[995,710],[842,242],[732,363],[919,566],[828,760],[872,786],[789,7],[894,456],[619,221],[292,129],[716,324],[587,426],[928,444],[795,702],[536,516],[662,76],[766,594],[622,168],[319,215],[497,347],[852,612],[790,60],[939,842],[849,169],[832,186],[990,939],[842,491],[771,9],[817,744],[383,111],[645,315],[527,79],[659,208],[775,73],[428,286],[804,287],[459,108],[775,515],[275,139],[652,364],[744,377],[803,126],[426,348],[733,297],[808,218],[981,536],[761,321],[809,322],[584,446],[384,134],[892,230],[866,429],[323,198],[719,239],[946,4],[255,209],[581,411],[703,587],[839,288],[278,6],[902,881],[506,87],[516,219],[841,816],[833,495],[148,70],[441,254],[945,464],[628,86],[277,244],[538,195],[936,481],[61,47],[675,253],[837,503],[266,42],[490,340],[294,220],[193,149],[335,173],[204,48],[922,592],[370,191],[958,48],[400,340],[989,347],[435,263],[769,718],[699,612],[524,256],[845,630],[938,304],[88,31],[442,219],[763,624],[939,429],[234,146],[978,651],[874,854],[465,4],[799,409],[739,14],[853,70],[997,525],[719,113],[880,524],[847,340],[232,83],[829,147],[696,384],[739,577],[666,602],[570,245],[722,325],[569,319],[653,271],[249,152],[810,46],[627,184],[408,236],[335,125],[741,623],[385,186],[788,385],[975,476],[615,9],[271,202],[658,427],[924,342],[710,350],[656,142],[909,831],[693,479],[816,273],[875,276],[824,507],[426,329],[611,313],[776,63],[828,607],[994,288],[154,11],[662,611],[668,578],[716,640],[591,310],[917,673],[121,78],[472,152],[863,242],[699,137],[454,226],[961,189],[631,252],[916,367],[880,119],[193,189],[738,327],[516,25],[249,51],[934,413],[354,221],[873,152],[959,819],[220,122],[322,251],[645,365],[468,189],[632,152],[450,427],[443,347],[374,300],[704,636],[620,405],[937,232],[986,174],[430,117],[805,295],[294,170],[542,272],[873,298],[834,204],[943,155],[775,182],[816,155],[670,241],[241,33],[913,332],[765,691],[477,127],[996,402],[501,427],[819,416],[471,368],[630,152],[743,355],[515,93],[988,835],[511,223],[931,449],[562,231],[963,20],[491,170],[763,331],[999,990],[605,22],[268,256],[643,469],[626,519],[419,284],[972,277],[917,778],[964,900],[594,532],[769,756],[810,784],[688,607],[770,78],[896,794],[757,662],[670,665],[699,591],[796,548],[995,556],[984,739],[950,707],[689,656],[946,714],[938,294],[934,415],[820,150],[437,70],[680,560],[877,601],[924,547],[915,18],[570,375],[598,243],[218,137],[363,64],[353,103],[873,685],[901,697],[957,900],[745,150],[734,282],[557,277],[839,718],[990,723],[250,51],[597,249],[986,800],[796,771],[908,471],[253,56],[716,297],[158,29],[748,501],[918,911],[821,109],[707,38],[838,472],[625,317],[408,333],[561,135],[626,308],[825,776],[331,232],[665,269],[958,458],[363,208],[999,461],[719,5],[415,204],[338,310],[654,628],[61,10],[916,551],[812,349],[49,6],[645,298],[721,662],[770,740],[992,767],[853,817],[765,250],[756,670],[988,183],[415,198],[870,76],[829,369],[537,491],[884,860],[767,613],[267,43],[77,5],[834,299],[715,79],[954,511],[688,463],[922,297],[811,225],[275,248],[480,262],[944,520],[962,895],[928,434],[429,134],[324,192],[918,219],[953,459],[253,234],[798,0],[403,209],[772,120],[465,106],[533,392],[529,256],[622,372],[820,504],[473,332],[312,282],[613,185],[700,695],[390,94],[693,503],[715,251],[730,568],[679,408],[995,170],[724,547],[838,31],[913,512],[987,247],[879,131],[371,314],[405,366],[865,660],[921,694],[836,80],[792,756],[670,331],[997,217],[484,228],[700,328],[486,110],[911,289],[446,396],[642,421],[461,219],[577,508],[803,471],[306,293],[480,277],[942,200],[432,151],[686,618],[706,502],[794,615],[153,4],[877,6],[671,324],[855,437],[225,115],[897,259],[611,426],[665,289],[983,276],[531,139],[246,89],[985,473],[393,125],[813,561],[227,52],[982,828],[711,591],[734,672],[378,67],[728,388],[809,115],[976,785],[837,152],[489,7],[643,414],[338,290],[421,220],[790,54],[527,495],[703,700],[492,254],[649,314],[436,102],[770,674],[812,693],[345,63],[833,177],[524,127],[975,390],[683,138],[615,70],[445,239],[611,110],[759,24],[325,149],[692,117],[495,129],[957,453],[940,478],[843,96],[878,840],[291,269],[280,5],[423,39],[725,440],[896,334],[410,10],[888,90],[854,620],[789,145],[889,293],[948,37],[278,121],[478,285],[47,40],[578,145],[661,38],[608,463],[342,328],[574,248],[697,169],[613,264],[505,387],[643,126],[591,88],[750,643],[802,70],[837,364],[846,63],[188,17],[633,451],[880,653],[949,30],[975,861],[849,658],[567,423],[625,196],[863,412],[943,354],[914,517],[588,516],[607,216],[335,65],[555,14],[797,57],[474,230],[973,953],[947,261],[258,244],[339,266],[604,159],[921,837],[734,263],[218,55],[605,114],[997,156],[789,101],[412,318],[431,193],[229,66],[514,346],[245,207],[934,129],[741,721],[691,10],[116,29],[640,71],[337,116],[247,10],[569,67],[765,381],[886,575],[898,165],[492,237],[597,371],[183,117],[684,467],[402,228],[571,385],[877,872],[971,95],[789,3],[877,670],[457,99],[436,65],[526,356],[359,112],[795,506],[379,65],[246,104],[533,211],[362,211],[140,118],[327,247],[295,243],[808,273],[823,662],[585,285],[895,366],[717,89],[608,534],[704,254],[680,169],[961,135],[756,77],[912,683],[773,95],[872,796],[319,293],[966,893],[831,594],[790,381],[222,11],[492,160],[985,44],[390,49],[490,24],[966,780],[340,92],[842,493],[499,346],[593,279],[892,10],[157,146],[466,275],[244,184],[617,34],[818,242],[358,62],[849,436],[608,6],[944,667],[340,98],[896,627],[882,694],[467,385],[781,322],[877,858],[452,243],[749,684],[623,350],[275,85],[783,427],[985,122],[932,127],[911,286],[933,26],[891,533],[689,560],[918,294],[970,4],[735,226],[905,119],[975,529],[913,307],[977,686],[527,36],[827,645],[300,268],[654,523],[887,86],[792,233],[968,947],[718,305],[610,218],[755,568],[637,403],[987,406],[928,699],[664,172],[978,422],[928,641],[608,253],[891,559],[688,83],[698,206],[706,112],[473,54],[974,590],[477,170],[579,3],[413,277],[874,745],[313,134],[929,601],[843,540],[870,744],[924,309],[147,99],[548,298],[679,192],[469,329],[324,72],[855,643],[818,807],[419,147],[373,305],[352,52],[611,33],[820,697],[740,175],[589,207],[650,253],[974,123],[500,100],[594,422],[896,869],[795,685],[688,455],[661,640],[258,100],[678,194],[563,99],[778,103],[772,351],[415,196],[437,365],[500,493],[864,321],[779,222],[918,229],[955,675],[583,319],[291,121],[508,67],[866,73],[770,713],[944,691],[615,590],[698,682],[997,923],[579,320],[720,585],[304,254],[868,389],[364,156],[95,88],[678,110],[876,243],[795,110],[372,64],[359,210],[548,500],[386,159],[822,287],[362,43],[934,749],[589,348],[761,306],[946,314],[389,47],[949,831],[689,374],[923,640],[597,189],[842,426],[847,799],[502,499],[336,224],[859,298],[332,23],[960,912],[415,384],[688,606],[335,156],[301,76],[555,225],[749,196],[828,432],[498,349],[506,241],[599,27],[922,784],[837,140],[835,293],[748,230],[930,159],[976,587],[562,436],[819,600],[93,1],[561,379],[512,39],[612,286],[927,636],[858,365],[369,208],[872,754],[287,52],[530,507],[533,409],[862,109],[954,609],[237,209],[923,199],[837,480],[630,76],[736,211],[104,55],[774,689],[361,313],[808,179],[902,780],[839,51],[678,173],[956,384],[656,539],[806,36],[671,281],[795,486],[879,636],[957,39],[512,201],[602,328],[710,517],[743,494],[864,842],[986,257],[684,166],[480,420],[742,493],[696,691],[420,165],[774,291],[718,665],[954,11],[928,873],[738,439],[573,510],[110,46],[271,37],[405,312],[131,42],[930,489],[713,99],[497,229],[963,143],[844,101],[831,285],[744,286],[710,120],[862,394],[885,753],[623,566],[336,215],[939,149],[779,414],[609,600],[849,666],[679,128],[795,98],[928,417],[701,54],[919,828],[140,83],[712,307],[486,265],[183,141],[509,441],[498,194],[487,223],[718,704],[810,33],[945,401],[524,145],[975,544],[613,440],[805,369],[206,32],[771,480],[701,196],[376,301],[974,13],[967,580],[597,391],[512,502],[945,555],[492,347],[902,802],[931,129],[444,344],[930,917],[629,396],[997,477],[496,469],[345,244],[984,639],[899,18],[346,93],[279,88],[785,684],[265,27],[791,348],[988,793],[980,685],[772,729],[164,64],[859,688],[347,101],[524,46],[495,135],[751,323],[679,376],[568,439],[459,378],[655,367],[496,251],[867,742],[763,158],[221,187],[672,0],[712,355],[952,893],[657,165],[411,82],[969,5],[415,152],[937,879],[742,3],[853,632],[941,819],[949,583],[924,74],[875,514],[946,454],[982,834],[792,234],[645,133],[413,321],[879,459],[449,178],[155,16],[884,356],[846,394],[271,152],[674,148],[894,652],[914,408],[562,443],[392,265],[394,135],[662,610],[633,217],[781,656],[620,418],[632,445],[787,250],[745,721],[467,178],[474,12],[641,84],[487,299],[785,159],[791,138],[696,598],[396,165],[956,219],[890,13],[472,28],[670,197],[461,422],[848,839],[921,168],[589,102],[290,19],[435,281],[181,0],[438,358],[966,802],[850,804],[764,154],[936,65],[244,146],[963,844],[979,411],[819,114],[649,88],[796,465],[841,419],[108,4],[760,524],[982,570],[635,429],[850,407],[470,253],[351,320],[281,216],[925,697],[988,538],[667,347],[949,150],[924,28],[370,332],[517,149],[842,303],[326,217],[936,340],[303,263],[508,219],[654,525],[519,463],[786,395],[934,231],[736,129],[755,521],[928,539],[503,286],[766,60],[763,360],[711,594],[806,465],[851,199],[819,581],[932,240],[810,519],[205,199],[201,162],[430,277],[912,656],[601,172],[902,469],[203,63],[912,815],[866,822],[745,92],[378,74],[631,342],[708,22],[558,23],[323,84],[665,170],[998,407],[591,155],[375,61],[770,634],[753,239],[292,138],[593,311],[323,255],[233,131],[722,484],[593,70],[539,334],[762,759],[826,471],[835,329],[632,141],[473,107],[856,136],[346,296],[857,214],[895,505],[299,273],[399,95],[429,64],[848,736],[771,746],[893,362],[717,411],[414,214],[349,126],[332,54],[910,797],[910,566],[283,49],[668,94],[657,132],[909,881],[886,669],[744,305],[403,386],[622,303],[687,150],[757,735],[899,135],[320,187],[561,92],[521,248],[368,1],[501,476],[828,678],[579,52],[585,583],[755,471],[360,200],[890,509],[589,246],[346,211],[488,77],[910,270],[189,161],[607,38],[930,410],[814,78],[578,230],[162,45],[552,551],[618,544],[813,280],[893,255],[812,665],[505,274],[870,451],[797,242],[621,582],[973,824],[617,616],[254,36],[748,256],[643,611],[490,408],[517,286],[884,368],[696,233],[973,219],[656,9],[649,362],[807,121],[294,230],[631,70],[549,331],[851,236],[135,60],[818,601],[96,15],[531,281],[880,270],[905,230],[518,494],[608,524],[394,306],[920,241],[419,328],[872,205],[463,56],[725,533],[938,851],[5,0],[459,324],[914,497],[398,269],[428,80],[798,495],[335,10],[469,415],[700,303],[243,98],[450,428],[372,73],[246,196],[713,572],[811,212],[678,360],[399,300],[891,183],[128,72],[990,940],[828,616],[598,517],[987,863],[808,487],[919,575],[347,133],[597,82],[454,132],[554,407],[430,131],[512,240],[483,356],[771,228],[555,142],[169,26],[595,98],[627,502],[968,888],[909,769],[826,292],[816,179],[983,310],[698,118],[322,210],[488,4],[356,260],[885,112],[477,12],[854,161],[671,322],[76,73],[458,113],[597,8],[269,265],[681,550],[965,455],[555,333],[882,504],[988,801],[761,301],[515,459],[881,9],[584,442],[941,263],[833,346],[720,630],[669,223],[785,734],[828,246],[692,168],[982,410],[488,169],[970,656],[653,295],[874,185],[483,254],[991,819],[186,8],[405,208],[281,51],[736,361],[892,275],[798,591],[896,359],[367,46],[823,69],[239,205],[740,215],[434,25],[821,287],[906,903],[836,34],[447,252],[463,336],[838,349],[456,413],[878,856],[511,464],[568,25],[427,16],[758,69],[701,4],[865,632],[269,32],[610,315],[891,882],[722,438],[464,14],[557,31],[918,408],[647,553],[514,81],[720,552],[238,62],[611,301],[602,149],[862,230],[336,178],[542,366],[745,270],[959,825],[825,288],[713,334],[482,106],[968,133],[786,107],[690,633],[573,140],[488,138],[777,726],[919,431],[768,438],[806,185],[697,47],[270,56],[735,525],[847,552],[591,232],[666,186],[639,318],[740,427],[387,262],[845,826],[821,374],[697,358],[815,356],[969,295],[40,23],[696,656],[962,516],[460,99],[618,155],[389,28],[136,127],[719,612],[916,6],[605,310],[388,69],[972,205],[701,621],[872,347],[792,130],[442,101],[575,399],[472,248],[630,544],[978,942],[990,351],[823,491],[800,131],[888,113],[381,159],[381,82],[926,911],[887,837],[862,261],[581,294],[969,382],[858,558],[812,36],[856,815],[894,636],[827,204],[284,136],[839,351],[909,211],[628,196],[909,903],[796,514],[905,755],[822,749],[487,228],[720,224],[975,378],[927,501],[621,590],[274,195],[634,195],[280,187],[545,153],[892,453],[760,517],[840,65],[532,181],[950,47],[526,221],[892,677],[427,313],[435,169],[979,192],[945,271],[612,576],[727,106],[996,670],[543,427],[885,766],[345,18],[181,109],[994,905],[524,462],[888,606],[803,426],[625,495],[553,110],[493,188],[784,325],[332,173],[974,327],[787,376],[290,27],[722,469],[205,13],[958,122],[678,563],[380,7],[668,539],[599,480],[642,438],[559,42],[198,78],[914,379],[455,413],[874,17],[696,282],[758,486],[96,79],[924,814],[745,166],[614,380],[154,79],[715,148],[893,769],[658,314],[908,507],[998,225],[905,465],[645,369],[309,10],[764,12],[901,647],[660,22],[886,418],[580,537],[988,630],[973,757],[613,332],[957,678],[891,547],[531,354],[944,62],[966,804],[524,172],[99,94],[769,284],[721,180],[285,136],[944,828],[954,503],[844,334],[943,198],[772,297],[433,406],[751,399],[711,676],[664,638],[717,57],[625,191],[740,623],[912,843],[742,57],[625,170],[510,46],[713,44],[938,243],[940,355],[448,174],[690,31],[929,162],[694,508],[897,857],[752,341],[516,267],[804,715],[825,488],[982,400],[957,12],[954,475],[866,738],[992,244],[317,135],[680,542],[894,815],[534,219],[911,25],[912,448],[693,420],[539,330],[805,615],[501,205],[354,231],[950,818],[640,92],[739,541],[758,305],[844,65],[910,35],[905,757],[681,173],[430,422],[664,64],[707,548],[840,266],[480,367],[648,70],[605,284],[691,61],[367,229],[904,728],[568,26],[878,629],[546,153],[341,146],[844,261],[880,124],[347,237],[683,287],[758,103],[997,410],[155,42],[860,395],[457,304],[849,109],[881,821],[890,559],[573,400],[776,288],[273,206],[443,299],[336,300],[875,667],[494,353],[947,196],[936,429],[991,446],[410,92],[647,119],[978,193],[850,75],[668,209],[460,127],[661,351],[778,414],[553,536],[776,720],[887,862],[265,223],[797,273],[942,855],[440,431],[694,258],[942,313],[909,680],[455,50],[629,489],[472,243],[269,13],[866,144],[994,660],[709,314],[582,202],[430,231],[734,324],[376,284],[851,717],[614,503],[805,763],[243,106],[647,354],[408,167],[168,40],[736,214],[890,333],[875,503],[72,28],[480,448],[956,721],[894,426],[722,585],[435,283],[950,48],[835,682],[606,149],[555,168],[782,690],[852,529],[804,181],[519,336],[197,153],[463,337],[643,50],[867,447],[453,312],[878,68],[218,105],[450,288],[510,360],[691,279],[760,346],[754,543],[328,58],[971,383],[555,509],[733,147],[551,70],[928,350],[463,385],[849,635],[436,136],[429,153],[942,848],[691,378],[890,131],[900,824],[837,127],[155,93],[526,80],[503,6],[832,14],[711,28],[784,113],[816,134],[772,34],[742,9],[175,20],[398,47],[813,111],[359,268],[678,561],[908,224],[624,270],[715,171],[869,781],[34,28],[688,33],[540,49],[786,103],[907,763],[551,346],[910,881],[870,662],[365,304],[492,161],[716,50],[468,455],[915,885],[294,265],[933,360],[808,565],[383,190],[421,284],[991,561],[463,388],[754,93],[949,231],[914,522],[929,91],[863,248],[881,634],[405,117],[855,303],[995,239],[316,66],[235,40],[605,229],[966,619],[860,174],[410,34],[484,108],[360,183],[938,500],[726,432],[488,141],[822,73],[718,637],[721,140],[498,306],[352,128],[145,33],[303,17],[701,375],[653,412],[917,727],[777,386],[700,543],[666,273],[847,347],[860,390],[711,172],[239,150],[419,186],[898,370],[902,849],[366,260],[165,39],[766,321],[398,255],[779,192],[324,256],[402,176],[998,612],[881,166],[394,142],[862,564],[575,241],[771,112],[620,238],[773,127],[458,293],[789,515],[855,75],[786,155],[745,328],[956,373],[289,80],[922,742],[335,168],[487,181],[633,615],[112,41],[550,400],[306,207],[635,570],[784,64],[874,464],[825,129],[786,453],[518,410],[974,106],[971,686],[503,405],[977,786],[441,173],[257,58],[658,317],[380,196],[580,432],[494,51],[604,300],[889,680],[692,235],[792,107],[684,457],[282,108],[806,259],[260,48],[802,445],[319,85],[516,155],[346,224],[828,53],[760,530],[441,231],[910,559],[670,18],[913,57],[329,248],[723,91],[512,362],[628,61],[981,202],[971,140],[809,339],[329,209],[906,701],[981,523],[958,735],[664,216],[690,83],[999,740],[662,36],[852,156],[373,244],[130,0],[521,307],[210,113],[932,407],[771,443],[534,216],[667,190],[629,125],[909,93],[674,239],[489,137],[851,534],[755,34],[266,0],[621,585],[816,432],[629,198],[639,222],[715,13],[376,274],[161,113],[567,141],[563,117],[484,419],[465,17],[901,97],[538,475],[582,410],[793,540],[897,704],[230,58],[283,33],[318,57],[412,105],[491,261],[893,739],[903,16],[941,789],[766,715],[983,186],[531,448],[608,91],[347,286],[175,169],[978,755],[773,690],[631,73],[516,12],[635,633],[735,548],[37,25],[325,171],[917,134],[135,120],[658,284],[623,288],[420,41],[596,290],[773,427],[515,345],[291,211],[810,466],[783,149],[957,655],[505,363],[287,284],[694,66],[642,198],[926,13],[918,906],[855,741],[910,704],[883,716],[815,663],[909,286],[721,559],[653,545],[463,266],[338,212],[882,272],[287,267],[701,506],[559,338],[854,141],[442,46],[529,52],[746,641],[732,490],[780,751],[969,145],[740,696],[452,72],[144,65],[427,236],[974,722],[659,434],[602,269],[952,882],[614,285],[913,295],[669,40],[360,211],[927,626],[910,161],[846,755],[383,300],[580,270],[945,198],[902,896],[888,600],[597,496],[972,434],[701,424],[527,101],[558,426],[472,321],[210,102],[529,199],[808,761],[933,823],[551,276],[827,630],[510,116],[500,278],[413,257],[867,4],[377,39],[928,898],[979,423],[988,492],[937,174],[919,127],[912,203],[755,704],[433,302],[509,485],[729,3],[135,24],[855,758],[340,135],[538,521],[490,69],[879,222],[215,148],[893,230],[705,49],[746,385],[727,336],[819,48],[283,144],[605,434],[957,651],[824,511],[694,382],[987,750],[524,431],[297,98],[245,104],[907,108],[412,257],[771,413],[367,318],[792,459],[800,378],[744,191],[922,631],[413,96],[510,247],[793,704],[105,0],[991,66],[668,220],[620,281],[586,263],[505,263],[813,406],[334,28],[833,420],[449,50],[671,161],[580,103],[737,664],[577,324],[758,95],[909,249],[235,25],[563,214],[767,62],[665,363],[583,372],[980,5],[147,132],[512,224],[685,422],[559,490],[589,38],[989,224],[357,200],[708,225],[403,184],[799,226],[673,0],[966,583],[674,564],[702,468],[452,329],[357,90],[643,277],[684,404],[572,59],[516,298],[211,141],[867,497],[430,87],[532,252],[961,575],[685,649],[838,688],[978,246],[967,267],[685,468],[427,356],[617,262],[984,731],[986,258],[685,99],[782,151],[736,153],[199,53],[639,146],[663,545],[161,61],[903,216],[652,43],[637,63],[260,33],[968,494],[547,499],[343,229],[505,348],[842,360],[192,15],[148,51],[982,921],[561,25],[460,163],[980,731],[824,437],[711,287],[980,66],[484,397],[236,80],[474,131],[763,462],[653,429],[307,95],[676,22],[514,352],[988,487],[273,53],[540,266],[905,620],[939,464],[767,469],[469,349],[781,416],[517,74],[800,357],[455,166],[796,208],[391,87],[932,260],[971,966],[410,386],[422,370],[858,139],[205,48],[426,316],[404,294],[780,247],[768,461],[461,19],[375,1],[506,206],[479,317],[784,667],[171,38],[849,261],[864,776],[609,342],[446,361],[926,219],[896,295],[643,202],[873,490],[853,500],[695,398],[707,355],[430,392],[137,25],[886,326],[813,771],[697,385],[818,649],[483,442],[837,335],[753,512],[273,6],[259,100],[906,174],[792,432],[760,268],[739,481],[852,742],[651,300],[677,249],[562,337],[716,223],[805,446],[935,401],[352,201],[542,77],[666,116],[939,681],[973,625],[614,595],[736,249],[304,89],[91,12],[843,735],[901,816],[670,540],[460,327],[997,773],[957,180],[210,163],[812,407],[415,251],[957,156],[667,563],[498,336],[937,29],[197,133],[439,50],[878,475],[262,236],[413,339],[849,49],[668,81],[909,273],[321,93],[739,243],[965,338],[778,743],[999,711],[590,405],[773,623],[932,319],[621,502],[743,577],[589,311],[419,40],[786,307],[908,734],[276,230],[750,235],[520,203],[825,692],[248,120],[124,112],[867,739],[884,322],[156,126],[668,110],[578,226],[723,437],[716,504],[550,37],[792,352],[837,221],[572,260],[762,175],[869,822],[533,511],[604,122],[569,326],[983,974],[931,783],[858,503],[281,28],[918,402],[822,573],[715,68],[867,476],[428,84],[698,609],[802,400],[416,71],[618,314],[509,60],[590,0],[463,198],[422,396],[511,382],[379,310],[528,405],[852,847],[661,468],[925,406],[439,177],[747,66],[192,129],[921,375],[922,511],[916,651],[670,137],[901,372],[334,26],[907,357],[589,512],[746,118],[552,85],[592,145],[777,199],[224,87],[906,255],[460,445],[837,588],[292,164],[457,393],[689,116],[874,217],[773,372],[258,117],[639,601],[702,184],[874,541],[907,673],[866,378],[847,580],[768,390],[895,560],[658,548],[744,525],[836,333],[939,268],[90,33],[995,591],[457,438],[680,262],[308,122],[923,793],[740,97],[769,662],[880,677],[735,673],[410,67],[258,119],[902,28],[684,627],[688,252],[579,497],[851,496],[817,197],[350,108],[549,268],[826,775],[762,507],[994,732],[674,63],[895,214],[922,643],[563,346],[651,634],[526,423],[525,271],[903,165],[238,201],[334,6],[271,137],[546,221],[788,406],[871,436],[726,457],[929,68],[783,658],[859,635],[905,275],[322,54],[590,324],[319,297],[856,788],[540,395],[880,511],[989,742],[825,549],[307,146],[772,610],[217,77],[925,621],[425,293],[432,133],[782,369],[537,376],[688,451],[404,304],[676,107],[730,55],[879,75],[910,166],[669,169],[62,2],[119,16],[671,652],[683,448],[936,139],[762,694],[684,0],[585,403],[957,32],[568,9],[520,480],[905,879],[543,74],[741,596],[475,467],[389,215],[688,584],[830,184],[455,55],[340,168],[970,49],[970,678],[975,924],[948,654],[293,251],[431,254],[579,16],[862,126],[585,525],[999,123],[391,172],[407,142],[912,322],[527,151],[885,15],[767,189],[182,43],[668,41],[679,119],[469,449],[728,190],[307,238],[456,358],[476,314],[451,298],[957,253],[618,420],[636,158],[896,240],[745,500],[257,227],[930,703],[870,125],[968,907],[157,115],[851,133],[824,501],[569,42],[729,251],[348,345],[592,404],[96,88],[210,169],[764,302],[822,385],[439,136],[465,315],[97,26],[626,385],[981,496],[341,316],[803,84],[554,260],[795,181],[923,113],[482,28],[576,113],[731,498],[321,52],[668,172],[417,400],[710,157],[335,179],[575,219],[641,356],[346,18],[321,142],[829,382],[794,529],[964,352],[379,6],[965,282],[818,255],[432,287],[863,756],[419,71],[503,400],[919,25],[848,565],[324,248],[663,25],[377,345],[577,129],[948,141],[811,547],[799,6],[981,144],[302,166],[794,439],[144,104],[802,507],[840,13],[774,252],[789,236],[581,507],[925,894],[693,439],[411,120],[724,557],[736,403],[150,62],[612,278],[859,391],[839,475],[739,178],[930,412],[233,69],[611,112],[636,477],[304,303],[658,565],[318,180],[750,159],[834,172],[481,41],[828,295],[703,631],[834,793],[788,25],[912,391],[97,12],[819,319],[518,337],[118,58],[843,782],[131,93],[881,489],[408,113],[974,345],[960,236],[962,9],[995,691],[707,224],[676,180],[741,325],[915,126],[921,507],[945,856],[935,548],[705,255],[878,560],[865,374],[763,37],[987,538],[597,347],[717,335],[712,23],[981,145],[917,146],[935,928],[894,273],[625,520],[898,403],[511,305],[267,103],[687,607],[970,91],[542,540],[944,350],[917,745],[422,263],[883,239],[931,305],[398,74],[389,181],[272,128],[905,93],[835,83],[940,747],[823,101],[799,174],[54,38],[161,6],[759,747],[596,478],[630,59],[834,45],[951,743],[947,336],[76,70],[759,477],[595,211],[700,379],[685,459],[974,256],[667,449],[861,407],[699,430],[332,261],[559,311],[738,87],[772,541],[537,4],[999,26],[617,264],[922,163],[903,389],[277,174],[794,127],[942,832],[728,581],[925,903],[230,127],[462,89],[888,593],[798,649],[995,105],[511,118],[814,300],[488,227],[873,529],[327,154],[968,377],[664,471],[794,170],[652,299],[522,379],[238,207],[810,727],[551,393],[570,212],[697,671],[654,193],[805,380],[980,537],[871,266],[994,890],[907,131],[146,52],[920,48],[412,177],[765,459],[347,318],[957,438],[872,131],[511,92],[752,577],[760,582],[845,104],[942,857],[858,91],[927,79],[767,220],[779,493],[500,185],[349,229],[280,45],[544,245],[733,373],[722,636],[899,635],[501,128],[800,751],[847,149],[922,905],[970,226],[906,479],[673,584],[892,435],[454,178],[943,613],[846,330],[478,464],[499,150],[628,391],[847,49],[471,150],[185,168],[791,270],[975,462],[975,788],[762,627],[793,139],[179,46],[555,461],[700,22],[661,75],[656,18],[994,113],[886,584],[739,593],[820,390],[471,343],[973,334],[114,108],[498,212],[810,374],[774,87],[942,303],[510,442],[875,124],[985,481],[438,408],[633,66],[734,138],[474,176],[811,378],[342,324],[870,568],[534,211],[681,323],[670,141],[243,134],[336,199],[907,744],[935,654],[364,293],[474,365],[624,1],[865,328],[382,169],[865,802],[660,170],[835,422],[951,325],[323,262],[399,184],[695,321],[577,97],[717,520],[675,37],[234,178],[296,155],[751,215],[934,509],[957,840],[382,164],[346,300],[752,208],[366,128],[983,2],[768,730],[975,715],[193,108],[259,204],[603,243],[699,455],[179,142],[561,287],[485,5],[852,216],[464,314],[150,109],[677,572],[838,723],[961,469],[808,496],[867,668],[681,596],[933,60],[869,199],[956,10],[953,864],[833,218],[701,411],[859,813],[947,279],[574,362],[933,43],[869,737],[938,118],[997,375],[931,294],[970,334],[805,712],[89,47],[239,143],[409,165],[995,458],[510,450],[502,352],[637,31],[550,516],[610,567],[368,75],[632,459],[845,702],[614,388],[904,99],[726,306],[938,658],[443,99],[499,14],[459,288],[412,68],[947,932],[937,351],[591,421],[993,152],[901,868],[855,618],[630,322],[548,431],[480,366],[6,5],[905,55],[736,221],[825,319],[493,101],[863,760],[870,844],[818,154],[596,421],[958,843],[752,751],[604,206],[386,236],[394,182],[625,290],[607,199],[357,351],[767,260],[632,273],[466,17],[328,88],[360,68],[716,158],[551,56],[979,509],[991,29],[566,115],[445,245],[888,734],[857,539],[530,90],[834,343],[826,686],[357,86],[701,368],[480,246],[977,702],[394,29],[664,654],[594,465],[754,498],[324,257],[285,153],[997,674],[477,102],[929,653],[463,348],[431,43],[731,627],[967,365],[452,134],[333,186],[534,523],[868,514],[370,282],[663,12],[455,227],[797,655],[675,333],[740,187],[676,564],[379,374],[829,48],[940,253],[704,703],[829,669],[278,57],[991,112],[201,96],[383,178],[929,48],[870,425],[727,267],[413,213],[892,116],[883,363],[371,195],[726,34],[935,851],[785,363],[754,443],[834,62],[682,122],[545,148],[748,454],[756,125],[366,26],[683,59],[504,125],[384,153],[649,405],[905,396],[884,145],[524,109],[283,170],[429,12],[721,160],[903,350],[410,223],[241,199],[943,919],[828,418],[637,259],[803,24],[418,201],[686,19],[645,534],[339,291],[942,41],[592,408],[539,428],[525,194],[479,155],[802,451],[991,349],[999,559],[971,960],[689,79],[593,455],[360,49],[478,398],[834,570],[656,41],[812,414],[954,278],[964,138],[911,647],[847,779],[417,232],[88,87],[917,69],[232,125],[479,464],[498,361],[634,134],[580,75],[684,429],[737,132],[107,29],[935,441],[678,103],[167,99],[557,96],[966,849],[601,572],[526,378],[744,177],[890,380],[353,316],[702,98],[952,309],[283,121],[651,619],[982,814],[651,574],[220,1],[778,193],[676,104],[839,94],[164,75],[898,536],[559,453],[952,392],[914,578],[494,335],[887,803],[774,282],[288,72],[681,555],[473,21],[869,771],[754,730],[984,670],[977,111],[629,40],[639,239],[696,690],[783,768],[608,317],[387,264],[602,590],[664,657],[522,128],[535,151],[354,57],[998,526],[710,481],[827,108],[728,435],[554,547],[878,289],[362,70],[892,490],[774,86],[503,272],[626,108],[320,104],[980,80],[745,687],[835,416],[950,20],[570,6],[934,449],[290,3],[485,16],[748,384],[580,191],[759,244],[309,21],[567,213],[565,399],[646,65],[829,805],[445,254],[880,864],[786,701],[891,685],[761,260],[784,347],[891,191],[532,7],[757,293],[977,270],[641,568],[473,39],[825,60],[875,386],[863,644],[961,371],[936,457],[758,237],[622,312],[812,146],[935,726],[599,206],[414,246],[940,787],[563,202],[835,202],[454,31],[865,708],[751,454],[482,112],[787,365],[648,354],[928,656],[781,69],[475,399],[886,261],[660,654],[886,430],[983,295],[138,31],[944,223],[734,301],[901,257],[762,87],[916,54],[838,750],[570,72],[507,134],[217,109],[383,180],[841,219],[241,1],[920,316],[860,583],[929,259],[799,673],[69,54],[470,391],[828,28],[689,18],[839,654],[579,570],[833,785],[940,265],[192,181],[979,435],[933,525],[827,742],[440,132],[501,244],[802,477],[906,442],[171,70],[332,8],[684,287],[910,531],[825,518],[959,639],[952,614],[698,674],[913,508],[675,264],[204,11],[326,278],[424,155],[571,485],[348,263],[715,352],[832,584],[749,578],[888,254],[724,215],[720,154],[567,144],[794,0],[867,314],[708,224],[591,407],[798,725],[506,323],[341,323],[434,130],[949,288],[960,717],[904,441],[887,177],[667,333],[900,575],[832,258],[867,828],[566,280],[590,384],[693,348],[925,41],[514,250],[23,9],[708,449],[574,179],[794,644],[631,457],[789,692],[818,514],[394,35],[814,704],[816,106],[914,312],[847,125],[650,390],[294,30],[466,143],[831,544],[537,379],[707,489],[900,588],[540,488],[732,111],[899,332],[669,522],[963,44],[880,149],[857,40],[330,204],[939,867],[423,209],[524,491],[717,163],[773,20],[577,490],[365,239],[910,480],[838,461],[108,65],[931,344],[969,575],[843,76],[748,469],[609,340],[977,29],[642,513],[847,502],[449,23],[830,298],[731,34],[373,291],[958,498],[183,35],[383,9],[669,26],[947,805],[547,459],[858,476],[887,524],[554,410],[664,535],[630,358],[701,533],[982,123],[823,584],[943,847],[310,16],[984,91],[749,725],[831,24],[734,302],[700,97],[912,902],[65,50],[680,472],[781,611],[979,761],[251,115],[609,455],[335,61],[718,253],[821,482],[264,116],[468,369],[350,142],[822,598],[958,172],[692,509],[443,65],[853,437],[671,187],[919,564],[512,305],[526,364],[830,657],[201,39],[302,184],[924,56],[377,334],[586,439],[539,135],[961,714],[955,702],[867,330],[613,93],[604,71],[891,422],[911,558],[840,299],[880,442],[650,442],[470,383],[432,292],[926,576],[401,350],[464,397],[932,115],[836,474],[855,283],[656,252],[851,672],[588,186],[838,820],[511,329],[970,799],[312,3],[677,601],[106,70],[432,48],[639,151],[380,302],[674,197],[331,168],[438,381],[690,617],[625,560],[740,4],[573,55],[436,116],[327,106],[959,509],[527,484],[276,228],[915,560],[600,118],[852,57],[641,555],[953,884],[675,352],[738,272],[796,344],[884,232],[880,694],[384,56],[364,63],[338,15],[948,391],[860,357],[528,462],[440,272],[974,0],[383,144],[721,651],[899,646],[540,412],[996,212],[746,436],[752,512],[270,93],[757,9],[807,162],[85,18],[592,505],[834,460],[87,57],[675,570],[748,244],[819,65],[736,578],[352,185],[289,174],[893,777],[896,629],[822,323],[550,276],[625,321],[239,178],[453,153],[957,429],[464,21],[787,402],[969,235],[508,2],[647,626],[945,705],[579,387],[728,610],[619,589],[652,271],[923,785],[767,565],[871,667],[122,105],[920,812],[409,289],[980,822],[504,406],[467,189],[852,806],[814,321],[256,170],[946,654],[270,32],[393,51],[918,545],[949,185],[853,827],[873,175],[480,6],[768,229],[589,439],[975,661],[843,124],[681,398],[504,412],[242,66],[340,257],[946,383],[933,30],[910,275],[979,407],[878,818],[333,4],[567,455],[142,51],[988,74],[641,91],[808,202],[210,133],[790,108],[588,419],[659,223],[149,98],[637,372],[665,559],[539,42],[287,143],[158,133],[884,265],[319,282],[270,209],[719,385],[975,147],[411,84],[842,393],[491,206],[826,517],[919,909],[671,305],[234,77],[941,246],[977,75],[994,700],[116,35],[976,263],[910,344],[604,515],[578,399],[383,296],[374,218],[774,440],[844,721],[708,60],[636,34],[574,297],[626,492],[90,69],[500,203],[443,81],[660,397],[235,214],[776,279],[810,346],[966,26],[234,42],[407,373],[302,116],[52,9],[758,79],[870,581],[897,349],[552,548],[924,154],[259,29],[966,713],[720,160],[798,219],[942,867],[464,191],[606,466],[799,546],[443,122],[766,278],[929,762],[517,306],[953,566],[746,506],[842,205],[616,382],[745,87],[187,148],[814,494],[990,557],[452,119],[787,61],[849,23],[904,353],[703,319],[552,408],[603,110],[579,548],[770,340],[869,820],[370,304],[550,431],[563,300],[162,113],[790,314],[898,794],[450,401],[875,812],[947,542],[318,85],[901,648],[884,21],[951,345],[671,551],[297,222],[877,249],[845,548],[683,223],[739,529],[384,318],[718,328],[345,206],[573,77],[727,610],[842,763],[461,75],[772,327],[493,370],[824,693],[371,28],[482,305],[773,155],[384,249],[928,383],[875,34],[959,478],[900,196],[721,113],[777,221],[936,163],[940,874],[77,36],[467,461],[320,186],[747,284],[761,711],[576,357],[869,856],[769,607],[918,96],[827,90],[545,23],[475,182],[949,110],[635,208],[214,52],[508,14],[904,141],[162,90],[170,53],[564,346],[345,35],[796,400],[425,71],[211,98],[348,7],[642,626],[617,336],[825,599],[602,244],[998,122],[593,195],[966,169],[357,349],[843,322],[104,22],[821,104],[643,380],[647,208],[915,4],[665,477],[610,413],[785,492],[571,25],[823,586],[251,194],[686,274],[723,488],[521,386],[698,33],[400,279],[606,254],[430,393],[965,481],[506,105],[903,762],[518,265],[723,434],[798,743],[812,137],[979,249],[691,517],[947,126],[811,280],[933,146],[362,77],[658,560],[495,7],[500,58],[770,30],[956,836],[668,372],[557,103],[222,97],[902,614],[519,48],[570,439],[655,490],[708,687],[400,86],[731,620],[954,390],[441,366],[812,223],[443,352],[928,162],[634,306],[992,806],[784,37],[82,46],[525,430],[794,476],[365,46],[969,191],[371,151],[174,63],[993,602],[827,691],[738,427],[831,42],[979,593],[961,788],[598,141],[979,204],[114,54],[487,163],[717,298],[421,418],[167,30],[561,452],[630,374],[643,292],[534,311],[767,749],[343,242],[618,255],[877,442],[936,600],[738,420],[841,648],[658,610],[974,100],[947,146],[549,158],[680,630],[321,210],[436,26],[924,89],[800,605],[446,358],[892,865],[472,121],[925,499],[435,177],[820,284],[958,852],[262,111],[890,473],[942,384],[346,283],[956,817],[447,189],[455,137],[255,5],[866,851],[148,134],[725,381],[973,903],[817,711],[934,46],[971,371],[714,686],[780,505],[732,84],[441,227],[971,758],[907,395],[980,50],[810,741],[209,83],[314,212],[842,111],[570,326],[220,171],[233,184],[982,277],[94,74],[904,186],[374,196],[400,225],[959,121],[208,96],[998,477],[370,27],[454,336],[704,231],[825,27],[857,737],[942,381],[646,137],[666,506],[88,67],[618,226],[842,840],[842,528],[293,29],[662,580],[289,287],[499,252],[500,325],[899,754],[519,491],[489,126],[413,171],[916,57],[882,826],[792,3],[882,670],[838,633],[222,221],[673,299],[800,284],[418,163],[402,34],[626,118],[866,93],[871,421],[787,216],[952,295],[830,61],[446,341],[963,74],[941,655],[574,292],[163,147],[941,935],[957,254],[825,335],[874,647],[304,276],[732,562],[800,795],[212,94],[806,219],[893,312],[574,427],[957,98],[718,144],[673,643],[584,242],[624,309],[426,57],[936,676],[225,74],[851,440],[663,450],[541,449],[644,281],[929,564],[630,184],[914,468],[511,422],[566,33],[492,350],[813,506],[513,187],[898,832],[664,461],[803,449],[275,150],[954,812],[417,320],[919,271],[568,365],[778,511],[629,428],[780,119],[856,49],[842,601],[613,63],[996,589],[560,293],[85,25],[834,330],[617,255],[621,587],[664,115],[691,472],[327,3],[718,46],[995,377],[460,158],[799,708],[650,569],[324,216],[947,925],[975,621],[415,66],[615,240],[758,101],[727,38],[683,455],[733,289],[774,415],[677,22],[720,277],[419,7],[553,194],[545,2],[263,95],[606,482],[510,266],[235,173],[837,440],[698,579],[976,898],[610,129],[124,11],[460,236],[998,125],[808,45],[457,262],[796,205],[546,210],[807,328],[738,597],[571,542],[770,492],[688,391],[912,685],[955,131],[113,69],[849,451],[704,139],[780,699],[653,17],[722,588],[950,931],[768,448],[909,54],[611,251],[752,598],[272,90],[698,178],[864,750],[873,705],[988,122],[904,207],[835,677],[568,303],[992,5],[540,491],[326,159],[923,110],[943,888],[780,196],[509,315],[730,269],[459,377],[472,421],[689,57],[896,389],[852,708],[923,808],[506,85],[919,255],[929,70],[475,215],[692,481],[492,444],[439,435],[737,525],[865,215],[725,586],[747,421],[142,106],[982,623],[957,427],[835,20],[738,618],[729,345],[834,332],[720,633],[662,278],[854,497],[760,750],[923,920],[397,354],[522,457],[860,380],[519,481],[259,136],[823,691],[528,161],[395,0],[949,29],[415,358],[372,45],[759,203],[669,25],[967,507],[937,421],[925,64],[390,301],[710,497],[434,286],[791,380],[844,425],[873,239],[843,528],[949,497],[789,4],[911,778],[549,372],[698,677],[384,365],[918,104],[919,163],[532,443],[219,77],[410,124],[378,217],[972,825],[149,104],[608,13],[761,530],[440,312],[374,184],[472,316],[747,570],[672,460],[937,449],[382,368],[832,574],[701,448],[717,626],[452,451],[412,196],[634,102],[506,362],[245,84],[632,114],[933,366],[662,198],[686,619],[259,166],[451,215],[478,416],[892,742],[854,773],[45,1],[568,266],[983,179],[874,765],[542,18],[758,160],[920,516],[992,939],[986,48],[926,193],[761,15],[816,321],[659,143],[810,382],[613,132],[595,30],[787,731],[550,71],[400,335],[781,72],[290,194],[918,898],[646,363],[508,338],[390,341],[914,875],[368,13],[569,14],[639,256],[667,204],[733,215],[554,179],[390,326],[566,314],[964,829],[449,253],[819,376],[367,125],[501,145],[708,650],[958,230],[774,661],[514,343],[369,289],[886,139],[936,702],[963,59],[538,107],[376,24],[350,117],[997,994],[810,805],[620,16],[411,154],[866,399],[753,607],[781,276],[371,172],[633,436],[999,675],[765,88],[316,8],[593,191],[845,518],[850,105],[873,211],[977,3],[577,232],[826,497],[907,146],[202,23],[540,229],[980,649],[900,579],[742,393],[336,202],[400,175],[314,13],[790,42],[306,52],[907,566],[352,18],[648,139],[978,695],[779,709],[314,70],[849,477],[791,415],[884,727],[415,383],[391,292],[608,28],[498,320],[372,94],[988,813],[631,303],[949,636],[888,229],[416,87],[694,440],[610,497],[724,512],[108,52],[831,715],[479,350],[337,171],[997,215],[963,327],[685,336],[964,124],[993,668],[824,296],[914,758],[545,39],[388,106],[950,541],[837,715],[622,484],[809,656],[993,474],[634,3],[846,656],[582,517],[999,160],[447,199],[654,354],[400,203],[714,659],[933,844],[943,34],[143,72],[832,345],[835,457],[518,215],[819,668],[267,226],[346,262],[431,356],[384,2],[200,16],[974,758],[304,110],[290,125],[677,146],[751,651],[955,685],[691,348],[576,183],[816,385],[608,481],[877,578],[502,369],[323,219],[537,511],[646,355],[356,92],[279,142],[743,39],[888,550],[850,384],[291,116],[484,284],[715,577],[548,538],[680,628],[839,439],[576,118],[765,553],[543,435],[818,788],[923,201],[453,164],[781,179],[299,137],[835,301],[660,242],[677,312],[691,188],[594,52],[759,374],[583,78],[792,647],[621,236],[388,171],[165,152],[846,750],[909,247],[493,436],[274,236],[904,231],[503,58],[961,724],[967,642],[623,129],[806,568],[723,511],[994,22],[824,467],[767,205],[488,343],[605,548],[837,48],[948,590],[758,217],[267,176],[638,153],[997,807],[588,123],[585,473],[877,607],[543,71],[890,544],[660,6],[846,675],[797,35],[563,76],[346,207],[888,214],[758,174],[775,346],[954,831],[754,53],[477,193],[999,61],[295,155],[727,9],[986,979],[928,266],[294,262],[781,644],[981,902],[392,378],[936,744],[264,153],[888,500],[476,62],[921,91],[662,625],[359,350],[588,139],[612,549],[940,37],[899,21],[968,840],[813,513],[488,46],[776,144],[387,148],[926,144],[774,82],[603,156],[788,479],[182,98],[825,199],[723,252],[291,280],[172,120],[604,408],[554,528],[895,463],[904,356],[898,203],[394,31],[647,146],[249,36],[433,430],[476,14],[353,211],[959,380],[332,277],[767,555],[958,121],[960,365],[998,555],[683,52],[983,837],[742,114],[899,695],[307,10],[948,802],[753,8],[921,529],[484,114],[67,54],[942,884],[429,321],[219,116],[868,769],[346,110],[600,155],[859,662],[725,534],[919,376],[292,262],[523,84],[532,289],[932,806],[734,730],[939,617],[590,523],[753,386],[732,223],[358,164],[477,288],[993,326],[876,713],[744,693],[886,23],[846,344],[789,298],[596,488],[692,484],[233,133],[513,224],[582,486],[468,426],[928,153],[551,451],[231,224],[715,31],[387,378],[613,358],[547,134],[696,29],[955,286],[984,200],[644,244],[533,3],[467,40],[641,496],[227,135],[744,332],[627,86],[987,867],[955,472],[944,14],[979,354],[231,152],[190,41],[793,731],[609,50],[168,85],[507,481],[695,423],[766,379],[139,79],[948,611],[822,150],[885,360],[888,706],[933,830],[383,311],[974,321],[528,218],[573,236],[962,521],[112,89],[732,140],[238,118],[605,205],[725,697],[989,331],[536,261],[349,35],[548,79],[855,248],[517,325],[637,235],[919,510],[637,170],[644,86],[600,347],[941,768],[636,85],[497,252],[766,326],[842,589],[908,401],[871,397],[689,194],[770,462],[459,339],[367,230],[773,374],[701,252],[910,283],[257,199],[947,748],[623,371],[364,218],[818,184],[769,695],[946,328],[722,515],[883,100],[985,441],[887,410],[315,310],[606,213],[703,376],[932,108],[877,583],[575,489],[677,132],[459,194],[774,357],[744,599],[898,543],[940,924],[915,230],[980,793],[776,649],[756,28],[613,258],[763,171],[650,221],[646,185],[776,240],[375,160],[976,237],[200,39],[845,477],[947,404],[787,32],[957,742],[310,57],[944,8],[747,458],[888,258],[995,897],[845,626],[891,384],[632,319],[854,384],[429,182],[661,356],[920,881],[947,39],[826,44],[171,138],[177,159],[603,329],[845,14],[327,324],[431,142],[802,725],[776,151],[519,140],[824,66],[246,159],[378,207],[694,419],[957,409],[237,178],[914,291],[542,312],[769,61],[632,537],[969,843],[848,134],[820,718],[484,138],[440,20],[926,19],[894,765],[841,52],[697,419],[524,473],[357,54],[987,910],[728,134],[875,370],[450,423],[578,565],[388,232],[772,577],[291,222],[382,29],[893,289],[575,147],[480,60],[926,178],[633,149],[875,207],[814,13],[757,270],[193,162],[683,401],[386,345],[145,78],[449,87],[563,176],[911,348],[964,468],[951,280],[807,613],[680,114],[747,165],[553,285],[912,313],[887,541],[719,542],[730,56],[544,525],[372,275],[939,326],[707,229],[922,261],[676,284],[600,337],[173,15],[371,248],[761,448],[650,341],[385,336],[836,63],[450,23],[924,296],[546,75],[90,63],[918,452],[957,607],[936,230],[892,666],[640,57],[797,593],[824,264],[866,354],[830,737],[600,593],[297,217],[988,620],[791,642],[998,545],[341,176],[978,159],[724,283],[870,460],[695,576],[923,341],[954,263],[288,47],[665,589],[795,20],[917,660],[453,436],[492,47],[819,191],[687,315],[390,37],[257,237],[335,50],[587,503],[270,212],[199,148],[878,706],[691,405],[785,327],[883,202],[875,136],[979,793],[875,563],[607,120],[482,269],[994,257],[546,182],[858,16],[435,412],[544,456],[727,616],[724,149],[906,654],[958,635],[408,184],[637,41],[995,930],[610,219],[742,529],[959,376],[197,176],[156,5],[660,268],[149,146],[920,416],[867,864],[885,506],[857,24],[934,723],[796,420],[689,92],[779,285],[473,251],[607,70],[907,638],[840,799],[424,57],[921,240],[708,458],[714,655],[458,114],[812,745],[535,265],[856,97],[616,420],[462,186],[321,168],[828,390],[864,855],[829,788],[496,66],[968,913],[757,308],[521,514],[595,48],[291,23],[793,791],[399,143],[391,276],[899,431],[576,397],[703,678],[893,89],[595,536],[676,534],[387,239],[372,67],[291,185],[667,666],[732,129],[151,16],[929,820],[499,311],[715,565],[933,385],[926,37],[573,563],[638,446],[988,680],[648,459],[802,579],[411,158],[445,46],[134,6],[923,675],[964,163],[736,596],[608,335],[227,148],[752,619],[234,149],[218,70],[801,19],[644,390],[105,17],[722,135],[433,158],[221,7],[970,93],[236,124],[898,572],[314,190],[777,138],[940,664],[836,759],[860,501],[819,136],[834,754],[791,602],[751,520],[976,188],[501,454],[631,201],[951,56],[788,53],[936,722],[403,241],[837,644],[907,305],[979,122],[437,334],[816,390],[664,536],[723,510],[214,16],[493,23],[584,281],[717,153],[661,86],[823,12],[782,415],[529,378],[789,163],[611,204],[852,201],[931,845],[741,70],[491,18],[825,669],[842,804],[199,119],[376,254],[666,91],[503,153],[729,17],[277,148],[965,466],[890,298],[882,742],[927,345],[826,632],[762,276],[211,167],[445,225],[661,441],[498,173],[838,804],[711,467],[625,494],[884,684],[698,643],[928,307],[499,342],[720,303],[646,309],[860,588],[364,5],[349,155],[970,855],[787,585],[846,616],[811,405],[675,665],[937,621],[189,93],[367,73],[970,936],[440,25],[831,468],[261,80],[496,423],[744,184],[868,524],[843,586],[940,856],[983,329],[503,385],[751,638],[159,134],[326,100],[941,40],[989,494],[732,207],[215,192],[817,597],[727,161],[888,111],[389,117],[735,651],[176,48],[465,98],[248,105],[672,562],[695,397],[660,611],[946,933],[541,239],[429,25],[465,385],[247,46],[892,406],[251,231],[340,224],[915,410],[762,739],[486,43],[644,98],[619,27],[915,352],[491,193],[247,18],[647,161],[608,89],[337,21],[875,431],[772,94],[888,70],[859,203],[687,556],[672,420],[814,666],[484,337],[878,661],[995,172],[566,174],[379,247],[639,173],[609,208],[208,177],[963,394],[711,407],[338,215],[353,77],[540,328],[942,537],[694,327],[975,879],[926,128],[537,55],[563,273],[876,674],[406,46],[846,287],[990,629],[916,811],[752,312],[371,34],[789,184],[994,532],[571,94],[626,355],[219,11],[759,569],[357,39],[809,615],[422,262],[982,173],[558,145],[866,687],[720,604],[614,96],[833,501],[666,143],[697,606],[244,165],[809,114],[677,376],[834,310],[766,696],[962,271],[175,132],[557,548],[426,217],[535,72],[374,342],[741,451],[908,852],[808,54],[578,520],[364,50],[224,127],[486,359],[975,132],[935,642],[994,250],[801,727],[461,329],[663,614],[742,618],[916,720],[590,240],[246,36],[425,242],[656,171],[980,929],[941,641],[594,112],[874,224],[204,195],[876,134],[701,21],[217,128],[690,417],[569,38],[941,490],[772,13],[268,44],[195,160],[581,216],[676,85],[736,686],[886,731],[285,54],[435,292],[987,827],[721,522],[577,70],[877,289],[773,105],[488,0],[455,41],[974,871],[955,791],[566,73],[415,404],[317,19],[954,882],[802,309],[695,542],[467,261],[513,133],[662,374],[128,111],[468,364],[828,100],[677,322],[646,391],[753,302],[836,69],[797,96],[281,110],[489,184],[728,425],[969,37],[483,14],[863,761],[673,36],[904,149],[669,556],[193,173],[824,565],[934,477],[297,269],[861,779],[491,133],[525,166],[828,81],[894,10],[180,152],[560,472],[782,131],[105,42],[945,850],[974,59],[315,150],[594,102],[540,480],[985,258],[998,798],[955,634],[457,126],[848,435],[600,113],[146,73],[801,208],[909,278],[451,250],[312,134],[602,574],[915,754],[531,205],[732,702],[665,324],[553,424],[698,82],[748,106],[816,150],[672,475],[196,182],[856,785],[898,630],[741,632],[524,86],[480,206],[829,597],[756,177],[777,364],[655,43],[428,293],[503,274],[313,26],[389,191],[709,141],[835,382],[673,196],[611,216],[667,167],[544,115],[409,354],[677,109],[443,32],[602,217],[926,889],[531,67],[702,122],[629,562],[618,296],[886,391],[358,160],[922,383],[710,1],[456,264],[818,683],[264,62],[726,296],[714,410],[461,243],[947,716],[254,219],[725,248],[126,0],[964,183],[502,203],[461,389],[472,4],[304,291],[984,213],[652,202],[957,210],[456,43],[547,443],[475,246],[559,47],[566,544],[860,447],[702,538],[967,299],[933,155],[632,92],[227,188],[704,67],[387,185],[759,181],[670,150],[216,22],[778,442],[619,296],[845,207],[878,792],[915,871],[941,555],[900,292],[463,212],[923,914],[91,16],[739,682],[815,542],[755,322],[320,14],[763,464],[702,112],[464,375],[752,704],[316,111],[628,497],[676,246],[658,96],[967,923],[530,26],[270,264],[386,127],[477,372],[620,253],[750,340],[518,174],[565,436],[648,8],[261,239],[367,341],[336,50],[114,78],[491,282],[660,417],[733,498],[996,258],[973,683],[829,682],[434,46],[321,77],[835,42],[332,242],[366,345],[898,350],[871,482],[441,104],[781,195],[638,513],[691,635],[298,245],[448,362],[140,82],[335,329],[495,74],[319,205],[598,567],[500,439],[439,144],[515,60],[412,36],[992,279],[715,524],[959,549],[978,888],[342,246],[673,399],[702,157],[689,74],[748,486],[985,673],[303,233],[647,430],[556,290],[553,324],[913,768],[952,744],[605,336],[740,709],[860,767],[195,9],[696,481],[447,16],[705,292],[841,550],[863,178],[970,209],[765,148],[228,14],[977,661],[423,21],[495,384],[451,41],[799,396],[771,745],[123,96],[911,316],[821,213],[721,348],[644,529],[724,569],[774,652],[702,249],[401,124],[553,525],[626,92],[21,0],[119,91],[993,276],[361,305],[406,283],[428,331],[966,205],[342,95],[769,517],[867,183],[949,6],[828,25],[822,470],[863,809],[895,305],[815,432],[599,33],[856,239],[524,356],[773,383],[515,223],[401,108],[602,595],[96,73],[661,610],[922,124],[655,350],[650,438],[310,50],[527,380],[699,239],[571,108],[777,102],[507,313],[969,947],[876,102],[723,665],[882,529],[545,320],[697,192],[451,296],[754,362],[242,167],[743,642],[878,767],[497,46],[441,139],[428,29],[634,238],[493,245],[675,437],[985,850],[415,31],[437,296],[434,223],[909,348],[739,72],[975,766],[895,279],[495,114],[970,122],[649,207],[556,415],[570,529],[871,153],[395,191],[600,489],[724,447],[948,656],[925,758],[787,643],[845,292],[200,74],[597,11],[825,591],[774,326],[884,822],[488,91],[787,17],[930,908],[364,150],[456,103],[860,642],[965,487],[976,968],[576,333],[548,311],[590,158],[488,459],[588,469],[729,276],[992,181],[514,454],[885,32],[361,350],[640,531],[233,46],[715,138],[963,260],[928,735],[546,337],[403,11],[379,30],[894,110],[331,203],[942,155],[782,301],[815,526],[593,301],[760,348],[601,213],[968,122],[610,417],[940,405],[859,57],[594,574],[305,176],[429,254],[364,12],[231,55],[721,540],[917,796],[397,392],[670,177],[502,160],[605,568],[537,302],[717,625],[997,893],[739,108],[681,491],[897,498],[915,328],[679,288],[746,11],[808,505],[550,482],[690,145],[234,197],[435,259],[116,59],[629,186],[213,206],[792,382],[320,116],[649,400],[326,267],[722,136],[92,69],[983,898],[794,133],[950,834],[170,0],[847,322],[849,392],[840,202],[210,80],[731,565],[753,145],[809,334],[814,796],[148,23],[561,96],[837,132],[520,306],[943,276],[615,303],[830,140],[884,355],[485,61],[344,141],[259,132],[957,908],[710,315],[233,226],[275,261],[994,502],[759,240],[847,645],[666,80],[722,711],[639,579],[669,69],[907,263],[329,36],[773,183],[617,149],[598,149],[975,346],[847,672],[874,132],[970,236],[578,309],[64,7],[968,275],[963,556],[847,234],[830,111],[482,257],[358,299],[975,509],[587,100],[476,412],[941,701],[296,227],[638,378],[395,371],[789,257],[624,420],[733,345],[810,709],[599,113],[855,759],[945,508],[913,528],[923,89],[948,111],[946,848],[496,257],[868,608],[898,126],[920,330],[694,96],[970,662],[923,831],[516,178],[218,186],[820,785],[990,444],[816,222],[705,111],[522,385],[909,446],[421,68],[910,168],[714,12],[981,749],[532,470],[563,118],[367,107],[248,238],[958,418],[530,441],[576,401],[495,380],[766,198],[740,392],[879,606],[817,787],[861,857],[941,230],[943,464],[856,740],[591,94],[406,371],[672,127],[751,650],[559,235],[620,417],[676,596],[560,350],[841,328],[941,602],[589,45],[664,595],[515,479],[645,82],[161,18],[945,503],[873,461],[319,47],[943,642],[855,564],[337,246],[851,688],[854,185],[498,113],[509,68],[351,282],[922,863],[858,601],[951,700],[550,345],[380,154],[904,290],[533,139],[825,659],[918,647],[916,607],[685,358],[946,757],[829,763],[622,398],[393,5],[952,814],[136,47],[649,407],[751,294],[844,24],[793,501],[304,240],[912,246],[834,516],[355,273],[980,700],[883,690],[181,156],[790,76],[486,333],[703,471],[255,37],[963,700],[461,64],[142,26],[950,13],[425,363],[687,126],[821,72],[843,463],[571,168],[807,80],[506,353],[874,271],[258,230],[438,73],[951,832],[877,716],[317,79],[668,319],[816,102],[550,52],[517,55],[904,222],[316,168],[879,190],[574,431],[616,199],[946,115],[942,361],[585,387],[684,196],[686,680],[480,235],[615,375],[818,412],[229,163],[922,731],[379,70],[975,699],[800,627],[843,808],[753,748],[815,218],[673,44],[973,574],[821,112],[773,745],[758,593],[812,164],[640,53],[811,91],[969,766],[915,804],[802,519],[780,553],[998,979],[944,733],[961,267],[466,312],[209,55],[654,3],[502,115],[762,658],[745,574],[851,385],[174,70],[731,707],[864,146],[193,171],[719,613],[336,242],[402,52],[869,419],[958,836],[661,132],[740,502],[932,756],[627,351],[742,450],[910,128],[458,280],[530,411],[256,51],[909,750],[968,125],[626,606],[566,521],[900,782],[547,81],[647,144],[653,477],[620,245],[690,166],[758,462],[985,317],[297,97],[985,106],[627,286],[811,205],[715,455],[599,506],[729,289],[452,403],[872,189],[922,708],[936,498],[813,592],[954,165],[722,13],[974,751],[561,54],[518,38],[941,866],[821,14],[820,793],[787,184],[780,92],[336,40],[554,461],[847,114],[165,2],[453,267],[832,352],[759,274],[864,274],[246,8],[43,1],[823,278],[834,680],[557,217],[845,585],[724,381],[723,87],[852,241],[700,267],[666,577],[312,162],[843,724],[342,337],[908,90],[573,183],[733,214],[572,204],[880,633],[797,185],[827,440],[247,2],[630,441],[850,172],[904,699],[560,504],[678,615],[383,265],[459,137],[686,226],[885,289],[894,429],[678,541],[992,788],[646,239],[764,252],[638,168],[627,241],[836,379],[654,134],[179,38],[315,39],[624,610],[800,416],[328,57],[687,671],[943,47],[592,176],[737,540],[325,202],[820,142],[764,732],[858,435],[808,111],[780,545],[674,295],[933,747],[94,78],[924,323],[317,18],[454,340],[784,732],[843,437],[940,509],[926,472],[635,11],[607,84],[120,44],[948,173],[537,319],[808,504],[769,500],[448,17],[549,174],[530,9],[721,334],[291,246],[621,393],[825,5],[867,179],[755,92],[954,237],[697,476],[927,331],[141,33],[917,347],[889,747],[483,388],[799,495],[407,279],[480,42],[896,396],[826,757],[963,929],[385,200],[685,669],[946,192],[721,548],[883,808],[546,418],[982,561],[670,447],[898,654],[535,90],[199,60],[964,940],[608,207],[576,170],[977,471],[692,519],[789,597],[407,63],[870,762],[630,534],[852,404],[174,79],[961,378],[687,580],[276,44],[708,250],[817,312],[198,93],[785,696],[805,445],[573,305],[721,44],[813,617],[981,732],[859,273],[908,70],[935,786],[268,66],[968,406],[243,197],[284,255],[686,121],[961,570],[678,609],[416,13],[438,396],[849,76],[760,450],[710,457],[954,12],[708,245],[122,106],[562,166],[953,801],[511,449],[829,255],[934,67],[704,98],[854,400],[122,86],[755,288],[544,370],[900,542],[687,277],[672,273],[617,226],[365,334],[997,197],[647,202],[861,490],[274,168],[642,139],[692,289],[629,581],[703,440],[690,220],[823,87],[812,98],[519,58],[696,509],[417,227],[903,137],[641,194],[577,42],[858,152],[817,682],[695,472],[130,70],[898,45],[725,171],[465,154],[148,42],[751,583],[743,107],[847,315],[992,758],[273,182],[576,534],[331,124],[437,362],[960,829],[318,14],[386,83],[619,253],[828,154],[823,818],[940,801],[553,495],[884,390],[955,381],[273,60],[732,312],[804,68],[990,83],[763,235],[215,35],[986,621],[986,929],[985,917],[957,451],[621,484],[453,351],[482,36],[409,358],[262,45],[653,204],[552,356],[345,127],[342,63],[608,493],[776,452],[575,368],[305,75],[462,276],[271,96],[110,35],[615,259],[721,191],[642,75],[514,143],[749,49],[959,952],[961,770],[959,93],[594,54],[661,474],[579,467],[877,301],[748,320],[573,298],[612,170],[480,166],[977,398],[881,319],[835,165],[692,346],[485,174],[697,62],[172,161],[671,563],[892,312],[752,520],[720,281],[905,383],[340,217],[434,329],[979,485],[824,582],[713,394],[859,794],[805,7],[723,77],[536,153],[447,151],[704,698],[986,892],[798,268],[520,78],[846,32],[413,347],[714,271],[748,590],[239,204],[933,846],[644,74],[913,517],[202,166],[982,642],[934,811],[688,523],[287,185],[840,80],[801,415],[855,578],[926,521],[838,684],[912,583],[419,286],[555,216],[434,100],[414,310],[913,183],[968,619],[85,72],[540,382],[537,16],[755,693],[805,50],[45,28],[339,259],[459,67],[844,578],[707,665],[834,250],[264,261],[376,360],[364,95],[826,518],[437,169],[334,243],[542,210],[798,432],[452,90],[264,161],[707,527],[897,613],[948,528],[879,534],[648,364],[850,827],[151,50],[398,261],[688,284],[327,136],[290,33],[344,47],[464,259],[648,448],[905,280],[141,112],[701,59],[850,794],[691,626],[579,104],[194,80],[829,13],[424,288],[559,467],[865,578],[839,524],[923,190],[722,66],[304,294],[72,68],[905,478],[458,337],[987,124],[970,336],[551,264],[554,300],[646,531],[457,348],[472,194],[396,321],[868,373],[656,349],[796,316],[840,773],[750,704],[874,825],[605,220],[727,586],[608,271],[848,840],[265,197],[548,463],[841,14],[588,95],[874,159],[836,381],[685,456],[810,504],[742,612],[864,227],[888,675],[690,598],[761,352],[618,609],[761,544],[552,17],[102,77],[884,798],[297,266],[467,227],[847,541],[542,120],[644,572],[392,274],[327,262],[405,289],[715,585],[438,109],[403,253],[934,124],[921,494],[889,157],[627,78],[508,442],[121,82],[604,424],[925,9],[756,5],[903,322],[610,401],[646,99],[912,558],[258,220],[914,901],[761,398],[980,513],[933,41],[736,640],[875,57],[893,287],[814,152],[498,81],[971,7],[859,205],[903,438],[891,502],[653,573],[665,463],[727,720],[781,104],[499,122],[910,211],[910,697],[869,62],[615,553],[713,142],[825,456],[960,137],[346,132],[758,461],[911,341],[662,177],[620,569],[304,63],[453,194],[965,90],[833,731],[306,53],[905,544],[552,261],[660,291],[763,25],[667,343],[877,120],[923,267],[642,539],[929,542],[707,471],[966,564],[983,51],[647,47],[896,324],[665,85],[560,157],[560,439],[892,419],[442,141],[871,165],[826,99],[802,614],[705,414],[244,122],[751,640],[823,702],[731,502],[829,30],[590,247],[460,102],[378,175],[920,919],[503,29],[227,125],[389,258],[981,89],[776,568],[938,638],[753,462],[860,754],[864,81],[115,73],[731,689],[438,267],[983,867],[212,102],[855,40],[959,800],[920,303],[451,290],[664,146],[453,124],[997,813],[439,412],[410,340],[518,210],[988,958],[508,226],[831,482],[920,408],[832,537],[971,128],[752,627],[621,139],[731,543],[989,252],[802,433],[700,537],[735,393],[705,199],[883,859],[76,28],[519,53],[581,70],[796,681],[841,332],[287,153],[849,133],[193,112],[116,53],[746,220],[859,840],[873,861],[535,308],[580,219],[182,142],[792,434],[961,202],[440,210],[728,676],[753,95],[722,361],[914,350],[399,284],[569,112],[563,367],[534,40],[464,98],[914,46],[848,485],[780,275],[876,279],[928,18],[463,259],[780,437],[778,89],[684,654],[227,5],[363,184],[352,206],[572,270],[939,665],[817,544],[966,866],[572,145],[783,227],[896,355],[711,149],[815,26],[480,10],[723,658],[616,72],[799,381],[738,434],[882,92],[959,131],[556,446],[399,314],[796,673],[701,210],[840,344],[852,674],[870,656],[674,5],[681,663],[457,310],[624,4],[201,41],[874,315],[742,623],[716,648],[853,164],[857,555],[852,581],[279,188],[862,63],[631,611],[759,119],[900,289],[720,524],[935,484],[768,627],[453,213],[692,517],[629,143],[875,81],[246,221],[532,114],[310,170],[702,182],[899,442],[414,300],[962,153],[958,287],[495,332],[423,83],[746,432],[871,590],[295,149],[972,528],[666,68],[453,94],[877,685],[977,496],[672,523],[870,682],[817,531],[949,491],[502,356],[938,321],[621,76],[167,54],[705,519],[380,275],[967,950],[954,63],[306,237],[582,48],[759,576],[995,175],[694,193],[907,860],[237,9],[810,15],[932,706],[733,526],[915,878],[966,612],[448,34],[792,300],[398,137],[931,448],[889,44],[798,477],[913,485],[698,499],[616,411],[630,272],[434,413],[932,309],[698,16],[887,232],[685,438],[529,362],[789,191],[938,394],[675,235],[669,316],[623,256],[669,68],[639,99],[905,761],[449,405],[146,118],[187,152],[804,650],[827,198],[911,389],[884,75],[850,452],[886,440],[156,134],[596,338],[613,551],[946,54],[404,41],[494,230],[905,473],[706,680],[822,736],[135,34],[933,539],[475,269],[687,386],[697,627],[295,167],[397,151],[990,819],[925,136],[757,360],[140,107],[576,196],[915,448],[794,574],[754,636],[415,228],[757,327],[498,474],[357,157],[258,239],[633,382],[269,218],[412,336],[810,286],[904,569],[537,341],[869,402],[302,232],[587,167],[825,87],[753,340],[627,497],[878,47],[756,573],[479,367],[516,16],[828,64],[723,661],[928,43],[858,95],[929,332],[397,84],[755,66],[749,690],[841,781],[447,59],[912,94],[769,522],[926,831],[819,713],[883,294],[680,490],[257,15],[769,752],[906,832],[306,41],[752,127],[825,587],[670,62],[990,362],[814,429],[727,490],[169,66],[961,884],[494,160],[373,102],[499,3],[540,7],[261,152],[775,146],[918,9],[855,789],[339,309],[945,56],[964,301],[470,340],[997,858],[713,635],[610,596],[823,134],[731,639],[944,807],[557,414],[995,56],[745,299],[619,480],[648,101],[944,15],[768,670],[873,361],[907,545],[770,752],[47,37],[760,239],[758,156],[131,11],[822,758],[195,152],[379,334],[406,373],[414,201],[465,39],[650,482],[723,313],[891,107],[781,514],[789,556],[590,289],[936,729],[178,5],[587,274],[326,260],[522,228],[402,192],[583,577],[844,667],[525,229],[155,14],[912,780],[911,205],[776,119],[590,136],[998,312],[490,365],[993,240],[226,76],[673,128],[931,303],[994,667],[744,414],[677,439],[566,560],[831,153],[354,190],[633,296],[980,57],[948,904],[928,717],[157,91],[984,617],[229,221],[407,205],[941,656],[325,1],[589,575],[897,186],[748,260],[669,113],[827,395],[402,200],[876,314],[663,296],[872,424],[885,795],[871,373],[870,241],[768,695],[891,830],[943,302],[294,34],[765,453],[255,71],[970,909],[852,305],[709,26],[735,604],[592,308],[876,477],[293,140],[248,93],[962,656],[851,360],[785,194],[988,420],[889,663],[595,17],[568,449],[653,404],[872,726],[487,74],[423,211],[485,179],[976,926],[903,787],[652,307],[840,623],[182,88],[853,767],[661,105],[315,93],[525,412],[991,899],[959,589],[678,118],[765,239],[329,279],[932,415],[737,419],[601,556],[711,369],[780,321],[550,72],[936,262],[835,99],[664,464],[319,127],[604,379],[234,89],[608,176],[716,498],[284,112],[777,192],[667,255],[704,62],[455,393],[868,538],[781,575],[854,131],[543,265],[966,476],[842,134],[181,7],[63,1],[874,80],[944,918],[631,316],[768,674],[489,368],[346,112],[885,499],[807,95],[914,847],[704,701],[806,692],[566,453],[523,129],[507,460],[510,274],[588,154],[777,510],[404,233],[711,468],[911,166],[798,491],[682,538],[891,380],[573,384],[571,413],[908,79],[767,344],[499,479],[460,374],[760,360],[77,32],[394,144],[565,190],[476,392],[967,946],[759,341],[959,378],[220,210],[732,133],[256,29],[392,182],[146,23],[761,651],[914,899],[743,585],[781,160],[96,66],[684,618],[804,610],[769,17],[494,446],[948,844],[622,545],[962,507],[922,94],[806,87],[873,220],[832,732],[817,115],[671,430],[373,267],[189,162],[899,744],[894,892],[792,310],[566,120],[550,160],[938,274],[967,800],[951,706],[715,147],[647,91],[972,388],[622,54],[784,393],[837,16],[526,507],[851,658],[924,559],[459,119],[865,776],[271,189],[317,190],[795,42],[757,691],[793,762],[957,784],[996,171],[934,755],[248,99],[692,241],[376,90],[930,901],[771,568],[976,493],[625,562],[737,35],[968,295],[274,152],[188,16],[918,838],[989,176],[419,51],[980,551],[931,741],[897,234],[724,262],[899,773],[656,329],[448,373],[971,186],[521,145],[913,189],[988,462],[875,350],[517,125],[167,43],[773,499],[834,661],[903,559],[614,141],[533,152],[714,487],[485,285],[972,111],[970,408],[849,689],[753,443],[374,353],[312,105],[854,474],[604,119],[223,59],[718,386],[982,866],[859,347],[549,401],[597,250],[817,637],[997,800],[977,736],[457,111],[925,118],[574,326],[978,486],[899,681],[858,193],[924,93],[805,245],[814,501],[719,297],[636,352],[711,143],[190,143],[771,36],[902,286],[197,111],[956,223],[865,845],[467,330],[737,55],[925,683],[358,114],[913,131],[882,445],[963,244],[284,256],[452,166],[601,591],[968,183],[872,654],[923,562],[881,694],[651,225],[957,174],[623,590],[759,323],[733,262],[734,311],[399,58],[381,150],[867,857],[472,419],[862,70],[229,0],[268,69],[605,42],[304,166],[820,641],[878,164],[333,299],[559,52],[666,328],[969,424],[521,348],[630,301],[947,508],[959,937],[544,94],[625,387],[732,684],[212,9],[886,593],[802,2],[840,421],[671,369],[776,756],[850,295],[355,349],[476,213],[615,128],[954,884],[560,308],[874,297],[770,369],[788,35],[853,628],[745,394],[624,512],[632,2],[676,437],[489,168],[861,25],[928,93],[499,422],[335,154],[946,600],[401,344],[963,716],[442,45],[627,109],[817,781],[984,6],[525,67],[892,496],[932,132],[342,250],[671,325],[363,102],[532,191],[353,288],[927,785],[933,251],[591,516],[430,279],[874,815],[491,211],[709,227],[746,344],[627,549],[790,534],[791,395],[861,660],[627,408],[928,335],[554,267],[839,157],[571,284],[556,475],[743,242],[765,401],[316,220],[595,146],[178,168],[977,399],[953,297],[353,120],[938,703],[589,218],[835,641],[864,306],[614,430],[510,281],[593,459],[676,389],[428,30],[476,107],[924,330],[833,830],[528,371],[740,361],[689,170],[915,732],[480,67],[794,195],[961,942],[692,664],[354,300],[808,520],[170,73],[664,517],[424,0],[844,647],[438,207],[869,496],[698,139],[992,674],[556,110],[949,236],[777,410],[306,272],[841,272],[854,262],[688,464],[872,526],[928,903],[530,334],[932,666],[796,141],[738,2],[823,221],[943,534],[572,310],[884,551],[460,319],[964,777],[462,30],[559,132],[343,228],[828,27],[485,74],[419,354],[969,600],[603,445],[591,570],[274,138],[721,374],[773,758],[479,460],[779,768],[676,164],[385,166],[337,170],[998,71],[700,556],[499,52],[618,137],[715,373],[767,719],[896,452],[469,124],[738,49],[900,885],[565,388],[727,620],[838,807],[708,140],[562,262],[623,486],[584,136],[643,392],[449,287],[581,336],[758,559],[639,529],[911,186],[427,396],[363,171],[840,533],[591,213],[26,14],[804,222],[977,783],[345,169],[183,146],[156,51],[682,333],[941,862],[255,194],[871,63],[686,641],[987,391],[393,67],[592,566],[832,786],[502,283],[952,503],[636,603],[635,318],[200,168],[609,106],[680,63],[766,513],[304,109],[891,491],[411,410],[412,313],[833,679],[338,126],[504,261],[668,210],[861,328],[562,183],[233,159],[703,355],[715,170],[923,137],[712,164],[152,54],[856,810],[97,15],[681,486],[592,221],[448,368],[808,335],[388,333],[464,113],[416,44],[868,270],[314,121],[271,62],[250,240],[893,121],[360,326],[562,224],[573,281],[964,707],[252,162],[838,116],[425,115],[599,45],[763,518],[979,73],[346,173],[611,272],[749,27],[971,208],[683,596],[766,105],[877,404],[832,700],[523,478],[954,467],[366,220],[772,125],[978,281],[972,373],[520,240],[595,82],[433,253],[822,48],[951,826],[942,260],[871,416],[507,254],[569,384],[169,38],[648,134],[756,725],[131,69],[998,239],[308,49],[520,428],[984,798],[822,208],[694,547],[885,7],[453,395],[590,459],[602,400],[961,477],[479,200],[379,124],[939,854],[448,219],[770,129],[432,70],[671,178],[840,481],[975,354],[832,218],[674,133],[845,823],[771,512],[650,587],[675,96],[818,446],[800,8],[431,418],[838,186],[903,204],[627,556],[899,721],[450,64],[392,144],[514,219],[197,91],[970,106],[218,156],[514,265],[727,697],[869,597],[534,302],[596,545],[929,791],[733,267],[317,255],[783,169],[418,195],[397,358],[172,113],[744,575],[843,715],[556,384],[481,220],[810,455],[522,78],[787,527],[771,602],[949,701],[719,170],[592,162],[522,169],[844,473],[837,115],[994,470],[602,490],[789,694],[961,764],[760,94],[996,918],[541,506],[917,465],[974,342],[708,37],[813,138],[864,640],[599,285],[994,844],[272,27],[767,0],[764,40],[805,307],[899,88],[711,508],[646,469],[294,102],[961,735],[685,116],[429,105],[680,353],[921,104],[792,116],[748,316],[831,603],[903,594],[998,87],[898,697],[782,209],[330,282],[359,125],[453,225],[942,724],[851,844],[660,79],[430,197],[507,218],[752,98],[590,189],[733,128],[462,378],[662,562],[798,166],[350,148],[429,231],[770,547],[850,302],[855,401],[656,568],[428,309],[536,15],[109,9],[989,899],[305,44],[576,214],[415,114],[678,418],[360,98],[834,583],[569,551],[449,43],[703,647],[268,192],[265,68],[931,355],[928,25],[760,401],[537,169],[645,234],[970,865],[280,120],[954,787],[923,371],[720,63],[681,616],[740,228],[975,272],[799,122],[828,286],[600,331],[227,63],[462,319],[911,811],[707,321],[972,850],[541,1],[292,62],[543,22],[819,576],[858,54],[718,456],[421,301],[550,540],[241,99],[883,308],[636,60],[825,34],[605,445],[657,199],[631,573],[924,207],[585,475],[924,832],[673,167],[357,267],[971,672],[465,67],[930,520],[505,61],[453,330],[878,128],[755,748],[967,669],[852,443],[547,85],[365,126],[564,462],[359,294],[440,9],[978,440],[626,157],[781,503],[941,437],[775,336],[914,244],[701,687],[507,296],[269,175],[528,39],[350,128],[734,503],[189,166],[989,974],[518,249],[657,119],[821,746],[661,646],[378,173],[405,379],[393,0],[576,89],[444,37],[263,248],[936,799],[350,212],[740,537],[825,737],[938,667],[536,8],[431,267],[946,605],[946,587],[753,554],[660,603],[490,467],[291,287],[679,499],[807,585],[602,100],[823,661],[371,89],[903,809],[472,436],[726,187],[721,241],[849,576],[356,125],[377,38],[614,271],[607,536],[833,555],[543,49],[218,103],[776,396],[997,569],[539,191],[329,102],[321,90],[998,750],[717,53],[875,631],[753,623],[582,539],[571,269],[475,435],[639,294],[802,600],[724,720],[553,58],[928,212],[752,434],[533,391],[767,31],[819,580],[984,771],[756,172],[892,278],[945,83],[652,351],[46,26],[875,44],[275,234],[669,648],[794,551],[829,351],[622,251],[924,854],[573,411],[421,11],[975,277],[980,114],[593,557],[321,153],[900,815],[718,700],[603,573],[642,196],[491,189],[504,450],[786,766],[829,16],[824,193],[704,75],[562,5],[631,117],[639,137],[426,409],[425,123],[620,353],[515,217],[488,442],[774,663],[218,195],[158,149],[770,473],[206,139],[273,39],[888,283],[295,263],[440,333],[925,647],[470,318],[715,648],[614,100],[753,414],[947,98],[774,659],[667,574],[893,846],[967,565],[799,616],[121,96],[639,69],[762,635],[979,728],[280,140],[685,637],[910,563],[800,621],[865,288],[276,211],[828,268],[528,323],[858,393],[247,163],[586,87],[420,70],[373,81],[222,89],[926,533],[368,230],[910,223],[689,54],[526,153],[629,563],[768,262],[982,378],[537,502],[726,161],[762,453],[848,720],[958,109],[384,70],[595,289],[825,513],[773,540],[667,176],[728,533],[680,246],[175,145],[861,544],[508,340],[899,735],[465,432],[825,230],[782,383],[613,323],[826,658],[232,152],[805,192],[602,148],[916,528],[690,230],[628,412],[539,209],[993,355],[993,965],[688,70],[607,57],[645,445],[555,140],[124,36],[883,142],[927,874],[488,220],[357,69],[571,3],[427,64],[884,499],[184,100],[659,502],[766,625],[916,175],[660,477],[799,189],[821,519],[931,490],[843,791],[886,321],[745,124],[288,148],[826,288],[457,137],[711,351],[714,435],[383,281],[586,242],[523,399],[889,209],[800,276],[502,136],[678,45],[857,792],[724,216],[963,585],[718,383],[773,423],[555,119],[324,199],[975,293],[731,240],[872,110],[452,390],[641,57],[882,436],[854,129],[929,623],[261,211],[769,87],[569,252],[565,31],[853,266],[926,785],[657,311],[353,93],[781,113],[460,55],[728,122],[907,348],[713,574],[200,73],[741,602],[550,97],[805,8],[524,340],[538,306],[311,177],[619,477],[614,435],[847,244],[286,196],[761,628],[404,81],[544,47],[411,363],[492,366],[261,253],[416,309],[166,93],[523,296],[116,65],[718,649],[775,450],[856,362],[693,487],[470,98],[620,339],[353,277],[845,329],[925,524],[547,99],[556,58],[499,184],[293,70],[340,339],[663,566],[842,276],[428,221],[513,101],[870,586],[490,403],[683,357],[463,61],[270,150],[87,54],[886,849],[944,97],[392,343],[948,196],[921,862],[975,100],[720,138],[593,567],[825,789],[728,355],[409,406],[702,53],[374,111],[587,349],[927,563],[861,592],[881,846],[590,435],[693,402],[637,551],[871,8],[524,142],[846,739],[569,80],[884,223],[908,729],[810,492],[644,200],[882,220],[173,9],[831,638],[125,39],[534,529],[777,549],[598,325],[759,336],[327,5],[604,422],[211,28],[610,172],[213,54],[992,581],[665,615],[801,262],[789,64],[756,159],[509,61],[773,247],[778,456],[782,770],[814,595],[311,0],[843,197],[652,111],[588,473],[398,304],[687,213],[291,260],[151,5],[923,744],[658,301],[832,265],[460,344],[191,114],[662,334],[640,263],[410,249],[926,250],[486,327],[845,627],[735,7],[871,409],[878,751],[680,348],[900,161],[975,738],[905,53],[493,287],[887,286],[770,2],[890,401],[747,539],[195,154],[804,26],[865,763],[293,99],[455,399],[351,279],[792,146],[619,60],[669,482],[500,104],[262,42],[722,419],[974,9],[854,528],[998,904],[639,289],[422,408],[852,501],[917,909],[970,266],[608,268],[669,338],[761,320],[753,260],[698,318],[501,434],[685,425],[478,359],[376,267],[871,269],[683,636],[461,153],[588,257],[773,136],[919,894],[915,28],[990,244],[310,241],[852,588],[585,118],[621,322],[739,733],[206,94],[322,272],[829,386],[785,567],[615,282],[382,32],[868,29],[498,482],[922,501],[922,743],[775,654],[586,180],[887,234],[803,755],[305,85],[944,197],[545,207],[738,528],[586,219],[923,881],[803,491],[818,299],[902,495],[582,54],[973,481],[751,610],[936,95],[527,292],[251,99],[681,385],[895,341],[278,72],[432,251],[866,698],[914,171],[807,353],[850,26],[935,188],[982,822],[603,8],[688,316],[411,299],[910,828],[396,295],[991,37],[584,275],[325,302],[767,276],[217,170],[526,236],[900,173],[860,359],[581,34],[866,525],[344,303],[752,565],[65,23],[990,714],[401,35],[751,634],[895,703],[818,308],[973,340],[963,768],[824,718],[451,411],[948,733],[778,382],[434,92],[853,92],[711,163],[508,80],[481,379],[955,529],[310,83],[811,682],[804,55],[861,782],[267,157],[662,416],[334,311],[996,332],[640,24],[901,225],[896,514],[441,329],[694,601],[959,626],[863,683],[889,669],[181,114],[899,567],[292,166],[662,147],[298,294],[900,472],[843,67],[325,118],[979,99],[969,78],[613,186],[565,168],[843,316],[327,189],[418,7],[822,782],[402,212],[260,81],[695,360],[769,738],[990,193],[827,764],[791,772],[758,399],[93,50],[816,57],[564,426],[741,111],[855,561],[354,165],[776,735],[947,554],[996,970],[426,78],[815,377],[170,132],[694,340],[440,173],[182,179],[711,622],[524,347],[905,175],[454,442],[500,451],[417,267],[594,26],[902,111],[726,608],[603,125],[798,768],[462,239],[427,365],[66,11],[747,43],[950,688],[942,719],[935,796],[141,103],[970,844],[306,114],[791,229],[125,93],[759,636],[461,224],[407,154],[317,103],[754,344],[869,473],[618,39],[723,674],[748,440],[902,594],[925,396],[845,176],[492,370],[495,458],[840,636],[150,11],[264,106],[681,104],[796,9],[835,117],[666,314],[698,140],[654,528],[879,100],[649,319],[544,487],[46,8],[597,40],[654,410],[966,120],[363,156],[705,446],[846,677],[551,88],[395,28],[278,20],[709,103],[950,857],[699,427],[781,141],[750,700],[772,345],[552,223],[890,434],[854,132],[907,658],[598,107],[520,488],[999,572],[494,413],[744,98],[279,18],[305,302],[833,590],[404,45],[858,205],[34,16],[731,278],[301,103],[930,603],[854,704],[987,185],[938,568],[589,519],[318,76],[389,272],[479,379],[590,475],[816,699],[825,431],[701,689],[596,301],[823,196],[705,185],[901,671],[370,35],[682,20],[959,824],[753,438],[909,834],[628,512],[917,877],[530,497],[283,252],[954,594],[950,312],[644,183],[921,21],[528,490],[475,38],[501,34],[873,790],[369,346],[455,398],[863,765],[417,7],[836,209],[816,77],[233,229],[463,234],[713,98],[596,483],[705,146],[761,180],[451,146],[963,453],[309,73],[864,806],[669,375],[817,740],[674,70],[254,179],[545,130],[907,874],[744,43],[616,323],[577,543],[634,481],[868,600],[235,220],[476,235],[842,209],[895,36],[460,181],[99,74],[990,26],[869,334],[420,419],[861,404],[634,25],[911,53],[647,300],[842,129],[621,47],[956,2],[821,260],[921,96],[610,384],[238,137],[679,524],[859,762],[491,364],[777,239],[569,462],[484,430],[766,199],[467,354],[791,113],[887,318],[556,23],[883,101],[537,528],[644,409],[925,455],[750,733],[671,176],[881,425],[954,222],[857,709],[492,411],[193,169],[504,7],[704,393],[220,196],[345,112],[914,73],[833,490],[763,632],[240,53],[170,82],[598,137],[592,579],[581,0],[807,639],[137,122],[970,243],[838,582],[380,293],[612,508],[337,112],[425,274],[740,99],[733,432],[891,390],[922,202],[993,470],[967,22],[741,411],[836,812],[626,596],[787,462],[860,283],[882,746],[947,703],[368,68],[796,255],[947,814],[825,822],[832,185],[215,8],[850,161],[918,376],[700,588],[542,297],[774,127],[144,129],[422,37],[808,640],[908,508],[926,332],[352,256],[684,411],[664,127],[638,433],[830,91],[124,118],[715,588],[787,147],[670,21],[821,297],[731,269],[251,15],[745,385],[595,581],[636,102],[272,212],[432,414],[595,68],[761,43],[986,723],[455,182],[736,240],[274,220],[480,78],[828,801],[676,65],[555,86],[801,27],[521,0],[516,206],[897,490],[959,821],[970,628],[965,575],[824,413],[335,151],[658,247],[554,125],[554,26],[559,290],[988,91],[714,444],[286,87],[178,141],[652,221],[647,533],[787,210],[668,313],[484,49],[741,327],[926,506],[935,744],[593,287],[740,356],[676,162],[741,321],[553,484],[889,166],[812,680],[690,684],[876,604],[768,336],[612,188],[525,301],[634,262],[762,113],[620,457],[644,528],[553,119],[586,63],[523,474],[529,35],[939,601],[322,12],[827,83],[751,186],[498,70],[911,637],[657,259],[750,316],[883,876],[834,444],[831,161],[531,360],[990,754],[739,314],[723,73],[824,46],[783,598],[441,371],[120,1],[893,680],[471,373],[593,333],[866,398],[927,923],[710,234],[41,30],[864,298],[821,227],[680,566],[961,404],[504,431],[54,53],[606,405],[984,658],[840,467],[72,45],[405,32],[674,191],[811,754],[824,171],[529,236],[324,213],[892,507],[676,505],[954,143],[331,182],[752,319],[712,587],[870,784],[886,838],[876,798],[264,228],[823,640],[285,244],[439,280],[352,7],[360,69],[943,725],[911,374],[960,9],[843,219],[911,144],[866,602],[934,260],[378,160],[713,508],[715,670],[308,153],[579,349],[912,824],[985,322],[905,637],[354,167],[985,172],[170,81],[434,256],[638,450],[956,160],[827,521],[588,373],[839,646],[938,549],[783,352],[660,197],[432,85],[734,563],[639,250],[408,187],[507,244],[691,11],[941,436],[594,579],[754,243],[541,409],[907,183],[260,37],[368,195],[803,3],[419,259],[926,550],[685,185],[217,85],[863,822],[472,254],[905,190],[434,374],[486,352],[707,250],[716,247],[47,6],[438,174],[538,350],[289,170],[671,101],[768,704],[597,464],[846,128],[511,330],[559,269],[260,72],[953,59],[871,793],[808,297],[718,228],[665,109],[886,532],[845,355],[937,96],[472,73],[206,0],[23,8],[773,418],[769,450],[296,113],[81,67],[745,498],[379,83],[644,48],[943,594],[427,127],[829,561],[851,741],[158,153],[891,266],[469,102],[685,104],[446,16],[976,314],[641,475],[361,125],[890,863],[150,27],[489,242],[840,838],[849,630],[566,440],[892,279],[675,576],[848,149],[697,543],[863,11],[549,255],[409,214],[565,169],[825,816],[599,268],[946,857],[584,530],[463,156],[437,104],[972,56],[483,217],[720,517],[745,398],[924,904],[700,284],[710,490],[904,701],[511,322],[452,159],[676,475],[880,428],[689,360],[541,229],[680,215],[806,614],[809,411],[383,110],[587,124],[770,314],[945,310],[406,252],[852,732],[952,628],[871,292],[579,488],[717,703],[480,418],[994,650],[967,695],[844,187],[873,101],[804,696],[902,727],[701,171],[930,430],[404,397],[744,216],[954,541],[711,472],[243,140],[428,188],[714,180],[376,18],[789,314],[974,133],[783,611],[639,506],[886,541],[703,303],[966,710],[471,329],[662,63],[798,619],[935,413],[509,249],[983,111],[81,3],[930,404],[426,187],[237,53],[795,233],[685,190],[615,533],[382,373],[555,475],[856,43],[900,395],[500,164],[610,305],[777,179],[668,446],[228,62],[932,14],[786,776],[767,340],[892,642],[793,616],[987,148],[532,85],[874,392],[386,165],[911,221],[242,97],[461,126],[583,124],[778,547],[649,99],[209,89],[670,153],[821,405],[312,221],[930,875],[526,440],[453,452],[121,69],[682,472],[840,413],[876,277],[481,3],[837,442],[96,94],[756,133],[711,442],[448,85],[911,870],[547,328],[482,280],[774,408],[597,505],[710,220],[574,242],[917,218],[506,288],[865,275],[472,15],[968,55],[802,432],[488,271],[358,244],[920,500],[242,11],[689,548],[899,561],[900,24],[454,18],[948,846],[692,109],[797,176],[417,28],[685,656],[941,566],[150,18],[214,192],[768,113],[596,299],[405,404],[919,282],[581,497],[926,848],[770,460],[718,126],[730,709],[494,164],[283,245],[939,646],[587,360],[879,465],[534,463],[685,21],[702,186],[669,524],[205,152],[512,199],[487,384],[847,15],[792,232],[392,35],[697,411],[708,388],[488,420],[740,192],[559,292],[753,376],[966,227],[783,552],[739,6],[729,322],[224,181],[273,204],[164,136],[258,64],[899,132],[487,239],[819,585],[806,229],[786,531],[907,76],[669,324],[532,175],[679,397],[336,274],[664,45],[650,622],[875,620],[470,216],[840,230],[323,114],[702,700],[908,724],[738,473],[642,227],[514,187],[998,41],[457,9],[968,263],[485,266],[283,196],[692,24],[577,309],[684,593],[927,572],[469,111],[996,511],[976,322],[975,880],[935,896],[889,534],[838,653],[896,879],[400,217],[915,350],[522,9],[568,348],[740,393],[237,113],[956,793],[736,719],[763,468],[707,177],[817,73],[843,570],[943,23],[400,73],[802,618],[756,54],[355,8],[501,155],[418,382],[531,14],[772,472],[217,111],[686,622],[730,91],[577,311],[668,650],[767,623],[465,46],[952,43],[633,589],[238,85],[904,289],[764,283],[667,635],[968,370],[237,103],[907,157],[495,241],[953,32],[323,176],[892,489],[912,491],[665,234],[990,626],[884,716],[416,37],[734,17],[270,195],[768,434],[640,12],[881,530],[801,232],[380,113],[558,374],[360,53],[773,145],[499,69],[890,391],[349,308],[831,281],[149,28],[416,192],[928,581],[782,740],[696,536],[974,677],[859,582],[429,257],[390,297],[732,146],[477,26],[293,22],[546,457],[434,138],[575,309],[981,31],[763,488],[884,404],[485,413],[979,264],[564,388],[751,328],[746,616],[535,315],[742,147],[872,439],[554,212],[823,393],[838,379],[882,570],[647,498],[339,157],[392,216],[988,643],[496,11],[654,199],[403,137],[622,284],[818,692],[663,498],[204,150],[829,158],[765,190],[696,225],[904,366],[774,682],[904,270],[741,295],[707,37],[832,6],[735,85],[946,858],[914,193],[530,45],[862,147],[481,48],[426,321],[221,166],[689,174],[993,956],[587,389],[725,445],[976,465],[737,623],[847,770],[579,404],[862,469],[945,15],[703,4],[578,506],[637,530],[698,142],[908,803],[700,166],[478,17],[551,404],[597,459],[396,162],[598,579],[683,358],[630,385],[636,128],[751,440],[635,219],[987,428],[890,274],[918,877],[960,58],[883,505],[829,223],[842,381],[955,249],[547,528],[621,229],[775,204],[792,506],[579,285],[103,53],[352,147],[932,89],[774,571],[969,932],[405,184],[546,462],[924,550],[245,95],[922,582],[802,427],[750,296],[934,791],[707,196],[924,94],[605,536],[111,59],[472,364],[402,65],[559,323],[666,541],[881,698],[658,605],[435,127],[847,725],[756,199],[427,355],[900,42],[859,649],[565,112],[950,692],[965,318],[956,300],[754,692],[930,735],[704,179],[987,748],[931,586],[952,459],[733,557],[304,263],[949,524],[519,465],[718,106],[128,27],[451,362],[485,183],[890,95],[631,384],[579,207],[778,371],[333,279],[747,437],[942,389],[779,470],[255,218],[791,432],[718,291],[700,487],[906,549],[206,114],[440,224],[486,143],[741,184],[983,955],[815,14],[837,487],[369,148],[586,577],[408,56],[641,175],[860,809],[706,448],[798,631],[682,21],[387,146],[845,299],[253,184],[540,311],[930,568],[714,533],[794,705],[916,573],[644,260],[782,414],[366,187],[720,366],[582,317],[506,54],[855,65],[637,76],[372,55],[464,127],[650,143],[672,182],[579,327],[915,378],[614,50],[691,576],[642,483],[897,222],[754,437],[910,860],[851,486],[363,279],[971,438],[988,369],[696,592],[764,251],[286,163],[775,264],[992,843],[791,540],[295,127],[897,419],[488,307],[915,311],[805,259],[544,180],[959,615],[951,704],[807,752],[208,69],[658,372],[462,387],[994,495],[804,251],[229,119],[456,137],[624,120],[876,818],[921,221],[910,475],[480,215],[266,153],[812,714],[651,42],[451,430],[123,120],[786,235],[960,645],[428,26],[717,569],[717,243],[865,757],[910,119],[637,354],[344,225],[276,50],[931,471],[951,657],[992,416],[833,151],[503,56],[691,600],[581,574],[877,511],[232,63],[79,1],[196,136],[521,379],[273,99],[531,125],[766,364],[875,719],[723,238],[804,677],[256,156],[275,35],[652,535],[948,20],[602,16],[816,90],[322,71],[937,228],[283,193],[568,90],[642,498],[948,935],[336,288],[410,245],[241,92],[512,457],[897,766],[368,12],[799,568],[62,5],[952,312],[761,256],[744,71],[361,168],[154,43],[556,278],[883,667],[560,542],[228,211],[836,723],[740,417],[887,719],[563,160],[589,531],[421,18],[734,364],[883,841],[910,320],[944,740],[570,538],[969,666],[642,596],[856,462],[654,14],[682,245],[225,223],[882,329],[774,448],[506,379],[734,570],[906,43],[363,198],[532,324],[450,119],[666,385],[928,323],[494,58],[758,561],[950,752],[589,360],[858,344],[985,524],[744,217],[546,374],[788,246],[726,236],[903,565],[758,669],[510,501],[794,681],[738,717],[697,224],[413,65],[867,149],[734,448],[973,259],[274,55],[891,285],[890,171],[844,124],[773,641],[451,447],[155,120],[950,758],[588,60],[620,608],[679,153],[577,179],[674,376],[866,174],[991,664],[866,814],[841,540],[431,273],[839,717],[767,284],[212,12],[536,289],[269,234],[700,39],[158,147],[975,733],[935,809],[139,61],[719,387],[941,19],[341,160],[273,24],[900,238],[758,615],[913,46],[606,481],[402,103],[847,434],[891,356],[567,363],[949,68],[419,308],[243,60],[791,688],[562,414],[880,621],[965,287],[379,342],[991,281],[613,86],[426,127],[526,23],[412,57],[932,740],[808,497],[609,379],[736,74],[762,574],[995,510],[742,596],[691,386],[915,135],[801,529],[530,527],[323,223],[798,453],[814,668],[808,162],[351,334],[618,400],[665,321],[289,161],[659,237],[954,561],[473,437],[522,489],[863,136],[438,2],[874,142],[734,184],[920,831],[882,315],[544,285],[213,205],[693,213],[912,230],[361,136],[738,375],[604,51],[561,355],[592,561],[432,303],[851,74],[917,33],[847,113],[626,368],[684,188],[605,559],[956,591],[410,334],[694,69],[868,563],[360,55],[779,449],[817,17],[543,244],[654,559],[968,43],[703,49],[708,506],[966,791],[335,139],[449,195],[377,48],[963,253],[669,155],[930,369],[678,267],[852,808],[511,43],[681,437],[42,16],[828,82],[589,317],[857,517],[557,102],[913,339],[842,549],[514,80],[447,288],[40,8],[633,285],[620,445],[812,256],[666,628],[375,235],[639,175],[471,54],[692,587],[784,572],[543,120],[285,249],[227,145],[980,494],[416,81],[993,559],[152,107],[690,40],[740,403],[440,421],[711,422],[437,2],[711,262],[731,91],[939,632],[490,387],[359,111],[955,35],[712,406],[978,697],[894,838],[745,448],[919,875],[917,826],[332,158],[859,285],[641,599],[982,68],[649,443],[62,17],[803,68],[884,133],[401,47],[940,780],[431,363],[994,295],[960,630],[742,594],[98,29],[545,353],[946,222],[558,308],[968,344],[977,510],[688,306],[930,179],[938,560],[422,193],[778,688],[225,6],[491,401],[298,73],[295,238],[611,286],[451,192],[464,40],[901,791],[706,22],[997,386],[933,631],[780,198],[763,638],[821,640],[519,109],[938,766],[737,375],[958,801],[953,295],[764,327],[260,222],[772,144],[436,299],[326,83],[876,95],[473,137],[696,674],[560,354],[934,788],[627,336],[536,20],[427,393],[549,534],[997,675],[787,390],[701,504],[787,181],[457,109],[847,220],[830,517],[795,174],[243,118],[996,492],[982,130],[46,17],[697,8],[947,232],[825,545],[603,356],[681,565],[463,58],[506,237],[651,406],[824,607],[945,644],[938,927],[712,601],[691,656],[413,5],[585,178],[639,636],[717,593],[276,155],[639,211],[284,223],[950,95],[591,414],[944,670],[602,592],[486,65],[971,955],[755,116],[687,10],[355,79],[701,148],[725,696],[633,455],[226,136],[435,152],[564,178],[828,328],[780,299],[157,0],[569,107],[509,452],[990,510],[390,316],[891,115],[851,641],[447,195],[665,171],[658,375],[953,671],[945,547],[42,1],[759,85],[769,86],[488,208],[422,121],[685,666],[757,0],[521,220],[367,309],[610,53],[612,69],[765,207],[802,404],[514,263],[766,695],[714,522],[258,168],[602,93],[879,446],[501,181],[627,214],[763,363],[468,251],[486,14],[917,526],[956,140],[332,85],[978,379],[712,693],[952,633],[717,505],[408,36],[880,430],[985,710],[443,375],[509,326],[397,261],[950,864],[837,553],[841,756],[763,680],[970,778],[823,444],[439,111],[591,241],[356,117],[512,22],[897,342],[467,379],[866,605],[472,17],[317,192],[340,314],[651,424],[593,405],[761,292],[809,691],[645,610],[522,38],[600,373],[872,235],[757,737],[393,242],[661,530],[983,451],[435,149],[869,98],[513,380],[918,145],[710,25],[531,192],[414,105],[721,84],[449,155],[896,567],[913,728],[799,582],[936,528],[487,482],[772,622],[614,578],[827,652],[823,440],[940,927],[582,330],[723,363],[802,540],[410,394],[582,228],[970,521],[566,386],[786,124],[987,982],[457,311],[389,352],[988,694],[782,393],[571,103],[988,716],[756,359],[718,155],[998,202],[253,236],[975,822],[92,58],[439,394],[610,456],[812,369],[471,57],[814,601],[145,136],[975,632],[481,370],[509,70],[845,748],[603,434],[774,477],[900,714],[753,442],[942,635],[112,40],[634,621],[708,61],[374,132],[939,636],[255,172],[154,98],[688,195],[917,102],[540,520],[426,117],[661,350],[987,749],[991,334],[932,522],[469,377],[78,54],[800,404],[604,284],[804,308],[738,61],[507,227],[893,506],[145,13],[252,241],[853,342],[502,348],[644,345],[315,97],[852,184],[371,206],[818,121],[673,355],[987,911],[727,388],[857,445],[831,511],[830,536],[716,60],[378,267],[179,152],[820,512],[321,221],[247,146],[416,206],[411,216],[780,466],[527,475],[777,706],[714,703],[575,567],[450,85],[190,92],[507,351],[779,338],[325,181],[287,255],[919,620],[284,20],[853,391],[884,605],[840,495],[665,509],[779,250],[498,42],[928,35],[972,954],[890,598],[736,18],[540,91],[824,69],[674,584],[227,132],[672,40],[757,72],[579,290],[275,154],[921,292],[768,344],[697,344],[971,193],[322,6],[565,38],[260,15],[946,488],[526,243],[531,35],[588,242],[662,403],[869,389],[882,610],[794,207],[61,60],[339,80],[935,235],[966,911],[878,758],[891,541],[910,421],[804,475],[855,580],[569,139],[841,236],[715,264],[803,754],[981,209],[486,86],[899,62],[998,645],[553,229],[694,268],[409,293],[785,280],[480,258],[842,32],[646,445],[806,156],[818,194],[423,248],[333,68],[445,170],[535,304],[850,714],[604,557],[445,13],[352,179],[640,240],[914,837],[961,772],[740,305],[272,117],[924,225],[784,561],[410,188],[373,253],[797,720],[545,243],[734,86],[729,584],[907,17],[508,119],[857,641],[882,390],[586,120],[999,378],[861,489],[517,251],[830,756],[518,460],[359,204],[980,371],[993,493],[395,353],[644,588],[931,795],[248,142],[887,818],[936,134],[697,136],[581,164],[280,99],[342,226],[428,282],[883,524],[580,2],[986,164],[689,265],[685,484],[667,56],[258,113],[368,11],[860,86],[919,108],[972,101],[661,524],[906,711],[324,154],[730,278],[492,273],[943,559],[693,100],[876,803],[496,286],[725,553],[446,414],[518,137],[890,695],[969,130],[570,220],[964,441],[196,142],[646,175],[426,44],[564,343],[553,445],[408,399],[567,416],[823,434],[857,681],[49,44],[913,712],[538,115],[852,597],[561,388],[941,354],[864,104],[978,263],[422,323],[617,90],[550,414],[974,124],[579,380],[938,338],[770,563],[342,286],[776,481],[219,201],[769,49],[943,16],[632,93],[123,94],[420,266],[852,821],[703,218],[909,4],[298,63],[624,185],[941,426],[697,40],[516,41],[721,644],[599,25],[722,111],[636,145],[912,785],[828,776],[449,314],[220,139],[618,86],[396,383],[945,0],[740,401],[700,455],[967,492],[888,574],[944,84],[223,69],[763,249],[401,54],[255,175],[249,49],[976,283],[381,257],[754,710],[959,881],[718,677],[577,437],[203,50],[480,237],[977,280],[469,47],[510,414],[900,348],[708,352],[878,670],[686,519],[661,155],[702,461],[925,212],[224,200],[955,516],[917,790],[755,679],[210,149],[697,432],[845,472],[886,524],[483,328],[871,413],[926,516],[784,46],[530,49],[717,476],[764,623],[886,659],[759,541],[822,485],[835,261],[298,142],[751,429],[393,111],[423,176],[925,321],[810,345],[654,499],[546,119],[966,114],[820,251],[414,293],[897,830],[311,167],[827,409],[496,212],[488,104],[177,63],[880,740],[781,152],[308,87],[685,570],[651,219],[736,270],[544,52],[984,982],[193,109],[254,148],[737,557],[824,232],[549,109],[299,6],[640,548],[602,171],[587,216],[776,752],[641,388],[810,606],[805,17],[614,29],[920,620],[388,0],[264,164],[644,565],[741,59],[558,272],[963,148],[727,191],[281,238],[798,793],[729,623],[577,237],[691,269],[267,200],[656,205],[928,401],[906,417],[638,27],[624,418],[360,15],[672,29],[233,197],[968,218],[922,411],[794,422],[916,902],[979,809],[913,169],[564,9],[621,491],[770,724],[968,466],[662,517],[801,662],[467,87],[610,511],[153,123],[598,81],[336,325],[851,279],[603,422],[460,378],[698,322],[823,3],[974,33],[979,385],[897,839],[199,193],[772,321],[972,821],[639,124],[927,760],[299,270],[591,308],[530,32],[717,537],[115,95],[721,586],[622,486],[917,356],[686,103],[940,494],[767,562],[847,826],[730,633],[900,352],[854,144],[502,444],[933,477],[708,166],[865,852],[414,203],[945,98],[283,270],[612,306],[781,178],[693,130],[328,81],[813,761],[688,30],[551,277],[787,371],[391,177],[854,591],[196,176],[601,364],[69,34],[826,244],[981,509],[659,415],[997,341],[478,440],[534,161],[958,538],[415,161],[652,222],[331,112],[966,273],[612,328],[843,285],[719,301],[609,380],[920,11],[973,827],[753,713],[824,288],[706,604],[995,192],[889,460],[423,112],[409,303],[247,49],[506,242],[822,553],[320,16],[724,277],[804,223],[943,108],[799,467],[311,155],[549,502],[266,178],[979,483],[470,158],[988,431],[626,215],[512,30],[824,123],[414,189],[135,100],[919,863],[456,229],[453,246],[629,475],[928,765],[327,293],[685,263],[760,435],[388,169],[819,292],[914,619],[957,46],[863,488],[634,348],[241,161],[623,567],[548,446],[912,581],[47,21],[790,748],[327,218],[672,30],[974,71],[845,504],[924,20],[775,40],[891,813],[527,53],[681,382],[962,278],[657,461],[746,508],[874,397],[700,170],[740,140],[924,456],[321,258],[952,457],[797,491],[806,21],[789,67],[788,78],[854,138],[544,59],[752,586],[783,577],[763,90],[469,82],[259,76],[941,222],[742,358],[684,142],[483,161],[436,284],[518,30],[821,724],[559,411],[412,216],[434,295],[864,357],[444,177],[480,76],[634,575],[812,35],[586,408],[343,332],[955,496],[851,460],[709,644],[907,879],[914,439],[918,733],[763,446],[746,109],[924,219],[619,4],[900,405],[860,504],[827,399],[824,6],[479,243],[545,504],[820,217],[747,67],[242,74],[964,68],[678,335],[752,683],[595,300],[919,387],[817,232],[453,329],[300,269],[993,767],[730,287],[333,264],[348,308],[741,345],[712,594],[380,268],[724,458],[998,327],[423,118],[85,21],[911,294],[978,896],[619,367],[581,486],[885,80],[399,177],[973,441],[273,104],[413,299],[745,266],[913,303],[966,472],[919,558],[658,657],[479,415],[391,274],[941,654],[962,803],[799,694],[296,131],[507,208],[779,401],[890,283],[564,523],[964,36],[661,562],[599,354],[992,930],[662,370],[718,393],[373,351],[651,560],[376,323],[437,398],[841,365],[354,5],[843,229],[635,224],[821,725],[732,346],[268,103],[842,410],[716,23],[130,97],[730,195],[666,539],[187,113],[800,242],[874,236],[835,286],[634,388],[819,303],[511,11],[997,343],[857,633],[836,260],[517,276],[425,256],[529,360],[675,628],[990,548],[935,715],[547,417],[408,9],[965,204],[728,483],[915,365],[73,41],[597,171],[356,79],[215,209],[989,557],[510,336],[860,62],[796,539],[447,49],[306,126],[643,578],[487,200],[413,20],[666,54],[979,535],[823,76],[927,825],[403,15],[680,665],[859,105],[917,185],[923,409],[728,85],[660,45],[848,675],[518,325],[913,753],[839,234],[741,517],[398,175],[813,201],[527,525],[728,719],[746,500],[428,124],[763,570],[970,175],[176,111],[903,281],[959,864],[702,509],[491,478],[673,242],[594,157],[226,193],[812,749],[944,722],[447,436],[900,258],[724,201],[846,686],[648,317],[529,244],[876,841],[631,272],[662,551],[680,282],[375,325],[986,825],[863,142],[816,284],[711,439],[656,382],[629,95],[677,14],[940,842],[938,353],[478,209],[711,215],[219,207],[770,430],[980,328],[802,42],[575,190],[896,172],[577,269],[321,230],[932,372],[737,495],[861,9],[607,425],[948,892],[847,748],[944,237],[897,213],[727,226],[210,64],[332,19],[919,834],[939,839],[800,499],[262,227],[118,47],[676,613],[935,515],[214,93],[813,708],[514,84],[462,124],[989,195],[213,147],[897,577],[682,408],[849,431],[235,175],[653,566],[695,371],[845,123],[947,726],[674,345],[429,329],[593,96],[625,133],[622,585],[776,70],[376,223],[461,290],[393,180],[885,266],[947,441],[958,301],[906,215],[103,86],[675,508],[642,499],[500,440],[959,279],[940,96],[835,393],[565,442],[875,672],[603,321],[605,495],[782,762],[72,52],[982,889],[220,138],[831,209],[203,133],[966,764],[663,494],[247,124],[996,692],[574,309],[567,417],[598,216],[836,314],[820,750],[204,120],[658,555],[420,406],[729,414],[665,152],[594,361],[492,490],[426,344],[741,320],[22,2],[581,12],[898,67],[924,883],[513,312],[618,204],[586,483],[619,474],[936,341],[799,297],[905,698],[423,400],[860,157],[747,225],[121,27],[477,249],[579,516],[415,0],[107,30],[980,187],[709,123],[818,383],[528,198],[874,824],[836,352],[504,97],[266,125],[862,192],[914,412],[424,145],[545,268],[326,173],[494,198],[900,758],[512,458],[431,406],[77,17],[715,558],[634,391],[449,444],[834,361],[645,299],[687,250],[957,168],[851,150],[809,551],[801,264],[845,469],[551,156],[935,710],[812,236],[806,104],[225,106],[187,53],[272,58],[644,101],[837,346],[964,263],[323,5],[942,355],[651,513],[338,108],[855,134],[872,611],[710,227],[679,403],[901,799],[372,36],[724,336],[403,328],[920,358],[656,454],[583,514],[767,217],[754,494],[861,637],[918,199],[907,582],[639,616],[220,81],[670,57],[583,315],[322,4],[703,650],[867,232],[944,824],[798,384],[723,552],[42,31],[899,264],[628,509],[859,430],[609,479],[984,208],[835,91],[275,266],[546,436],[498,108],[875,481],[950,101],[920,217],[807,9],[826,205],[873,809],[972,705],[867,641],[841,110],[785,530],[284,64],[363,326],[358,38],[186,119],[641,2],[952,861],[906,309],[832,449],[414,136],[874,619],[881,331],[853,236],[230,118],[775,524],[340,154],[771,525],[936,894],[831,495],[830,785],[758,676],[564,169],[718,355],[856,148],[838,751],[523,355],[703,451],[834,427],[440,396],[984,362],[595,89],[690,185],[492,122],[898,394],[495,346],[931,735],[699,67],[728,364],[892,49],[904,688],[270,19],[878,3],[464,96],[261,47],[194,50],[923,531],[587,24],[995,729],[726,484],[466,325],[387,138],[675,53],[554,143],[603,486],[710,174],[546,360],[912,349],[467,143],[754,584],[214,104],[371,136],[761,415],[679,135],[632,584],[530,360],[789,741],[584,112],[533,89],[981,865],[759,484],[926,92],[867,633],[711,490],[992,751],[990,913],[846,391],[898,767],[748,353],[860,261],[752,146],[867,638],[928,235],[379,77],[752,723],[902,271],[925,150],[522,261],[844,300],[896,442],[810,641],[817,226],[769,267],[976,399],[377,360],[717,680],[994,258],[738,298],[929,863],[250,147],[833,100],[695,355],[709,526],[463,418],[592,525],[958,363],[385,243],[529,273],[840,541],[575,451],[443,407],[639,399],[841,486],[564,244],[642,199],[553,99],[976,65],[901,137],[904,837],[708,64],[496,18],[399,80],[383,99],[288,115],[973,221],[784,463],[637,27],[824,495],[719,358],[408,29],[660,283],[708,211],[678,415],[928,462],[904,297],[277,125],[832,826],[484,110],[342,136],[409,15],[980,103],[773,276],[929,99],[865,307],[824,176],[948,112],[760,697],[485,33],[545,525],[947,73],[713,336],[992,518],[661,245],[405,72],[292,130],[858,109],[703,467],[378,83],[945,239],[313,228],[436,184],[220,199],[566,418],[697,660],[302,257],[603,389],[853,667],[372,78],[862,794],[629,250],[793,232],[633,157],[630,386],[965,152],[988,860],[728,509],[872,287],[533,339],[741,364],[857,508],[816,247],[439,295],[887,822],[676,456],[827,819],[611,577],[508,376],[374,104],[248,33],[865,169],[878,1],[660,52],[557,204],[630,579],[923,9],[747,273],[609,499],[615,515],[869,549],[716,695],[409,215],[211,188],[545,262],[322,308],[616,19],[780,740],[737,364],[296,265],[735,540],[957,863],[914,641],[164,2],[500,41],[958,905],[540,425],[645,595],[575,511],[888,120],[746,83],[974,495],[637,307],[930,621],[521,273],[842,681],[741,158],[558,14],[353,340],[722,103],[934,114],[877,436],[683,212],[859,504],[604,249],[260,146],[949,944],[804,36],[669,74],[435,118],[888,238],[817,157],[431,423],[951,332],[589,587],[929,243],[321,118],[821,208],[757,218],[718,415],[345,278],[232,186],[479,158],[570,367],[538,173],[953,15],[615,587],[715,627],[642,460],[946,830],[648,469],[433,357],[561,298],[848,289],[973,659],[372,17],[692,13],[615,274],[752,370],[599,567],[582,339],[520,343],[583,491],[532,188],[575,450],[861,797],[919,459],[825,762],[988,35],[891,789],[167,24],[118,41],[534,41],[587,525],[463,196],[626,236],[793,440],[625,58],[975,777],[854,353],[762,67],[853,429],[835,127],[578,246],[554,302],[910,24],[776,754],[694,621],[660,46],[883,176],[933,920],[770,710],[851,51],[983,676],[994,335],[527,316],[399,136],[704,5],[666,408],[951,546],[879,282],[872,83],[786,468],[384,292],[889,874],[889,343],[502,345],[572,275],[758,542],[285,71],[895,775],[669,254],[701,591],[683,141],[735,200],[430,361],[598,384],[399,278],[804,6],[852,792],[611,382],[808,799],[476,181],[868,481],[89,40],[947,785],[645,203],[822,68],[745,413],[379,198],[936,44],[648,235],[393,322],[920,477],[420,343],[455,351],[918,443],[883,532],[648,561],[993,639],[934,19],[954,47],[467,39],[701,269],[77,10],[784,26],[187,137],[901,185],[674,275],[964,946],[736,598],[490,463],[927,838],[348,318],[39,25],[955,63],[192,14],[811,267],[514,276],[893,567],[602,568],[919,325],[332,16],[711,444],[873,230],[903,406],[973,346],[762,722],[763,31],[128,12],[988,794],[189,40],[449,308],[456,88],[835,572],[262,69],[609,539],[922,147],[634,38],[883,703],[874,579],[387,85],[986,170],[272,199],[831,774],[988,934],[709,616],[832,714],[714,153],[609,398],[799,5],[940,107],[626,489],[349,346],[600,254],[461,193],[769,7],[661,31],[740,635],[394,47],[217,50],[413,86],[753,419],[664,143],[852,493],[270,235],[808,731],[777,480],[293,239],[240,68],[899,510],[469,440],[869,845],[928,852],[911,854],[472,136],[856,480],[805,647],[928,902],[992,119],[354,53],[984,518],[446,162],[855,545],[958,545],[764,570],[933,280],[24,3],[701,445],[914,553],[195,29],[762,755],[793,776],[438,336],[558,286],[953,655],[441,88],[378,154],[890,876],[757,140],[517,41],[197,55],[875,648],[829,62],[743,671],[834,375],[814,219],[781,581],[822,395],[925,87],[622,592],[664,108],[153,125],[294,194],[200,158],[715,609],[367,222],[672,37],[521,447],[999,215],[967,935],[966,23],[331,226],[971,448],[635,145],[913,686],[564,478],[746,700],[924,159],[552,407],[366,303],[809,240],[175,45],[911,131],[519,313],[618,117],[842,416],[671,499],[706,357],[724,166],[929,247],[983,782],[78,64],[310,236],[370,269],[895,88],[766,473],[767,165],[557,519],[259,74],[243,143],[234,25],[828,718],[930,616],[914,255],[220,173],[426,111],[450,404],[562,239],[779,606],[389,23],[861,141],[556,165],[307,32],[344,277],[900,5],[643,110],[509,200],[862,623],[234,203],[469,113],[176,130],[964,841],[339,131],[725,590],[768,749],[599,387],[472,210],[724,53],[326,197],[801,540],[760,282],[254,130],[997,542],[954,808],[203,28],[735,310],[923,282],[531,218],[978,976],[979,53],[532,306],[702,406],[471,365],[964,875],[790,175],[924,72],[747,550],[906,480],[280,148],[255,144],[875,116],[291,123],[730,529],[812,767],[403,345],[984,572],[981,542],[680,193],[523,285],[781,693],[370,193],[139,14],[83,71],[856,510],[914,274],[582,422],[917,606],[933,108],[695,1],[967,415],[798,280],[550,184],[698,512],[661,390],[961,1],[686,24],[808,65],[433,305],[891,857],[611,168],[443,95],[912,288],[333,191],[862,568],[839,773],[499,227],[243,89],[683,366],[717,267],[857,367],[388,383],[528,143],[741,76],[888,829],[873,812],[871,5],[648,545],[799,301],[985,833],[701,147],[850,849],[714,635],[434,318],[933,853],[809,499],[929,790],[998,130],[770,6],[671,209],[161,115],[930,155],[852,175],[991,68],[932,70],[447,381],[660,342],[776,540],[546,441],[398,83],[354,72],[702,475],[752,214],[509,52],[958,583],[754,7],[728,88],[941,172],[834,136],[496,477],[907,165],[501,111],[630,483],[781,269],[589,21],[619,435],[709,426],[587,551],[422,25],[773,184],[983,344],[915,635],[594,214],[342,76],[107,9],[942,779],[487,280],[998,793],[720,609],[998,693],[750,447],[720,439],[933,703],[932,722],[351,35],[971,103],[691,453],[980,576],[953,69],[854,493],[272,82],[983,103],[771,361],[862,530],[992,517],[777,678],[843,556],[593,548],[370,303],[875,196],[659,508],[846,837],[878,685],[619,511],[442,266],[997,376],[847,842],[275,232],[401,151],[723,668],[901,884],[698,350],[785,252],[792,584],[621,112],[887,3],[641,139],[861,516],[427,107],[357,172],[561,541],[811,677],[936,646],[779,374],[606,435],[838,637],[964,625],[900,338],[346,10],[577,438],[909,734],[743,497],[692,204],[984,632],[529,322],[623,484],[917,476],[606,347],[133,108],[531,254],[905,838],[958,86],[594,411],[810,691],[402,201],[900,705],[390,77],[965,195],[172,67],[970,653],[794,667],[505,176],[698,553],[889,685],[741,667],[535,174],[836,568],[872,684],[546,271],[921,615],[792,670],[583,234],[197,107],[406,150],[405,211],[344,13],[679,170],[150,113],[158,124],[997,49],[537,105],[721,78],[405,114],[974,812],[794,339],[633,367],[908,63],[556,443],[886,776],[603,23],[749,681],[941,860],[557,504],[544,474],[708,597],[953,761],[662,103],[566,315],[490,141],[924,825],[174,93],[647,158],[665,207],[627,0],[877,662],[385,214],[895,103],[983,55],[787,494],[424,28],[520,96],[360,83],[957,615],[448,301],[744,385],[822,263],[392,73],[919,664],[31,26],[368,35],[790,724],[879,763],[987,340],[742,193],[940,412],[993,949],[309,151],[514,323],[907,456],[961,355],[856,418],[830,22],[924,450],[709,525],[167,15],[586,280],[477,381],[633,91],[511,279],[881,250],[864,813],[715,428],[252,38],[915,78],[871,577],[543,316],[280,247],[789,443],[876,20],[374,288],[813,413],[614,325],[829,542],[848,35],[836,242],[378,47],[653,102],[596,15],[204,166],[848,484],[463,146],[869,674],[974,219],[886,501],[877,160],[284,83],[960,799],[322,224],[950,461],[212,118],[331,319],[419,236],[130,5],[463,33],[747,350],[754,597],[409,318],[763,562],[529,13],[760,226],[981,800],[779,242],[464,13],[725,507],[478,291],[73,13],[589,412],[370,286],[589,178],[548,372],[956,129],[784,207],[54,26],[824,573],[695,105],[675,148],[776,171],[926,291],[608,203],[938,241],[415,230],[495,353],[871,575],[837,65],[831,266],[732,401],[984,804],[471,281],[733,179],[773,146],[967,428],[977,891],[453,316],[569,463],[521,365],[706,509],[410,53],[992,145],[834,478],[703,272],[288,12],[702,44],[678,49],[512,487],[963,845],[491,130],[588,524],[314,234],[278,166],[413,255],[728,21],[221,43],[342,149],[909,246],[851,802],[932,488],[535,475],[504,372],[763,349],[254,122],[845,217],[699,282],[736,52],[953,454],[842,728],[684,527],[455,148],[700,79],[643,212],[248,4],[270,183],[735,616],[877,558],[318,1],[392,193],[643,192],[789,233],[371,258],[699,614],[875,652],[599,590],[742,136],[861,775],[380,141],[266,205],[446,353],[946,417],[659,179],[444,342],[668,75],[954,306],[831,166],[976,961],[965,53],[359,51],[297,39],[857,334],[460,13],[624,523],[475,112],[739,356],[554,229],[171,75],[924,358],[568,34],[994,16],[123,46],[965,785],[608,452],[984,884],[457,291],[797,199],[935,236],[629,438],[737,118],[858,234],[825,556],[302,201],[255,226],[180,75],[961,169],[532,449],[264,10],[410,44],[404,117],[628,153],[953,256],[808,364],[826,143],[997,382],[975,900],[922,623],[486,220],[960,200],[504,13],[485,52],[799,25],[778,101],[913,688],[626,322],[123,103],[824,122],[716,240],[660,406],[804,401],[742,513],[651,649],[164,151],[859,146],[897,283],[916,52],[935,577],[615,93],[994,623],[234,151],[279,4],[88,22],[493,455],[982,134],[463,179],[160,146],[898,480],[599,291],[568,361],[892,209],[330,326],[808,236],[856,71],[625,10],[841,695],[791,480],[572,421],[679,220],[786,122],[587,68],[881,692],[698,268],[851,22],[784,269],[99,90],[490,37],[836,503],[753,125],[733,279],[893,388],[948,686],[579,271],[992,509],[340,161],[802,31],[742,297],[936,291],[559,7],[122,31],[728,279],[977,646],[751,701],[548,96],[17,0],[860,630],[860,531],[623,599],[715,456],[599,149],[991,476],[488,175],[845,11],[655,566],[810,588],[153,115],[989,533],[385,144],[857,45],[526,125],[335,121],[683,12],[746,677],[844,548],[726,373],[868,181],[870,780],[896,169],[762,337],[662,502],[731,125],[944,85],[850,665],[774,68],[830,90],[957,34],[784,458],[818,558],[642,191],[938,131],[443,370],[202,14],[430,371],[396,389],[818,150],[837,237],[918,206],[269,135],[622,5],[991,745],[173,123],[908,340],[918,517],[294,73],[741,453],[629,182],[540,507],[769,215],[437,0],[445,167],[838,689],[602,511],[861,64],[806,689],[903,68],[992,354],[984,173],[957,54],[925,426],[898,656],[372,268],[673,115],[202,119],[944,129],[930,504],[878,89],[908,533],[823,247],[735,64],[201,12],[751,488],[403,156],[213,183],[857,269],[593,350],[911,273],[838,369],[570,185],[369,36],[576,56],[982,602],[991,799],[374,77],[915,112],[868,82],[916,629],[977,627],[799,742],[695,210],[626,625],[688,120],[970,468],[893,738],[912,245],[478,52],[274,238],[580,514],[824,334],[936,563],[574,491],[332,293],[446,208],[635,481],[831,269],[810,674],[365,195],[770,730],[437,190],[446,157],[809,449],[720,190],[831,807],[340,216],[603,354],[912,443],[651,511],[731,684],[624,117],[908,187],[715,324],[605,160],[302,135],[941,176],[646,295],[988,407],[915,542],[654,384],[641,519],[515,340],[914,656],[954,109],[828,596],[260,211],[752,180],[924,416],[189,165],[790,304],[902,239],[432,259],[932,242],[685,453],[451,317],[629,467],[944,111],[683,440],[873,656],[214,56],[166,131],[208,11],[482,395],[626,293],[663,515],[244,243],[918,825],[947,487],[906,168],[768,625],[744,601],[778,285],[890,130],[390,271],[883,820],[240,121],[605,104],[455,446],[578,229],[924,850],[570,56],[965,846],[757,245],[963,646],[660,607],[949,585],[661,383],[609,171],[772,380],[836,507],[615,571],[980,895],[742,642],[528,5],[912,899],[330,186],[845,662],[965,471],[590,321],[334,62],[220,39],[918,421],[743,397],[890,487],[858,272],[813,549],[908,433],[774,560],[269,181],[388,202],[771,84],[822,453],[969,362],[714,484],[877,266],[786,763],[880,327],[804,115],[817,275],[280,133],[728,357],[769,314],[529,265],[698,306],[989,181],[494,9],[544,520],[712,665],[254,220],[326,154],[313,137],[820,406],[856,134],[140,96],[713,351],[226,41],[271,156],[978,564],[910,588],[716,245],[760,113],[673,545],[910,867],[296,239],[818,713],[973,657],[977,127],[867,727],[943,918],[421,342],[838,323],[222,44],[101,11],[125,38],[573,94],[992,991],[869,130],[838,569],[516,283],[838,252],[600,241],[265,9],[445,144],[542,64],[917,574],[528,355],[278,203],[641,575],[915,568],[833,541],[959,319],[986,946],[734,189],[750,40],[809,2],[854,836],[640,186],[755,266],[125,114],[730,150],[848,66],[238,114],[839,450],[820,399],[188,46],[367,249],[721,23],[427,106],[337,51],[622,220],[819,61],[235,105],[634,525],[707,690],[197,172],[400,301],[927,116],[181,78],[462,0],[635,568],[978,421],[967,405],[876,385],[489,222],[347,199],[965,490],[929,914],[596,325],[479,105],[861,716],[482,307],[221,219],[971,702],[179,153],[881,164],[650,315],[494,46],[637,486],[999,564],[930,134],[264,109],[673,588],[957,10],[887,297],[989,793],[626,328],[887,858],[820,277],[659,594],[887,248],[939,868],[993,601],[869,429],[786,143],[445,364],[661,523],[222,171],[695,160],[273,125],[938,478],[837,216],[230,36],[695,138],[967,928],[642,409],[559,456],[432,395],[435,414],[615,67],[841,792],[895,623],[814,708],[388,28],[634,226],[806,722],[872,667],[993,445],[209,67],[470,459],[814,381],[940,578],[519,19],[957,766],[268,144],[394,200],[975,891],[797,450],[771,54],[760,61],[822,420],[655,209],[656,647],[497,495],[768,179],[890,122],[686,259],[92,81],[614,414],[379,375],[602,435],[721,493],[508,423],[758,582],[548,112],[706,49],[499,458],[428,273],[907,865],[838,649],[393,211],[148,138],[936,871],[347,34],[996,639],[936,339],[978,902],[397,263],[817,669],[710,369],[568,226],[747,224],[667,9],[954,337],[979,835],[217,6],[333,156],[997,199],[575,57],[964,191],[969,288],[767,321],[477,94],[700,8],[452,300],[218,74],[656,128],[465,429],[586,216],[525,97],[665,30],[500,336],[450,106],[985,672],[993,54],[890,599],[600,2],[642,380],[809,450],[66,14],[224,81],[542,452],[963,133],[976,533],[686,569],[659,318],[499,214],[994,177],[566,66],[963,617],[417,395],[273,130],[942,201],[268,244],[898,182],[689,293],[919,549],[240,41],[596,379],[847,838],[561,309],[847,205],[245,86],[952,566],[358,257],[518,152],[283,184],[230,209],[816,600],[442,290],[980,262],[886,535],[280,217],[916,202],[458,388],[846,75],[395,86],[973,582],[695,243],[699,524],[361,176],[803,518],[121,38],[161,7],[890,194],[804,623],[674,404],[579,489],[619,40],[331,18],[700,389],[587,62],[823,261],[932,222],[937,128],[740,611],[315,273],[705,419],[760,238],[86,1],[573,375],[466,261],[808,31],[85,48],[839,175],[747,433],[381,98],[984,694],[486,229],[472,207],[800,691],[203,37],[576,88],[512,155],[926,820],[685,460],[871,3],[363,359],[815,151],[550,74],[647,623],[981,917],[376,59],[800,387],[416,302],[794,739],[461,210],[931,429],[601,598],[717,308],[812,415],[598,447],[623,132],[578,146],[669,668],[668,290],[812,618],[411,1],[723,98],[121,68],[762,184],[722,569],[908,815],[874,590],[712,615],[762,14],[948,940],[985,918],[459,31],[783,417],[393,61],[492,133],[852,476],[591,471],[124,39],[634,478],[659,65],[791,42],[993,424],[653,535],[978,953],[579,389],[421,289],[925,355],[787,367],[761,418],[980,2],[911,844],[515,375],[768,7],[690,641],[709,646],[516,455],[500,68],[191,109],[710,210],[375,51],[694,623],[980,507],[863,408],[840,103],[709,609],[962,772],[456,83],[333,301],[581,172],[742,166],[298,213],[452,37],[350,63],[198,157],[428,203],[131,16],[900,209],[962,836],[232,137],[815,342],[592,12],[546,11],[421,10],[346,45],[387,8],[556,7],[271,58],[435,410],[710,125],[925,558],[403,107],[161,76],[419,180],[433,126],[940,623],[420,251],[945,158],[562,356],[603,249],[535,457],[847,76],[607,62],[815,101],[852,368],[655,304],[728,385],[995,443],[982,257],[794,310],[261,45],[357,84],[685,270],[355,67],[523,11],[710,243],[662,473],[956,148],[712,330],[696,419],[928,640],[900,894],[767,762],[611,405],[645,33],[804,407],[801,585],[303,290],[837,96],[804,482],[236,138],[339,43],[280,150],[997,754],[904,552],[522,335],[748,456],[534,226],[806,759],[187,63],[783,265],[766,255],[300,8],[532,179],[895,578],[683,491],[943,654],[303,99],[993,750],[808,560],[852,784],[527,523],[578,536],[980,774],[396,18],[747,503],[523,238],[616,303],[984,47],[258,2],[770,24],[771,454],[936,558],[809,803],[715,602],[580,214],[385,152],[414,376],[979,808],[688,461],[640,584],[695,408],[37,6],[224,171],[316,7],[877,535],[884,67],[644,458],[890,562],[972,15],[358,152],[527,149],[427,221],[441,151],[760,581],[930,605],[910,822],[824,125],[418,16],[693,630],[330,75],[240,192],[924,11],[333,251],[772,59],[321,295],[804,91],[667,294],[803,241],[773,165],[618,184],[178,112],[550,89],[982,344],[527,197],[971,573],[413,127],[533,406],[546,189],[976,625],[846,516],[78,12],[581,542],[599,193],[331,58],[180,29],[738,548],[706,286],[695,499],[356,325],[496,391],[471,141],[416,60],[726,633],[339,187],[590,501],[490,89],[584,36],[898,749],[616,137],[838,586],[651,123],[622,96],[767,496],[949,794],[679,620],[782,436],[949,703],[56,21],[282,155],[588,138],[526,157],[982,967],[534,496],[868,575],[26,5],[915,119],[865,403],[949,677],[616,172],[342,160],[872,423],[723,30],[984,136],[440,243],[746,687],[990,783],[600,333],[979,690],[996,984],[639,125],[761,520],[241,207],[550,307],[784,688],[878,514],[97,42],[941,600],[449,235],[681,672],[919,781],[529,526],[478,234],[929,387],[734,351],[766,636],[944,844],[744,443],[434,315],[948,253],[870,73],[556,71],[787,255],[648,244],[662,301],[895,602],[675,367],[427,329],[560,320],[490,275],[643,596],[726,261],[924,67],[811,540],[938,716],[924,575],[925,188],[908,208],[414,132],[593,562],[607,535],[709,84],[983,58],[816,776],[791,737],[679,597],[995,478],[656,179],[746,93],[745,172],[656,489],[977,424],[469,405],[956,408],[968,484],[598,556],[754,386],[612,125],[610,288],[696,344],[287,161],[383,76],[526,360],[799,516],[635,268],[992,945],[695,23],[748,587],[900,66],[698,210],[533,167],[923,58],[886,738],[461,267],[408,95],[73,11],[989,405],[732,157],[325,112],[729,676],[861,325],[911,353],[28,23],[667,506],[718,410],[650,291],[966,872],[719,264],[989,167],[800,517],[121,106],[849,687],[807,637],[979,190],[295,294],[815,208],[385,158],[885,842],[889,56],[645,158],[213,117],[360,231],[779,126],[835,11],[820,57],[471,165],[805,586],[615,464],[877,814],[749,738],[503,368],[535,267],[979,516],[692,679],[736,247],[734,64],[618,96],[160,45],[375,111],[716,312],[718,290],[931,899],[251,160],[507,87],[601,452],[814,132],[708,90],[656,322],[949,227],[829,523],[637,201],[582,290],[702,663],[741,162],[97,84],[555,293],[539,286],[409,400],[726,532],[392,143],[174,35],[570,522],[478,279],[929,362],[418,211],[585,550],[771,326],[403,233],[330,14],[900,620],[833,76],[747,585],[108,9],[605,98],[939,68],[912,676],[955,674],[862,686],[614,448],[884,632],[631,130],[805,104],[970,34],[284,55],[669,330],[519,51],[114,36],[683,545],[834,451],[219,134],[615,239],[970,97],[736,621],[919,129],[528,345],[909,363],[629,154],[651,178],[573,113],[656,523],[581,390],[682,102],[613,393],[959,409],[991,888],[848,154],[636,469],[818,499],[706,251],[192,128],[676,375],[551,319],[975,344],[647,634],[893,34],[920,251],[821,797],[616,171],[999,941],[912,168],[877,765],[452,97],[742,718],[546,257],[47,28],[283,78],[147,51],[360,119],[759,514],[932,142],[312,54],[860,19],[389,165],[800,438],[806,534],[908,779],[500,430],[238,65],[523,99],[770,397],[951,532],[725,559],[996,861],[995,992],[576,13],[420,259],[806,436],[759,17],[464,89],[889,871],[919,177],[791,465],[716,392],[568,476],[679,471],[817,487],[753,151],[914,889],[940,376],[615,602],[584,151],[845,357],[863,31],[569,220],[772,527],[853,764],[776,457],[925,214],[908,71],[466,268],[867,106],[594,321],[420,337],[682,602],[549,517],[305,237],[915,474],[271,85],[511,309],[846,149],[788,510],[652,645],[880,704],[873,344],[529,527],[798,422],[895,200],[352,47],[281,84],[676,181],[949,720],[591,354],[966,418],[976,821],[807,291],[482,326],[457,275],[499,5],[519,328],[626,47],[737,380],[645,272],[377,262],[826,130],[476,19],[321,119],[382,375],[648,504],[804,654],[991,690],[381,190],[554,386],[386,264],[251,45],[478,414],[802,234],[558,122],[462,389],[156,116],[821,165],[905,2],[827,162],[870,31],[587,303],[428,110],[773,767],[831,261],[679,264],[510,15],[537,515],[850,54],[246,175],[869,7],[585,407],[865,436],[983,150],[544,6],[892,849],[773,674],[371,197],[974,295],[664,413],[893,870],[493,371],[900,143],[544,86],[589,230],[913,825],[725,161],[948,486],[718,667],[457,339],[743,566],[844,687],[721,307],[908,777],[168,26],[223,83],[641,80],[616,96],[902,608],[740,572],[589,539],[184,103],[871,762],[414,319],[502,113],[419,299],[872,333],[582,86],[392,307],[497,434],[416,334],[628,313],[886,597],[990,659],[436,225],[341,80],[540,93],[318,136],[956,464],[428,347],[964,567],[300,169],[613,575],[335,123],[998,517],[576,405],[727,57],[503,131],[431,173],[979,498],[921,222],[779,644],[409,366],[561,422],[704,183],[639,479],[412,403],[889,55],[907,3],[170,129],[927,338],[167,85],[646,370],[634,425],[835,675],[470,149],[902,142],[986,500],[833,819],[330,265],[490,447],[896,501],[735,512],[933,835],[693,506],[671,634],[641,231],[884,747],[600,154],[803,541],[557,153],[329,115],[774,606],[421,34],[892,707],[283,247],[248,7],[314,170],[721,278],[409,48],[864,619],[85,40],[897,487],[774,285],[636,315],[603,480],[828,209],[862,344],[453,135],[584,39],[652,521],[958,955],[332,65],[381,360],[618,243],[536,157],[869,139],[920,652],[319,241],[845,481],[863,573],[801,0],[330,311],[756,489],[824,223],[787,113],[948,479],[422,175],[218,17],[428,83],[963,273],[764,276],[278,22],[697,182],[640,136],[433,354],[727,40],[734,390],[269,93],[816,226],[589,431],[647,602],[636,101],[262,73],[395,211],[997,830],[810,379],[587,504],[748,215],[847,824],[806,648],[444,0],[766,536],[645,398],[249,53],[959,49],[646,34],[836,787],[891,586],[780,405],[784,133],[914,585],[981,122],[398,88],[870,429],[530,363],[709,608],[706,577],[926,557],[509,370],[745,719],[666,420],[688,141],[299,69],[766,305],[946,608],[946,446],[624,614],[704,527],[768,142],[998,33],[639,343],[332,284],[500,186],[39,6],[702,430],[981,620],[658,250],[887,579],[316,27],[938,432],[895,508],[357,121],[535,236],[138,54],[230,180],[692,231],[429,308],[958,841],[662,296],[828,793],[527,261],[929,515],[989,808],[750,337],[899,184],[608,433],[462,405],[415,30],[872,844],[503,92],[905,807],[457,140],[644,34],[669,263],[322,271],[698,488],[781,226],[634,255],[709,4],[271,132],[761,550],[893,11],[362,136],[663,219],[682,586],[775,142],[755,164],[882,242],[317,263],[436,242],[895,29],[833,686],[661,64],[306,141],[500,309],[399,0],[963,186],[83,80],[261,227],[550,467],[590,310],[434,340],[911,699],[158,88],[836,279],[338,264],[628,198],[908,624],[404,165],[604,465],[936,176],[942,233],[302,234],[212,77],[838,391],[890,875],[952,726],[781,280],[713,486],[414,182],[112,109],[563,406],[781,579],[520,492],[522,236],[433,62],[747,189],[863,445],[933,388],[896,393],[840,36],[732,588],[229,61],[431,281],[566,152],[635,284],[979,934],[797,521],[890,570],[810,76],[376,65],[890,158],[606,549],[328,150],[774,60],[603,284],[639,568],[628,625],[983,645],[403,128],[697,494],[839,577],[861,582],[258,58],[802,221],[769,659],[377,103],[993,912],[725,341],[759,137],[819,151],[671,60],[814,690],[935,424],[924,713],[990,584],[695,540],[875,479],[71,17],[934,502],[694,351],[843,454],[419,137],[992,122],[762,408],[962,487],[384,288],[701,655],[974,716],[755,277],[576,286],[579,197],[211,193],[291,114],[980,707],[192,65],[901,879],[986,679],[519,324],[927,914],[796,481],[585,197],[387,260],[148,37],[810,792],[636,333],[826,774],[523,342],[728,411],[851,712],[699,540],[914,766],[620,109],[848,677],[820,726],[649,227],[712,675],[394,243],[742,606],[262,171],[687,371],[766,434],[519,322],[601,198],[825,800],[831,532],[613,117],[118,25],[390,380],[655,348],[734,598],[492,322],[581,391],[576,308],[358,169],[804,590],[465,213],[783,697],[324,60],[926,131],[550,87],[757,384],[746,88],[969,510],[577,196],[603,398],[459,54],[273,88],[529,194],[931,323],[962,431],[564,529],[780,431],[822,720],[390,261],[910,883],[363,13],[941,286],[816,64],[172,68],[612,37],[157,39],[601,146],[532,198],[977,927],[467,328],[633,200],[802,146],[984,230],[972,151],[536,58],[229,177],[704,27],[260,117],[332,107],[935,144],[514,339],[197,14],[687,484],[590,38],[853,598],[898,510],[979,24],[992,243],[801,464],[706,631],[495,186],[406,184],[869,581],[689,242],[369,45],[830,767],[359,92],[454,118],[809,510],[543,393],[520,207],[201,150],[666,319],[902,88],[893,479],[571,460],[659,535],[752,678],[910,277],[311,15],[776,691],[691,423],[579,54],[207,42],[888,735],[901,49],[854,428],[765,393],[481,126],[860,69],[968,106],[899,514],[319,247],[939,366],[479,297],[988,876],[347,62],[799,97],[892,169],[395,345],[630,85],[508,447],[552,280],[353,329],[823,630],[939,513],[966,453],[672,255],[979,881],[326,216],[998,787],[919,228],[447,361],[735,145],[534,528],[568,203],[417,282],[782,563],[962,42],[552,29],[747,542],[854,302],[799,22],[713,457],[608,359],[867,337],[738,547],[572,290],[544,397],[435,352],[497,207],[449,448],[814,49],[709,589],[821,655],[769,709],[809,651],[789,533],[737,588],[484,227],[967,617],[916,32],[954,286],[809,274],[925,880],[954,933],[455,72],[862,600],[364,160],[983,258],[752,716],[616,281],[766,172],[559,85],[335,270],[671,415],[751,461],[614,502],[822,503],[592,480],[863,132],[653,37],[969,231],[846,356],[720,70],[802,247],[290,93],[275,33],[558,481],[902,516],[531,494],[299,135],[188,184],[978,631],[823,117],[907,701],[850,218],[715,235],[822,17],[504,397],[802,441],[159,130],[318,314],[724,91],[883,5],[959,411],[385,230],[991,623],[789,439],[533,319],[694,469],[410,37],[469,441],[238,226],[961,564],[543,83],[633,520],[911,788],[710,273],[867,557],[741,128],[588,561],[553,170],[362,337],[560,140],[653,313],[552,387],[215,25],[326,18],[338,90],[678,649],[706,661],[323,239],[767,309],[433,208],[827,72],[737,246],[924,48],[744,143],[601,274],[175,74],[701,569],[425,401],[604,44],[793,371],[465,364],[507,121],[752,511],[453,345],[86,41],[870,81],[900,96],[612,177],[852,398],[505,95],[799,327],[769,170],[849,368],[705,582],[597,328],[529,113],[928,745],[838,563],[474,394],[173,48],[619,321],[873,588],[906,403],[869,588],[699,30],[655,449],[263,140],[311,197],[788,553],[903,704],[916,159],[262,128],[925,395],[758,92],[642,159],[900,771],[871,178],[950,367],[960,559],[157,149],[641,279],[671,465],[727,130],[779,444],[236,119],[401,65],[876,413],[369,142],[593,499],[920,875],[389,159],[696,616],[488,295],[632,225],[948,614],[972,867],[871,678],[226,84],[810,359],[806,508],[935,61],[958,449],[890,558],[145,130],[613,320],[997,986],[746,308],[837,67],[74,40],[842,170],[873,735],[786,126],[253,218],[436,155],[956,865],[866,671],[960,453],[736,378],[593,194],[852,552],[766,680],[430,33],[834,329],[629,536],[319,268],[630,256],[958,422],[561,190],[984,341],[738,314],[728,458],[933,66],[718,161],[644,40],[821,625],[615,156],[525,49],[793,262],[823,436],[525,148],[692,453],[973,617],[398,386],[693,670],[477,377],[998,11],[946,166],[602,142],[911,270],[905,318],[391,98],[355,180],[955,162],[540,513],[360,228],[277,211],[645,84],[760,562],[551,133],[302,111],[912,806],[967,531],[899,746],[858,756],[224,120],[651,635],[449,280],[654,643],[680,123],[789,549],[943,76],[503,350],[913,661],[695,462],[963,513],[457,321],[817,375],[761,19],[920,404],[946,108],[797,26],[357,285],[622,331],[503,340],[921,36],[884,440],[105,102],[683,465],[773,492],[765,301],[751,608],[275,225],[510,123],[501,214],[977,802],[677,534],[961,760],[942,938],[774,710],[355,115],[159,6],[950,573],[214,190],[722,702],[480,228],[909,10],[701,469],[529,455],[982,746],[760,375],[810,391],[778,92],[963,908],[630,56],[686,171],[553,477],[390,229],[696,424],[726,151],[934,465],[797,781],[557,242],[772,180],[876,355],[607,451],[186,133],[726,240],[825,715],[236,164],[826,711],[990,608],[957,332],[616,284],[761,566],[861,519],[355,38],[773,391],[806,346],[243,167],[311,295],[643,273],[583,509],[884,673],[509,408],[543,162],[693,92],[974,847],[909,51],[215,91],[733,477],[939,630],[800,321],[933,877],[765,745],[268,246],[766,329],[595,360],[581,512],[688,507],[734,450],[721,642],[798,676],[171,157],[158,85],[551,5],[763,602],[659,548],[701,652],[579,470],[771,609],[921,789],[680,62],[459,42],[734,625],[219,80],[338,247],[671,368],[868,189],[802,741],[938,882],[640,277],[956,920],[369,0],[913,171],[726,359],[728,566],[681,326],[481,243],[757,19],[252,80],[992,663],[89,21],[449,224],[847,224],[532,280],[406,39],[711,233],[693,497],[694,233],[664,101],[667,27],[403,204],[546,133],[468,184],[755,89],[730,305],[609,362],[885,290],[928,766],[182,20],[387,381],[385,27],[645,614],[720,458],[581,489],[975,154],[395,388],[449,258],[743,717],[116,19],[533,81],[408,205],[492,270],[788,316],[717,571],[123,74],[903,569],[659,476],[909,18],[853,153],[970,882],[728,262],[724,255],[593,235],[797,275],[799,703],[879,387],[788,358],[350,68],[669,184],[829,117],[787,705],[559,244],[209,24],[935,566],[930,341],[627,256],[568,93],[296,191],[795,349],[670,396],[587,429],[929,202],[645,508],[820,581],[793,789],[640,370],[781,591],[801,556],[886,17],[548,31],[647,130],[186,68],[593,283],[577,286],[856,582],[337,126],[755,21],[925,571],[868,330],[408,114],[502,183],[219,64],[157,62],[909,184],[326,108],[239,86],[919,743],[628,20],[720,149],[503,168],[702,233],[889,859],[558,164],[692,504],[786,727],[951,217],[960,119],[171,98],[680,467],[996,91],[947,898],[616,16],[513,353],[985,826],[975,223],[757,52],[781,267],[858,397],[883,21],[312,170],[869,679],[581,350],[353,136],[755,461],[617,33],[710,232],[273,178],[746,130],[912,828],[77,6],[900,853],[711,328],[835,423],[676,367],[619,440],[510,477],[355,25],[887,246],[887,163],[563,353],[841,16],[717,9],[353,7],[504,446],[764,710],[423,19],[444,79],[584,70],[679,512],[955,251],[837,463],[880,26],[652,587],[909,308],[126,73],[73,50],[533,446],[494,21],[893,512],[889,809],[598,564],[718,699],[903,26],[998,143],[972,894],[446,129],[585,533],[652,407],[457,65],[277,47],[203,40],[512,491],[829,282],[614,561],[933,780],[385,79],[636,148],[869,662],[528,412],[888,44],[887,282],[887,172],[639,231],[392,21],[916,237],[536,82],[492,176],[970,885],[470,157],[793,274],[651,368],[865,784],[863,616],[887,323],[697,240],[981,612],[927,15],[574,534],[694,216],[305,209],[783,27],[676,444],[975,94],[432,422],[789,10],[694,343],[777,470],[816,365],[638,8],[931,365],[465,413],[373,363],[953,243],[461,214],[955,560],[179,141],[969,742],[528,156],[737,367],[615,223],[417,328],[959,941],[860,488],[765,469],[301,10],[243,128],[463,20],[765,45],[814,124],[663,167],[936,609],[984,872],[997,650],[869,474],[927,409],[820,414],[321,14],[787,13],[850,197],[189,45],[896,386],[957,5],[743,230],[617,458],[622,605],[658,355],[356,326],[268,31],[717,584],[202,191],[942,266],[649,398],[264,83],[830,689],[702,245],[449,343],[984,3],[817,641],[889,655],[353,52],[538,520],[708,298],[323,118],[427,146],[569,395],[541,509],[642,26],[657,77],[563,262],[624,518],[519,46],[971,12],[646,174],[838,786],[985,486],[837,256],[413,81],[107,6],[766,406],[337,172],[96,28],[524,44],[49,16],[940,57],[864,734],[966,270],[737,386],[505,318],[726,223],[563,186],[526,99],[605,20],[610,187],[613,67],[626,133],[702,275],[713,192],[700,426],[988,719],[290,24],[356,253],[950,727],[664,174],[767,440],[815,259],[727,53],[861,243],[309,123],[638,279],[834,632],[940,543],[631,28],[770,458],[311,205],[880,215],[764,616],[651,382],[331,327],[905,847],[911,60],[282,260],[904,527],[712,381],[112,37],[133,123],[723,350],[918,227],[628,474],[736,605],[173,0],[884,300],[531,151],[725,225],[998,163],[531,279],[940,886],[533,177],[177,28],[893,456],[969,953],[656,276],[577,60],[221,159],[951,536],[746,615],[671,66],[935,117],[318,96],[712,38],[316,65],[757,155],[763,276],[143,28],[976,431],[749,700],[793,674],[673,78],[870,867],[818,481],[966,162],[570,527],[363,178],[887,536],[647,355],[659,342],[308,241],[529,105],[344,246],[555,433],[798,555],[170,18],[814,347],[465,21],[965,450],[906,183],[976,420],[649,272],[907,587],[840,229],[357,120],[500,306],[689,509],[904,513],[998,335],[843,243],[874,721],[219,20],[792,282],[975,626],[338,311],[826,637],[768,549],[955,571],[996,548],[963,450],[986,736],[975,448],[462,36],[650,194],[782,679],[651,426],[784,539],[656,302],[306,219],[778,488],[899,435],[743,553],[807,204],[568,509],[797,508],[598,435],[284,176],[819,699],[937,757],[336,46],[635,448],[322,29],[374,37],[583,225],[939,641],[283,154],[942,92],[933,858],[770,240],[203,189],[711,605],[726,661],[275,239],[816,337],[914,757],[343,248],[533,34],[888,428],[542,232],[914,161],[283,145],[834,455],[778,731],[918,120],[374,220],[555,158],[935,32],[826,241],[461,97],[903,132],[945,204],[725,51],[279,189],[389,309],[489,121],[560,502],[755,235],[552,33],[850,558],[988,365],[831,256],[381,178],[502,436],[564,272],[918,892],[960,785],[366,38],[922,849],[855,265],[752,485],[861,709],[977,323],[880,458],[637,71],[500,414],[613,522],[115,21],[717,565],[672,399],[877,386],[858,11],[791,561],[756,516],[925,583],[576,325],[825,274],[505,353],[918,140],[964,853],[398,104],[696,301],[866,688],[890,465],[576,28],[625,88],[949,717],[200,41],[767,548],[844,383],[857,591],[840,759],[829,81],[832,622],[848,29],[856,208],[609,42],[428,399],[977,174],[821,261],[931,568],[345,219],[950,808],[553,136],[925,622],[509,397],[802,621],[929,320],[816,445],[727,418],[814,684],[650,595],[589,408],[210,126],[458,289],[997,500],[324,318],[253,78],[665,165],[950,574],[592,454],[683,140],[440,266],[998,133],[502,132],[790,542],[804,676],[96,93],[562,178],[683,33],[682,663],[173,61],[536,186],[547,212],[589,125],[831,449],[621,323],[688,591],[954,299],[672,54],[538,150],[624,484],[872,737],[819,371],[498,36],[494,122],[868,186],[280,183],[949,900],[714,379],[273,171],[333,127],[737,613],[598,4],[476,463],[710,597],[670,516],[933,420],[771,736],[873,452],[656,80],[702,694],[888,33],[178,136],[928,763],[525,310],[767,707],[564,229],[912,111],[856,242],[663,163],[943,509],[257,121],[106,14],[752,105],[678,501],[355,343],[984,336],[232,2],[968,845],[547,235],[706,77],[447,155],[923,848],[558,72],[711,307],[682,648],[916,396],[903,370],[817,211],[934,273],[933,338],[640,348],[27,0],[729,152],[960,678],[671,237],[693,491],[542,463],[977,806],[944,315],[46,1],[712,326],[548,176],[513,423],[748,660],[289,85],[394,41],[216,137],[859,597],[848,696],[577,465],[846,231],[710,533],[930,518],[191,52],[430,334],[427,226],[946,287],[702,473],[850,246],[875,821],[892,416],[191,142],[875,405],[165,44],[973,767],[600,308],[815,158],[616,333],[870,522],[991,678],[331,190],[503,196],[743,430],[911,492],[940,884],[370,217],[327,17],[687,57],[173,169],[895,697],[649,282],[840,357],[905,326],[623,515],[976,702],[420,46],[897,492],[839,165],[197,25],[908,27],[658,596],[131,40],[680,650],[489,486],[771,767],[693,490],[457,69],[790,334],[663,95],[512,136],[483,312],[548,62],[623,1],[820,818],[972,428],[455,52],[930,206],[794,94],[373,299],[950,705],[372,84],[676,542],[563,559],[684,314],[924,742],[373,285],[736,190],[809,265],[786,33],[579,65],[433,23],[750,259],[451,260],[767,39],[969,259],[867,227],[942,32],[934,846],[900,134],[635,258],[570,503],[516,415],[812,479],[693,145],[502,498],[873,577],[594,468],[626,434],[517,75],[356,111],[908,337],[997,29],[112,99],[846,759],[931,445],[153,48],[987,184],[944,318],[856,249],[219,85],[836,83],[108,73],[760,598],[729,529],[367,170],[860,21],[286,283],[919,841],[804,157],[598,327],[294,97],[636,372],[477,437],[478,316],[966,149],[283,258],[672,669],[599,286],[448,251],[725,525],[760,101],[891,481],[433,97],[686,163],[161,149],[664,593],[703,89],[846,429],[839,569],[709,181],[754,317],[679,538],[954,731],[778,200],[693,268],[324,91],[320,307],[487,67],[540,450],[664,486],[599,340],[511,51],[920,534],[629,480],[875,192],[910,271],[957,95],[401,383],[816,634],[861,597],[730,567],[965,753],[958,114],[802,723],[744,268],[562,336],[404,254],[916,452],[738,288],[806,348],[640,110],[612,366],[534,182],[301,49],[715,290],[964,844],[356,16],[334,136],[921,184],[963,701],[675,405],[907,514],[356,89],[945,458],[996,132],[996,48],[814,172],[549,137],[877,324],[632,131],[814,47],[994,743],[917,616],[518,417],[822,398],[578,452],[719,481],[795,256],[196,53],[774,549],[903,385],[395,254],[937,151],[990,848],[896,865],[513,103],[813,213],[522,91],[366,163],[354,199],[965,384],[805,70],[369,16],[302,105],[570,137],[913,420],[748,606],[853,50],[749,177],[547,320],[760,529],[300,213],[562,289],[932,613],[372,281],[927,22],[680,428],[111,50],[667,50],[637,371],[687,423],[725,630],[386,384],[588,45],[889,573],[569,387],[393,258],[943,377],[400,133],[243,129],[576,317],[768,312],[231,83],[731,723],[744,509],[435,35],[429,385],[489,114],[538,362],[888,319],[819,100],[391,308],[388,21],[911,104],[770,716],[712,490],[690,486],[171,110],[981,527],[697,148],[767,123],[858,523],[638,425],[962,958],[594,470],[876,69],[851,690],[415,12],[164,66],[845,308],[341,233],[370,156],[986,437],[849,470],[541,9],[936,897],[978,388],[843,756],[772,674],[418,316],[589,100],[479,183],[918,267],[857,254],[695,532],[974,287],[628,594],[752,301],[219,25],[316,181],[355,125],[283,204],[565,210],[295,123],[174,45],[196,47],[990,456],[267,164],[805,790],[587,347],[915,810],[356,355],[247,225],[864,860],[879,345],[820,776],[690,309],[565,179],[968,908],[989,351],[460,353],[470,320],[959,899],[514,443],[506,492],[945,449],[904,13],[619,173],[352,33],[705,190],[575,307],[931,44],[920,463],[628,580],[506,293],[993,102],[853,749],[403,270],[812,385],[394,101],[769,2],[925,207],[980,831],[800,344],[824,199],[682,655],[773,639],[387,337],[726,192],[471,29],[887,778],[908,496],[244,91],[237,99],[909,603],[450,440],[816,481],[287,281],[677,59],[442,292],[930,534],[519,348],[644,272],[779,110],[890,54],[736,364],[677,661],[401,356],[487,409],[493,415],[230,75],[984,316],[819,623],[503,429],[167,48],[952,938],[843,511],[703,64],[292,64],[881,638],[782,341],[693,522],[533,157],[790,696],[508,491],[886,144],[995,253],[766,646],[996,62],[466,455],[388,81],[846,30],[869,481],[714,253],[657,280],[842,326],[779,80],[723,532],[472,172],[834,497],[436,32],[617,353],[667,322],[788,145],[303,76],[893,745],[452,287],[893,260],[474,274],[659,453],[953,733],[658,377],[331,93],[597,293],[773,373],[489,42],[922,245],[850,596],[487,27],[817,22],[786,1],[888,406],[878,810],[960,45],[129,40],[386,281],[978,823],[100,52],[771,370],[779,747],[952,491],[290,215],[690,272],[955,283],[740,377],[465,370],[428,375],[692,208],[381,293],[825,91],[57,55],[303,102],[348,316],[988,418],[253,243],[618,74],[719,490],[491,147],[776,724],[680,492],[889,569],[798,322],[618,344],[824,755],[818,56],[779,52],[982,586],[807,194],[212,189],[869,852],[890,242],[739,118],[788,520],[696,637],[676,32],[834,378],[620,486],[733,656],[869,38],[657,145],[448,41],[302,251],[903,768],[416,91],[525,431],[338,83],[525,523],[798,386],[651,590],[475,191],[788,776],[496,385],[216,5],[728,159],[687,168],[892,548],[753,473],[371,241],[981,633],[500,257],[733,295],[381,94],[618,430],[449,46],[860,43],[745,728],[981,59],[833,612],[428,12],[319,151],[437,152],[919,425],[137,15],[750,176],[237,203],[830,79],[765,41],[305,138],[477,87],[678,669],[815,528],[988,571],[799,357],[693,181],[511,294],[588,172],[901,460],[705,586],[749,679],[951,745],[813,289],[349,74],[804,533],[909,409],[910,129],[846,355],[381,312],[917,54],[915,202],[502,367],[735,324],[676,167],[943,630],[881,721],[918,884],[912,178],[928,34],[938,845],[810,101],[730,206],[756,16],[911,247],[275,220],[876,554],[927,328],[673,387],[919,55],[570,272],[902,853],[469,452],[883,530],[577,187],[596,97],[798,776],[991,828],[851,179],[763,502],[943,552],[672,150],[248,108],[599,460],[858,313],[774,193],[979,193],[373,233],[469,275],[698,94],[827,184],[781,132],[784,734],[54,41],[826,597],[739,57],[956,768],[954,423],[424,219],[511,45],[845,152],[119,46],[932,313],[929,644],[795,717],[795,245],[926,686],[290,75],[842,663],[870,699],[296,118],[961,6],[528,425],[804,546],[559,336],[715,207],[874,846],[922,609],[931,104],[705,440],[979,437],[287,224],[822,205],[367,58],[695,5],[889,485],[912,466],[885,399],[837,64],[734,402],[932,860],[974,451],[587,501],[476,408],[808,471],[915,545],[901,857],[863,518],[438,430],[380,13],[446,201],[630,306],[792,603],[811,395],[109,93],[882,158],[607,596],[573,348],[779,272],[793,241],[885,588],[874,207],[439,424],[821,732],[969,588],[777,66],[925,827],[694,522],[908,333],[685,432],[567,461],[945,512],[747,365],[395,207],[368,321],[957,597],[417,250],[440,17],[548,531],[176,141],[687,68],[869,46],[856,678],[913,904],[303,276],[347,310],[845,712],[851,708],[688,296],[996,623],[968,921],[321,266],[982,487],[266,44],[739,293],[594,223],[946,550],[209,64],[432,283],[843,136],[797,480],[917,630],[986,323],[383,103],[298,247],[881,37],[811,255],[185,110],[810,772],[754,644],[727,242],[822,461],[444,44],[903,536],[240,87],[898,496],[978,771],[628,397],[751,120],[816,688],[629,434],[794,101],[911,726],[628,360],[749,195],[246,206],[424,333],[503,495],[652,394],[119,98],[538,97],[703,390],[914,266],[432,320],[984,865],[594,235],[362,110],[841,178],[802,271],[275,195],[695,473],[764,5],[801,352],[745,518],[921,801],[386,182],[691,531],[805,241],[698,331],[285,261],[971,440],[304,138],[895,201],[489,50],[719,91],[419,314],[714,361],[425,64],[954,7],[870,40],[795,462],[329,232],[811,523],[912,667],[709,206],[917,538],[613,14],[849,114],[104,98],[235,115],[454,308],[496,166],[572,106],[944,784],[364,181],[468,198],[845,18],[986,562],[722,270],[988,603],[431,110],[539,229],[508,349],[820,453],[768,368],[409,131],[953,320],[809,101],[795,76],[515,280],[694,579],[378,34],[504,488],[785,776],[994,546],[822,268],[948,815],[784,776],[218,19],[898,531],[240,0],[786,708],[405,54],[926,498],[465,81],[608,276],[247,150],[881,491],[871,187],[597,416],[865,745],[861,807],[909,556],[359,138],[451,112],[381,158],[773,487],[753,745],[746,2],[496,450],[780,171],[885,500],[379,23],[328,230],[730,247],[900,496],[657,581],[915,292],[732,114],[653,584],[798,466],[568,121],[869,27],[491,306],[879,242],[970,658],[558,514],[761,335],[681,335],[869,391],[885,814],[593,315],[691,116],[798,67],[413,372],[537,352],[654,571],[673,345],[908,517],[745,75],[603,54],[96,60],[760,191],[250,209],[464,42],[595,323],[518,220],[923,631],[858,357],[734,469],[424,246],[509,254],[881,866],[266,158],[164,111],[85,55],[508,502],[928,352],[214,1],[614,195],[231,21],[395,18],[880,702],[888,612],[759,486],[529,480],[824,589],[540,265],[695,690],[907,153],[658,583],[770,73],[244,123],[989,701],[915,512],[692,148],[625,572],[541,492],[847,201],[934,933],[474,27],[659,322],[735,418],[833,195],[385,328],[645,351],[566,180],[310,18],[832,590],[807,652],[726,313],[853,148],[68,25],[732,147],[895,509],[310,147],[192,92],[372,15],[978,692],[857,656],[865,172],[246,225],[165,122],[913,97],[409,8],[520,491],[894,820],[825,128],[534,183],[792,151],[883,692],[461,263],[909,179],[44,4],[938,146],[964,955],[108,53],[617,400],[414,277],[925,343],[895,436],[156,95],[525,359],[489,23],[170,103],[422,325],[755,406],[540,376],[793,342],[403,272],[640,69],[881,317],[262,110],[600,434],[331,166],[950,775],[818,247],[392,350],[907,261],[721,614],[909,752],[841,481],[269,155],[366,119],[257,241],[897,780],[421,42],[332,201],[972,234],[644,57],[829,744],[962,576],[901,877],[218,62],[927,29],[294,209],[488,395],[865,148],[690,361],[552,533],[816,241],[934,210],[668,42],[650,371],[350,343],[914,621],[640,521],[922,268],[559,434],[948,659],[544,439],[884,466],[941,921],[640,280],[923,4],[870,472],[282,13],[428,54],[869,846],[497,104],[901,832],[510,208],[643,105],[584,347],[905,162],[140,80],[417,161],[655,571],[903,845],[853,805],[324,236],[848,464],[888,79],[830,798],[337,284],[931,784],[921,893],[805,454],[521,41],[527,262],[587,9],[748,206],[624,600],[272,122],[490,381],[674,477],[684,288],[686,51],[692,243],[984,222],[218,82],[297,122],[991,973],[413,281],[581,536],[845,290],[728,96],[704,37],[632,189],[639,182],[443,389],[680,151],[905,593],[824,631],[359,46],[709,501],[857,22],[682,192],[945,403],[940,796],[347,226],[759,384],[322,111],[993,146],[950,369],[683,439],[581,442],[405,63],[581,376],[436,45],[470,177],[719,319],[732,673],[687,585],[967,440],[848,615],[752,300],[177,140],[907,746],[365,353],[517,370],[405,243],[941,269],[712,404],[456,329],[751,285],[546,329],[860,123],[365,72],[735,510],[876,537],[902,869],[546,545],[261,166],[733,247],[498,359],[784,361],[602,505],[971,846],[770,99],[869,527],[842,615],[975,652],[182,145],[840,10],[845,779],[897,141],[915,779],[635,406],[736,503],[540,99],[771,44],[674,338],[763,742],[676,484],[429,189],[667,591],[863,150],[836,268],[754,90],[474,378],[831,604],[577,526],[874,93],[707,150],[399,335],[948,330],[913,848],[789,227],[273,200],[259,167],[706,420],[656,490],[135,90],[319,291],[835,538],[781,737],[300,233],[940,76],[438,98],[431,251],[794,72],[615,57],[781,328],[565,69],[774,577],[317,93],[294,163],[699,164],[793,379],[947,319],[982,40],[910,582],[770,444],[559,75],[872,404],[836,315],[733,390],[704,514],[456,453],[924,647],[325,152],[770,158],[645,431],[254,108],[500,292],[773,458],[763,466],[934,76],[890,684],[330,243],[695,378],[595,543],[879,94],[823,204],[711,267],[675,327],[437,368],[504,88],[645,226],[890,685],[843,470],[943,422],[846,57],[835,746],[739,425],[211,30],[476,440],[320,3],[691,601],[866,216],[877,596],[709,249],[619,163],[729,274],[44,37],[474,425],[323,322],[388,186],[420,279],[408,120],[779,480],[843,595],[557,345],[703,645],[345,121],[618,223],[741,104],[328,46],[421,177],[819,421],[655,535],[619,380],[775,249],[145,26],[748,345],[535,290],[603,466],[814,295],[863,260],[83,34],[767,14],[324,210],[674,509],[447,37],[606,336],[467,349],[323,312],[542,535],[467,445],[853,114],[920,511],[537,465],[848,388],[764,44],[420,382],[729,562],[525,154],[341,197],[470,456],[794,305],[546,7],[517,478],[228,69],[631,85],[763,715],[810,75],[856,7],[340,141],[859,210],[633,53],[494,429],[179,0],[841,144],[891,792],[970,962],[837,436],[700,467],[692,85],[948,375],[994,253],[775,409],[720,543],[843,545],[710,689],[194,157],[907,231],[440,39],[831,697],[433,247],[923,408],[785,55],[756,660],[820,431],[650,281],[907,517],[883,515],[613,436],[716,29],[828,515],[462,272],[492,412],[660,73],[446,442],[721,185],[990,736],[963,255],[811,526],[935,845],[803,354],[613,110],[643,496],[734,726],[606,13],[743,668],[301,190],[854,732],[763,528],[530,468],[664,332],[972,643],[911,300],[377,64],[693,460],[999,263],[932,16],[867,207],[980,896],[816,44],[238,61],[434,56],[759,357],[761,259],[687,181],[846,482],[304,95],[79,3],[497,391],[810,358],[542,126],[980,464],[440,369],[872,538],[958,246],[730,519],[878,146],[760,76],[941,651],[460,184],[921,838],[907,506],[955,56],[440,114],[908,512],[761,134],[650,56],[616,380],[782,49],[678,312],[847,457],[890,706],[394,22],[880,713],[459,132],[866,67],[462,17],[753,532],[965,729],[994,918],[110,98],[886,97],[973,492],[336,57],[893,703],[844,741],[627,311],[863,443],[956,833],[432,345],[450,276],[751,127],[886,28],[846,67],[631,199],[559,335],[699,280],[710,76],[860,293],[836,354],[975,654],[944,311],[526,307],[754,541],[836,327],[893,836],[710,47],[313,28],[632,486],[902,852],[987,354],[929,848],[817,125],[295,188],[531,194],[797,302],[302,209],[919,762],[628,548],[263,114],[755,85],[826,267],[858,691],[783,672],[239,113],[635,222],[896,893],[188,111],[538,452],[453,284],[689,671],[747,121],[668,647],[947,613],[978,289],[701,53],[817,225],[893,16],[785,84],[737,559],[660,234],[654,578],[649,606],[228,129],[444,133],[883,376],[924,922],[946,912],[966,928],[641,333],[854,731],[683,311],[192,167],[691,662],[307,80],[760,669],[476,263],[389,193],[747,450],[517,444],[881,475],[861,172],[988,283],[170,3],[806,797],[880,223],[614,187],[584,448],[989,350],[876,388],[817,328],[743,210],[847,0],[362,226],[603,248],[647,542],[239,38],[781,650],[341,263],[772,210],[707,135],[744,717],[838,491],[972,590],[537,109],[516,287],[227,209],[773,511],[594,8],[913,319],[809,703],[916,410],[279,45],[212,20],[376,177],[605,494],[782,644],[809,65],[268,11],[549,88],[677,594],[255,138],[906,892],[962,652],[857,535],[452,122],[595,592],[998,306],[969,432],[762,570],[793,448],[725,293],[809,670],[792,296],[632,22],[789,335],[778,182],[856,228],[737,411],[771,233],[963,509],[466,366],[737,184],[520,455],[965,816],[589,345],[790,339],[627,173],[886,846],[822,13],[724,349],[345,83],[554,184],[808,718],[430,135],[744,517],[646,78],[792,136],[944,690],[786,555],[949,698],[690,391],[924,535],[942,318],[802,331],[898,144],[749,640],[541,359],[440,338],[923,643],[307,7],[851,609],[940,625],[573,448],[364,310],[398,62],[237,107],[670,483],[891,668],[420,88],[422,286],[997,442],[831,660],[952,822],[694,394],[752,641],[776,239],[405,139],[490,104],[775,432],[699,637],[691,323],[535,64],[287,60],[242,193],[788,274],[879,492],[787,228],[779,681],[785,642],[426,200],[939,8],[412,94],[928,196],[837,439],[692,177],[893,644],[681,380],[425,37],[442,412],[992,535],[501,89],[874,657],[362,81],[995,841],[854,566],[209,18],[954,225],[824,723],[724,303],[634,604],[917,66],[754,497],[610,9],[307,11],[649,175],[891,835],[747,301],[446,221],[767,343],[206,156],[571,82],[441,181],[217,129],[958,658],[702,413],[780,558],[563,386],[689,666],[353,289],[923,635],[568,391],[529,476],[912,659],[983,427],[977,421],[856,837],[479,176],[852,514],[813,267],[397,368],[621,545],[567,199],[358,193],[910,245],[445,52],[875,676],[937,372],[470,190],[798,503],[540,283],[288,50],[849,85],[938,912],[486,111],[729,683],[610,156],[739,206],[467,336],[731,61],[938,831],[656,644],[889,556],[711,572],[914,853],[398,45],[989,616],[985,430],[424,274],[588,151],[600,46],[312,200],[857,682],[257,94],[849,793],[555,523],[949,659],[998,802],[703,145],[810,732],[697,456],[482,213],[832,159],[854,91],[357,133],[972,247],[803,687],[763,284],[887,154],[750,51],[496,348],[195,183],[974,151],[827,825],[933,878],[866,5],[766,501],[713,159],[385,205],[873,293],[781,175],[998,864],[593,181],[444,435],[904,618],[887,252],[531,33],[854,386],[267,47],[336,333],[946,144],[944,173],[315,213],[334,326],[779,752],[412,322],[773,398],[817,180],[236,92],[779,96],[672,20],[337,256],[460,70],[659,611],[960,479],[363,308],[686,243],[899,86],[196,93],[976,959],[358,333],[819,647],[855,765],[323,11],[649,611],[484,316],[514,383],[797,692],[859,101],[562,2],[792,458],[873,684],[946,484],[752,252],[926,364],[556,535],[611,284],[991,987],[498,134],[803,767],[606,84],[801,344],[891,875],[749,551],[609,397],[168,79],[720,14],[490,7],[658,83],[736,232],[481,127],[978,403],[694,262],[821,327],[637,304],[762,114],[776,499],[767,21],[508,367],[812,524],[896,753],[661,460],[697,359],[958,150],[767,591],[436,257],[700,602],[526,288],[693,560],[884,39],[398,34],[455,384],[805,569],[160,142],[515,407],[557,285],[941,532],[644,152],[521,134],[784,696],[424,3],[484,106],[540,263],[888,365],[891,700],[822,764],[764,434],[617,347],[462,136],[609,373],[722,406],[644,578],[867,228],[551,399],[791,452],[712,391],[558,183],[993,34],[894,671],[597,395],[949,836],[589,194],[855,53],[783,56],[929,288],[848,717],[607,436],[587,45],[706,124],[912,691],[921,748],[857,805],[609,465],[683,1],[881,684],[231,161],[874,833],[794,429],[917,155],[928,894],[485,303],[996,714],[426,265],[872,209],[380,169],[876,858],[908,266],[789,452],[181,30],[399,207],[695,80],[722,404],[58,18],[863,439],[586,233],[948,393],[846,590],[776,563],[445,70],[885,301],[912,517],[671,31],[622,357],[762,534],[726,566],[661,380],[809,169],[367,183],[256,192],[789,544],[649,433],[370,186],[588,339],[671,549],[549,244],[710,259],[945,367],[543,391],[898,508],[712,248],[486,467],[512,508],[824,436],[637,178],[320,228],[513,250],[400,249],[536,467],[664,15],[840,747],[704,51],[355,133],[929,244],[226,37],[934,291],[738,76],[728,269],[927,566],[937,498],[538,52],[922,680],[882,482],[844,127],[902,37],[956,803],[764,443],[758,565],[799,490],[337,257],[678,106],[625,67],[562,498],[975,805],[386,142],[730,125],[725,127],[975,2],[765,210],[594,445],[809,772],[509,115],[699,96],[980,529],[671,75],[600,300],[919,246],[925,365],[909,160],[843,182],[732,540],[187,100],[577,220],[744,67],[537,463],[571,379],[323,166],[995,872],[944,786],[668,652],[476,55],[618,0],[741,202],[531,376],[931,175],[767,6],[634,254],[710,87],[585,335],[917,791],[352,203],[718,67],[551,295],[654,548],[739,249],[997,870],[269,146],[447,5],[463,109],[490,147],[860,512],[932,496],[696,140],[694,291],[846,348],[959,541],[393,141],[858,539],[155,83],[624,17],[736,23],[648,585],[626,84],[162,14],[660,226],[809,598],[783,297],[742,632],[726,341],[798,183],[557,323],[855,22],[840,178],[302,18],[933,438],[383,96],[593,373],[570,29],[906,366],[535,420],[793,723],[857,435],[207,114],[151,26],[930,325],[917,713],[959,428],[919,604],[987,620],[501,267],[696,27],[982,255],[732,678],[835,545],[662,509],[938,559],[986,841],[518,189],[568,329],[774,556],[848,838],[865,383],[842,293],[360,189],[583,221],[800,778],[748,286],[686,398],[667,138],[268,4],[403,44],[854,139],[421,302],[733,374],[431,291],[790,688],[783,123],[783,752],[654,508],[952,342],[956,286],[499,225],[730,184],[653,541],[715,571],[276,11],[990,305],[535,440],[360,157],[874,87],[974,708],[648,155],[537,285],[889,643],[345,205],[229,58],[737,451],[586,64],[894,27],[627,305],[899,499],[229,112],[544,349],[750,520],[466,13],[511,300],[979,8],[708,499],[825,467],[655,468],[391,112],[600,270],[599,21],[734,149],[331,234],[611,211],[757,123],[887,408],[584,107],[897,148],[695,395],[784,11],[893,498],[524,20],[997,370],[464,355],[845,547],[861,793],[952,365],[651,567],[562,520],[673,563],[489,220],[391,369],[891,135],[753,247],[563,545],[962,957],[962,746],[758,57],[913,891],[520,84],[288,88],[811,191],[648,378],[830,405],[596,562],[392,386],[452,21],[868,815],[811,714],[543,46],[753,279],[861,745],[587,398],[761,334],[145,116],[718,206],[627,472],[613,601],[994,148],[583,197],[225,196],[543,302],[959,646],[918,849],[945,384],[427,376],[802,269],[614,139],[544,489],[735,631],[587,218],[16,4],[756,245],[457,405],[42,5],[773,754],[853,34],[899,609],[920,143],[905,835],[787,759],[369,368],[859,536],[916,156],[817,84],[400,289],[900,583],[496,210],[625,8],[439,410],[919,842],[473,121],[622,133],[548,217],[876,634],[573,110],[747,348],[639,75],[938,378],[642,71],[830,531],[313,22],[776,560],[934,710],[934,126],[238,60],[89,10],[733,433],[932,50],[885,558],[987,474],[964,523],[953,546],[835,766],[561,22],[943,473],[414,87],[730,357],[990,702],[969,949],[663,641],[750,385],[989,330],[799,510],[636,190],[797,206],[830,826],[579,161],[857,387],[844,709],[677,497],[659,638],[410,120],[271,13],[563,51],[875,320],[972,466],[805,578],[728,674],[503,10],[786,8],[617,383],[625,297],[378,182],[557,39],[459,185],[305,175],[701,41],[605,8],[660,463],[945,369],[758,366],[506,119],[482,2],[748,360],[845,155],[540,432],[353,12],[967,197],[634,381],[854,788],[933,166],[489,313],[689,489],[770,406],[780,243],[389,176],[695,535],[937,795],[574,384],[544,448],[924,459],[882,358],[375,279],[730,176],[739,122],[455,4],[662,322],[872,438],[980,858],[815,318],[640,116],[786,537],[571,49],[925,314],[796,335],[877,569],[741,63],[345,8],[495,391],[827,93],[826,451],[851,158],[662,73],[719,62],[894,326],[495,148],[854,113],[253,54],[649,394],[378,85],[836,532],[123,66],[971,413],[964,502],[468,292],[588,184],[475,208],[764,517],[329,150],[416,379],[677,45],[857,109],[840,115],[779,531],[795,715],[608,391],[379,194],[695,414],[578,451],[871,681],[646,580],[855,821],[437,280],[786,706],[739,544],[506,16],[895,881],[471,90],[645,266],[410,49],[483,72],[876,502],[749,666],[739,221],[455,90],[670,315],[614,397],[491,128],[657,137],[849,842],[926,895],[408,283],[428,303],[965,263],[424,264],[83,28],[925,94],[827,346],[614,190],[570,48],[429,351],[136,107],[883,45],[500,223],[737,269],[940,40],[942,889],[763,717],[747,561],[721,288],[319,27],[449,199],[852,646],[812,290],[883,646],[505,165],[589,420],[754,134],[789,599],[131,79],[984,831],[332,217],[753,7],[945,664],[807,476],[860,777],[67,62],[658,128],[473,335],[655,56],[841,154],[915,566],[857,42],[464,456],[997,866],[654,339],[945,316],[642,132],[939,564],[206,205],[781,237],[794,636],[292,155],[580,79],[982,964],[984,633],[573,51],[991,19],[510,76],[646,587],[875,288],[863,509],[828,263],[920,52],[733,647],[650,417],[975,13],[870,366],[488,68],[718,551],[845,451],[698,121],[960,801],[654,122],[614,497],[666,545],[68,40],[604,585],[888,34],[901,162],[947,2],[697,666],[997,855],[473,275],[125,91],[806,336],[637,379],[795,734],[867,771],[520,222],[642,427],[653,97],[263,262],[773,205],[515,387],[908,193],[804,150],[995,303],[877,163],[560,298],[492,362],[417,382],[797,752],[891,231],[724,432],[420,288],[513,237],[412,123],[266,186],[990,374],[983,126],[424,162],[997,528],[483,164],[736,694],[755,6],[338,79],[878,777],[657,398],[219,9],[986,1],[438,338],[257,181],[588,470],[511,237],[675,171],[524,503],[717,171],[805,413],[973,653],[252,243],[670,155],[186,143],[755,608],[485,437],[691,58],[533,397],[806,294],[975,758],[978,472],[938,246],[802,12],[724,704],[930,318],[808,108],[377,140],[380,85],[311,225],[489,198],[38,9],[882,805],[730,472],[644,478],[978,883],[375,211],[817,91],[840,314],[403,196],[319,161],[899,299],[700,218],[919,673],[219,65],[595,461],[362,184],[971,831],[908,468],[999,934],[284,146],[273,140],[594,207],[958,116],[767,570],[733,413],[256,52],[694,414],[850,379],[925,646],[780,20],[776,386],[394,171],[555,471],[703,135],[299,149],[762,656],[590,135],[966,548],[920,906],[787,357],[737,338],[776,545],[690,523],[389,142],[936,180],[545,473],[991,328],[946,736],[951,263],[525,351],[994,517],[679,341],[899,63],[870,637],[817,785],[780,662],[160,53],[575,312],[600,204],[676,606],[900,812],[765,391],[990,157],[770,764],[341,209],[802,373],[861,738],[828,149],[535,459],[723,63],[854,507],[646,466],[951,534],[695,426],[553,319],[443,257],[370,306],[644,135],[885,623],[878,876],[567,383],[260,157],[569,301],[941,41],[972,763],[578,113],[731,361],[123,91],[828,317],[134,115],[985,336],[866,542],[644,71],[201,134],[242,64],[608,284],[625,439],[650,53],[765,395],[468,418],[445,142],[816,296],[878,764],[771,333],[875,425],[843,329],[834,469],[669,605],[388,324],[646,640],[526,88],[558,87],[878,571],[784,204],[864,331],[550,317],[921,138],[490,4],[906,811],[613,59],[792,183],[820,348],[646,195],[822,427],[674,440],[377,84],[999,514],[883,750],[888,762],[891,621],[624,613],[516,300],[748,542],[689,26],[767,583],[746,437],[537,292],[985,658],[369,336],[497,288],[439,17],[920,86],[456,55],[862,753],[342,158],[807,569],[507,135],[337,85],[484,11],[949,82],[729,461],[682,443],[495,245],[666,177],[910,136],[636,377],[499,436],[427,412],[925,84],[755,115],[667,647],[465,139],[915,169],[953,541],[729,685],[760,82],[593,574],[560,541],[938,712],[700,259],[760,706],[591,164],[971,218],[779,557],[742,323],[861,263],[662,233],[879,821],[636,95],[489,377],[489,271],[702,1],[601,487],[588,145],[526,276],[627,619],[486,362],[547,342],[709,415],[909,715],[620,7],[188,35],[889,172],[717,162],[858,388],[593,451],[885,772],[521,430],[956,375],[854,459],[776,325],[895,476],[903,156],[908,115],[321,128],[884,759],[923,802],[788,656],[741,272],[884,17],[948,455],[783,40],[985,551],[872,470],[536,99],[879,591],[780,509],[569,560],[809,408],[723,602],[481,199],[977,526],[953,280],[770,365],[230,83],[932,231],[779,652],[914,141],[624,249],[859,698],[849,173],[248,239],[544,336],[790,488],[857,421],[913,24],[935,50],[972,666],[673,630],[390,192],[134,121],[332,317],[659,341],[906,187],[378,38],[918,497],[111,108],[553,61],[526,234],[211,205],[972,777],[723,573],[871,796],[425,380],[945,286],[687,311],[624,97],[692,455],[876,185],[573,49],[819,382],[670,41],[812,563],[705,274],[476,197],[604,137],[703,393],[444,148],[939,217],[722,349],[953,212],[698,515],[725,605],[563,404],[860,97],[735,551],[838,516],[428,275],[812,2],[580,572],[955,342],[614,539],[538,201],[809,202],[626,227],[940,242],[296,190],[612,496],[756,504],[573,72],[620,605],[799,256],[505,63],[750,362],[994,979],[432,265],[328,201],[680,11],[212,185],[852,209],[826,95],[326,280],[443,109],[609,502],[258,189],[701,473],[548,33],[910,901],[838,553],[531,493],[972,396],[444,88],[342,10],[295,24],[586,286],[862,42],[303,180],[186,89],[577,168],[699,440],[494,452],[924,780],[261,186],[107,70],[385,226],[989,962],[181,148],[492,256],[664,198],[80,63],[510,297],[541,71],[718,645],[899,704],[828,305],[285,283],[982,472],[701,279],[894,675],[662,137],[844,121],[918,435],[668,604],[461,195],[417,249],[971,616],[873,408],[825,324],[190,46],[927,808],[880,675],[489,424],[649,585],[606,343],[328,322],[658,213],[793,502],[70,45],[662,388],[508,498],[650,78],[129,45],[780,718],[821,707],[277,127],[836,186],[951,944],[183,58],[578,208],[586,417],[935,84],[705,590],[533,263],[597,243],[580,420],[510,143],[984,941],[508,35],[598,304],[692,183],[721,249],[949,455],[648,315],[757,545],[845,186],[911,447],[818,761],[229,162],[702,17],[419,151],[678,259],[565,319],[813,216],[947,758],[402,257],[778,761],[613,269],[930,613],[701,242],[749,125],[876,189],[168,123],[567,167],[641,415],[825,666],[704,229],[920,901],[162,97],[70,22],[860,442],[271,257],[635,162],[572,79],[658,404],[823,604],[293,228],[856,193],[849,690],[580,418],[889,634],[557,358],[392,188],[715,359],[556,90],[779,490],[932,770],[951,27],[261,21],[229,28],[811,244],[943,588],[157,102],[998,806],[728,623],[875,181],[887,72],[850,840],[274,267],[373,226],[483,153],[748,549],[911,821],[943,764],[230,159],[650,11],[450,69],[726,52],[925,338],[398,396],[677,567],[799,499],[763,1],[937,774],[999,739],[609,126],[927,277],[846,384],[728,487],[199,96],[727,395],[842,730],[559,105],[360,167],[929,708],[924,638],[753,718],[843,445],[646,193],[658,532],[703,104],[733,605],[630,369],[898,332],[886,870],[720,315],[612,579],[617,277],[252,246],[774,535],[916,765],[985,547],[915,476],[610,358],[785,59],[648,573],[890,447],[869,336],[556,330],[676,601],[942,679],[867,566],[539,156],[333,182],[678,370],[987,434],[944,341],[952,857],[773,444],[668,138],[482,42],[959,357],[914,217],[741,276],[719,604],[657,439],[823,255],[704,244],[903,3],[619,266],[658,133],[630,377],[519,426],[917,77],[425,359],[551,166],[918,847],[710,485],[887,531],[553,355],[426,188],[412,245],[514,475],[681,328],[729,530],[622,304],[775,383],[693,339],[414,389],[200,29],[320,199],[963,326],[571,398],[588,465],[715,144],[925,307],[792,547],[378,318],[516,161],[893,60],[246,29],[943,278],[923,415],[528,485],[727,497],[796,97],[431,41],[860,391],[555,93],[773,368],[678,515],[898,141],[941,381],[814,332],[565,254],[569,154],[675,60],[932,315],[692,186],[564,475],[365,84],[966,154],[400,16],[876,18],[545,240],[983,253],[340,215],[358,263],[604,212],[528,36],[803,191],[837,718],[974,738],[453,362],[140,108],[278,177],[878,654],[607,172],[448,123],[895,531],[997,221],[925,373],[773,103],[311,53],[263,121],[690,117],[946,89],[718,192],[949,818],[683,277],[457,387],[408,30],[888,373],[196,166],[896,283],[606,65],[743,42],[809,266],[896,421],[207,141],[197,71],[328,192],[515,458],[860,758],[515,92],[478,147],[542,41],[878,480],[757,226],[518,59],[824,249],[43,15],[711,549],[563,261],[772,347],[342,166],[556,523],[987,481],[720,550],[661,343],[252,182],[420,282],[831,810],[965,473],[934,372],[602,286],[104,45],[903,701],[625,30],[447,12],[103,50],[225,157],[245,232],[931,329],[909,72],[975,400],[583,259],[950,4],[293,44],[955,315],[231,185],[801,719],[879,145],[965,379],[165,7],[975,451],[703,322],[746,633],[583,19],[883,870],[650,179],[431,187],[709,200],[697,489],[877,300],[903,820],[847,184],[625,537],[403,301],[698,397],[517,101],[832,241],[796,164],[651,244],[742,262],[723,193],[865,753],[384,335],[882,155],[818,630],[900,594],[613,467],[250,80],[732,267],[849,681],[330,47],[288,62],[729,351],[394,384],[394,122],[586,92],[755,203],[391,345],[761,130],[808,327],[169,118],[880,232],[770,68],[581,46],[396,276],[613,98],[733,39],[344,147],[856,752],[367,128],[946,261],[867,412],[961,442],[897,263],[781,154],[998,270],[281,71],[893,666],[660,244],[856,167],[925,774],[572,158],[956,20],[932,547],[820,200],[809,710],[763,298],[681,81],[960,941],[155,150],[588,403],[576,63],[954,952],[855,245],[988,888],[811,505],[723,680],[35,10],[655,641],[744,160],[692,121],[768,517],[965,864],[957,669],[498,84],[998,37],[993,36],[711,253],[691,459],[700,631],[868,398],[515,178],[326,274],[992,546],[55,1],[696,569],[997,465],[607,225],[771,596],[410,295],[862,94],[784,478],[992,967],[766,268],[855,99],[375,374],[558,345],[685,215],[431,177],[994,952],[787,175],[207,45],[281,96],[349,256],[874,134],[862,24],[969,492],[523,128],[395,333],[613,385],[997,205],[839,815],[730,38],[985,266],[459,428],[866,389],[816,229],[410,255],[409,237],[742,353],[338,73],[870,101],[621,32],[975,501],[747,336],[339,198],[599,345],[739,383],[765,491],[313,94],[784,771],[678,65],[841,92],[605,527],[719,610],[637,77],[250,85],[811,260],[604,549],[124,14],[491,34],[676,75],[958,133],[742,709],[541,347],[986,450],[605,39],[551,144],[329,205],[604,346],[845,773],[894,275],[925,767],[864,407],[951,445],[317,110],[880,367],[923,307],[642,567],[889,466],[848,317],[799,362],[965,23],[546,524],[889,222],[769,244],[780,489],[473,375],[402,308],[251,175],[769,444],[208,45],[250,120],[871,174],[462,52],[807,437],[647,78],[830,292],[231,145],[971,861],[465,166],[667,123],[539,172],[935,227],[811,17],[909,464],[543,264],[595,45],[623,475],[560,330],[186,79],[952,901],[537,174],[429,243],[369,100],[914,730],[241,67],[535,15],[877,351],[998,319],[548,181],[944,716],[812,747],[979,642],[975,101],[751,143],[988,906],[957,906],[312,21],[607,465],[927,523],[922,902],[836,604],[339,330],[912,236],[670,668],[841,77],[708,216],[446,241],[997,318],[978,306],[181,179],[723,127],[613,337],[974,673],[785,622],[924,63],[622,55],[981,354],[603,46],[549,6],[696,63],[542,517],[995,713],[568,481],[739,570],[722,535],[931,806],[941,297],[212,4],[784,221],[507,340],[280,267],[927,787],[854,310],[829,47],[519,163],[614,221],[807,166],[219,187],[981,539],[996,423],[838,13],[747,33],[945,672],[916,758],[988,717],[190,22],[754,56],[960,364],[870,846],[405,229],[792,142],[598,375],[447,25],[985,639],[869,95],[478,97],[826,310],[637,603],[282,34],[790,532],[600,176],[791,257],[256,157],[423,155],[920,561],[224,8],[858,122],[888,64],[826,442],[865,629],[555,551],[769,376],[929,926],[946,303],[961,619],[519,74],[923,138],[778,769],[554,479],[812,703],[622,87],[601,227],[754,468],[901,363],[606,395],[263,213],[838,824],[908,748],[630,50],[873,662],[680,669],[409,141],[300,240],[268,19],[521,17],[925,748],[623,61],[686,299],[773,147],[778,582],[582,306],[488,362],[782,289],[999,551],[863,114],[777,717],[983,811],[848,462],[808,664],[722,220],[942,19],[403,317],[815,96],[869,283],[436,275],[861,108],[458,317],[762,258],[993,938],[901,809],[718,400],[883,154],[700,297],[380,189],[741,624],[994,457],[828,391],[516,172],[547,130],[589,299],[267,8],[998,688],[886,164],[866,647],[355,72],[516,317],[748,49],[530,155],[538,319],[974,211],[900,271],[669,172],[703,465],[562,25],[457,443],[782,81],[345,56],[850,811],[924,612],[602,56],[665,657],[30,9],[513,150],[966,119],[373,96],[724,402],[979,668],[755,510],[450,13],[990,982],[655,239],[370,263],[170,80],[505,23],[807,781],[816,92],[523,414],[782,736],[721,381],[693,374],[466,67],[868,510],[364,353],[759,681],[782,614],[666,407],[229,118],[980,514],[913,203],[379,230],[558,342],[463,144],[517,504],[948,331],[576,120],[912,576],[718,581],[448,439],[854,479],[779,724],[738,393],[398,361],[869,302],[610,188],[961,317],[581,343],[552,48],[445,344],[992,471],[323,295],[881,742],[974,878],[971,313],[735,563],[419,310],[481,148],[791,211],[797,131],[908,907],[636,464],[703,47],[529,364],[890,572],[561,300],[216,182],[588,478],[796,233],[891,776],[591,139],[617,213],[949,434],[806,743],[503,203],[943,738],[586,555],[282,193],[750,226],[334,294],[870,457],[798,302],[900,351],[517,335],[514,138],[892,511],[515,283],[744,511],[664,427],[786,671],[745,122],[831,613],[432,309],[964,171],[517,62],[698,485],[106,25],[820,625],[107,33],[759,348],[628,7],[975,585],[950,147],[418,333],[776,313],[947,119],[563,285],[872,588],[685,393],[460,372],[571,260],[495,150],[274,264],[914,512],[529,285],[714,612],[819,711],[394,219],[716,529],[543,92],[468,80],[178,174],[286,281],[981,696],[529,502],[465,157],[629,365],[445,368],[90,54],[213,14],[844,561],[935,913],[771,206],[969,444],[610,370],[558,203],[701,307],[283,137],[920,865],[366,222],[657,520],[964,482],[696,22],[801,589],[604,586],[794,746],[649,247],[952,587],[892,437],[404,87],[910,739],[868,684],[940,609],[897,96],[808,511],[244,240],[837,357],[527,477],[953,654],[646,86],[653,328],[518,118],[881,262],[662,446],[315,52],[731,171],[907,731],[382,323],[339,228],[715,297],[527,285],[901,844],[914,48],[237,66],[682,656],[980,1],[782,653],[705,376],[522,248],[633,75],[796,45],[531,386],[959,840],[489,157],[592,292],[702,39],[788,621],[955,821],[777,764],[685,568],[617,279],[539,3],[786,315],[945,617],[622,543],[950,918],[650,107],[427,426],[356,175],[497,48],[932,225],[905,647],[446,57],[783,662],[769,652],[416,345],[524,370],[256,189],[810,148],[811,790],[685,518],[720,351],[940,542],[934,167],[953,442],[915,695],[721,524],[394,32],[562,560],[430,368],[378,264],[996,819],[452,437],[456,206],[973,445],[168,19],[706,212],[525,463],[629,533],[904,845],[972,649],[546,277],[996,248],[658,507],[408,7],[759,705],[433,39],[944,456],[578,167],[286,229],[956,85],[715,168],[908,435],[437,74],[778,165],[764,536],[406,397],[835,834],[317,306],[996,273],[760,701],[729,401],[347,166],[906,223],[954,756],[601,311],[977,384],[869,373],[703,514],[499,59],[427,373],[856,800],[330,125],[826,1],[48,28],[800,405],[364,70],[216,165],[831,665],[758,638],[476,75],[837,258],[709,232],[831,701],[596,550],[481,333],[671,331],[681,588],[814,77],[741,686],[421,191],[708,603],[841,358],[832,69],[802,354],[759,283],[602,578],[615,588],[790,600],[457,229],[846,244],[874,837],[84,73],[738,556],[722,338],[545,54],[819,773],[606,341],[487,315],[671,527],[920,522],[972,86],[755,540],[915,97],[492,392],[532,227],[794,415],[111,71],[993,84],[741,388],[56,37],[762,314],[492,199],[906,858],[657,143],[855,810],[434,263],[653,361],[434,203],[642,400],[84,15],[640,14],[793,576],[580,444],[859,700],[313,143],[588,259],[964,758],[985,204],[732,397],[697,441],[499,298],[865,331],[788,589],[862,689],[762,140],[729,598],[800,482],[977,358],[332,328],[936,508],[968,538],[822,629],[873,440],[926,273],[213,151],[626,9],[669,331],[518,387],[592,324],[860,122],[751,511],[718,496],[440,0],[486,105],[891,156],[971,130],[131,71],[812,248],[749,480],[584,231],[567,229],[299,25],[907,176],[716,309],[797,145],[969,855],[642,291],[195,117],[737,11],[831,186],[951,307],[903,886],[917,202],[877,348],[599,270],[375,361],[283,60],[765,542],[761,760],[945,396],[677,506],[952,314],[544,149],[881,290],[693,26],[549,356],[312,32],[461,265],[365,250],[358,241],[613,521],[624,552],[969,284],[270,141],[531,109],[546,347],[677,62],[689,609],[200,60],[661,255],[774,177],[459,139],[955,531],[595,564],[679,172],[798,476],[461,119],[612,44],[871,595],[454,264],[757,479],[836,105],[785,749],[976,279],[566,215],[829,88],[533,494],[302,258],[566,502],[836,539],[153,51],[949,23],[776,369],[578,306],[953,139],[576,551],[412,19],[744,323],[640,135],[183,7],[705,456],[571,294],[799,29],[974,843],[829,228],[952,164],[837,191],[573,276],[79,20],[881,761],[826,234],[742,576],[330,287],[650,19],[675,350],[595,127],[675,585],[697,519],[480,269],[194,31],[745,668],[373,234],[324,39],[897,66],[777,371],[781,543],[581,458],[618,405],[729,536],[407,211],[822,511],[900,145],[581,570],[320,179],[234,125],[763,106],[799,220],[830,176],[702,554],[985,823],[920,73],[780,462],[795,386],[722,30],[910,400],[525,509],[370,93],[895,80],[599,374],[680,379],[941,154],[996,889],[671,129],[984,494],[895,780],[391,63],[915,569],[490,220],[279,38],[786,657],[875,4],[924,22],[624,121],[747,598],[778,467],[355,315],[854,203],[772,317],[443,329],[535,102],[854,301],[801,13],[679,653],[837,355],[894,512],[541,512],[505,110],[927,4],[782,123],[663,443],[643,598],[542,487],[448,26],[454,391],[787,575],[375,373],[223,166],[904,757],[738,385],[814,127],[685,651],[837,385],[580,128],[711,334],[700,496],[492,265],[919,239],[939,624],[671,238],[928,106],[628,481],[885,483],[343,169],[370,240],[643,466],[543,36],[692,191],[921,441],[541,513],[608,254],[965,635],[788,26],[830,414],[657,99],[888,197],[887,601],[956,394],[806,186],[338,102],[873,356],[812,507],[883,248],[270,138],[993,473],[386,217],[50,5],[909,532],[369,35],[810,486],[668,154],[44,34],[604,420],[897,619],[912,905],[85,4],[871,449],[612,15],[882,142],[367,314],[832,654],[941,764],[209,75],[793,269],[333,38],[958,227],[991,474],[855,434],[910,406],[780,156],[945,295],[715,80],[808,172],[514,39],[918,653],[658,346],[873,325],[743,62],[999,49],[711,446],[208,163],[155,52],[906,726],[575,384],[999,878],[544,417],[444,350],[730,239],[921,363],[202,1],[943,244],[654,152],[739,267],[257,2],[773,43],[362,311],[848,575],[972,808],[600,428],[368,164],[818,675],[134,67],[834,498],[940,915],[980,597],[927,549],[353,341],[968,201],[943,206],[818,315],[709,335],[464,296],[911,156],[943,5],[978,132],[318,9],[708,608],[607,191],[940,200],[736,53],[663,238],[362,111],[930,187],[584,398],[375,215],[257,156],[737,313],[800,280],[748,249],[857,177],[681,657],[771,77],[989,722],[448,278],[865,243],[747,676],[323,17],[807,110],[993,497],[311,254],[928,586],[617,594],[518,322],[217,7],[559,230],[869,702],[902,115],[538,227],[756,403],[564,300],[451,205],[707,101],[545,145],[852,438],[585,61],[814,144],[628,84],[577,19],[995,400],[948,715],[980,399],[430,290],[703,524],[321,95],[547,385],[569,362],[976,80],[733,64],[732,400],[960,547],[850,236],[752,494],[822,225],[589,392],[955,188],[998,471],[650,467],[818,219],[591,582],[760,55],[964,463],[267,214],[989,555],[795,95],[573,13],[754,633],[508,88],[275,136],[847,106],[842,338],[843,494],[878,211],[733,546],[589,495],[552,374],[958,328],[863,74],[755,36],[660,534],[743,495],[847,394],[879,849],[766,289],[787,468],[666,610],[642,495],[917,39],[766,166],[394,342],[740,117],[713,246],[621,28],[555,37],[770,372],[506,395],[890,502],[609,492],[460,84],[247,181],[888,409],[707,601],[320,213],[717,178],[540,159],[887,206],[552,478],[674,561],[263,31],[639,463],[799,709],[286,94],[575,415],[321,226],[683,199],[428,142],[622,575],[546,415],[635,71],[275,215],[738,509],[774,677],[808,22],[760,327],[707,491],[182,158],[625,146],[999,231],[934,592],[967,264],[890,740],[927,925],[417,140],[453,314],[912,23],[610,328],[704,685],[331,50],[957,548],[348,334],[236,63],[360,94],[459,99],[362,305],[446,422],[180,121],[142,63],[348,56],[657,538],[663,326],[848,520],[460,221],[768,247],[868,298],[219,106],[131,114],[788,615],[819,224],[905,504],[980,603],[818,437],[736,626],[281,240],[324,58],[777,24],[830,456],[682,90],[991,482],[794,579],[789,736],[534,355],[203,61],[798,711],[653,473],[477,289],[690,263],[899,47],[604,142],[967,388],[196,141],[836,420],[519,350],[139,125],[819,265],[266,56],[901,370],[417,266],[821,28],[908,376],[804,540],[931,788],[334,212],[794,219],[667,8],[983,501],[783,93],[607,461],[788,437],[795,278],[987,722],[615,132],[664,339],[484,113],[756,356],[587,291],[680,382],[945,535],[347,302],[967,41],[408,168],[907,636],[980,637],[944,233],[254,165],[960,679],[256,248],[408,256],[161,36],[918,895],[167,130],[307,300],[721,32],[979,244],[930,204],[735,576],[797,610],[376,11],[676,536],[687,232],[617,582],[232,132],[663,203],[527,517],[620,120],[628,335],[592,204],[753,408],[848,533],[659,500],[997,274],[552,401],[885,750],[812,340],[805,479],[721,351],[65,31],[994,322],[825,626],[576,491],[673,181],[594,534],[959,141],[630,525],[958,513],[960,219],[681,587],[927,367],[572,400],[640,343],[550,300],[796,426],[563,235],[981,169],[546,498],[297,69],[458,4],[923,297],[845,342],[723,531],[670,223],[998,114],[529,320],[687,194],[553,216],[760,630],[837,688],[601,456],[945,408],[722,38],[466,144],[975,334],[869,353],[900,630],[884,274],[305,114],[510,96],[623,528],[759,488],[677,480],[495,327],[421,221],[920,772],[773,130],[610,125],[850,812],[985,177],[469,316],[823,381],[601,115],[586,312],[594,430],[859,262],[934,406],[829,320],[931,578],[695,425],[318,214],[829,101],[880,472],[453,252],[602,270],[241,37],[712,415],[600,386],[461,228],[575,202],[995,642],[622,92],[455,141],[482,191],[643,479],[404,248],[666,513],[461,239],[858,70],[145,106],[888,716],[494,344],[638,173],[751,344],[784,602],[556,86],[813,269],[541,124],[948,241],[825,372],[988,45],[790,519],[689,611],[577,14],[665,297],[869,158],[777,737],[571,523],[662,164],[677,9],[585,113],[966,935],[767,755],[329,134],[319,174],[783,569],[883,508],[648,570],[261,157],[986,487],[935,684],[689,65],[790,351],[834,288],[738,148],[854,803],[805,766],[997,941],[622,165],[848,755],[334,325],[209,60],[359,116],[371,320],[883,351],[995,913],[773,133],[940,537],[815,473],[642,456],[904,658],[342,238],[490,88],[992,453],[855,38],[764,583],[982,149],[527,352],[631,416],[760,548],[526,81],[473,22],[632,246],[987,177],[724,151],[577,145],[643,512],[440,316],[308,43],[532,140],[800,365],[572,112],[848,744],[957,434],[196,72],[737,593],[457,50],[402,358],[980,801],[287,199],[643,546],[857,552],[474,466],[264,123],[989,495],[586,487],[897,252],[895,629],[582,18],[822,481],[848,695],[549,523],[893,693],[822,574],[695,670],[531,70],[752,149],[746,105],[668,450],[460,286],[455,8],[621,516],[605,361],[391,157],[978,849],[630,183],[285,57],[456,57],[893,789],[891,47],[606,166],[877,538],[724,2],[387,6],[385,241],[439,305],[780,126],[413,155],[342,20],[346,7],[168,86],[452,64],[730,318],[975,443],[979,201],[701,136],[872,259],[749,582],[872,582],[694,100],[377,5],[598,131],[474,38],[916,384],[503,181],[403,214],[477,470],[983,188],[706,287],[967,502],[947,454],[779,685],[511,480],[665,64],[655,589],[623,226],[768,118],[912,51],[961,352],[300,117],[422,109],[922,323],[923,715],[640,451],[959,711],[761,230],[691,362],[550,96],[803,296],[597,349],[525,313],[789,734],[831,175],[725,416],[990,672],[428,65],[668,560],[960,504],[940,470],[229,195],[471,191],[501,491],[700,296],[935,326],[514,502],[834,500],[587,419],[514,256],[922,639],[957,588],[640,373],[309,195],[788,608],[597,120],[454,49],[821,376],[477,96],[977,300],[723,677],[936,656],[617,151],[416,53],[766,93],[639,538],[764,232],[234,85],[889,350],[966,504],[989,406],[833,674],[368,175],[180,80],[478,454],[404,229],[600,320],[688,516],[868,744],[468,152],[654,140],[762,727],[912,291],[720,76],[650,534],[548,34],[470,376],[543,498],[595,194],[559,145],[896,513],[497,69],[904,484],[945,51],[379,19],[812,734],[462,261],[726,552],[585,84],[653,234],[911,592],[610,85],[722,581],[391,378],[442,94],[692,473],[817,236],[429,113],[147,0],[600,6],[75,62],[440,384],[991,814],[573,337],[550,234],[900,450],[915,239],[510,260],[791,74],[964,190],[350,315],[439,109],[691,388],[608,561],[826,104],[904,666],[966,945],[948,691],[766,310],[936,317],[655,394],[985,720],[888,841],[857,763],[518,351],[819,535],[716,118],[803,719],[992,313],[434,432],[221,147],[880,868],[858,442],[624,468],[884,41],[919,750],[865,546],[800,577],[653,122],[668,391],[488,162],[518,273],[852,63],[763,621],[675,150],[840,777],[732,477],[240,127],[633,395],[983,46],[631,597],[411,77],[736,629],[823,372],[880,269],[912,308],[560,147],[808,618],[202,28],[906,229],[512,423],[867,254],[693,446],[559,320],[895,707],[98,45],[505,302],[390,85],[574,184],[860,35],[961,373],[963,107],[726,159],[831,284],[450,89],[893,237],[815,116],[733,199],[919,718],[713,469],[831,393],[881,189],[991,756],[702,527],[987,55],[871,808],[407,200],[960,117],[877,276],[923,285],[306,277],[319,317],[579,29],[88,14],[835,53],[678,50],[499,72],[897,378],[499,380],[652,431],[829,330],[626,440],[477,287],[705,581],[514,37],[865,77],[743,471],[994,899],[364,242],[982,748],[530,198],[996,377],[608,67],[441,149],[578,414],[588,105],[595,586],[508,383],[695,317],[734,181],[757,501],[795,611],[951,242],[222,66],[822,792],[890,760],[754,203],[535,515],[159,145],[247,54],[877,595],[937,36],[483,215],[407,338],[511,508],[916,847],[709,680],[423,397],[671,33],[503,159],[507,73],[727,73],[936,188],[756,44],[736,155],[759,243],[913,587],[971,403],[801,297],[729,81],[208,14],[794,756],[539,336],[90,43],[327,78],[999,66],[669,129],[658,278],[968,697],[951,401],[836,683],[439,214],[552,341],[557,313],[661,139],[272,266],[672,232],[979,584],[800,324],[731,324],[709,607],[561,523],[661,289],[969,227],[303,71],[440,19],[622,389],[778,94],[512,166],[371,306],[334,46],[394,300],[984,802],[732,213],[822,145],[297,140],[952,724],[443,313],[930,544],[846,299],[680,664],[730,555],[569,512],[861,367],[904,56],[856,633],[741,215],[931,101],[939,656],[713,129],[908,591],[950,496],[951,178],[871,374],[362,229],[668,270],[880,587],[275,12],[856,297],[958,663],[901,5],[312,208],[956,886],[510,362],[711,102],[899,272],[895,28],[542,392],[883,49],[879,366],[665,51],[738,502],[852,699],[859,77],[720,314],[231,202],[834,805],[901,352],[910,146],[756,705],[237,24],[427,125],[711,54],[671,203],[878,201],[294,145],[874,27],[305,3],[633,404],[492,126],[589,141],[844,342],[345,197],[775,403],[930,663],[203,106],[666,418],[194,154],[959,90],[642,256],[369,194],[940,488],[920,28],[777,203],[648,478],[473,145],[287,278],[669,339],[416,108],[551,49],[902,542],[699,405],[943,97],[564,544],[566,32],[476,97],[533,504],[907,406],[767,637],[663,40],[852,737],[520,352],[484,464],[537,440],[856,700],[929,228],[807,622],[985,67],[278,24],[876,125],[663,512],[604,264],[682,357],[555,126],[510,205],[804,567],[604,118],[705,74],[932,97],[549,378],[524,204],[299,174],[903,310],[442,176],[670,133],[535,517],[316,58],[828,395],[623,239],[697,155],[656,208],[766,36],[926,548],[403,176],[945,584],[545,61],[947,856],[359,53],[340,0],[626,111],[935,411],[785,402],[786,324],[698,437],[747,339],[436,8],[994,736],[601,144],[380,298],[442,229],[104,5],[513,198],[515,155],[508,99],[534,273],[806,741],[398,339],[493,114],[665,185],[779,175],[392,186],[438,256],[638,266],[649,80],[561,62],[815,661],[915,344],[788,434],[576,359],[910,580],[830,82],[978,326],[940,613],[521,200],[410,204],[719,696],[218,61],[535,281],[818,261],[371,22],[144,68],[980,414],[722,662],[544,367],[454,19],[875,766],[784,473],[845,269],[497,110],[966,733],[962,244],[540,20],[253,52],[295,246],[809,517],[495,408],[816,384],[394,392],[367,259],[121,112],[922,373],[681,523],[978,219],[874,676],[889,154],[691,633],[720,673],[780,659],[374,226],[168,45],[803,410],[202,37],[589,492],[996,385],[443,356],[772,701],[412,66],[768,644],[136,2],[169,111],[166,88],[542,472],[642,54],[304,172],[537,213],[974,398],[472,226],[835,186],[362,60],[758,721],[917,916],[490,407],[838,248],[785,7],[285,241],[972,292],[780,360],[174,137],[939,128],[892,872],[923,674],[900,256],[845,92],[952,435],[873,410],[611,596],[985,457],[874,494],[625,276],[327,93],[627,185],[826,412],[566,85],[985,881],[804,250],[998,502],[477,331],[685,629],[961,244],[356,101],[876,555],[293,209],[943,128],[730,516],[454,83],[878,123],[915,723],[767,722],[960,24],[780,494],[916,617],[834,411],[868,464],[445,160],[475,379],[967,143],[994,944],[344,44],[244,30],[582,188],[538,258],[602,519],[771,593],[382,212],[656,68],[200,8],[857,168],[667,53],[687,50],[842,120],[890,261],[517,215],[508,10],[324,78],[637,60],[944,897],[804,707],[692,41],[228,124],[539,507],[595,450],[860,249],[638,243],[385,268],[814,761],[800,484],[967,121],[216,134],[630,391],[626,320],[970,316],[408,391],[614,492],[31,22],[727,597],[846,99],[720,124],[549,280],[715,313],[352,34],[710,582],[153,18],[732,23],[907,863],[575,343],[949,478],[981,292],[388,12],[382,37],[328,48],[542,334],[353,145],[83,63],[317,17],[422,181],[993,506],[759,526],[562,209],[628,288],[578,308],[251,108],[142,22],[221,170],[805,436],[537,348],[819,244],[536,251],[868,281],[764,123],[743,615],[737,642],[947,373],[617,398],[911,616],[617,25],[673,529],[555,38],[189,22],[525,128],[791,612],[447,372],[915,458],[916,833],[812,611],[332,94],[189,17],[934,858],[461,123],[887,633],[913,651],[507,504],[333,195],[789,593],[590,562],[635,530],[753,25],[246,181],[436,50],[843,48],[684,197],[290,128],[443,365],[693,596],[594,154],[301,30],[733,555],[804,408],[439,125],[874,103],[571,446],[865,669],[836,777],[987,967],[754,74],[777,462],[676,140],[831,830],[667,106],[825,608],[963,378],[709,60],[439,167],[659,576],[611,372],[995,301],[784,729],[894,396],[509,164],[882,196],[864,94],[827,526],[993,605],[540,57],[853,579],[914,197],[369,119],[877,860],[730,362],[371,359],[829,650],[606,91],[516,44],[401,202],[280,218],[664,304],[309,52],[978,265],[174,6],[183,145],[832,763],[449,171],[359,58],[906,221],[679,309],[930,722],[863,640],[504,14],[365,261],[782,147],[210,41],[885,60],[658,242],[854,39],[848,183],[829,555],[686,26],[288,140],[970,113],[321,315],[878,600],[825,200],[595,145],[847,448],[147,49],[594,16],[997,203],[628,150],[340,83],[271,55],[330,223],[937,671],[602,314],[393,66],[897,529],[443,4],[581,401],[844,643],[578,496],[790,735],[604,205],[980,969],[614,211],[925,824],[172,29],[348,163],[405,177],[475,449],[471,197],[991,139],[696,515],[909,422],[642,594],[657,282],[787,84],[910,583],[627,233],[687,301],[888,478],[397,119],[772,148],[826,654],[976,567],[534,357],[724,588],[865,439],[750,462],[613,135],[764,138],[917,482],[840,148],[308,39],[752,61],[937,393],[789,539],[781,261],[729,30],[260,251],[877,130],[929,719],[864,608],[923,591],[865,705],[485,358],[541,319],[964,245],[721,38],[752,228],[331,264],[840,587],[688,404],[711,201],[367,129],[988,40],[975,514],[313,204],[581,25],[644,411],[796,321],[389,131],[999,139],[526,353],[652,638],[941,87],[765,584],[343,306],[383,18],[830,593],[450,45],[406,214],[755,684],[773,671],[944,811],[330,159],[877,255],[488,66],[746,540],[477,11],[605,280],[853,495],[899,826],[907,875],[656,559],[574,299],[586,472],[885,189],[872,485],[328,132],[913,908],[658,103],[596,99],[877,768],[115,102],[997,879],[232,227],[719,60],[841,48],[663,361],[969,297],[347,306],[485,443],[669,137],[960,548],[557,152],[554,352],[779,13],[677,428],[935,436],[982,136],[883,620],[857,394],[586,12],[495,357],[69,3],[977,299],[648,319],[295,224],[934,298],[550,182],[386,349],[582,511],[969,466],[740,123],[582,414],[951,550],[841,58],[179,11],[731,685],[793,359],[899,230],[628,143],[954,414],[627,162],[747,712],[918,307],[836,212],[867,810],[898,222],[840,755],[659,329],[565,258],[762,203],[796,156],[971,322],[951,949],[853,583],[213,122],[674,356],[998,405],[955,349],[922,229],[529,238],[488,272],[887,545],[832,425],[877,147],[267,94],[556,305],[961,221],[715,518],[900,467],[762,641],[917,878],[252,37],[923,816],[785,426],[315,67],[393,21],[493,46],[624,14],[759,83],[819,815],[763,142],[508,330],[775,488],[550,410],[917,701],[950,743],[245,199],[481,167],[985,92],[928,205],[753,510],[705,701],[744,491],[371,222],[165,35],[348,62],[939,771],[721,325],[421,117],[786,434],[807,729],[848,596],[445,222],[539,117],[222,115],[664,385],[634,438],[579,11],[808,386],[657,578],[448,254],[670,653],[525,19],[426,284],[592,562],[766,622],[156,103],[803,681],[396,26],[992,216],[805,508],[826,543],[657,392],[918,381],[793,223],[433,267],[519,38],[270,248],[140,130],[931,339],[359,43],[963,906],[974,951],[530,365],[954,852],[553,381],[221,54],[492,187],[260,230],[860,838],[810,234],[106,42],[847,635],[330,278],[908,120],[717,429],[913,438],[639,63],[629,302],[952,659],[340,201],[934,255],[637,587],[599,534],[648,464],[936,577],[939,79],[656,280],[683,404],[800,86],[583,56],[576,403],[888,239],[115,66],[839,17],[764,727],[76,55],[957,924],[640,225],[733,257],[271,181],[667,353],[698,379],[567,447],[479,315],[751,59],[202,138],[607,235],[335,233],[982,89],[265,227],[627,458],[652,341],[519,105],[315,104],[594,313],[545,124],[617,478],[415,99],[285,284],[681,0],[878,13],[934,658],[927,272],[618,459],[547,534],[694,248],[810,130],[799,161],[956,810],[993,703],[890,291],[838,112],[144,29],[819,787],[120,34],[975,859],[351,134],[210,10],[779,455],[950,714],[716,276],[320,210],[825,252],[575,569],[875,170],[950,276],[709,136],[392,84],[618,235],[885,785],[359,324],[333,36],[937,283],[622,186],[544,395],[240,230],[381,179],[719,642],[502,262],[721,225],[890,874],[130,67],[875,770],[937,619],[903,745],[978,637],[893,646],[840,340],[503,414],[989,389],[853,798],[702,304],[947,901],[207,115],[405,309],[885,410],[944,497],[537,429],[331,189],[706,118],[942,685],[539,19],[285,33],[268,217],[437,223],[248,139],[676,518],[810,189],[667,293],[968,533],[810,295],[694,532],[855,79],[409,134],[456,63],[985,366],[975,239],[598,318],[475,237],[812,210],[892,760],[922,235],[561,448],[899,267],[714,497],[979,380],[751,436],[458,186],[52,23],[723,109],[165,124],[830,571],[855,795],[790,125],[756,353],[645,167],[537,278],[401,136],[469,330],[841,276],[731,334],[747,393],[898,725],[261,235],[681,511],[450,20],[400,69],[634,71],[539,133],[783,664],[691,69],[798,745],[651,75],[666,155],[835,633],[691,637],[576,153],[950,436],[436,292],[399,341],[245,58],[641,354],[924,847],[385,265],[596,446],[146,93],[711,333],[33,6],[399,89],[896,77],[920,435],[885,877],[893,771],[696,230],[913,429],[885,587],[862,728],[606,504],[513,300],[851,296],[541,273],[505,401],[457,31],[815,451],[556,81],[749,635],[394,201],[917,576],[301,269],[892,687],[864,603],[907,876],[707,137],[292,123],[50,6],[466,212],[724,675],[840,815],[879,237],[601,283],[246,59],[540,90],[718,101],[712,395],[821,489],[407,147],[725,203],[803,552],[609,554],[883,458],[358,253],[359,164],[379,332],[935,289],[366,97],[226,9],[553,431],[879,551],[660,65],[914,638],[830,175],[196,155],[256,107],[494,17],[730,23],[862,629],[549,425],[439,427],[233,141],[417,208],[492,325],[508,70],[989,188],[985,398],[303,153],[292,149],[981,826],[987,463],[856,661],[270,57],[801,472],[364,34],[990,749],[788,657],[934,156],[836,239],[791,774],[782,676],[897,856],[229,206],[914,908],[971,969],[921,246],[284,62],[886,389],[708,563],[240,28],[276,189],[844,438],[214,96],[893,809],[660,573],[407,397],[721,126],[676,396],[806,141],[929,840],[739,385],[667,367],[877,430],[441,198],[675,324],[552,44],[913,729],[923,534],[515,201],[663,549],[844,221],[658,170],[549,153],[212,29],[610,545],[433,222],[485,112],[699,374],[398,370],[850,609],[978,704],[625,344],[906,793],[969,326],[531,66],[938,744],[972,843],[860,680],[588,273],[550,46],[174,143],[547,115],[185,74],[716,525],[48,1],[430,54],[755,587],[897,394],[557,311],[666,621],[757,377],[832,166],[467,99],[637,5],[987,310],[549,360],[723,409],[820,789],[819,624],[290,85],[788,666],[594,136],[842,779],[486,404],[841,370],[795,491],[836,786],[685,361],[752,572],[437,278],[960,132],[428,256],[854,545],[956,666],[922,214],[896,528],[698,321],[767,96],[594,578],[870,781],[880,715],[717,223],[460,0],[443,318],[967,220],[852,345],[711,706],[364,205],[620,230],[897,127],[150,132],[704,19],[867,295],[406,340],[984,325],[337,310],[597,175],[716,660],[467,72],[461,46],[472,362],[481,73],[880,237],[287,68],[757,212],[683,106],[183,118],[642,241],[696,676],[748,131],[794,236],[986,309],[579,86],[597,177],[682,444],[181,29],[814,756],[708,176],[955,261],[702,641],[996,310],[828,222],[370,268],[716,562],[776,196],[592,37],[405,138],[487,142],[713,559],[788,600],[573,447],[299,224],[772,291],[417,310],[363,20],[821,678],[892,125],[386,359],[265,199],[998,877],[752,452],[985,32],[380,246],[819,372],[396,229],[580,34],[876,685],[810,297],[663,588],[989,686],[779,381],[808,252],[890,316],[967,45],[909,9],[330,236],[954,643],[727,617],[677,484],[842,258],[662,252],[515,417],[805,772],[815,27],[555,532],[762,471],[492,32],[612,575],[777,431],[742,49],[301,228],[916,66],[963,927],[272,268],[817,14],[995,261],[931,663],[341,268],[660,211],[70,43],[670,549],[937,424],[354,76],[280,78],[687,171],[897,531],[487,262],[588,244],[920,15],[775,148],[929,43],[919,868],[546,50],[749,306],[750,479],[311,119],[523,286],[982,349],[153,104],[289,248],[927,43],[844,211],[959,361],[800,34],[776,757],[625,279],[814,106],[128,107],[808,439],[765,423],[710,588],[681,189],[524,512],[734,514],[884,199],[980,564],[887,716],[150,54],[920,528],[837,111],[430,339],[942,580],[911,561],[880,310],[71,1],[891,289],[216,70],[825,499],[635,564],[858,242],[664,162],[794,451],[580,506],[591,153],[921,209],[947,260],[425,243],[424,146],[553,79],[785,196],[708,672],[643,453],[621,70],[945,432],[829,629],[723,396],[605,180],[975,350],[761,736],[593,246],[325,35],[519,448],[815,782],[924,9],[597,348],[642,584],[414,362],[933,787],[296,43],[770,677],[438,245],[738,256],[645,277],[921,581],[464,406],[337,279],[591,136],[682,506],[864,32],[408,171],[548,428],[338,216],[917,511],[378,249],[155,36],[700,277],[980,393],[858,628],[542,326],[912,729],[502,7],[984,148],[859,386],[470,343],[229,20],[479,110],[988,726],[326,16],[777,313],[761,263],[882,218],[139,106],[917,300],[556,524],[939,97],[945,801],[703,297],[331,279],[925,38],[437,266],[532,13],[840,662],[870,557],[604,189],[784,589],[415,33],[487,177],[967,376],[463,213],[518,304],[288,27],[576,572],[753,105],[300,249],[978,215],[452,186],[895,610],[663,90],[538,419],[458,93],[835,610],[624,179],[530,229],[494,72],[656,72],[251,159],[532,291],[464,41],[980,445],[722,116],[705,77],[755,752],[874,871],[370,115],[463,133],[945,90],[700,688],[402,336],[133,46],[993,519],[483,366],[811,99],[564,150],[794,742],[404,400],[766,615],[983,916],[187,123],[572,534],[522,482],[861,733],[880,634],[966,64],[501,483],[922,828],[374,263],[726,581],[788,576],[61,14],[226,156],[614,277],[947,406],[761,632],[996,563],[828,777],[899,423],[646,161],[308,102],[964,22],[406,255],[382,14],[850,358],[897,723],[457,371],[865,226],[402,236],[682,156],[828,112],[405,153],[860,507],[664,171],[826,186],[398,199],[413,41],[927,899],[658,263],[523,433],[910,431],[952,117],[138,116],[176,162],[994,416],[847,363],[936,158],[465,57],[739,618],[585,305],[743,541],[10,9],[789,16],[987,303],[740,595],[785,730],[535,9],[905,864],[740,429],[796,292],[976,626],[596,78],[263,61],[994,765],[993,465],[897,80],[493,239],[645,514],[736,22],[869,572],[480,428],[472,252],[566,208],[37,13],[762,724],[822,311],[746,266],[737,218],[970,510],[514,92],[970,741],[962,566],[773,298],[710,235],[962,361],[536,413],[927,534],[931,602],[462,153],[576,90],[640,572],[894,270],[969,777],[571,264],[578,34],[785,454],[546,506],[126,51],[406,173],[881,687],[348,144],[922,813],[666,88],[424,354],[120,87],[187,16],[485,54],[795,198],[876,838],[230,167],[500,64],[716,444],[220,40],[184,82],[897,249],[937,764],[765,169],[272,155],[309,34],[509,506],[641,79],[238,175],[945,193],[444,323],[105,51],[131,37],[410,260],[918,536],[581,432],[574,413],[583,187],[895,674],[316,121],[896,346],[804,239],[878,592],[177,97],[797,560],[64,56],[972,914],[902,387],[956,233],[843,126],[252,200],[719,708],[484,232],[611,409],[837,798],[851,332],[811,796],[952,526],[963,822],[468,413],[660,440],[811,74],[838,595],[942,500],[904,109],[839,214],[820,764],[829,342],[946,485],[593,160],[795,368],[562,480],[961,780],[501,84],[274,72],[403,6],[783,66],[773,221],[406,393],[957,285],[888,80],[855,657],[266,46],[745,483],[533,309],[330,165],[878,474],[480,211],[312,206],[855,1],[412,277],[881,182],[920,456],[998,362],[729,441],[815,332],[258,148],[919,88],[214,33],[993,620],[198,56],[448,48],[973,568],[662,489],[595,111],[615,228],[512,504],[704,561],[441,170],[567,467],[955,398],[874,679],[585,549],[474,180],[910,207],[813,80],[846,371],[152,120],[613,487],[424,292],[723,306],[597,368],[651,228],[908,865],[650,294],[535,516],[683,39],[895,744],[966,211],[741,265],[826,298],[140,114],[965,335],[670,268],[800,483],[832,213],[706,463],[999,910],[996,401],[737,399],[322,65],[857,371],[939,115],[518,347],[422,170],[557,214],[915,811],[969,160],[844,157],[923,670],[503,497],[745,343],[685,83],[874,658],[290,223],[487,224],[735,61],[380,236],[586,490],[946,341],[456,5],[754,225],[513,402],[843,364],[940,331],[420,193],[207,189],[716,24],[862,718],[583,380],[633,355],[976,847],[322,309],[769,535],[249,163],[814,534],[529,408],[987,823],[964,542],[806,312],[934,371],[799,718],[361,169],[932,40],[544,0],[366,363],[794,682],[679,58],[641,622],[824,747],[949,850],[685,125],[749,726],[547,421],[729,206],[839,166],[770,111],[995,87],[732,644],[323,9],[485,374],[257,192],[694,37],[486,356],[564,235],[668,177],[881,551],[378,11],[920,367],[974,780],[948,921],[850,517],[963,483],[728,643],[648,548],[440,345],[837,706],[689,457],[723,150],[870,257],[994,897],[625,119],[625,467],[785,401],[194,109],[578,181],[749,114],[506,305],[733,228],[791,382],[338,200],[983,268],[742,291],[226,69],[900,2],[200,5],[945,525],[865,267],[786,581],[841,754],[932,375],[479,284],[759,685],[678,73],[536,175],[899,456],[730,171],[847,338],[829,46],[412,199],[550,17],[599,487],[970,63],[446,419],[412,344],[867,671],[505,22],[270,190],[731,351],[889,82],[816,211],[873,269],[638,327],[920,635],[932,208],[788,141],[789,324],[602,224],[258,177],[656,499],[577,292],[934,570],[317,164],[47,45],[345,290],[723,710],[992,501],[935,815],[979,749],[962,574],[481,255],[860,724],[660,471],[912,387],[253,199],[584,528],[386,280],[736,426],[832,312],[917,820],[759,510],[430,176],[747,719],[312,243],[777,511],[674,274],[911,277],[803,31],[617,305],[810,537],[770,574],[794,590],[551,92],[604,403],[459,157],[950,114],[470,380],[201,7],[486,214],[860,470],[560,21],[671,296],[629,76],[400,118],[822,584],[348,23],[909,303],[417,245],[825,148],[871,308],[566,309],[976,530],[230,128],[238,3],[685,177],[556,134],[471,223],[717,420],[970,679],[714,551],[163,79],[620,179],[733,425],[965,128],[708,319],[706,353],[608,145],[522,6],[503,354],[677,640],[600,212],[682,620],[153,29],[951,592],[562,202],[801,536],[804,621],[777,292],[985,684],[449,25],[753,488],[482,375],[430,394],[749,197],[565,158],[789,603],[929,117],[907,248],[766,492],[713,624],[451,421],[500,105],[872,573],[751,320],[855,807],[538,359],[345,115],[525,451],[726,442],[812,441],[936,861],[775,338],[388,157],[290,61],[739,328],[893,837],[977,568],[483,0],[539,125],[887,595],[831,601],[798,336],[800,119],[398,189],[570,253],[881,363],[925,283],[407,284],[457,256],[730,17],[845,610],[972,696],[761,12],[219,100],[497,178],[970,615],[336,235],[671,218],[669,216],[511,106],[721,96],[509,106],[850,771],[753,32],[668,301],[896,739],[141,38],[803,727],[868,627],[633,501],[766,82],[707,181],[648,47],[342,270],[940,287],[992,765],[635,485],[408,83],[569,432],[887,696],[499,269],[614,612],[873,158],[626,218],[425,3],[847,525],[920,190],[692,324],[787,777],[958,763],[166,99],[970,193],[816,566],[814,688],[930,880],[752,643],[794,661],[704,650],[534,125],[185,64],[895,691],[887,168],[663,46],[979,167],[765,175],[958,815],[416,388],[485,184],[793,679],[406,339],[693,247],[174,104],[549,328],[918,560],[804,655],[813,410],[305,220],[862,779],[669,415],[557,541],[286,208],[837,768],[715,157],[601,541],[527,386],[964,428],[447,176],[791,241],[900,783],[828,531],[428,3],[428,187],[874,778],[949,833],[874,325],[899,161],[981,65],[885,185],[303,300],[638,610],[987,707],[609,124],[358,197],[849,661],[985,186],[517,165],[958,113],[551,312],[197,161],[211,175],[868,64],[742,591],[342,339],[460,72],[458,451],[992,27],[658,84],[128,80],[711,545],[889,828],[846,327],[930,656],[492,72],[748,109],[410,176],[941,488],[639,64],[857,835],[320,13],[755,421],[333,324],[280,28],[381,15],[763,357],[790,325],[465,252],[220,79],[789,103],[319,63],[691,62],[724,541],[110,80],[653,151],[497,29],[151,112],[789,122],[907,253],[715,555],[947,495],[593,423],[72,55],[900,295],[420,353],[679,641],[187,10],[515,457],[867,470],[451,232],[440,269],[472,261],[366,203],[437,187],[798,539],[711,66],[323,254],[554,257],[462,16],[504,226],[886,842],[504,402],[699,370],[867,522],[111,35],[633,540],[149,129],[221,218],[553,287],[865,416],[529,70],[160,144],[995,581],[688,409],[939,726],[615,528],[923,671],[307,104],[283,202],[591,95],[521,171],[302,148],[440,13],[486,15],[451,326],[777,326],[799,195],[396,68],[352,257],[451,387],[809,460],[912,389],[581,461],[648,205],[852,420],[770,683],[780,401],[666,164],[549,317],[444,155],[939,163],[318,240],[435,180],[397,20],[642,3],[419,181],[525,153],[828,448],[910,610],[981,466],[319,6],[81,55],[478,94],[702,379],[772,661],[235,162],[690,276],[782,333],[973,773],[870,268],[564,50],[368,342],[883,575],[996,191],[773,259],[931,427],[736,31],[866,533],[669,352],[960,60],[862,62],[561,233],[470,90],[999,482],[672,541],[881,351],[800,67],[616,396],[814,803],[870,249],[794,592],[727,356],[401,265],[958,283],[860,250],[706,439],[611,210],[868,69],[530,178],[286,48],[621,203],[922,358],[447,328],[789,129],[141,65],[848,727],[363,90],[75,54],[990,294],[623,130],[938,266],[680,10],[990,675],[345,68],[765,518],[201,61],[780,163],[960,480],[650,208],[713,78],[843,47],[300,279],[805,35],[609,119],[466,365],[687,326],[902,55],[955,875],[347,192],[928,772],[776,6],[967,924],[626,319],[860,63],[826,443],[772,763],[293,185],[999,569],[483,473],[708,356],[85,9],[966,146],[923,818],[757,505],[749,521],[779,442],[869,640],[395,239],[506,89],[600,459],[581,53],[813,772],[978,882],[886,686],[769,725],[668,237],[102,63],[946,275],[816,599],[695,389],[291,69],[355,90],[632,178],[362,1],[460,143],[499,231],[995,562],[688,206],[417,297],[588,392],[775,304],[564,376],[888,184],[988,80],[145,76],[401,177],[710,503],[612,206],[820,516],[145,65],[956,144],[181,170],[890,300],[696,579],[688,338],[870,712],[690,312],[903,635],[350,4],[369,236],[748,610],[950,353],[717,247],[264,41],[387,1],[635,334],[561,293],[823,713],[929,195],[449,290],[915,449],[726,535],[98,63],[919,122],[859,506],[901,234],[803,709],[893,257],[515,171],[580,213],[354,277],[869,506],[948,735],[997,50],[260,170],[495,76],[304,37],[426,213],[793,79],[725,215],[319,207],[866,494],[600,280],[992,82],[561,411],[939,586],[493,183],[792,360],[785,299],[924,107],[619,528],[444,215],[505,77],[841,502],[758,602],[411,159],[997,816],[775,639],[919,49],[835,788],[861,380],[920,298],[414,138],[980,636],[909,101],[825,749],[783,774],[561,508],[991,549],[693,643],[461,11],[393,73],[956,527],[284,0],[955,216],[791,481],[477,309],[715,278],[789,507],[735,401],[842,565],[69,50],[546,382],[911,727],[526,201],[74,25],[518,419],[830,323],[986,394],[984,534],[585,351],[262,51],[824,535],[843,814],[856,257],[929,449],[848,108],[923,167],[933,143],[981,412],[799,507],[949,504],[644,283],[544,389],[184,84],[854,68],[962,956],[922,888],[695,127],[806,582],[845,808],[945,551],[964,697],[446,215],[961,340],[880,656],[502,291],[909,438],[771,557],[846,228],[871,776],[923,176],[543,157],[706,85],[883,584],[649,279],[787,363],[342,317],[301,239],[873,385],[499,115],[357,76],[969,465],[282,149],[667,200],[672,471],[756,15],[860,172],[637,301],[934,833],[540,210],[547,209],[727,255],[189,187],[962,865],[623,306],[497,303],[844,289],[723,646],[394,343],[943,280],[959,0],[436,291],[762,429],[613,45],[828,569],[392,127],[556,356],[512,189],[349,114],[722,25],[449,197],[913,503],[865,96],[679,392],[693,485],[824,159],[471,374],[62,44],[654,591],[313,185],[880,549],[414,52],[734,465],[928,312],[437,22],[953,722],[254,66],[946,589],[382,272],[935,703],[948,440],[448,200],[380,63],[986,828],[672,171],[255,21],[752,406],[932,457],[339,154],[769,605],[780,418],[217,60],[971,729],[383,244],[847,551],[720,200],[961,685],[641,225],[826,92],[651,517],[728,590],[979,326],[293,227],[976,86],[582,125],[746,329],[540,151],[853,777],[924,697],[629,410],[687,40],[878,98],[708,396],[136,54],[267,197],[717,516],[417,327],[764,695],[772,282],[225,95],[963,430],[599,279],[692,365],[873,670],[534,308],[251,103],[992,566],[643,573],[265,103],[886,609],[792,532],[872,193],[687,478],[205,189],[921,284],[733,571],[302,200],[988,879],[272,38],[417,53],[782,555],[495,492],[231,196],[883,186],[997,261],[871,522],[809,264],[564,157],[789,111],[803,268],[489,203],[400,27],[252,154],[514,398],[432,170],[940,487],[165,135],[655,226],[652,150],[857,673],[441,309],[655,282],[217,70],[552,54],[722,387],[603,380],[650,224],[669,196],[614,35],[727,26],[725,466],[952,105],[861,682],[826,594],[860,354],[956,884],[887,307],[355,279],[625,350],[851,710],[728,562],[158,19],[994,6],[413,214],[740,519],[628,76],[347,119],[999,896],[807,448],[659,616],[483,193],[598,448],[701,505],[404,320],[421,125],[583,255],[946,225],[213,92],[742,704],[222,175],[956,727],[974,191],[354,47],[490,276],[326,87],[881,555],[562,251],[665,91],[528,3],[856,203],[435,15],[544,166],[856,686],[910,627],[638,191],[608,362],[945,194],[775,394],[991,638],[798,374],[23,1],[839,59],[640,390],[597,197],[539,348],[875,61],[714,538],[842,665],[767,404],[577,520],[999,5],[944,93],[466,384],[497,454],[961,273],[133,71],[980,198],[522,376],[275,233],[850,160],[753,536],[546,141],[877,594],[854,536],[521,372],[980,785],[536,414],[980,855],[700,694],[443,212],[156,72],[421,274],[800,212],[986,183],[787,745],[437,127],[230,163],[650,576],[922,388],[279,47],[992,603],[615,95],[971,164],[965,67],[626,285],[867,301],[602,48],[467,338],[995,706],[51,10],[894,272],[498,467],[532,342],[776,655],[107,67],[511,162],[248,176],[886,883],[866,682],[834,728],[893,393],[995,880],[792,568],[401,220],[949,946],[853,368],[395,54],[823,216],[514,15],[374,205],[433,248],[906,850],[440,110],[995,142],[587,106],[656,224],[409,357],[857,30],[899,237],[330,117],[524,359],[261,126],[426,152],[917,425],[834,528],[240,44],[868,391],[349,243],[561,557],[920,601],[830,283],[736,294],[958,179],[943,117],[640,271],[415,71],[615,82],[794,547],[944,285],[939,354],[777,662],[687,420],[865,783],[926,67],[836,313],[797,98],[492,388],[580,553],[730,413],[875,625],[676,557],[435,10],[373,277],[176,37],[938,795],[311,86],[684,472],[149,140],[721,79],[893,396],[147,29],[861,603],[631,290],[483,129],[429,142],[352,85],[940,85],[467,111],[817,727],[866,370],[381,192],[429,101],[699,271],[857,236],[955,110],[933,292],[802,59],[990,713],[780,10],[483,231],[578,176],[706,83],[623,321],[897,722],[999,285],[366,289],[193,24],[100,87],[912,210],[310,146],[403,262],[196,6],[364,317],[469,178],[604,186],[752,155],[708,80],[929,599],[610,340],[409,304],[804,437],[299,101],[709,91],[159,94],[887,816],[941,166],[950,887],[636,612],[987,837],[552,256],[864,134],[458,372],[673,186],[949,260],[783,535],[854,287],[839,101],[873,770],[410,335],[946,702],[699,493],[522,154],[595,57],[404,228],[872,501],[515,270],[617,188],[539,318],[895,282],[808,138],[237,36],[453,381],[756,91],[706,216],[603,194],[199,41],[775,313],[936,762],[542,429],[764,191],[748,626],[626,343],[941,18],[967,493],[750,551],[725,661],[831,656],[795,526],[427,85],[805,158],[644,453],[761,264],[172,170],[948,785],[708,665],[567,84],[732,552],[972,368],[978,290],[413,324],[925,389],[842,86],[463,257],[917,151],[413,110],[732,613],[678,251],[174,100],[838,805],[681,210],[885,466],[924,880],[501,489],[145,62],[745,534],[973,80],[125,18],[412,8],[476,431],[833,283],[791,54],[500,304],[321,145],[730,281],[508,156],[863,139],[727,197],[537,492],[861,31],[828,184],[195,98],[670,34],[920,385],[805,458],[763,647],[837,441],[894,220],[574,508],[688,51],[681,433],[683,408],[704,342],[891,215],[922,496],[655,438],[768,646],[728,74],[830,572],[865,351],[928,396],[645,540],[647,488],[232,124],[785,279],[39,4],[451,432],[726,531],[824,219],[924,343],[902,21],[632,255],[877,260],[619,171],[201,35],[63,12],[559,540],[736,316],[735,485],[327,85],[396,85],[468,335],[612,565],[139,95],[603,526],[526,60],[958,913],[837,785],[897,317],[852,456],[822,251],[373,150],[65,54],[320,239],[909,115],[853,25],[755,310],[795,414],[529,269],[625,593],[776,101],[977,350],[779,664],[540,233],[853,714],[421,19],[879,480],[383,109],[915,102],[423,85],[629,129],[800,92],[340,138],[972,929],[519,423],[552,143],[987,978],[645,7],[188,30],[828,11],[858,796],[882,564],[486,253],[244,168],[826,696],[328,92],[467,242],[963,11],[627,416],[527,434],[920,607],[522,210],[527,38],[438,327],[256,136],[370,357],[950,169],[767,559],[998,0],[999,619],[887,798],[546,443],[934,58],[843,507],[827,203],[852,130],[649,45],[641,289],[410,313],[867,639],[488,461],[696,516],[628,133],[702,410],[225,108],[647,335],[603,390],[922,412],[657,654],[844,188],[884,865],[823,666],[580,345],[933,908],[337,115],[882,231],[949,214],[995,714],[757,156],[617,505],[399,206],[502,141],[661,171],[297,211],[873,291],[896,553],[892,89],[699,316],[571,59],[666,446],[646,129],[921,234],[986,916],[568,171],[690,291],[596,214],[745,625],[913,546],[379,169],[512,216],[709,575],[748,615],[289,110],[915,776],[355,36],[950,641],[775,216],[604,272],[709,86],[633,430],[197,52],[699,494],[622,428],[670,646],[336,312],[423,79],[872,748],[800,360],[984,419],[885,342],[595,534],[461,451],[626,323],[516,332],[892,809],[794,371],[663,19],[446,145],[892,838],[997,774],[761,158],[750,437],[911,103],[924,533],[948,842],[941,480],[357,79],[999,240],[705,417],[329,42],[398,239],[428,140],[637,536],[521,417],[650,336],[962,931],[415,76],[910,779],[802,32],[780,620],[911,656],[751,570],[695,140],[702,189],[699,194],[693,533],[745,6],[912,529],[321,107],[654,414],[704,350],[692,129],[468,226],[900,216],[401,397],[787,167],[974,785],[244,156],[800,169],[795,235],[947,220],[730,708],[160,84],[842,387],[532,214],[776,292],[553,159],[944,181],[768,535],[949,84],[690,373],[614,121],[816,713],[50,42],[742,70],[602,168],[574,421],[606,308],[865,40],[526,301],[830,706],[604,131],[671,384],[276,89],[873,25],[802,502],[939,638],[566,355],[819,490],[507,94],[546,322],[965,721],[874,394],[533,445],[317,10],[801,647],[753,268],[829,533],[903,300],[861,135],[723,571],[208,67],[985,798],[391,85],[148,142],[717,126],[848,669],[841,291],[861,7],[944,482],[846,629],[597,76],[724,373],[524,234],[922,298],[425,174],[687,296],[793,724],[325,55],[970,462],[767,30],[861,189],[675,640],[203,48],[638,466],[996,378],[706,288],[785,58],[381,0],[844,8],[842,575],[644,330],[764,381],[727,494],[799,157],[860,433],[605,573],[910,208],[703,570],[839,700],[751,114],[128,103],[683,570],[768,455],[801,272],[814,291],[608,476],[947,112],[521,29],[796,240],[905,263],[123,119],[643,309],[881,695],[744,103],[551,241],[513,221],[487,369],[803,613],[436,419],[255,45],[344,59],[742,195],[242,1],[187,166],[576,42],[999,908],[645,480],[892,691],[976,218],[892,82],[518,286],[431,261],[660,57],[913,269],[833,504],[446,342],[576,556],[979,519],[981,859],[652,556],[583,321],[961,337],[620,51],[749,103],[857,660],[690,41],[863,572],[976,125],[618,68],[638,136],[909,759],[963,883],[859,446],[194,5],[425,77],[508,218],[532,142],[156,71],[696,78],[700,414],[859,404],[701,620],[510,255],[612,390],[628,533],[409,262],[455,179],[994,950],[707,4],[626,570],[57,3],[959,547],[918,313],[411,303],[939,91],[814,229],[430,271],[991,781],[888,121],[545,108],[794,598],[894,36],[472,206],[747,108],[903,889],[953,313],[686,599],[991,921],[344,323],[635,46],[585,13],[914,259],[807,600],[768,343],[912,717],[806,144],[983,25],[759,521],[820,382],[125,56],[761,3],[632,95],[932,66],[723,684],[298,223],[861,72],[897,513],[671,653],[742,544],[353,100],[199,100],[139,93],[784,395],[590,391],[326,224],[307,276],[445,271],[916,488],[779,637],[998,135],[868,319],[357,341],[880,618],[976,190],[893,860],[731,458],[541,188],[493,93],[593,454],[515,325],[820,178],[767,741],[787,85],[204,49],[412,355],[981,164],[332,71],[999,300],[927,768],[186,18],[630,143],[578,470],[799,323],[185,136],[493,290],[879,352],[757,509],[689,262],[373,307],[707,466],[563,42],[249,86],[793,108],[511,331],[702,456],[799,628],[967,402],[811,581],[546,518],[773,582],[905,638],[698,433],[521,245],[650,264],[913,478],[207,201],[392,236],[948,27],[328,72],[345,212],[919,392],[58,23],[761,159],[208,108],[822,339],[591,69],[880,377],[245,50],[259,129],[652,498],[505,178],[430,34],[790,143],[873,8],[811,101],[715,343],[606,535],[763,198],[558,240],[961,190],[936,655],[376,364],[361,239],[725,589],[892,215],[915,704],[945,291],[562,122],[988,353],[647,514],[973,356],[503,449],[878,771],[649,444],[849,845],[592,268],[549,508],[627,582],[757,287],[870,529],[713,141],[759,598],[422,31],[928,20],[782,714],[835,360],[480,64],[630,182],[530,39],[498,185],[915,244],[536,176],[831,29],[633,304],[817,810],[780,191],[697,209],[596,470],[426,334],[547,315],[947,277],[957,719],[725,552],[853,747],[244,196],[897,255],[983,236],[577,272],[321,80],[772,360],[901,454],[662,79],[596,371],[871,683],[908,473],[935,200],[666,584],[904,143],[881,400],[762,637],[305,98],[884,479],[919,384],[522,121],[898,728],[786,147],[272,118],[535,24],[898,598],[662,519],[763,236],[436,287],[536,514],[857,770],[755,535],[914,471],[227,22],[960,522],[647,337],[991,130],[497,208],[292,226],[999,954],[307,179],[119,105],[770,442],[493,236],[817,768],[524,244],[591,309],[605,278],[57,10],[695,268],[813,6],[738,729],[92,38],[499,99],[872,702],[155,152],[464,176],[952,649],[387,16],[846,623],[689,618],[596,136],[137,38],[608,262],[971,958],[644,230],[997,303],[413,356],[836,204],[847,395],[982,200],[809,300],[913,365],[777,491],[800,790],[622,166],[742,0],[744,65],[769,628],[557,485],[769,88],[621,279],[945,714],[760,615],[804,725],[943,174],[969,118],[532,61],[721,102],[843,252],[452,273],[689,578],[617,501],[662,143],[794,680],[295,21],[477,418],[786,84],[132,87],[511,320],[452,39],[947,800],[521,271],[629,178],[978,597],[415,253],[728,306],[728,112],[904,898],[707,616],[574,178],[805,134],[819,702],[272,214],[821,92],[543,422],[230,30],[204,6],[570,387],[500,133],[974,145],[763,509],[741,425],[740,196],[569,5],[928,286],[484,370],[948,378],[718,693],[383,133],[524,100],[475,413],[342,60],[703,624],[967,561],[623,274],[776,734],[513,480],[350,168],[969,784],[607,5],[265,34],[208,68],[403,17],[919,504],[930,625],[726,200],[834,61],[710,341],[355,218],[915,99],[754,457],[816,689],[648,210],[329,291],[454,45],[541,42],[549,289],[692,633],[652,152],[885,725],[785,199],[884,764],[690,177],[977,315],[605,489],[777,324],[825,437],[674,485],[539,487],[495,46],[733,386],[874,550],[937,567],[410,71],[676,497],[903,577],[843,181],[992,519],[936,786],[664,194],[573,370],[868,284],[267,213],[407,405],[915,681],[992,850],[818,292],[975,660],[642,129],[574,37],[583,268],[991,315],[831,709],[412,46],[797,631],[999,304],[849,411],[701,131],[752,687],[355,58],[882,20],[993,290],[958,0],[927,712],[517,67],[951,393],[465,99],[464,278],[667,151],[603,571],[725,671],[586,151],[467,402],[404,35],[475,43],[623,478],[438,99],[607,176],[592,48],[912,493],[676,27],[334,113],[325,320],[622,205],[663,145],[886,159],[752,574],[876,211],[663,638],[869,431],[809,765],[818,362],[245,179],[205,113],[637,67],[474,245],[904,294],[141,2],[937,213],[674,172],[961,495],[516,342],[807,690],[923,366],[706,510],[517,50],[332,95],[817,671],[408,313],[563,526],[218,141],[768,278],[906,1],[993,811],[629,318],[922,306],[863,350],[496,107],[981,299],[849,833],[802,101],[899,725],[922,619],[715,319],[875,152],[889,823],[590,346],[979,2],[508,189],[783,757],[560,253],[830,326],[865,9],[345,4],[473,461],[921,471],[501,325],[700,526],[359,35],[115,65],[943,344],[787,202],[766,231],[952,773],[836,232],[853,364],[363,58],[958,460],[459,47],[479,382],[627,294],[692,511],[635,155],[839,335],[901,398],[397,180],[534,152],[548,210],[942,73],[883,313],[922,329],[972,634],[681,648],[491,270],[919,698],[565,71],[866,63],[906,838],[486,69],[997,723],[371,88],[374,371],[944,869],[373,178],[623,556],[687,38],[431,216],[685,232],[904,192],[691,379],[456,372],[717,696],[713,573],[376,238],[966,258],[231,188],[278,28],[759,439],[506,332],[716,432],[475,381],[340,232],[862,579],[391,32],[453,291],[991,574],[702,56],[775,221],[997,378],[469,249],[794,770],[907,880],[450,84],[889,195],[555,135],[223,137],[218,152],[109,27],[206,98],[766,50],[575,177],[878,326],[467,70],[709,590],[72,3],[828,800],[518,188],[711,565],[774,738],[425,12],[893,76],[622,479],[744,7],[987,374],[654,40],[360,346],[598,382],[381,113],[854,314],[573,16],[856,150],[914,144],[642,176],[584,299],[856,471],[777,243],[624,156],[277,255],[830,452],[878,33],[566,483],[915,671],[162,148],[881,353],[688,413],[778,155],[372,245],[772,138],[346,246],[642,344],[468,96],[769,723],[774,58],[255,80],[329,191],[232,114],[991,904],[809,399],[625,18],[579,326],[503,440],[668,123],[94,81],[471,177],[764,423],[626,177],[541,222],[861,150],[746,424],[984,212],[418,408],[152,129],[505,4],[943,582],[860,186],[816,301],[350,147],[350,295],[688,542],[200,122],[843,233],[808,507],[963,475],[546,155],[830,556],[285,224],[839,323],[888,353],[697,581],[891,240],[781,412],[965,765],[783,231],[435,223],[830,806],[532,6],[952,464],[773,212],[615,27],[823,470],[890,84],[683,421],[807,767],[133,115],[50,32],[642,137],[617,439],[913,639],[903,763],[273,231],[808,272],[796,440],[436,0],[914,856],[822,376],[762,651],[621,397],[992,853],[106,19],[530,287],[725,284],[885,852],[634,413],[178,132],[685,166],[986,116],[773,330],[639,196],[242,92],[987,353],[362,212],[410,100],[504,502],[424,63],[839,116],[681,156],[568,68],[328,196],[980,283],[738,347],[992,743],[561,514],[669,623],[573,29],[774,594],[722,665],[957,444],[674,601],[999,51],[967,754],[448,184],[825,320],[990,111],[725,632],[709,82],[155,74],[624,132],[657,208],[873,795],[756,364],[856,531],[707,30],[978,267],[651,282],[902,384],[975,914],[597,460],[966,378],[598,310],[448,95],[825,175],[875,75],[899,2],[518,122],[889,600],[732,721],[670,445],[475,272],[996,684],[765,455],[881,114],[602,527],[900,632],[293,139],[99,76],[493,467],[605,430],[729,342],[915,145],[954,172],[940,931],[661,63],[932,191],[894,158],[786,371],[675,38],[450,306],[483,205],[630,128],[442,21],[569,496],[433,329],[370,272],[873,143],[634,408],[537,254],[566,221],[385,281],[696,570],[383,79],[843,705],[350,6],[698,213],[953,465],[460,92],[346,183],[588,576],[859,800],[429,299],[535,521],[140,132],[455,147],[906,190],[726,545],[406,21],[493,50],[555,320],[289,200],[959,665],[800,644],[791,142],[676,63],[615,562],[951,571],[417,35],[552,269],[768,12],[514,373],[968,658],[918,262],[679,550],[511,123],[422,90],[404,223],[718,367],[350,69],[657,385],[791,365],[919,334],[969,788],[572,292],[85,46],[612,300],[875,400],[938,539],[748,159],[900,158],[508,507],[934,600],[957,18],[787,557],[813,308],[692,54],[649,184],[929,95],[299,45],[332,121],[495,26],[773,504],[730,151],[487,108],[854,332],[950,899],[500,252],[428,417],[519,137],[277,140],[900,455],[333,163],[687,330],[819,227],[972,595],[513,22],[843,7],[710,152],[965,914],[441,199],[910,424],[867,510],[594,494],[560,322],[495,175],[786,402],[774,641],[920,350],[676,262],[852,181],[926,157],[378,86],[668,612],[669,492],[908,277],[884,134],[793,757],[964,49],[166,34],[359,158],[780,153],[739,236],[265,64],[536,222],[937,167],[170,16],[62,54],[423,325],[861,719],[791,278],[652,124],[792,43],[888,309],[931,900],[894,697],[678,457],[947,84],[601,272],[643,557],[648,535],[892,161],[642,239],[859,374],[601,553],[810,41],[894,879],[743,664],[945,462],[594,327],[42,13],[176,47],[546,132],[405,185],[649,449],[329,311],[403,21],[943,680],[855,302],[318,16],[558,9],[877,29],[763,373],[874,671],[789,100],[433,74],[691,108],[390,248],[741,322],[696,173],[987,637],[517,284],[788,44],[629,243],[227,203],[766,67],[553,323],[482,295],[813,173],[775,256],[588,552],[569,263],[114,37],[681,39],[936,913],[598,508],[883,346],[831,71],[991,436],[161,24],[652,101],[751,450],[558,444],[565,229],[938,752],[930,68],[290,271],[418,300],[474,328],[887,35],[807,178],[859,330],[990,715],[870,320],[523,462],[448,381],[725,439],[206,131],[931,434],[610,564],[385,180],[874,268],[718,209],[518,311],[534,476],[990,344],[926,137],[656,17],[707,239],[541,135],[724,122],[853,199],[318,235],[646,414],[942,878],[779,705],[973,67],[942,545],[268,234],[268,235],[547,266],[813,306],[892,337],[688,603],[362,3],[445,429],[800,402],[736,611],[987,4],[946,625],[882,519],[834,166],[738,425],[905,94],[621,23],[563,59],[232,139],[805,100],[855,754],[813,380],[975,893],[895,771],[180,131],[797,657],[307,218],[971,850],[878,245],[315,84],[543,503],[562,79],[845,2],[838,488],[585,565],[827,748],[436,201],[604,143],[914,159],[414,254],[505,306],[949,156],[612,201],[999,787],[925,788],[773,224],[985,152],[954,472],[883,151],[659,278],[531,21],[595,135],[298,266],[695,368],[421,121],[667,121],[181,107],[567,359],[823,407],[596,571],[997,103],[388,272],[974,232],[842,30],[723,318],[448,447],[489,132],[398,394],[446,397],[921,172],[684,502],[113,111],[904,72],[776,255],[507,394],[729,319],[925,166],[163,131],[966,432],[381,260],[853,178],[724,490],[735,75],[513,267],[933,503],[36,22],[848,125],[817,684],[209,195],[978,42],[646,241],[687,230],[992,403],[965,689],[664,151],[250,249],[898,386],[527,374],[580,478],[695,144],[276,37],[903,340],[543,399],[231,113],[554,181],[810,746],[463,96],[485,276],[341,77],[930,268],[323,235],[295,108],[206,11],[987,699],[605,277],[903,695],[635,60],[844,25],[903,366],[644,520],[253,144],[400,324],[439,351],[946,364],[920,273],[868,749],[876,478],[497,397],[416,304],[192,150],[906,342],[94,18],[137,1],[719,226],[978,120],[879,207],[458,39],[947,110],[806,421],[754,616],[704,388],[682,123],[559,496],[800,189],[126,95],[781,688],[934,773],[936,556],[473,315],[252,234],[786,316],[577,397],[344,107],[797,395],[807,127],[802,599],[669,608],[882,5],[808,592],[897,7],[640,411],[686,383],[974,918],[646,465],[595,186],[902,413],[744,725],[378,296],[521,187],[921,128],[836,312],[949,462],[541,458],[699,488],[633,527],[801,358],[822,290],[996,824],[896,491],[40,25],[557,22],[983,170],[695,106],[712,422],[269,220],[410,356],[626,193],[846,817],[524,283],[249,97],[927,347],[931,832],[200,32],[256,70],[188,78],[672,223],[507,258],[582,2],[897,369],[978,788],[191,51],[515,181],[931,767],[799,559],[273,12],[720,188],[508,146],[771,11],[960,321],[284,2],[423,283],[472,301],[934,254],[333,66],[607,568],[707,313],[701,25],[768,261],[611,229],[364,75],[192,70],[634,249],[824,486],[745,700],[989,882],[651,238],[521,229],[526,179],[667,350],[730,6],[402,388],[353,143],[685,39],[961,131],[708,355],[533,71],[671,542],[920,519],[919,559],[933,635],[776,297],[354,298],[86,57],[966,919],[790,694],[949,287],[488,460],[993,828],[216,140],[925,617],[637,191],[798,20],[589,375],[846,335],[864,638],[855,256],[642,320],[486,123],[721,503],[884,369],[956,294],[662,644],[328,179],[842,180],[493,152],[550,281],[279,268],[554,322],[440,352],[964,786],[976,371],[374,245],[833,693],[416,152],[326,88],[885,148],[826,398],[432,382],[623,385],[574,50],[998,378],[646,494],[784,736],[303,175],[820,335],[599,183],[650,508],[887,860],[974,783],[916,645],[968,467],[655,205],[851,251],[547,194],[848,392],[787,715],[740,566],[784,352],[571,147],[698,362],[306,195],[983,368],[453,292],[756,553],[582,369],[544,326],[624,78],[491,413],[645,245],[722,577],[666,301],[515,318],[851,640],[567,274],[793,614],[400,358],[54,40],[976,156],[906,482],[472,209],[673,31],[353,16],[617,474],[704,130],[953,535],[889,839],[957,433],[578,457],[744,329],[799,107],[693,238],[318,196],[323,181],[670,126],[954,833],[79,60],[769,174],[711,636],[978,119],[251,93],[956,743],[999,184],[500,69],[409,290],[994,800],[546,533],[171,108],[768,42],[654,404],[669,329],[645,255],[898,498],[510,470],[790,701],[316,175],[933,466],[851,105],[233,145],[701,303],[709,214],[475,222],[602,145],[565,439],[931,57],[454,294],[943,277],[332,13],[562,1],[832,829],[221,190],[226,91],[718,712],[959,757],[608,25],[484,6],[953,363],[841,818],[429,161],[207,162],[968,603],[911,733],[917,241],[814,536],[751,348],[918,45],[891,465],[741,735],[491,250],[886,490],[224,111],[796,736],[899,469],[736,79],[580,278],[322,63],[913,618],[637,425],[517,259],[697,91],[491,363],[537,514],[469,279],[590,341],[952,751],[868,193],[944,584],[241,132],[670,534],[847,784],[268,86],[713,390],[303,261],[870,587],[960,445],[984,223],[336,94],[889,464],[852,195],[783,191],[651,56],[893,709],[266,194],[638,240],[829,106],[721,46],[158,15],[922,557],[922,375],[947,437],[916,357],[923,525],[227,59],[886,215],[590,13],[940,429],[868,701],[895,78],[784,382],[500,460],[492,169],[905,627],[944,39],[361,203],[785,485],[796,580],[923,342],[405,403],[326,185],[612,534],[396,168],[888,856],[997,492],[350,49],[381,338],[780,764],[822,149],[978,571],[731,649],[974,617],[667,310],[811,230],[620,191],[756,358],[629,104],[152,148],[523,159],[544,70],[882,126],[663,274],[978,203],[725,394],[872,234],[425,59],[410,231],[609,304],[312,26],[374,81],[299,166],[447,337],[885,646],[561,436],[922,439],[748,222],[732,416],[776,760],[547,312],[702,673],[375,28],[826,419],[761,77],[246,60],[409,42],[257,63],[905,540],[498,105],[243,64],[502,266],[518,11],[864,143],[654,289],[162,147],[787,641],[871,660],[346,58],[335,245],[634,571],[100,15],[549,105],[961,783],[924,177],[970,375],[850,163],[775,126],[665,94],[565,244],[623,282],[760,537],[431,401],[857,691],[724,699],[181,44],[793,12],[723,161],[521,110],[722,678],[660,443],[737,215],[626,354],[618,510],[406,31],[500,387],[857,341],[135,1],[515,52],[917,2],[944,68],[952,691],[644,550],[377,376],[653,317],[301,27],[766,138],[985,332],[816,70],[345,105],[525,444],[310,220],[836,592],[773,170],[244,69],[985,801],[465,140],[685,307],[847,661],[146,56],[423,381],[707,533],[635,360],[367,362],[862,574],[755,289],[327,45],[753,59],[619,515],[950,653],[701,300],[360,240],[492,138],[614,133],[406,265],[983,946],[742,200],[467,318],[324,140],[974,721],[967,537],[262,17],[138,118],[461,449],[420,178],[819,751],[339,132],[828,813],[282,143],[956,191],[710,140],[632,499],[264,173],[373,292],[767,537],[750,265],[602,339],[326,168],[898,20],[221,53],[410,137],[691,184],[975,250],[476,44],[678,99],[650,33],[783,375],[840,465],[871,422],[363,241],[743,301],[983,822],[950,504],[385,19],[623,430],[601,170],[953,554],[230,168],[304,105],[633,536],[140,138],[958,345],[794,564],[659,399],[554,238],[988,28],[522,122],[575,60],[929,233],[713,579],[949,828],[632,572],[896,552],[792,576],[571,271],[673,282],[652,279],[412,259],[308,95],[592,497],[741,415],[784,246],[948,908],[256,49],[849,337],[951,914],[809,42],[346,254],[432,157],[969,638],[506,37],[502,380],[522,423],[963,340],[914,654],[520,499],[651,216],[573,308],[647,606],[859,585],[521,452],[432,396],[944,642],[322,15],[698,529],[652,369],[932,321],[665,455],[526,53],[855,827],[444,353],[537,137],[387,74],[824,150],[722,357],[812,368],[651,223],[670,486],[372,237],[844,335],[655,222],[903,500],[918,862],[738,474],[947,386],[746,196],[480,452],[445,297],[474,270],[773,97],[675,299],[846,361],[956,636],[871,192],[507,431],[671,45],[358,35],[410,306],[310,286],[704,638],[688,492],[327,281],[335,78],[684,307],[730,517],[901,588],[785,704],[670,417],[775,713],[827,347],[714,492],[325,237],[653,454],[113,106],[699,401],[791,114],[495,109],[975,848],[321,183],[678,207],[615,384],[646,378],[881,826],[333,329],[501,433],[852,72],[758,380],[932,264],[732,627],[659,386],[891,867],[694,404],[540,281],[856,730],[907,10],[894,271],[765,272],[944,275],[856,698],[999,508],[400,241],[956,791],[429,15],[458,17],[211,162],[627,440],[576,477],[801,693],[674,526],[996,723],[662,314],[791,427],[900,218],[658,115],[908,891],[725,536],[954,836],[722,628],[672,130],[632,129],[890,217],[725,71],[997,908],[941,569],[586,50],[515,491],[668,444],[444,402],[750,386],[788,321],[690,310],[698,560],[679,627],[541,320],[685,151],[381,270],[579,308],[285,197],[936,625],[671,317],[978,719],[370,110],[632,36],[825,48],[328,130],[365,236],[781,55],[853,618],[668,466],[946,448],[798,409],[864,271],[909,123],[546,192],[693,158],[542,187],[633,78],[674,577],[669,479],[925,122],[151,77],[789,87],[599,12],[869,660],[686,67],[269,87],[746,481],[901,705],[867,775],[831,771],[11,8],[775,686],[410,209],[392,47],[438,426],[707,210],[680,248],[373,104],[637,316],[627,338],[899,42],[353,312],[168,60],[688,243],[981,862],[951,245],[629,606],[872,367],[560,523],[41,22],[813,243],[813,328],[75,0],[575,126],[274,226],[867,154],[852,40],[608,252],[815,717],[779,300],[951,490],[464,63],[808,147],[618,352],[844,80],[791,535],[83,0],[721,161],[874,73],[834,442],[747,255],[972,306],[856,160],[796,19],[694,244],[961,186],[739,97],[656,371],[927,229],[397,178],[545,180],[989,803],[501,148],[971,344],[483,248],[816,487],[241,21],[644,211],[262,137],[950,722],[505,125],[563,556],[771,740],[837,565],[491,450],[579,72],[784,209],[701,75],[758,575],[730,284],[787,320],[547,42],[799,236],[540,344],[288,59],[566,465],[789,683],[570,235],[845,829],[253,135],[924,815],[610,434],[689,268],[454,415],[937,636],[436,113],[969,22],[824,270],[806,236],[921,767],[667,586],[859,831],[791,161],[789,586],[990,627],[621,201],[985,0],[255,237],[665,114],[994,178],[985,784],[906,436],[547,45],[198,138],[849,53],[795,330],[418,99],[921,208],[562,229],[930,697],[908,900],[323,240],[890,620],[395,250],[870,358],[907,666],[816,623],[603,78],[776,601],[640,312],[978,399],[964,20],[846,115],[340,77],[876,270],[794,486],[335,217],[609,461],[540,428],[298,9],[743,721],[592,50],[934,275],[691,94],[776,736],[196,98],[561,373],[828,541],[100,39],[582,293],[965,98],[982,98],[733,440],[897,138],[579,61],[659,222],[796,501],[558,524],[818,651],[993,175],[962,463],[242,75],[620,94],[303,293],[990,773],[788,671],[411,276],[552,291],[627,303],[776,583],[792,149],[520,97],[844,126],[510,218],[788,680],[585,238],[362,193],[498,112],[926,495],[832,522],[691,35],[836,42],[711,371],[979,280],[460,337],[888,725],[936,50],[919,769],[692,426],[356,157],[387,187],[582,563],[462,160],[500,52],[763,88],[614,131],[914,288],[944,36],[950,623],[638,282],[592,86],[965,157],[481,450],[804,267],[745,408],[421,383],[774,9],[819,769],[440,390],[885,553],[526,349],[719,72],[942,879],[784,723],[398,168],[484,132],[749,229],[710,75],[875,265],[529,47],[747,529],[374,275],[698,389],[276,234],[826,724],[914,573],[631,124],[377,266],[747,722],[646,590],[789,450],[794,82],[962,534],[801,758],[933,648],[921,309],[931,851],[744,413],[880,736],[555,369],[756,175],[978,164],[839,111],[222,41],[230,181],[581,150],[499,278],[778,615],[987,515],[580,502],[324,118],[176,39],[929,16],[758,334],[832,206],[277,142],[772,224],[783,132],[992,299],[702,113],[526,429],[669,463],[821,345],[756,147],[124,31],[878,181],[763,664],[653,82],[656,314],[529,475],[644,635],[653,4],[407,155],[878,851],[728,616],[728,254],[775,392],[874,606],[900,40],[758,52],[749,714],[361,132],[784,89],[617,492],[930,309],[622,67],[625,150],[884,602],[813,321],[771,147],[900,241],[667,527],[921,704],[536,151],[453,327],[614,599],[879,27],[579,107],[470,281],[504,46],[869,228],[709,282],[680,162],[317,286],[687,642],[778,53],[210,129],[751,26],[453,181],[949,749],[689,204],[894,217],[37,14],[848,592],[992,293],[992,673],[603,590],[698,298],[894,25],[675,673],[320,215],[640,164],[948,863],[324,299],[788,214],[339,311],[664,395],[720,218],[222,26],[445,339],[673,511],[937,854],[518,508],[861,705],[241,224],[915,392],[298,165],[792,738],[937,700],[931,266],[601,481],[570,335],[884,881],[556,184],[469,388],[727,59],[181,61],[943,757],[768,661],[560,6],[871,550],[883,305],[239,49],[314,74],[827,168],[669,112],[353,81],[697,4],[661,477],[367,92],[830,764],[901,269],[685,131],[936,156],[957,757],[449,105],[394,42],[232,156],[270,242],[959,552],[563,441],[801,667],[330,275],[952,896],[854,423],[941,586],[657,540],[998,849],[403,266],[761,111],[864,31],[542,529],[46,4],[539,81],[820,171],[678,61],[699,467],[137,128],[945,500],[587,200],[643,363],[870,674],[707,578],[769,484],[802,386],[962,912],[815,730],[567,174],[750,692],[825,529],[749,701],[709,221],[848,72],[921,13],[824,516],[508,102],[408,145],[935,800],[380,229],[866,52],[284,187],[390,342],[520,229],[449,180],[927,663],[933,790],[929,248],[355,336],[549,120],[415,353],[802,255],[480,389],[975,953],[770,396],[308,301],[495,232],[648,359],[666,48],[602,73],[395,350],[589,35],[901,478],[818,631],[998,832],[489,162],[694,459],[852,513],[977,99],[902,29],[684,584],[536,214],[827,114],[895,579],[809,805],[773,426],[795,633],[935,694],[853,292],[916,352],[246,113],[875,593],[871,632],[969,317],[672,421],[478,156],[652,449],[794,119],[237,28],[545,252],[565,101],[941,45],[389,114],[753,417],[692,425],[798,38],[569,442],[294,69],[847,677],[820,439],[417,196],[73,22],[307,112],[255,249],[515,214],[720,711],[790,757],[893,81],[982,369],[849,577],[806,696],[221,157],[863,202],[746,207],[917,175],[329,49],[563,489],[873,433],[723,118],[650,164],[177,13],[401,400],[851,295],[154,129],[266,57],[929,122],[681,20],[679,637],[870,41],[969,92],[946,476],[980,433],[235,103],[902,349],[772,306],[786,166],[92,29],[475,42],[515,144],[631,623],[74,8],[824,269],[957,92],[400,250],[477,415],[728,452],[784,258],[111,92],[595,7],[843,659],[985,914],[725,262],[778,682],[660,448],[507,299],[250,179],[282,266],[941,688],[778,435],[837,27],[269,10],[930,661],[601,256],[991,645],[32,24],[698,601],[971,422],[994,628],[960,223],[521,475],[917,592],[418,264],[921,895],[506,383],[715,485],[602,350],[776,267],[415,83],[750,476],[548,342],[910,633],[604,269],[543,350],[405,252],[433,89],[496,158],[767,438],[496,475],[701,503],[998,43],[482,473],[870,852],[392,153],[624,276],[882,548],[715,335],[552,158],[829,580],[489,167],[838,521],[760,78],[903,670],[692,337],[868,733],[504,449],[674,459],[890,659],[805,164],[767,600],[976,305],[990,140],[726,541],[275,171],[798,132],[487,5],[548,1],[727,576],[815,574],[821,71],[400,282],[316,142],[720,237],[885,41],[218,193],[122,81],[849,751],[278,97],[406,79],[635,561],[498,303],[902,243],[957,826],[572,11],[434,102],[984,613],[884,584],[424,255],[754,292],[921,231],[384,103],[743,145],[505,48],[100,53],[785,709],[677,353],[949,859],[720,195],[897,260],[900,756],[708,336],[631,136],[966,295],[458,344],[825,30],[559,487],[394,209],[718,22],[821,751],[852,791],[276,270],[909,774],[847,370],[818,112],[805,637],[849,484],[823,97],[988,922],[220,91],[459,414],[639,179],[866,309],[449,263],[583,377],[764,745],[652,99],[890,327],[482,3],[533,285],[904,836],[202,104],[880,56],[197,59],[319,311],[907,751],[872,443],[665,635],[495,325],[265,262],[890,189],[338,325],[945,224],[993,283],[912,887],[921,163],[530,250],[382,320],[603,355],[343,249],[686,483],[433,112],[369,217],[402,14],[918,380],[151,102],[434,161],[605,583],[248,16],[829,435],[366,164],[384,25],[378,118],[885,681],[567,368],[767,443],[190,134],[938,181],[370,2],[821,411],[643,452],[884,38],[740,183],[574,291],[920,493],[797,708],[999,745],[781,332],[584,295],[766,562],[411,239],[829,19],[159,103],[929,353],[976,462],[894,744],[571,374],[823,72],[779,661],[940,437],[329,22],[385,23],[556,383],[751,190],[927,577],[443,255],[858,400],[533,113],[720,5],[291,194],[359,221],[953,196],[323,250],[365,122],[506,23],[631,39],[963,792],[576,323],[828,152],[948,760],[448,192],[984,887],[950,204],[742,658],[291,126],[419,303],[327,103],[280,178],[766,703],[990,134],[825,427],[372,264],[218,18],[956,454],[924,375],[662,576],[829,469],[752,517],[435,371],[265,208],[846,610],[973,118],[620,113],[514,430],[922,105],[838,478],[946,284],[692,169],[671,193],[283,53],[477,270],[508,193],[913,125],[757,430],[975,402],[972,784],[702,136],[736,77],[951,382],[858,525],[877,344],[765,487],[957,374],[588,32],[815,595],[999,342],[176,117],[462,96],[745,96],[648,474],[827,413],[996,661],[836,720],[682,664],[330,105],[696,197],[368,178],[842,800],[928,145],[631,0],[426,237],[972,830],[710,129],[961,473],[487,469],[738,493],[429,107],[276,143],[492,48],[774,33],[716,15],[717,666],[492,450],[489,450],[746,611],[803,160],[992,508],[873,574],[376,89],[658,307],[631,579],[325,259],[724,185],[405,0],[848,264],[518,400],[748,355],[774,760],[993,386],[596,337],[629,331],[362,153],[993,858],[772,400],[743,218],[827,602],[586,575],[860,237],[991,239],[894,537],[842,591],[534,403],[476,148],[921,594],[873,621],[869,580],[151,13],[366,159],[592,47],[520,64],[551,198],[822,476],[979,213],[890,683],[995,4],[804,508],[521,394],[943,317],[804,47],[297,154],[94,90],[824,363],[942,445],[452,399],[328,232],[375,179],[143,46],[873,762],[537,70],[444,22],[170,121],[655,600],[752,143],[766,400],[802,695],[471,299],[690,349],[544,508],[809,531],[924,788],[735,489],[880,61],[734,686],[415,268],[312,292],[954,378],[667,466],[460,352],[30,6],[717,384],[541,476],[930,293],[941,511],[667,488],[797,433],[751,330],[789,764],[975,232],[136,124],[854,744],[716,674],[590,584],[936,401],[580,86],[111,8],[685,126],[852,85],[795,608],[775,626],[825,58],[989,437],[887,424],[858,526],[744,4],[763,729],[915,660],[965,680],[500,113],[981,943],[877,791],[683,612],[391,312],[475,104],[843,167],[567,310],[538,525],[948,388],[835,206],[550,396],[994,318],[851,0],[923,506],[484,162],[687,216],[722,53],[550,154],[435,266],[473,238],[831,654],[366,134],[577,327],[990,740],[414,298],[648,306],[286,82],[854,830],[952,279],[698,62],[250,29],[288,249],[365,138],[582,39],[934,835],[624,151],[561,469],[949,372],[437,358],[810,596],[723,465],[984,585],[647,346],[589,389],[668,281],[978,206],[383,72],[832,768],[617,512],[994,320],[193,110],[422,11],[652,1],[646,259],[644,382],[863,313],[961,847],[926,419],[348,312],[513,443],[540,26],[882,692],[947,627],[477,403],[945,443],[315,267],[332,78],[512,221],[859,462],[386,12],[922,476],[675,357],[919,757],[397,101],[791,425],[428,173],[783,235],[671,293],[965,228],[273,179],[889,887],[422,125],[870,227],[382,104],[742,380],[967,772],[666,335],[786,5],[601,281],[560,89],[405,149],[911,210],[972,390],[390,329],[797,255],[215,68],[874,348],[633,361],[989,648],[860,506],[997,527],[809,562],[936,621],[964,608],[526,42],[387,69],[325,153],[997,995],[272,95],[803,57],[795,666],[478,250],[650,120],[929,133],[863,143],[900,371],[974,713],[881,339],[727,189],[602,226],[783,458],[504,81],[975,347],[758,369],[824,21],[884,269],[278,223],[884,754],[928,870],[974,635],[957,415],[626,161],[925,246],[963,858],[400,184],[837,247],[369,59],[748,13],[870,315],[524,164],[622,511],[914,373],[746,18],[407,103],[551,13],[784,450],[157,60],[471,360],[132,75],[883,155],[277,271],[826,524],[769,263],[912,665],[741,241],[508,151],[872,474],[627,504],[656,389],[817,501],[791,256],[840,737],[709,571],[922,85],[791,568],[494,106],[912,59],[983,938],[212,159],[704,517],[509,415],[524,94],[375,138],[505,336],[974,549],[298,200],[671,448],[747,294],[748,367],[642,300],[520,110],[702,296],[510,509],[320,244],[777,214],[348,233],[888,711],[634,140],[929,361],[406,375],[664,7],[962,204],[981,562],[964,521],[456,322],[512,194],[490,55],[718,406],[649,448],[986,64],[399,293],[857,693],[517,94],[745,627],[811,558],[870,5],[623,251],[463,370],[392,74],[286,137],[777,433],[701,317],[505,179],[954,542],[717,600],[884,691],[648,289],[490,475],[983,680],[995,166],[665,46],[247,106],[971,84],[277,175],[674,123],[811,51],[829,688],[903,744],[538,405],[610,317],[941,240],[935,232],[238,91],[551,355],[820,86],[508,166],[755,653],[432,295],[846,252],[939,847],[648,421],[675,118],[234,53],[933,585],[930,459],[981,283],[149,143],[874,852],[195,104],[724,517],[249,47],[509,75],[718,408],[848,425],[958,13],[337,121],[993,339],[609,202],[619,514],[916,892],[638,382],[888,396],[866,302],[364,241],[920,318],[825,326],[658,206],[756,476],[428,302],[858,235],[759,624],[722,156],[658,392],[912,509],[960,621],[790,540],[983,800],[586,121],[676,609],[647,592],[953,491],[558,189],[990,377],[700,15],[993,693],[722,130],[715,177],[729,617],[857,111],[863,558],[683,301],[128,91],[920,56],[807,209],[811,236],[842,159],[952,926],[359,274],[935,194],[601,421],[973,899],[531,351],[163,51],[789,739],[982,510],[670,645],[362,167],[290,66],[132,127],[674,670],[645,511],[213,89],[837,765],[884,146],[149,40],[731,722],[681,471],[858,77],[607,48],[626,295],[733,575],[657,181],[746,523],[467,110],[664,347],[957,356],[703,179],[766,367],[893,160],[667,135],[923,198],[923,432],[473,36],[442,156],[612,139],[964,230],[764,534],[990,148],[613,500],[445,322],[929,595],[990,711],[592,52],[844,6],[601,581],[859,622],[851,16],[436,181],[586,81],[703,464],[257,209],[976,758],[917,293],[976,729],[641,588],[450,141],[283,86],[959,507],[746,600],[644,331],[251,47],[506,469],[597,102],[132,41],[106,21],[219,169],[982,256],[978,218],[732,468],[10,1],[286,35],[227,211],[902,300],[871,652],[810,791],[364,109],[886,749],[416,407],[564,356],[880,711],[957,461],[549,326],[419,298],[922,65],[830,719],[828,376],[927,713],[837,593],[499,236],[650,478],[848,732],[966,912],[573,394],[973,336],[901,104],[636,429],[563,428],[452,172],[881,288],[779,56],[684,191],[859,418],[459,14],[693,293],[942,118],[282,240],[108,72],[405,239],[108,45],[560,391],[827,745],[892,148],[750,212],[524,305],[792,476],[377,15],[941,433],[421,105],[257,253],[871,633],[614,148],[718,303],[931,661],[750,508],[592,494],[915,592],[843,78],[992,971],[904,521],[826,102],[848,765],[701,312],[978,519],[699,367],[859,249],[578,250],[254,94],[758,122],[385,44],[612,449],[192,130],[981,387],[725,524],[856,728],[850,29],[329,44],[283,217],[399,185],[660,9],[766,269],[926,205],[764,295],[753,285],[759,161],[976,597],[679,296],[93,51],[334,154],[825,665],[780,421],[904,238],[672,202],[323,217],[295,286],[473,350],[795,336],[922,22],[670,103],[678,41],[768,532],[768,626],[765,616],[595,472],[936,78],[487,178],[249,21],[848,647],[572,464],[540,363],[749,76],[443,205],[870,127],[507,52],[224,223],[634,496],[798,681],[997,690],[859,542],[779,331],[927,458],[879,525],[795,568],[660,190],[727,524],[744,440],[298,107],[931,292],[737,45],[812,751],[838,826],[579,365],[681,475],[585,459],[512,219],[994,464],[976,383],[672,258],[419,355],[923,19],[764,565],[481,444],[985,245],[705,328],[110,103],[950,234],[401,126],[694,163],[623,480],[366,257],[187,31],[699,136],[629,35],[802,223],[621,498],[929,612],[595,439],[252,55],[952,9],[899,159],[898,106],[632,104],[201,149],[885,752],[367,356],[465,320],[811,552],[753,655],[500,418],[603,81],[773,704],[944,905],[822,307],[929,42],[904,825],[910,792],[909,512],[818,621],[916,575],[403,99],[959,206],[918,571],[613,301],[581,131],[644,58],[411,241],[408,91],[640,459],[530,519],[932,793],[460,137],[352,77],[820,12],[591,9],[719,476],[835,46],[317,53],[187,36],[697,193],[953,658],[894,870],[768,616],[256,191],[908,283],[875,480],[552,277],[767,230],[901,76],[103,19],[478,392],[846,294],[740,294],[605,597],[993,878],[834,643],[608,326],[308,48],[729,377],[772,375],[589,488],[531,243],[689,479],[574,281],[833,133],[364,153],[905,184],[131,120],[780,409],[986,969],[845,588],[234,134],[935,563],[958,923],[524,513],[611,167],[905,95],[524,211],[659,382],[828,733],[601,185],[352,243],[622,222],[728,521],[594,162],[997,854],[555,188],[950,438],[866,453],[201,161],[942,837],[794,370],[398,349],[644,481],[873,607],[531,255],[980,425],[357,94],[257,232],[885,657],[233,205],[558,425],[840,741],[816,664],[873,133],[946,259],[666,522],[942,604],[387,316],[892,644],[342,196],[221,207],[796,653],[95,26],[284,201],[967,893],[659,294],[526,305],[660,610],[900,720],[943,855],[948,357],[721,398],[641,316],[962,522],[451,261],[589,225],[875,286],[264,214],[857,297],[554,149],[365,8],[518,444],[571,76],[738,364],[137,110],[918,154],[965,393],[921,802],[869,254],[804,669],[777,283],[885,629],[877,19],[941,250],[952,45],[744,384],[605,152],[749,111],[243,57],[996,8],[975,167],[740,214],[947,444],[369,314],[834,79],[875,313],[461,343],[929,395],[547,180],[380,292],[854,366],[425,95],[448,101],[922,44],[992,506],[872,776],[963,523],[956,585],[342,54],[904,685],[575,212],[649,600],[687,65],[494,157],[905,15],[341,218],[696,495],[986,860],[497,427],[918,790],[960,566],[516,242],[153,82],[706,498],[944,364],[742,681],[258,0],[472,20],[981,183],[828,277],[401,53],[645,405],[998,577],[882,99],[474,472],[518,481],[194,0],[189,171],[930,768],[814,779],[698,591],[573,85],[745,729],[482,29],[269,196],[607,431],[414,227],[496,108],[190,1],[942,881],[858,746],[934,35],[382,107],[770,541],[856,812],[579,20],[835,15],[908,419],[605,155],[828,425],[548,371],[427,80],[774,319],[998,913],[280,0],[695,114],[750,400],[183,160],[571,272],[980,919],[428,25],[981,553],[455,181],[471,353],[424,334],[129,86],[631,280],[995,387],[555,322],[887,92],[863,684],[624,393],[764,466],[173,90],[504,142],[800,46],[534,133],[978,166],[401,393],[940,844],[964,643],[801,783],[926,856],[641,604],[237,123],[382,377],[576,561],[805,705],[478,472],[930,355],[531,359],[294,238],[756,710],[435,220],[876,717],[353,174],[720,199],[850,843],[780,615],[535,392],[786,200],[776,133],[597,241],[877,211],[580,487],[420,20],[905,170],[282,17],[906,799],[801,776],[612,10],[657,387],[256,153],[817,221],[624,333],[395,75],[846,12],[146,18],[909,359],[761,751],[788,534],[863,802],[985,795],[705,497],[465,211],[561,16],[908,458],[831,500],[815,121],[931,652],[400,176],[428,57],[970,536],[778,242],[639,595],[922,703],[77,68],[791,787],[466,134],[679,410],[747,243],[195,86],[829,579],[809,607],[616,584],[177,142],[743,726],[904,23],[817,431],[931,577],[421,116],[992,563],[712,83],[564,384],[590,183],[988,450],[912,100],[750,138],[749,349],[580,138],[627,77],[513,91],[295,88],[528,12],[983,173],[106,105],[591,239],[528,222],[727,17],[963,17],[485,150],[226,201],[932,239],[614,0],[689,425],[715,266],[907,682],[980,330],[801,771],[713,679],[975,265],[799,751],[668,486],[967,156],[397,163],[763,636],[532,383],[953,515],[776,61],[741,610],[771,497],[915,342],[630,62],[314,260],[728,446],[850,170],[576,23],[196,48],[258,234],[958,228],[799,52],[423,129],[892,216],[944,780],[841,643],[619,603],[878,607],[510,488],[167,58],[938,412],[717,422],[958,751],[696,361],[771,144],[857,402],[977,905],[686,474],[931,629],[818,235],[892,749],[962,787],[947,563],[789,771],[748,301],[426,367],[753,170],[575,337],[240,196],[875,549],[38,3],[863,390],[759,267],[854,611],[150,85],[632,303],[640,595],[334,232],[411,327],[423,35],[972,779],[461,321],[868,321],[790,633],[364,338],[652,7],[310,124],[799,540],[375,124],[859,590],[882,662],[204,169],[426,150],[610,364],[933,817],[635,91],[605,470],[866,613],[916,686],[557,369],[660,388],[618,517],[948,645],[883,194],[250,137],[923,568],[543,475],[900,358],[574,175],[527,188],[520,367],[366,79],[740,551],[737,99],[858,610],[650,233],[771,659],[453,268],[696,71],[859,742],[585,63],[936,662],[790,587],[661,599],[813,611],[741,627],[131,72],[891,452],[896,823],[413,301],[450,442],[310,273],[636,373],[846,82],[351,286],[879,229],[990,217],[984,410],[529,477],[201,131],[947,897],[830,392],[995,464],[533,434],[898,247],[759,585],[527,134],[324,179],[516,217],[625,46],[501,60],[724,209],[612,427],[586,241],[457,162],[453,87],[922,452],[951,797],[655,288],[906,608],[959,523],[608,81],[524,169],[513,99],[953,820],[831,711],[952,346],[731,50],[387,93],[666,469],[375,37],[336,291],[823,569],[602,374],[311,24],[583,492],[867,239],[387,64],[270,112],[947,692],[859,520],[846,416],[896,72],[155,22],[631,35],[216,41],[948,175],[600,547],[897,174],[811,381],[942,25],[513,285],[908,821],[906,71],[859,141],[740,660],[180,69],[246,38],[681,179],[518,363],[724,226],[326,220],[934,739],[478,388],[617,31],[986,881],[388,77],[900,392],[372,254],[824,519],[488,128],[472,247],[856,798],[71,55],[703,461],[780,488],[451,300],[461,391],[477,210],[746,209],[785,780],[874,614],[341,158],[292,162],[750,487],[912,374],[736,509],[687,131],[615,68],[919,729],[458,70],[880,259],[569,202],[589,487],[803,465],[829,374],[662,651],[390,132],[903,887],[671,41],[929,407],[787,86],[345,207],[628,330],[429,383],[912,187],[890,498],[791,533],[959,438],[947,633],[716,641],[661,643],[863,793],[316,284],[989,56],[911,893],[969,572],[786,675],[930,531],[320,297],[964,798],[436,10],[394,177],[450,388],[419,95],[745,482],[964,204],[796,430],[475,282],[655,412],[729,555],[390,15],[949,389],[925,289],[914,337],[588,22],[579,468],[600,334],[839,349],[232,218],[540,208],[244,74],[988,573],[767,101],[716,628],[447,165],[902,175],[969,303],[672,577],[828,665],[588,304],[814,164],[906,446],[484,66],[243,139],[563,305],[181,135],[912,401],[384,190],[450,225],[994,649],[504,234],[979,801],[825,647],[650,89],[724,307],[552,71],[813,407],[560,436],[793,634],[987,751],[617,473],[146,46],[681,461],[777,694],[444,319],[866,660],[246,190],[787,264],[959,907],[936,756],[513,301],[991,144],[370,141],[932,387],[881,792],[929,35],[535,199],[945,742],[431,191],[831,757],[859,388],[999,466],[927,261],[987,504],[693,66],[662,100],[916,217],[633,159],[935,340],[872,861],[635,619],[86,30],[926,487],[608,599],[952,367],[703,519],[851,353],[946,240],[253,176],[686,533],[488,207],[900,892],[626,275],[876,711],[611,293],[463,445],[320,274],[739,49],[625,492],[832,66],[934,862],[965,387],[271,9],[869,791],[586,142],[846,254],[900,759],[665,343],[976,365],[756,438],[961,331],[790,148],[406,62],[918,148],[703,241],[956,395],[552,165],[420,21],[364,77],[597,63],[267,136],[442,133],[603,436],[303,291],[403,79],[976,903],[103,44],[449,252],[989,559],[384,114],[743,709],[914,124],[523,489],[878,809],[576,253],[322,10],[555,29],[569,296],[820,146],[910,753],[994,77],[559,349],[731,7],[539,241],[999,395],[698,202],[785,465],[325,117],[523,366],[248,174],[666,14],[847,823],[754,574],[952,756],[831,179],[368,83],[804,341],[585,364],[952,467],[810,712],[684,316],[869,587],[975,552],[912,312],[660,201],[717,667],[227,11],[742,222],[663,250],[502,489],[518,99],[245,28],[457,160],[899,668],[983,330],[728,519],[973,273],[708,173],[704,553],[692,581],[998,454],[469,177],[601,51],[971,14],[942,43],[743,361],[889,686],[549,44],[676,521],[893,463],[488,210],[579,256],[605,411],[927,132],[804,385],[785,243],[893,575],[994,539],[131,110],[858,718],[401,379],[800,209],[715,495],[249,71],[259,39],[482,310],[806,133],[933,580],[119,5],[639,5],[328,215],[347,188],[928,684],[871,17],[612,43],[954,660],[975,159],[444,417],[253,173],[534,418],[486,44],[349,297],[196,115],[572,456],[752,558],[225,98],[602,157],[371,64],[697,135],[768,520],[581,530],[818,370],[835,738],[673,304],[697,455],[612,242],[587,3],[882,414],[774,587],[476,49],[266,188],[842,88],[417,31],[379,74],[973,197],[630,324],[872,279],[203,94],[215,127],[691,23],[813,26],[504,469],[808,253],[737,676],[467,285],[999,205],[692,268],[465,237],[457,429],[245,115],[471,211],[660,626],[789,124],[654,489],[773,173],[777,309],[800,559],[729,326],[749,713],[659,332],[698,281],[288,89],[958,489],[891,372],[990,363],[503,238],[895,832],[263,127],[515,224],[880,789],[635,195],[869,712],[892,28],[317,292],[411,207],[434,388],[33,25],[549,195],[984,768],[813,2],[759,460],[377,20],[949,704],[969,38],[815,665],[870,694],[830,164],[603,244],[326,89],[663,166],[315,10],[893,818],[774,251],[475,248],[284,109],[949,285],[734,222],[674,16],[933,538],[411,136],[739,417],[436,348],[900,6],[814,320],[326,28],[847,198],[189,99],[647,466],[829,427],[418,398],[731,523],[470,175],[571,65],[762,146],[888,661],[746,79],[237,95],[415,367],[840,312],[794,568],[538,112],[615,187],[999,852],[584,5],[963,657],[654,407],[409,285],[560,531],[185,103],[952,432],[756,642],[600,594],[739,641],[868,752],[717,353],[494,227],[969,80],[926,2],[965,526],[544,524],[739,492],[573,200],[957,909],[691,618],[990,918],[671,94],[954,89],[243,78],[839,414],[934,776],[133,30],[642,395],[704,406],[404,370],[354,224],[986,924],[885,363],[882,103],[649,212],[363,188],[311,96],[384,225],[814,502],[97,96],[666,172],[867,212],[381,57],[935,324],[709,149],[927,115],[931,752],[977,273],[434,31],[789,210],[863,695],[713,265],[472,219],[827,53],[820,65],[620,8],[827,217],[820,247],[854,245],[990,528],[679,459],[869,307],[900,669],[942,657],[810,245],[584,419],[747,507],[668,131],[552,55],[894,424],[598,509],[937,119],[682,592],[845,590],[262,175],[396,267],[473,47],[307,45],[478,371],[938,125],[824,333],[747,382],[524,401],[347,274],[745,339],[941,423],[922,123],[397,106],[386,212],[875,232],[916,192],[343,143],[964,135],[520,76],[998,527],[297,219],[759,667],[284,131],[530,157],[754,130],[778,625],[968,582],[419,177],[698,426],[679,631],[579,99],[899,446],[872,123],[431,190],[739,346],[850,525],[487,357],[540,52],[428,193],[411,138],[686,202],[128,96],[630,577],[325,3],[730,10],[678,672],[719,559],[597,443],[899,588],[686,471],[417,311],[558,415],[982,550],[417,324],[583,578],[809,136],[599,5],[753,572],[924,571],[569,526],[294,187],[116,50],[990,145],[638,444],[830,691],[237,34],[686,635],[250,115],[515,172],[660,655],[846,437],[867,366],[537,512],[665,263],[460,189],[477,103],[985,289],[993,960],[933,16],[939,785],[61,34],[656,178],[898,700],[935,532],[360,113],[275,130],[855,569],[747,87],[958,79],[879,853],[643,206],[763,539],[736,421],[896,453],[543,48],[362,208],[791,354],[585,95],[948,234],[222,134],[877,44],[957,789],[290,116],[967,636],[844,484],[981,549],[723,700],[777,157],[978,602],[997,711],[389,308],[842,723],[614,339],[392,207],[404,64],[799,143],[260,55],[823,606],[702,469],[908,24],[732,564],[521,479],[332,322],[704,539],[533,49],[317,162],[370,29],[215,22],[484,384],[679,32],[681,91],[959,829],[767,369],[939,435],[314,201],[720,581],[724,265],[190,97],[645,92],[635,24],[232,41],[965,276],[661,338],[847,47],[916,571],[453,131],[951,174],[584,258],[531,160],[988,233],[641,96],[804,477],[548,383],[99,44],[951,344],[939,759],[338,89],[620,411],[709,695],[951,749],[660,383],[914,492],[828,624],[870,77],[983,474],[881,679],[997,458],[803,448],[920,267],[561,431],[975,557],[786,470],[792,237],[670,7],[314,88],[454,41],[655,69],[481,111],[927,68],[729,101],[247,35],[494,43],[904,383],[994,662],[356,43],[809,628],[728,217],[904,727],[900,633],[679,31],[972,321],[998,373],[315,306],[856,87],[630,73],[765,57],[877,833],[708,88],[753,529],[847,678],[300,127],[925,496],[600,313],[531,244],[166,114],[372,125],[921,318],[927,203],[658,27],[917,798],[943,426],[766,181],[634,495],[831,605],[817,190],[387,208],[274,106],[779,556],[584,153],[855,86],[500,97],[364,47],[317,272],[352,113],[891,537],[732,422],[501,135],[614,568],[829,554],[698,314],[710,585],[268,25],[508,357],[194,163],[672,247],[718,576],[940,99],[379,185],[816,310],[690,127],[596,541],[965,743],[868,441],[260,30],[969,917],[967,732],[394,64],[983,432],[432,145],[716,96],[325,249],[514,197],[498,312],[864,462],[898,668],[908,776],[607,256],[882,813],[818,346],[848,44],[863,155],[690,111],[708,380],[838,686],[298,293],[294,101],[897,60],[757,534],[621,24],[915,252],[783,374],[948,100],[939,703],[817,112],[497,320],[991,110],[737,513],[693,360],[638,326],[695,329],[723,688],[607,142],[849,725],[660,222],[352,136],[969,763],[602,465],[536,113],[877,138],[976,921],[896,82],[890,363],[901,419],[542,69],[875,214],[984,522],[796,251],[341,166],[916,60],[668,471],[664,422],[919,594],[532,523],[167,17],[412,136],[491,194],[168,13],[806,798],[799,162],[285,148],[887,612],[766,61],[859,312],[490,73],[742,538],[654,176],[419,53],[200,24],[889,711],[955,201],[713,442],[721,114],[328,261],[723,579],[543,271],[95,33],[836,303],[576,16],[514,145],[901,503],[688,333],[996,16],[722,454],[904,849],[971,915],[964,757],[321,305],[760,575],[797,239],[961,828],[664,503],[840,98],[976,577],[862,59],[811,394],[952,147],[777,415],[452,255],[709,629],[683,502],[911,566],[537,212],[627,514],[808,414],[898,98],[542,140],[275,147],[338,225],[786,364],[798,758],[774,325],[922,164],[520,0],[801,341],[232,53],[834,707],[715,417],[863,319],[827,285],[913,47],[654,351],[569,167],[730,369],[589,269],[396,324],[625,72],[594,264],[826,425],[648,137],[883,426],[477,164],[117,30],[882,736],[551,376],[921,832],[388,322],[898,427],[820,465],[609,212],[789,320],[696,370],[674,283],[841,732],[391,181],[972,89],[670,456],[372,128],[586,129],[533,346],[774,43],[879,137],[819,605],[741,574],[787,234],[333,286],[768,523],[750,572],[904,818],[749,102],[757,617],[738,578],[829,426],[680,165],[546,150],[885,487],[462,283],[491,465],[489,344],[384,32],[814,135],[631,386],[568,296],[961,933],[886,672],[987,464],[283,177],[766,370],[523,47],[456,16],[962,526],[550,110],[823,339],[651,185],[767,419],[830,821],[379,211],[794,257],[491,127],[860,90],[830,428],[530,211],[594,467],[592,567],[568,487],[491,440],[891,716],[591,455],[175,96],[945,527],[896,751],[894,386],[459,240],[946,508],[924,719],[498,405],[563,224],[546,438],[907,904],[980,349],[995,705],[673,585],[806,579],[709,274],[492,417],[887,62],[450,115],[727,699],[561,257],[907,265],[834,603],[430,397],[959,2],[986,904],[660,246],[869,210],[822,130],[601,595],[234,99],[713,267],[622,318],[929,413],[993,886],[641,104],[916,518],[417,242],[352,95],[473,422],[587,416],[969,850],[918,649],[712,531],[994,331],[742,706],[417,269],[844,533],[173,95],[503,133],[875,78],[544,466],[898,855],[937,524],[884,242],[841,279],[269,85],[380,142],[567,238],[481,95],[701,544],[361,207],[654,138],[924,96],[977,106],[416,160],[814,309],[593,221],[881,732],[386,13],[859,16],[747,601],[778,567],[880,781],[225,128],[854,604],[632,393],[298,3],[675,73],[216,208],[859,217],[777,663],[803,776],[620,261],[905,225],[425,259],[807,202],[350,283],[456,337],[752,690],[523,445],[548,434],[468,382],[613,12],[636,596],[289,256],[838,318],[453,421],[873,683],[950,535],[858,303],[245,34],[909,891],[642,18],[809,556],[294,23],[907,324],[292,193],[524,268],[638,194],[281,202],[866,828],[636,335],[859,204],[221,194],[538,415],[820,67],[490,229],[525,519],[991,245],[904,570],[826,144],[803,316],[293,42],[390,237],[301,168],[158,150],[654,250],[983,418],[785,581],[525,249],[955,723],[475,334],[839,73],[879,335],[775,398],[729,89],[917,507],[563,166],[716,201],[878,497],[689,595],[323,285],[840,756],[201,139],[947,614],[488,252],[828,272],[799,108],[610,548],[808,248],[768,243],[913,141],[496,175],[814,592],[607,595],[936,388],[664,655],[924,327],[617,138],[732,282],[962,134],[718,226],[829,617],[523,448],[448,384],[333,139],[794,612],[953,867],[867,90],[923,139],[926,639],[963,529],[717,179],[616,150],[928,190],[972,881],[463,411],[789,431],[957,685],[721,464],[799,16],[741,46],[800,5],[745,585],[460,329],[924,141],[553,267],[964,826],[838,426],[931,890],[849,148],[627,348],[343,3],[972,364],[976,172],[406,64],[600,531],[382,10],[465,97],[930,177],[913,8],[497,121],[553,309],[985,312],[902,321],[442,84],[540,201],[531,30],[943,517],[482,75],[330,320],[871,50],[807,163],[857,224],[507,148],[283,185],[666,284],[678,81],[667,157],[923,456],[965,663],[368,176],[316,203],[859,556],[958,932],[534,64],[841,736],[946,376],[503,91],[901,89],[807,402],[876,579],[868,55],[460,12],[781,463],[641,242],[884,462],[513,248],[509,27],[609,49],[976,763],[996,946],[795,570],[758,661],[680,19],[818,129],[837,518],[676,159],[923,850],[454,228],[482,435],[342,2],[290,127],[531,5],[656,396],[866,38],[623,198],[862,309],[521,193],[271,87],[652,346],[955,466],[915,869],[956,55],[696,431],[815,601],[772,243],[831,688],[962,553],[985,609],[810,392],[261,59],[730,26],[635,199],[710,102],[983,277],[885,241],[995,631],[976,269],[440,28],[545,34],[463,102],[840,366],[457,234],[562,127],[283,32],[778,461],[730,442],[826,199],[877,186],[944,222],[554,524],[841,76],[427,170],[733,45],[602,496],[562,81],[515,71],[452,68],[362,284],[938,714],[350,213],[629,285],[745,244],[916,42],[911,810],[489,189],[486,286],[882,251],[556,437],[519,151],[530,293],[867,251],[963,546],[118,75],[916,655],[530,283],[447,99],[947,478],[869,143],[463,233],[607,13],[435,399],[418,91],[971,99],[410,404],[734,72],[969,647],[767,9],[902,673],[977,816],[725,308],[908,131],[750,452],[510,446],[606,399],[880,761],[892,212],[422,33],[313,217],[666,229],[769,230],[361,194],[724,298],[832,407],[603,62],[166,39],[522,176],[369,155],[826,406],[751,661],[211,115],[886,718],[571,283],[174,30],[971,736],[514,65],[734,70],[953,574],[824,72],[496,492],[776,48],[730,76],[785,99],[680,618],[743,290],[997,770],[196,137],[388,372],[873,268],[599,347],[927,564],[152,89],[648,615],[947,4],[949,793],[615,287],[720,302],[991,805],[695,386],[757,8],[759,392],[930,749],[161,141],[468,39],[283,249],[860,842],[827,6],[989,857],[826,38],[649,289],[723,129],[506,306],[160,128],[538,536],[745,464],[876,142],[851,775],[735,425],[131,32],[672,239],[471,465],[847,92],[978,796],[401,208],[729,595],[664,480],[801,263],[808,801],[917,50],[793,489],[787,549],[753,620],[166,75],[792,553],[422,97],[124,9],[865,162],[663,48],[914,348],[969,109],[601,523],[727,103],[587,417],[948,491],[709,383],[725,210],[611,1],[929,691],[671,39],[991,50],[884,14],[962,44],[461,39],[866,739],[244,0],[713,522],[648,452],[729,691],[666,450],[835,183],[685,537],[559,443],[913,188],[933,98],[565,97],[652,371],[311,201],[474,87],[748,354],[484,0],[841,257],[645,491],[663,157],[990,588],[647,20],[618,49],[755,14],[398,77],[475,394],[486,187],[794,573],[851,400],[765,668],[675,555],[867,96],[639,508],[271,118],[865,649],[667,65],[351,273],[504,219],[875,605],[864,312],[519,369],[819,454],[998,157],[550,425],[519,145],[463,12],[921,903],[627,417],[693,401],[959,146],[552,452],[969,513],[886,69],[697,48],[818,520],[572,544],[832,563],[618,119],[71,39],[947,713],[316,59],[430,148],[555,31],[994,138],[740,639],[531,388],[911,489],[729,648],[718,321],[602,159],[852,448],[343,74],[337,17],[338,186],[981,791],[878,432],[469,455],[829,824],[717,447],[586,13],[793,38],[791,191],[357,330],[817,321],[799,373],[981,274],[736,16],[806,521],[716,461],[603,385],[987,382],[514,437],[639,486],[997,888],[961,501],[442,269],[313,175],[735,550],[565,216],[909,420],[394,259],[105,30],[869,814],[376,314],[91,27],[474,455],[621,79],[751,204],[829,572],[640,319],[852,354],[385,191],[911,705],[901,83],[988,713],[519,452],[689,35],[865,516],[984,879],[992,447],[388,14],[949,672],[979,33],[629,19],[859,476],[950,364],[766,224],[805,381],[796,406],[618,80],[772,710],[756,399],[504,10],[792,13],[798,259],[116,20],[407,27],[468,156],[767,208],[888,397],[505,232],[715,402],[497,393],[731,466],[732,506],[320,232],[810,571],[435,74],[727,504],[740,57],[706,6],[660,127],[835,200],[750,477],[632,477],[296,271],[654,8],[939,100],[839,774],[521,149],[202,86],[731,564],[203,84],[805,591],[476,153],[887,105],[504,245],[538,56],[766,24],[145,85],[547,514],[687,611],[926,191],[981,958],[972,55],[894,473],[794,493],[881,234],[715,351],[553,534],[919,785],[926,520],[972,172],[503,3],[439,274],[716,453],[997,669],[682,266],[518,373],[484,287],[586,550],[990,524],[464,405],[826,30],[467,380],[658,116],[959,601],[786,486],[998,652],[733,222],[911,453],[874,553],[272,100],[425,90],[864,411],[507,251],[735,509],[647,159],[158,119],[469,310],[863,731],[733,535],[793,282],[855,632],[637,620],[725,628],[490,167],[914,527],[884,883],[736,85],[111,20],[747,648],[486,178],[919,363],[967,624],[873,617],[930,72],[740,90],[453,212],[612,313],[425,269],[689,414],[953,67],[198,152],[963,211],[147,110],[581,534],[510,318],[883,1],[720,546],[806,266],[193,165],[674,315],[334,288],[816,608],[666,644],[730,93],[569,131],[626,58],[303,54],[201,167],[852,258],[789,53],[628,16],[607,602],[773,192],[564,245],[747,697],[878,617],[983,482],[713,263],[992,134],[629,419],[297,111],[409,88],[414,96],[332,18],[916,818],[745,608],[623,5],[718,65],[321,16],[588,538],[815,707],[772,95],[144,137],[617,3],[311,287],[813,359],[226,103],[718,481],[322,294],[900,388],[545,78],[829,418],[476,274],[844,159],[430,388],[494,480],[834,239],[560,176],[313,153],[811,534],[852,498],[780,552],[195,46],[385,90],[396,73],[436,17],[843,139],[927,281],[853,246],[770,380],[249,37],[914,116],[838,344],[966,894],[580,170],[966,429],[470,35],[208,191],[905,754],[269,5],[861,365],[937,188],[880,574],[700,185],[741,67],[640,7],[351,60],[753,397],[819,93],[982,446],[956,370],[875,77],[732,48],[963,667],[843,484],[820,424],[510,136],[820,648],[722,151],[212,150],[806,39],[916,417],[630,488],[629,111],[821,562],[802,134],[893,276],[891,413],[679,229],[899,517],[886,334],[503,428],[907,330],[740,174],[932,232],[742,63],[427,217],[356,178],[863,121],[391,285],[827,730],[489,215],[561,88],[564,422],[884,267],[796,30],[801,469],[405,294],[578,515],[686,336],[959,234],[605,275],[493,24],[944,656],[861,222],[772,454],[995,752],[542,464],[353,207],[933,928],[825,804],[910,847],[937,414],[769,739],[901,668],[669,513],[985,955],[380,12],[738,575],[498,120],[445,44],[562,238],[974,533],[825,770],[711,34],[546,138],[723,568],[567,196],[567,466],[584,350],[978,522],[719,142],[737,508],[648,124],[897,803],[878,590],[569,30],[661,11],[486,191],[569,488],[744,700],[873,165],[87,15],[462,190],[963,810],[985,305],[397,120],[526,65],[896,54],[544,488],[637,141],[428,299],[335,251],[531,153],[984,885],[693,593],[890,547],[387,307],[410,114],[869,855],[651,78],[979,477],[931,263],[872,363],[698,301],[516,370],[577,529],[893,691],[818,498],[880,427],[765,105],[475,118],[688,502],[403,63],[728,585],[803,32],[716,634],[558,346],[931,465],[778,647],[649,435],[932,824],[414,371],[893,238],[734,705],[252,69],[621,156],[823,764],[867,60],[499,261],[981,764],[885,176],[389,143],[538,514],[846,103],[558,54],[886,644],[877,703],[258,162],[926,604],[242,118],[779,477],[572,70],[538,53],[855,298],[608,331],[279,100],[754,222],[939,99],[813,33],[995,378],[230,60],[930,330],[430,81],[754,293],[673,494],[609,513],[409,264],[895,40],[773,557],[822,358],[778,403],[352,198],[723,178],[842,510],[548,148],[487,87],[500,70],[961,863],[802,608],[363,265],[467,303],[621,454],[554,183],[601,101],[574,489],[958,813],[236,224],[899,884],[998,532],[920,679],[916,62],[415,326],[674,463],[750,583],[817,51],[763,643],[159,86],[928,825],[988,579],[855,851],[628,217],[790,616],[638,278],[585,55],[610,429],[665,453],[846,799],[616,394],[943,824],[649,60],[780,484],[534,314],[763,574],[393,123],[338,42],[953,534],[459,291],[969,33],[996,940],[645,564],[584,443],[383,207],[100,17],[997,367],[373,94],[704,61],[822,175],[283,44],[884,43],[684,341],[920,811],[234,22],[727,595],[707,503],[461,416],[500,322],[961,553],[471,218],[812,291],[964,524],[392,2],[631,424],[318,69],[793,534],[579,275],[495,494],[903,355],[372,219],[110,81],[591,31],[798,83],[192,21],[827,30],[996,748],[461,414],[216,201],[297,42],[366,67],[535,97],[497,70],[634,387],[810,170],[747,462],[722,203],[627,217],[297,13],[986,957],[374,5],[680,438],[873,216],[671,226],[453,313],[22,13],[363,257],[457,74],[997,775],[586,175],[974,795],[625,322],[531,400],[570,98],[597,36],[741,206],[243,185],[624,141],[236,31],[982,227],[143,66],[662,361],[803,346],[484,266],[897,549],[406,357],[884,88],[657,147],[507,62],[663,94],[901,84],[69,30],[274,10],[860,369],[750,404],[392,91],[823,111],[872,442],[594,286],[910,593],[882,498],[353,27],[381,172],[699,120],[850,49],[747,616],[982,185],[778,342],[627,352],[389,151],[742,713],[843,409],[833,667],[795,714],[855,650],[954,426],[755,306],[284,100],[960,231],[246,217],[561,75],[586,145],[767,373],[692,359],[755,360],[610,486],[842,38],[717,248],[383,206],[792,224],[469,339],[808,259],[109,17],[396,218],[947,842],[587,459],[206,19],[568,559],[874,786],[632,147],[855,219],[385,127],[375,277],[475,291],[458,124],[618,36],[32,15],[522,409],[591,60],[110,65],[733,189],[809,310],[324,18],[613,530],[940,454],[709,395],[339,219],[378,149],[886,719],[722,230],[977,1],[645,598],[67,11],[467,251],[536,247],[987,520],[991,267],[510,250],[776,29],[906,129],[581,360],[841,807],[947,66],[828,24],[361,72],[741,315],[964,891],[484,30],[639,158],[677,468],[425,339],[588,114],[834,437],[984,31],[345,91],[833,718],[321,165],[940,496],[884,648],[976,90],[818,73],[489,317],[714,314],[311,35],[870,393],[652,201],[886,721],[609,543],[992,295],[965,51],[769,100],[560,207],[597,536],[525,511],[484,259],[989,866],[439,282],[253,84],[854,443],[953,303],[675,398],[762,246],[458,143],[471,64],[859,692],[642,289],[750,60],[789,340],[454,218],[275,51],[989,34],[664,290],[973,702],[674,583],[374,274],[843,767],[984,466],[651,278],[563,89],[731,557],[814,754],[854,309],[870,683],[767,411],[302,203],[926,572],[848,767],[819,148],[305,231],[295,217],[849,124],[779,318],[854,736],[996,95],[737,616],[592,371],[845,539],[961,869],[498,55],[500,474],[745,264],[534,141],[633,435],[892,421],[368,64],[831,217],[681,116],[405,322],[299,167],[710,319],[975,351],[601,302],[688,586],[346,214],[897,324],[963,726],[591,200],[805,411],[685,458],[908,108],[720,591],[905,459],[279,167],[689,206],[902,63],[898,621],[693,540],[964,162],[858,720],[220,151],[851,394],[186,163],[966,781],[959,804],[247,228],[806,727],[938,914],[736,461],[632,113],[522,500],[918,694],[377,226],[261,58],[912,332],[660,657],[901,327],[619,553],[822,543],[336,308],[329,86],[197,165],[246,72],[502,349],[595,29],[485,306],[974,157],[106,32],[321,29],[931,378],[345,98],[227,214],[622,130],[964,219],[928,178],[825,753],[708,471],[994,580],[886,746],[306,0],[999,202],[835,649],[725,54],[536,278],[680,601],[749,44],[504,344],[450,339],[758,193],[335,83],[613,567],[952,543],[692,76],[517,324],[154,62],[911,612],[812,762],[452,59],[815,438],[998,738],[945,420],[555,170],[831,777],[355,134],[945,308],[843,37],[806,616],[535,353],[576,303],[580,469],[858,270],[984,882],[725,184],[842,724],[702,442],[185,11],[505,392],[350,67],[786,513],[975,260],[578,252],[569,26],[566,466],[969,585],[777,162],[856,653],[345,215],[450,22],[537,288],[731,389],[835,530],[759,646],[903,226],[558,32],[960,724],[949,148],[976,783],[854,840],[998,444],[456,378],[832,446],[355,309],[661,102],[268,18],[530,215],[871,53],[561,497],[898,696],[851,743],[660,523],[961,513],[928,645],[617,500],[941,638],[585,300],[441,77],[744,186],[254,13],[782,138],[425,195],[935,130],[926,852],[425,371],[538,256],[771,218],[802,217],[614,566],[847,284],[594,33],[710,548],[867,187],[669,534],[924,239],[886,431],[798,573],[924,350],[686,310],[283,90],[734,715],[815,312],[858,127],[723,548],[980,254],[310,285],[908,400],[574,11],[953,707],[90,65],[585,281],[696,205],[967,60],[297,183],[282,231],[493,322],[801,265],[411,379],[771,523],[392,145],[321,35],[194,116],[982,652],[861,1],[962,579],[411,252],[785,460],[657,134],[334,123],[271,116],[857,674],[855,585],[448,348],[729,334],[747,379],[711,541],[118,57],[953,682],[598,592],[765,731],[815,0],[722,275],[668,583],[871,423],[827,17],[746,74],[770,464],[797,405],[706,419],[924,184],[805,804],[546,501],[938,697],[712,331],[869,745],[936,888],[843,508],[779,522],[716,653],[699,205],[755,462],[352,244],[944,723],[935,247],[738,624],[639,617],[909,531],[908,314],[350,294],[958,361],[903,286],[728,105],[912,431],[283,276],[389,124],[764,448],[847,738],[450,285],[940,810],[683,25],[661,324],[842,513],[956,321],[854,462],[544,311],[665,268],[788,237],[295,266],[474,277],[912,195],[817,542],[349,343],[338,306],[817,273],[809,189],[942,741],[236,109],[918,513],[164,123],[785,420],[763,55],[963,220],[782,26],[911,481],[537,15],[225,137],[711,563],[596,402],[373,202],[186,148],[774,481],[900,29],[543,514],[781,109],[632,566],[943,65],[930,62],[980,13],[815,157],[883,277],[669,291],[642,217],[328,31],[701,678],[165,129],[761,129],[222,19],[451,87],[810,269],[644,253],[810,491],[778,566],[868,21],[993,683],[749,471],[540,218],[490,347],[951,624],[911,377],[721,485],[652,131],[925,199],[690,233],[170,96],[734,114],[311,16],[533,431],[725,19],[584,566],[383,54],[759,734],[915,32],[624,401],[687,242],[356,322],[772,11],[707,559],[889,810],[495,168],[392,224],[799,675],[367,206],[787,99],[690,170],[910,290],[452,47],[431,350],[331,209],[949,844],[231,77],[740,36],[650,557],[739,514],[863,854],[805,497],[870,128],[511,95],[458,141],[653,29],[580,207],[864,290],[984,844],[821,749],[942,711],[223,211],[204,80],[955,815],[484,476],[732,438],[732,287],[180,146],[897,675],[661,537],[160,150],[778,270],[570,258],[564,526],[882,39],[863,324],[374,365],[543,541],[892,579],[649,246],[902,333],[949,851],[767,761],[772,177],[395,146],[911,40],[736,312],[698,510],[550,289],[873,746],[435,260],[196,179],[779,375],[463,400],[270,68],[808,398],[821,642],[998,638],[878,268],[925,47],[362,286],[993,776],[977,239],[382,123],[284,75],[426,408],[675,507],[881,31],[108,82],[79,54],[685,357],[983,963],[721,547],[834,491],[849,91],[828,283],[425,424],[970,124],[583,141],[914,2],[888,536],[356,302],[880,759],[799,62],[916,344],[902,22],[526,303],[827,757],[866,214],[621,348],[288,259],[580,185],[874,206],[810,665],[697,43],[890,811],[658,305],[718,325],[900,341],[871,713],[832,444],[653,101],[505,152],[767,750],[909,131],[643,374],[892,183],[709,365],[789,508],[504,318],[507,291],[893,482],[758,356],[826,681],[831,216],[454,384],[649,502],[445,280],[238,204],[436,269],[156,77],[576,41],[933,903],[889,599],[958,940],[483,326],[497,79],[675,588],[219,98],[926,801],[632,108],[715,221],[765,545],[47,11],[658,334],[395,26],[577,375],[809,262],[416,264],[641,153],[889,68],[446,445],[993,82],[764,207],[513,157],[893,266],[931,361],[499,322],[704,519],[959,301],[598,583],[732,42],[383,82],[591,353],[471,60],[684,642],[136,81],[841,100],[838,741],[827,210],[571,15],[893,232],[835,564],[566,256],[508,334],[971,572],[897,556],[405,51],[648,362],[734,237],[589,122],[979,694],[833,52],[359,78],[249,100],[887,454],[778,197],[951,350],[394,164],[391,118],[685,445],[547,204],[824,73],[374,52],[654,156],[773,360],[721,282],[158,24],[889,654],[999,195],[372,129],[594,585],[457,345],[330,148],[762,224],[415,357],[509,143],[488,72],[635,579],[533,293],[908,793],[932,204],[789,92],[891,288],[903,721],[704,60],[377,325],[839,117],[714,469],[445,274],[361,113],[366,104],[504,441],[313,85],[895,52],[553,408],[688,388],[890,223],[904,374],[398,357],[957,441],[932,842],[833,551],[553,452],[805,263],[550,215],[765,688],[801,9],[923,846],[747,691],[847,794],[723,366],[857,151],[908,275],[970,755],[273,109],[611,45],[587,571],[545,394],[700,89],[611,535],[994,80],[979,597],[648,212],[639,606],[611,365],[861,675],[682,371],[647,293],[608,458],[867,751],[846,295],[579,406],[994,56],[371,13],[522,26],[148,145],[706,685],[765,726],[783,24],[706,532],[283,203],[906,520],[936,63],[804,556],[571,371],[971,553],[988,448],[596,45],[844,151],[725,598],[751,592],[824,443],[805,328],[654,120],[794,755],[739,526],[747,257],[69,39],[274,237],[690,203],[443,269],[374,21],[875,138],[887,491],[380,99],[942,567],[906,481],[763,93],[607,159],[233,171],[955,132],[773,257],[679,268],[562,275],[712,136],[510,415],[871,647],[837,672],[816,1],[584,509],[862,367],[956,272],[942,818],[850,401],[977,248],[816,170],[941,855],[732,638],[890,313],[790,59],[863,715],[838,60],[296,66],[684,209],[736,37],[547,445],[887,869],[970,246],[627,409],[176,65],[737,253],[274,96],[805,724],[120,90],[429,309],[832,140],[613,175],[879,133],[856,403],[391,279],[727,133],[817,756],[875,799],[769,322],[785,221],[670,563],[555,425],[872,282],[816,178],[401,128],[892,557],[527,480],[934,312],[837,123],[598,265],[930,915],[802,585],[811,355],[839,709],[471,459],[95,81],[333,267],[806,6],[898,683],[936,737],[724,89],[870,154],[253,126],[123,73],[510,499],[801,296],[761,225],[993,728],[512,456],[594,76],[358,296],[490,328],[810,5],[570,510],[810,555],[924,537],[85,27],[894,199],[471,333],[655,328],[619,569],[511,226],[736,501],[448,345],[310,107],[799,238],[952,792],[868,379],[875,165],[826,470],[672,318],[909,585],[239,55],[545,429],[547,365],[872,758],[926,508],[111,15],[983,700],[761,658],[736,58],[522,395],[387,215],[377,207],[906,145],[860,373],[591,50],[563,73],[733,463],[680,364],[827,708],[913,894],[705,629],[876,548],[825,522],[587,321],[670,355],[200,150],[702,385],[525,331],[743,373],[471,23],[849,13],[816,574],[856,34],[808,557],[965,586],[841,141],[846,824],[952,356],[948,671],[473,308],[750,702],[468,338],[991,238],[806,256],[912,760],[631,521],[850,568],[439,139],[577,252],[412,192],[644,250],[962,82],[422,407],[302,128],[841,448],[960,736],[729,273],[749,746],[821,803],[330,139],[785,584],[580,297],[962,740],[489,341],[680,111],[578,522],[237,179],[490,288],[920,16],[401,45],[408,134],[620,508],[351,129],[867,416],[948,243],[746,254],[860,162],[834,273],[891,851],[513,119],[991,511],[695,640],[587,93],[644,254],[939,685],[997,432],[551,215],[719,364],[146,99],[656,416],[731,663],[773,321],[433,300],[620,122],[549,170],[450,271],[823,637],[850,45],[623,184],[680,596],[891,699],[557,172],[916,780],[691,454],[955,225],[769,72],[732,609],[813,641],[228,95],[946,202],[754,356],[270,215],[835,636],[935,241],[501,394],[740,328],[736,510],[641,83],[503,320],[519,233],[872,17],[383,14],[908,3],[804,217],[379,140],[734,313],[816,763],[917,573],[478,297],[404,104],[936,232],[682,376],[904,599],[974,845],[704,533],[840,698],[970,870],[914,701],[908,758],[634,263],[853,778],[810,19],[332,266],[950,221],[606,127],[580,142],[858,391],[431,276],[639,610],[843,354],[987,652],[697,306],[906,526],[990,545],[750,347],[599,269],[748,174],[960,670],[129,113],[882,428],[806,794],[428,411],[937,930],[795,475],[834,787],[522,411],[519,367],[775,33],[776,753],[782,80],[214,57],[949,713],[827,178],[968,219],[934,588],[910,130],[940,695],[366,3],[198,96],[938,230],[924,741],[481,21],[880,862],[981,395],[745,516],[981,691],[739,227],[373,185],[950,93],[526,480],[379,189],[965,101],[725,136],[331,223],[969,615],[126,13],[905,845],[871,303],[950,424],[967,404],[765,733],[569,518],[65,44],[737,412],[349,195],[455,390],[264,191],[604,20],[473,337],[179,65],[948,137],[218,56],[475,210],[992,972],[469,381],[477,389],[558,383],[834,58],[560,411],[634,295],[939,734],[923,100],[872,5],[578,211],[574,3],[760,68],[268,232],[639,21],[196,133],[784,596],[548,472],[138,81],[790,615],[905,376],[727,580],[437,56],[718,74],[207,184],[851,374],[729,592],[622,68],[759,755],[856,701],[751,535],[886,803],[801,11],[732,381],[987,216],[819,120],[665,308],[818,786],[367,243],[773,534],[992,192],[973,788],[966,392],[897,11],[852,490],[607,223],[930,754],[456,82],[894,746],[875,185],[913,424],[276,43],[561,427],[670,621],[214,161],[859,728],[999,229],[663,101],[209,193],[302,222],[743,153],[884,771],[722,622],[610,423],[989,683],[964,808],[351,328],[640,631],[802,383],[837,238],[677,27],[225,51],[992,92],[758,450],[817,391],[971,17],[250,191],[589,353],[749,689],[795,274],[145,135],[561,303],[894,328],[928,573],[162,36],[895,756],[787,327],[151,34],[847,681],[317,261],[905,673],[159,110],[207,93],[821,290],[611,376],[763,747],[900,597],[705,503],[793,275],[204,89],[971,45],[465,418],[148,35],[785,444],[966,698],[944,467],[437,288],[471,280],[788,242],[881,60],[650,57],[824,721],[745,131],[818,82],[546,282],[888,35],[526,450],[943,223],[872,553],[876,630],[611,414],[697,572],[635,50],[463,265],[429,387],[274,17],[898,754],[718,345],[463,349],[880,688],[680,117],[960,340],[599,201],[309,289],[904,736],[836,538],[596,417],[901,222],[454,21],[833,591],[362,280],[752,590],[907,805],[287,268],[902,46],[918,310],[953,234],[412,242],[438,121],[537,230],[704,158],[863,325],[263,29],[987,951],[868,257],[559,413],[264,17],[738,86],[617,467],[745,304],[931,585],[949,729],[681,677],[967,101],[826,112],[991,848],[668,24],[953,288],[506,446],[406,225],[646,346],[615,475],[660,601],[820,227],[971,879],[947,830],[964,228],[821,464],[115,40],[38,35],[716,638],[748,127],[378,338],[745,227],[603,235],[497,418],[910,526],[876,816],[833,714],[655,149],[926,761],[974,949],[964,202],[385,116],[891,99],[886,762],[886,823],[499,492],[643,230],[914,269],[957,147],[669,346],[932,697],[693,258],[746,597],[811,250],[400,46],[824,472],[701,247],[485,111],[299,75],[845,135],[204,16],[953,532],[261,223],[331,192],[301,59],[695,290],[896,139],[299,15],[819,763],[859,607],[670,270],[422,394],[797,594],[310,271],[674,575],[982,592],[106,4],[781,365],[710,603],[569,380],[995,307],[712,694],[930,507],[929,830],[308,3],[897,132],[669,424],[286,106],[917,520],[954,670],[448,258],[770,9],[853,41],[600,358],[403,265],[739,486],[674,207],[701,378],[630,285],[761,446],[578,511],[555,40],[771,563],[565,546],[940,497],[848,419],[990,820],[566,493],[310,246],[398,15],[950,708],[905,818],[613,34],[557,395],[401,298],[952,770],[933,425],[824,90],[693,260],[702,257],[990,857],[459,209],[573,152],[389,314],[999,888],[602,200],[855,63],[991,988],[411,342],[820,506],[360,131],[611,420],[670,452],[966,885],[815,287],[678,657],[891,827],[725,178],[876,177],[461,402],[555,51],[641,125],[807,447],[840,369],[526,95],[300,80],[978,837],[707,541],[983,541],[691,623],[527,320],[679,428],[618,472],[287,138],[598,17],[892,179],[637,89],[983,592],[289,56],[253,100],[900,396],[604,94],[810,51],[775,753],[623,391],[716,705],[981,226],[609,72],[578,143],[745,263],[975,144],[611,381],[932,772],[606,145],[831,551],[717,608],[890,310],[34,17],[401,200],[625,436],[548,332],[425,271],[646,372],[978,400],[862,573],[597,486],[992,805],[470,464],[821,780],[163,156],[821,794],[881,147],[248,122],[844,833],[587,84],[709,663],[937,222],[612,470],[777,416],[862,609],[366,302],[564,508],[414,13],[908,700],[419,96],[930,104],[398,231],[484,91],[250,205],[639,268],[333,198],[923,906],[296,262],[879,198],[970,56],[999,108],[299,47],[432,255],[577,184],[514,473],[654,612],[865,114],[987,799],[926,248],[798,429],[552,150],[820,176],[881,368],[990,43],[606,494],[884,616],[699,81],[572,195],[691,221],[978,563],[940,447],[752,346],[790,588],[987,656],[402,17],[851,122],[359,172],[780,209],[275,47],[580,120],[877,350],[788,758],[977,460],[933,771],[775,190],[938,866],[618,453],[218,60],[789,506],[767,323],[591,194],[281,194],[376,118],[663,282],[243,113],[709,70],[797,400],[903,187],[897,240],[262,159],[522,330],[992,838],[630,574],[998,421],[808,254],[514,325],[684,579],[403,127],[702,439],[500,264],[581,312],[620,292],[266,62],[455,341],[928,796],[896,31],[558,456],[505,123],[744,22],[794,281],[770,317],[796,277],[713,448],[976,421],[738,287],[958,639],[991,324],[951,819],[611,295],[738,435],[512,436],[846,6],[463,444],[438,56],[574,133],[310,9],[222,102],[979,342],[543,259],[969,622],[963,297],[251,37],[755,208],[806,28],[482,441],[323,113],[645,479],[540,405],[941,732],[994,822],[545,317],[738,605],[993,280],[727,603],[155,110],[437,38],[991,394],[653,112],[914,579],[219,18],[323,228],[882,41],[790,741],[967,623],[402,134],[964,657],[822,635],[538,532],[566,176],[480,218],[484,210],[786,350],[356,307],[961,936],[844,702],[723,310],[787,398],[352,215],[921,715],[944,461],[951,875],[709,142],[523,322],[679,38],[897,800],[806,700],[686,492],[723,530],[471,288],[566,207],[822,423],[700,112],[402,98],[567,63],[459,144],[893,700],[664,493],[756,305],[510,60],[736,15],[874,559],[354,151],[55,41],[905,774],[886,601],[846,505],[977,478],[820,241],[440,239],[838,329],[799,175],[526,41],[935,125],[302,91],[909,44],[871,138],[228,31],[270,177],[901,267],[880,24],[412,246],[885,383],[713,641],[337,213],[860,393],[786,53],[887,786],[258,32],[662,546],[753,226],[883,220],[549,17],[666,372],[507,290],[573,87],[738,119],[973,233],[606,525],[847,543],[828,625],[583,27],[598,183],[634,138],[333,233],[596,416],[886,851],[836,709],[938,620],[788,418],[603,545],[143,24],[733,540],[377,149],[572,486],[450,108],[614,329],[906,358],[958,599],[660,31],[820,432],[557,462],[941,536],[628,577],[822,506],[793,167],[814,94],[885,454],[859,155],[964,822],[950,485],[750,527],[518,341],[862,250],[471,227],[578,379],[264,197],[829,539],[719,578],[483,300],[319,227],[919,17],[306,220],[766,613],[758,11],[792,593],[905,770],[930,557],[999,67],[526,13],[28,10],[297,158],[990,411],[908,736],[93,72],[823,84],[497,444],[992,222],[459,30],[760,40],[87,34],[283,3],[107,88],[969,346],[969,408],[354,346],[836,322],[371,149],[613,480],[284,72],[451,422],[770,65],[393,343],[558,322],[843,9],[896,773],[766,56],[287,45],[919,433],[991,760],[975,200],[919,147],[937,31],[673,394],[771,743],[955,199],[277,116],[782,440],[688,115],[736,369],[772,232],[588,205],[910,545],[598,104],[881,144],[563,341],[386,248],[819,618],[894,717],[989,886],[853,366],[944,719],[901,568],[974,693],[626,498],[597,519],[260,134],[928,36],[306,263],[388,291],[588,128],[851,803],[700,649],[517,186],[406,75],[894,600],[846,541],[509,398],[919,687],[538,133],[412,255],[656,78],[660,434],[948,44],[771,709],[947,77],[322,140],[544,357],[714,667],[825,293],[448,408],[838,317],[203,86],[968,361],[681,617],[613,520],[331,172],[270,131],[944,599],[821,358],[891,753],[935,297],[705,683],[607,264],[805,430],[812,495],[451,440],[445,417],[631,413],[489,127],[879,44],[692,571],[759,752],[704,429],[497,330],[913,678],[947,426],[504,188],[577,250],[949,637],[562,445],[352,5],[719,530],[512,375],[613,392],[202,114],[772,368],[720,667],[847,565],[432,184],[405,387],[434,60],[767,185],[723,197],[899,527],[459,222],[914,14],[873,129],[387,131],[910,442],[783,565],[660,202],[749,353],[587,468],[519,56],[871,777],[698,347],[457,333],[691,393],[841,131],[685,4],[265,145],[988,515],[216,91],[778,131],[750,734],[501,10],[991,656],[749,596],[983,672],[722,314],[552,318],[683,40],[912,859],[755,652],[516,130],[678,88],[387,303],[845,553],[962,795],[909,282],[427,227],[932,721],[705,703],[314,289],[829,349],[835,802],[781,527],[221,8],[925,140],[843,443],[751,30],[759,478],[962,768],[209,14],[632,562],[472,315],[392,286],[830,365],[898,881],[595,244],[851,748],[674,57],[871,109],[609,327],[964,128],[456,318],[701,487],[652,477],[393,120],[399,349],[265,125],[994,975],[490,326],[465,224],[587,276],[712,314],[576,131],[607,110],[750,14],[782,495],[972,473],[992,377],[424,16],[434,298],[840,666],[984,503],[522,262],[757,365],[787,614],[728,427],[859,379],[955,57],[398,8],[972,746],[778,766],[803,497],[626,267],[739,131],[218,30],[309,12],[783,596],[964,837],[722,138],[537,60],[568,542],[662,157],[653,217],[752,56],[793,413],[732,296],[992,749],[193,191],[878,874],[559,363],[524,23],[455,183],[656,585],[854,508],[618,276],[471,235],[750,298],[979,161],[645,5],[880,612],[821,259],[906,292],[880,470],[786,558],[490,307],[922,144],[403,182],[617,503],[866,451],[747,652],[579,364],[838,85],[676,417],[658,87],[787,67],[950,41],[472,275],[556,348],[615,392],[763,542],[668,323],[864,91],[957,351],[411,403],[677,267],[714,311],[683,228],[433,381],[826,305],[433,179],[428,278],[715,45],[417,122],[852,711],[599,408],[793,328],[214,150],[681,529],[44,11],[482,54],[616,322],[921,74],[475,378],[529,157],[922,190],[200,72],[561,333],[364,235],[900,819],[721,123],[240,93],[930,533],[606,73],[644,466],[943,13],[612,407],[758,679],[838,5],[884,381],[117,94],[823,4],[394,113],[621,83],[712,408],[897,595],[464,48],[244,181],[232,44],[994,489],[902,90],[841,731],[374,100],[950,753],[585,504],[449,320],[591,584],[752,471],[883,881],[990,516],[809,633],[774,109],[780,50],[833,592],[675,323],[745,403],[941,926],[984,135],[481,285],[770,405],[339,237],[636,70],[769,764],[573,529],[173,122],[559,207],[959,820],[855,235],[589,499],[977,324],[610,42],[953,244],[784,656],[651,60],[580,390],[811,539],[888,886],[513,219],[709,334],[795,234],[709,540],[490,445],[894,245],[576,128],[675,397],[415,346],[679,657],[707,680],[727,623],[811,177],[968,247],[993,699],[173,17],[710,408],[932,727],[642,636],[414,6],[908,364],[565,311],[663,27],[592,290],[685,431],[578,549],[897,818],[678,625],[927,913],[195,126],[576,277],[962,669],[524,511],[865,196],[963,564],[643,205],[496,123],[781,34],[960,441],[498,175],[919,626],[597,203],[307,267],[22,3],[252,33],[637,626],[469,220],[773,74],[915,781],[606,545],[963,571],[978,528],[536,232],[682,280],[162,31],[964,727],[832,231],[671,40],[943,931],[578,439],[630,463],[998,935],[977,61],[393,387],[281,267],[851,546],[453,282],[662,568],[855,179],[508,224],[779,767],[951,155],[480,103],[876,871],[970,487],[412,190],[889,586],[916,164],[986,332],[555,83],[744,124],[884,658],[614,72],[98,90],[855,850],[988,548],[861,8],[915,59],[868,105],[612,547],[835,254],[702,529],[715,367],[262,134],[588,492],[565,156],[783,318],[935,502],[455,188],[722,633],[860,104],[654,362],[317,75],[643,561],[991,135],[857,187],[813,758],[435,404],[110,106],[439,76],[917,11],[543,171],[768,671],[992,746],[415,48],[415,240],[950,354],[933,531],[727,452],[164,143],[704,391],[419,366],[405,354],[458,75],[741,3],[855,21],[795,206],[726,506],[507,171],[978,127],[716,45],[561,162],[285,232],[771,495],[195,175],[866,596],[516,264],[156,102],[361,92],[915,578],[389,280],[719,685],[700,118],[858,473],[960,497],[772,51],[829,654],[755,446],[415,86],[555,323],[222,130],[883,322],[568,417],[532,526],[237,33],[752,381],[378,203],[297,43],[259,95],[454,84],[449,187],[873,793],[348,245],[936,147],[525,507],[948,143],[565,326],[849,239],[973,813],[414,177],[238,74],[528,275],[713,500],[252,239],[882,488],[880,804],[703,366],[978,347],[516,356],[957,179],[369,50],[531,461],[508,291],[184,132],[755,23],[850,816],[852,341],[937,413],[860,743],[916,379],[635,223],[107,62],[967,922],[876,158],[363,86],[778,505],[695,297],[492,23],[367,349],[857,290],[895,839],[104,76],[867,210],[845,523],[652,229],[521,214],[267,96],[91,63],[440,388],[696,261],[203,45],[60,57],[255,50],[741,616],[648,408],[307,201],[645,544],[359,349],[620,124],[391,300],[519,384],[706,683],[988,189],[824,797],[661,501],[775,527],[363,354],[852,803],[896,885],[583,109],[859,389],[739,162],[709,671],[553,334],[990,501],[958,708],[579,100],[659,455],[947,629],[975,922],[558,225],[675,108],[713,676],[637,481],[896,747],[862,297],[607,83],[765,231],[986,573],[682,263],[577,88],[906,456],[858,102],[181,45],[372,170],[782,349],[496,159],[630,415],[358,153],[48,17],[848,545],[974,856],[798,215],[790,245],[974,55],[951,586],[791,55],[428,206],[994,825],[356,9],[951,254],[749,620],[918,686],[606,476],[293,20],[156,115],[678,278],[821,78],[775,152],[525,27],[705,112],[850,550],[294,167],[537,185],[413,66],[723,167],[822,340],[727,194],[630,54],[373,77],[562,419],[90,37],[823,234],[757,388],[904,147],[133,80],[801,523],[669,666],[146,131],[543,53],[603,37],[513,486],[599,197],[495,439],[551,303],[982,843],[726,462],[632,441],[394,188],[481,39],[379,154],[838,607],[681,65],[885,807],[999,898],[909,82],[367,152],[297,279],[341,119],[268,211],[469,256],[875,537],[768,753],[814,464],[868,299],[978,847],[740,629],[430,116],[866,125],[398,313],[907,761],[754,469],[919,86],[592,6],[902,529],[302,259],[864,76],[361,328],[507,116],[907,623],[353,275],[781,429],[972,574],[580,558],[519,249],[670,61],[760,201],[897,891],[528,273],[721,608],[916,200],[870,737],[434,131],[73,71],[846,0],[683,373],[802,35],[882,67],[862,697],[565,507],[995,43],[722,572],[605,319],[447,91],[850,265],[702,654],[214,189],[430,29],[788,199],[801,312],[552,250],[912,81],[288,185],[966,347],[961,390],[790,186],[693,571],[947,688],[550,230],[251,193],[847,180],[885,823],[876,208],[781,714],[890,557],[626,300],[681,496],[759,750],[244,220],[991,581],[844,120],[912,553],[709,472],[610,209],[754,87],[424,151],[739,156],[665,538],[184,168],[527,377],[869,408],[463,16],[531,40],[167,7],[721,365],[307,144],[407,380],[635,307],[420,140],[995,215],[972,899],[611,138],[613,466],[759,201],[588,90],[952,748],[410,91],[830,109],[850,590],[936,269],[890,389],[862,40],[398,54],[972,230],[875,474],[986,643],[436,141],[359,347],[839,452],[673,39],[646,610],[517,406],[519,229],[329,153],[637,552],[540,104],[668,65],[364,228],[694,420],[978,270],[352,184],[949,700],[243,1],[435,345],[832,780],[617,381],[604,115],[284,225],[924,504],[997,530],[389,231],[944,436],[523,173],[536,323],[486,10],[591,130],[848,320],[737,60],[682,86],[864,43],[711,436],[620,234],[796,507],[363,210],[954,403],[886,727],[839,617],[954,762],[633,385],[621,168],[403,332],[588,578],[368,271],[905,454],[936,416],[990,628],[605,558],[462,176],[552,183],[740,647],[827,378],[682,384],[991,449],[700,345],[188,21],[725,206],[842,414],[774,559],[723,253],[577,451],[216,127],[860,236],[507,111],[731,423],[399,156],[566,89],[170,65],[234,169],[421,253],[712,457],[901,836],[660,436],[631,88],[393,31],[438,115],[612,434],[973,965],[77,71],[859,243],[975,123],[859,367],[768,365],[626,263],[941,243],[862,282],[413,259],[649,143],[94,37],[536,522],[916,698],[777,47],[571,71],[580,519],[703,44],[117,4],[828,798],[830,64],[454,392],[566,142],[526,215],[931,250],[658,294],[751,531],[911,160],[765,747],[890,126],[913,461],[922,284],[872,704],[161,137],[439,175],[499,286],[592,456],[499,10],[891,169],[382,117],[786,199],[932,836],[953,323],[841,138],[829,625],[964,541],[504,398],[857,759],[826,129],[602,343],[706,240],[995,525],[340,127],[619,584],[888,818],[676,633],[459,437],[645,373],[603,406],[985,321],[336,240],[902,829],[527,519],[895,423],[910,288],[917,684],[801,665],[292,225],[290,124],[897,614],[679,66],[355,197],[976,380],[824,315],[549,522],[777,93],[826,595],[947,448],[441,284],[292,210],[808,694],[383,295],[882,408],[433,263],[605,82],[729,362],[787,47],[274,183],[855,486],[269,245],[727,469],[895,61],[765,245],[915,177],[831,428],[841,55],[703,601],[826,10],[316,157],[888,101],[498,226],[876,742],[867,250],[731,192],[653,591],[705,105],[916,889],[966,54],[958,571],[547,261],[907,831],[504,310],[754,698],[399,323],[649,456],[743,655],[126,45],[889,872],[645,446],[452,102],[307,121],[915,766],[630,352],[965,383],[695,328],[401,272],[935,156],[381,310],[698,130],[827,27],[889,425],[748,120],[755,220],[645,507],[601,10],[707,90],[846,410],[745,690],[991,765],[301,180],[779,195],[755,29],[950,704],[970,259],[383,289],[625,278],[758,421],[762,531],[559,342],[625,265],[589,491],[396,134],[828,30],[965,68],[667,197],[477,370],[915,589],[988,669],[495,146],[740,661],[964,324],[431,421],[825,28],[681,150],[935,182],[743,648],[291,125],[852,753],[573,543],[518,355],[121,34],[680,592],[665,183],[930,478],[854,769],[695,375],[537,81],[523,455],[442,212],[827,153],[367,65],[591,182],[944,203],[490,57],[995,221],[556,303],[564,127],[353,242],[662,549],[847,48],[626,592],[797,682],[710,335],[952,196],[801,321],[833,452],[106,23],[564,232],[279,247],[973,191],[875,239],[720,179],[700,253],[976,61],[622,352],[980,876],[446,2],[785,442],[796,448],[399,26],[693,618],[764,667],[632,444],[779,559],[550,1],[843,477],[438,193],[956,866],[261,12],[725,390],[652,239],[523,8],[415,20],[949,838],[552,323],[772,163],[997,175],[933,231],[284,248],[592,139],[133,92],[481,187],[732,329],[821,784],[895,654],[882,345],[405,382],[669,579],[730,200],[516,473],[279,269],[956,679],[901,552],[925,560],[812,624],[705,588],[344,167],[479,18],[763,711],[851,263],[534,32],[462,443],[809,324],[446,131],[699,138],[553,444],[381,104],[726,718],[839,361],[920,272],[980,281],[581,315],[490,20],[381,330],[713,354],[816,43],[854,590],[629,378],[770,152],[712,393],[642,477],[628,368],[396,359],[581,510],[714,61],[652,375],[696,303],[627,530],[158,94],[341,157],[876,41],[941,494],[651,285],[950,106],[803,360],[586,458],[524,448],[870,348],[538,55],[703,31],[731,407],[620,157],[798,301],[479,394],[69,1],[867,786],[702,671],[421,267],[690,573],[578,249],[945,536],[635,524],[712,514],[311,150],[505,246],[877,398],[672,608],[350,170],[484,481],[671,606],[850,148],[830,316],[557,529],[706,72],[886,579],[634,492],[879,119],[797,596],[882,686],[116,46],[850,807],[855,530],[831,16],[677,461],[546,407],[978,583],[870,551],[549,535],[341,82],[864,668],[770,330],[223,2],[748,83],[908,410],[988,980],[173,105],[217,48],[830,594],[780,389],[958,770],[920,497],[626,17],[466,1],[448,190],[298,202],[242,55],[796,607],[986,290],[169,160],[543,35],[940,165],[938,418],[769,504],[329,325],[119,71],[270,27],[899,597],[977,143],[732,60],[784,284],[595,334],[927,865],[283,63],[785,661],[938,109],[737,717],[396,56],[771,31],[911,305],[570,259],[506,48],[986,819],[892,864],[141,130],[962,188],[622,26],[815,347],[741,62],[514,277],[886,755],[420,12],[197,136],[466,171],[442,103],[457,277],[678,18],[980,461],[629,177],[644,162],[826,152],[593,298],[537,180],[711,323],[113,103],[302,141],[928,634],[838,48],[498,279],[454,239],[473,214],[861,621],[902,263],[969,90],[477,132],[998,713],[828,559],[610,536],[433,70],[862,302],[663,479],[344,83],[611,107],[956,468],[749,628],[271,262],[557,476],[734,606],[661,306],[547,538],[801,488],[877,445],[342,22],[519,419],[910,524],[934,670],[985,197],[439,436],[819,770],[555,455],[789,267],[531,57],[980,175],[927,258],[832,104],[649,393],[486,427],[902,788],[897,823],[527,337],[600,31],[469,326],[769,286],[314,191],[422,354],[594,369],[104,88],[382,369],[825,321],[223,84],[728,379],[748,315],[650,354],[256,130],[903,428],[182,148],[719,707],[710,18],[648,131],[879,235],[913,163],[907,155],[440,104],[829,437],[524,178],[598,458],[20,5],[269,74],[963,114],[314,207],[659,445],[632,588],[280,115],[120,84],[853,252],[923,835],[922,98],[789,19],[835,471],[868,435],[855,824],[103,102],[883,347],[833,204],[836,351],[527,86],[695,481],[701,567],[759,383],[801,795],[834,417],[923,422],[920,508],[789,271],[794,480],[566,526],[950,64],[355,231],[346,193],[934,704],[883,854],[371,0],[686,114],[942,725],[523,266],[705,65],[647,522],[784,683],[593,44],[694,501],[348,59],[644,266],[646,14],[969,380],[592,135],[306,80],[761,652],[596,84],[999,795],[790,179],[749,365],[871,504],[809,3],[934,411],[600,20],[783,637],[555,380],[980,93],[396,251],[984,280],[381,111],[615,96],[507,389],[885,101],[724,30],[441,358],[692,7],[649,168],[942,751],[415,125],[850,768],[850,745],[719,90],[653,442],[556,555],[689,461],[171,11],[797,120],[485,245],[834,650],[859,732],[795,735],[863,98],[707,577],[707,592],[978,790],[222,18],[900,778],[799,663],[788,143],[911,268],[958,491],[530,27],[851,635],[662,366],[425,334],[107,11],[398,188],[888,436],[795,289],[875,406],[354,157],[869,819],[802,377],[579,260],[775,768],[921,276],[793,547],[890,532],[490,468],[724,330],[444,112],[960,857],[995,258],[893,153],[413,294],[615,490],[944,27],[953,223],[658,300],[426,388],[965,491],[762,127],[612,385],[886,692],[744,408],[500,265],[824,646],[945,818],[826,214],[936,700],[376,212],[823,375],[811,428],[346,343],[847,566],[410,276],[192,61],[281,15],[944,488],[575,246],[867,855],[785,343],[783,550],[938,422],[181,88],[545,36],[715,73],[499,473],[745,459],[913,412],[575,296],[867,216],[670,550],[736,622],[847,684],[382,238],[546,419],[985,973],[980,912],[945,330],[573,354],[808,787],[664,376],[894,461],[327,54],[466,57],[840,324],[986,376],[79,6],[317,247],[877,86],[256,112],[811,527],[740,678],[966,481],[731,696],[780,532],[894,869],[257,109],[286,180],[898,823],[908,838],[570,317],[941,911],[176,50],[488,364],[801,65],[789,435],[886,12],[997,292],[858,120],[217,167],[355,64],[944,273],[184,75],[565,328],[495,365],[670,446],[795,317],[262,247],[455,422],[633,236],[595,190],[863,131],[487,25],[810,402],[785,374],[557,306],[420,77],[994,916],[585,535],[682,646],[872,785],[922,916],[918,343],[918,109],[813,189],[832,535],[518,94],[993,2],[984,38],[576,256],[758,641],[675,269],[829,388],[862,216],[703,155],[729,548],[838,571],[830,325],[644,202],[459,257],[650,211],[280,234],[697,153],[870,290],[421,168],[982,466],[690,651],[775,667],[277,99],[875,853],[268,29],[627,464],[886,283],[558,421],[987,113],[34,6],[333,94],[439,222],[693,408],[710,607],[766,736],[865,594],[570,316],[897,603],[929,132],[932,245],[810,413],[111,89],[607,54],[825,502],[183,42],[306,222],[807,503],[744,313],[564,259],[330,93],[638,496],[482,469],[541,86],[663,85],[609,258],[921,275],[928,86],[943,161],[533,99],[773,96],[517,359],[560,465],[763,13],[749,232],[561,492],[412,360],[708,561],[405,95],[793,383],[600,124],[911,438],[913,693],[477,433],[938,630],[622,572],[237,190],[567,226],[28,3],[307,108],[584,260],[238,232],[420,355],[641,516],[866,524],[828,266]], }, };
77,927.857143
545,440
0.590858
c5e1ad7a20e094ef43fa5327fa766a65431967f8
791
js
JavaScript
13_authentication/source/web-studio/src/App.js
geronimo03/WebStudio2019
c7a9b59098c2ce97bddfd7727963c3b0f48bdbba
[ "MIT" ]
14
2019-03-06T10:32:40.000Z
2021-11-18T01:44:28.000Z
13_authentication/source/web-studio/src/App.js
geronimo03/WebStudio2019
c7a9b59098c2ce97bddfd7727963c3b0f48bdbba
[ "MIT" ]
35
2019-03-13T07:04:02.000Z
2019-10-08T06:26:45.000Z
13_authentication/source/web-studio/src/App.js
geronimo03/WebStudio2019
c7a9b59098c2ce97bddfd7727963c3b0f48bdbba
[ "MIT" ]
22
2019-03-11T11:00:24.000Z
2019-09-14T06:53:30.000Z
import React from 'react'; import './App.css'; import MainPage from './_components/Main' import BlankPage from './_components/BlankPage' import { LoginPage } from './_components/LoginPage' import { PrivateRoute } from './_components/PrivateRoute' import { Router, Route } from "react-router-dom" import { history } from './_components/history' function App() { return ( <div className="App"> <Router history={history}> <PrivateRoute path="/" exact component={MainPage} /> <Route path="/blank" exact component={BlankPage} /> <Route path="/login" exact component={LoginPage} /> <Route path="/register" exact component={LoginPage} /> <Route path="/secret" exact component={MainPage} /> </Router> </div> ); } export default App;
31.64
62
0.662453
c5e1c2f42d6e114765797e934484143f9951ecd5
1,654
js
JavaScript
docs/icon.app_metrics-js.min.js
danedavid/eui
2be38928276cfcb235d6d19d8ed5e56a3265e42d
[ "Apache-2.0" ]
null
null
null
docs/icon.app_metrics-js.min.js
danedavid/eui
2be38928276cfcb235d6d19d8ed5e56a3265e42d
[ "Apache-2.0" ]
2
2019-03-10T03:25:13.000Z
2021-03-25T08:05:20.000Z
docs/icon.app_metrics-js.min.js
ryankeairns/eui
87803b487ad89cfa6f1e39d0a733822c72eadf21
[ "Apache-2.0" ]
null
null
null
(window.webpackJsonp=window.webpackJsonp||[]).push([[32],{3666:function(e,t,r){"use strict";r.r(t),r.d(t,"icon",(function(){return i}));r(6),r(7);var n=r(0);function l(){return(l=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}function a(e,t){if(null==e)return{};var r,n,l=function(e,t){if(null==e)return{};var r,n,l={},a=Object.keys(e);for(n=0;n<a.length;n++)r=a[n],t.indexOf(r)>=0||(l[r]=e[r]);return l}(e,t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(n=0;n<a.length;n++)r=a[n],t.indexOf(r)>=0||Object.prototype.propertyIsEnumerable.call(e,r)&&(l[r]=e[r])}return l}var i=function(e){var t=e.title,r=e.titleId,i=a(e,["title","titleId"]);return n.createElement("svg",l({width:32,height:32,viewBox:"0 0 32 32",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":r},i),t?n.createElement("title",{id:r},t):null,n.createElement("path",{d:"M30 19.092v12.88H2v-5.386l6.747-6.747.708.708c.236.236.48.463.733.68L4 27.414v2.558h24v-8.91c.186-.166.369-.339.546-.516L30 19.092zm-20.85-3.19A10.955 10.955 0 018 11C8 4.925 12.925 0 19 0s11 4.925 11 11c0 1.76-.414 3.425-1.15 4.9l-1.51-1.51A8.973 8.973 0 0028 11a9 9 0 10-17.34 3.391l-1.51 1.51z"}),n.createElement("path",{className:"euiIcon__fillSecondary",d:"M19 20a8.96 8.96 0 005.618-1.968l-4.202-4.204a2 2 0 00-2.828 0l-4.205 4.205A8.96 8.96 0 0019 20zm-2.826-7.586a4 4 0 015.656 0l5.656 5.657-.707.707A10.967 10.967 0 0119 22a10.967 10.967 0 01-7.778-3.221l-.707-.707 5.659-5.658z"}))}}}]); //# sourceMappingURL=icon.app_metrics-js.min.js.map
827
1,602
0.69468
c5e1d4cca359f7d34d5271cfce454b889718bf01
70,450
js
JavaScript
test.js
yonguksaram/smart-calculator
8e650ba8c56c42b4e7d849321fcaf691465d2ba0
[ "MIT" ]
null
null
null
test.js
yonguksaram/smart-calculator
8e650ba8c56c42b4e7d849321fcaf691465d2ba0
[ "MIT" ]
null
null
null
test.js
yonguksaram/smart-calculator
8e650ba8c56c42b4e7d849321fcaf691465d2ba0
[ "MIT" ]
null
null
null
const assert = require('assert'); Object.freeze(assert); const SmartCalculator = require('./src/index'); describe('SmartCalculator', () => { it('1', () => { const calculator = new SmartCalculator(1); const value = calculator .add(5) .add(5); assert.equal(value, 11); }); it('2', () => { const calculator = new SmartCalculator(2); const value = calculator .add(2) .multiply(2); assert.equal(value, 6); }); it('3', () => { const calculator = new SmartCalculator(1); const value = calculator .add(5) .multiply(5) .add(5); assert.equal(value, 31); }); it('4', () => { const calculator = new SmartCalculator(2); const value = calculator .add(2) .add(2) .multiply(2); assert.equal(value, 8); }); it('5', () => { const calculator = new SmartCalculator(2); const value = calculator .add(2) .add(4) .devide(4); assert.equal(value, 5); }); it('6', () => { const calculator = new SmartCalculator(2); const value = calculator .add(4) .devide(2) .add(4) .devide(4) .add(6) .devide(3); assert.equal(value, 7); }); it('7', () => { const calculator = new SmartCalculator(3); const value = calculator .pow(1) .pow(1); assert.equal(value, 3); }); it('8', () => { const calculator = new SmartCalculator(10); const value = calculator .multiply(2) .pow(2) .subtract(95) .subtract(56) .pow(2) .pow(2) .pow(1) .multiply(1); assert.equal(value, -9834551); }); it('9', () => { const calculator = new SmartCalculator(9); const value = calculator .multiply(1) .subtract(73) .pow(2) .add(62) .multiply(1) .add(29) .add(60) .subtract(8) .subtract(83) .add(50); assert.equal(value, -5210); }); it('10', () => { const calculator = new SmartCalculator(2); const value = calculator .multiply(1) .subtract(35) .add(34) .subtract(11) .add(18) .subtract(91) .pow(2) .add(5) .subtract(56) .add(36); assert.equal(value, -8288); }); it('11', () => { const calculator = new SmartCalculator(7); const value = calculator .add(63) .subtract(54) .pow(2) .pow(1) .add(82) .add(89) .add(81) .multiply(1) .pow(1) .add(4); assert.equal(value, -2590); }); it('12', () => { const calculator = new SmartCalculator(2); const value = calculator .subtract(100) .add(67) .add(27) .pow(2) .pow(1) .subtract(53); assert.equal(value, 645); }); it('13', () => { const calculator = new SmartCalculator(1); const value = calculator .pow(1) .multiply(2); assert.equal(value, 2); }); it('14', () => { const calculator = new SmartCalculator(8); const value = calculator .subtract(81) .subtract(45) .multiply(1) .subtract(27) .add(45); assert.equal(value, -100); }); it('15', () => { const calculator = new SmartCalculator(8); const value = calculator .subtract(71) .multiply(2) .add(100) .subtract(74) .subtract(67); assert.equal(value, -175); }); it('16', () => { const calculator = new SmartCalculator(2); const value = calculator .add(50) .multiply(2) .add(44) .pow(1) .add(5) .multiply(1) .multiply(2); assert.equal(value, 156); }); it('17', () => { const calculator = new SmartCalculator(9); const value = calculator .pow(2) .multiply(1) .pow(1) .multiply(1); assert.equal(value, 81); }); it('18', () => { const calculator = new SmartCalculator(4); const value = calculator .multiply(1); assert.equal(value, 4); }); it('19', () => { const calculator = new SmartCalculator(7); const value = calculator .pow(2) .subtract(2) .multiply(1) .pow(2) .pow(1); assert.equal(value, 47); }); it('20', () => { const calculator = new SmartCalculator(2); const value = calculator .multiply(2) .pow(1) .pow(1) .pow(2) .multiply(2) .multiply(2) .multiply(1); assert.equal(value, 16); }); it('21', () => { const calculator = new SmartCalculator(1); const value = calculator .pow(1) .multiply(1) .add(95) .subtract(96); assert.equal(value, 0); }); it('22', () => { const calculator = new SmartCalculator(4); const value = calculator .pow(1) .pow(1) .pow(1) .multiply(2) .add(80) .subtract(11) .multiply(1) .subtract(41) .subtract(65); assert.equal(value, -29); }); it('23', () => { const calculator = new SmartCalculator(7); const value = calculator .subtract(73) .multiply(1); assert.equal(value, -66); }); it('24', () => { const calculator = new SmartCalculator(5); const value = calculator .pow(1) .pow(2) .add(97); assert.equal(value, 102); }); it('25', () => { const calculator = new SmartCalculator(10); const value = calculator .pow(1) .pow(1); assert.equal(value, 10); }); it('26', () => { const calculator = new SmartCalculator(6); const value = calculator .subtract(62) .multiply(2) .subtract(55) .add(75) .multiply(2) .multiply(1) .subtract(1) .subtract(87) .pow(1) .pow(2); assert.equal(value, -111); }); it('27', () => { const calculator = new SmartCalculator(5); const value = calculator .multiply(2) .subtract(35) .multiply(2) .pow(1) .add(18) .subtract(59) .multiply(2); assert.equal(value, -160); }); it('28', () => { const calculator = new SmartCalculator(6); const value = calculator .add(14) .subtract(16) .add(36) .multiply(1) .subtract(46) .add(57) .pow(1); assert.equal(value, 51); }); it('29', () => { const calculator = new SmartCalculator(6); const value = calculator .pow(1) .add(73) .multiply(1) .multiply(2); assert.equal(value, 152); }); it('30', () => { const calculator = new SmartCalculator(7); const value = calculator .pow(2) .subtract(89) .pow(1) .subtract(49) .pow(1) .multiply(1) .pow(2); assert.equal(value, -89); }); it('31', () => { const calculator = new SmartCalculator(6); const value = calculator .pow(2) .pow(1) .add(33) .pow(1) .multiply(2) .multiply(1) .add(39) .multiply(2) .multiply(2); assert.equal(value, 258); }); it('32', () => { const calculator = new SmartCalculator(4); const value = calculator .multiply(1) .subtract(38) .pow(2); assert.equal(value, -1440); }); it('33', () => { const calculator = new SmartCalculator(5); const value = calculator .subtract(44); assert.equal(value, -39); }); it('34', () => { const calculator = new SmartCalculator(10); const value = calculator .pow(2) .pow(2) .add(82) .pow(2); assert.equal(value, 16724); }); it('35', () => { const calculator = new SmartCalculator(2); const value = calculator .add(9); assert.equal(value, 11); }); it('36', () => { const calculator = new SmartCalculator(3); const value = calculator .multiply(1) .add(37) .pow(1) .pow(1); assert.equal(value, 40); }); it('37', () => { const calculator = new SmartCalculator(9); const value = calculator .subtract(2) .subtract(26) .add(26) .add(73) .multiply(1) .pow(1); assert.equal(value, 80); }); it('38', () => { const calculator = new SmartCalculator(5); const value = calculator .multiply(2) .add(45) .subtract(55) .add(47) .add(48); assert.equal(value, 95); }); it('39', () => { const calculator = new SmartCalculator(6); const value = calculator .multiply(1) .multiply(1) .pow(2) .add(96) .multiply(2); assert.equal(value, 198); }); it('40', () => { const calculator = new SmartCalculator(9); const value = calculator .add(52) .add(15); assert.equal(value, 76); }); it('41', () => { const calculator = new SmartCalculator(3); const value = calculator .subtract(94) .pow(1) .pow(1) .subtract(59) .pow(2) .subtract(68) .pow(1) .subtract(31); assert.equal(value, -3671); }); it('42', () => { const calculator = new SmartCalculator(6); const value = calculator .multiply(1) .add(67) .add(24) .subtract(83) .add(23) .subtract(60) .multiply(2); assert.equal(value, -83); }); it('44', () => { const calculator = new SmartCalculator(7); const value = calculator .subtract(94) .subtract(97) .multiply(1) .pow(1) .multiply(1) .pow(1) .subtract(65) .pow(1); assert.equal(value, -249); }); it('45', () => { const calculator = new SmartCalculator(10); const value = calculator .add(83); assert.equal(value, 93); }); it('46', () => { const calculator = new SmartCalculator(3); const value = calculator .pow(2) .subtract(25) .add(30) .add(82); assert.equal(value, 96); }); it('47', () => { const calculator = new SmartCalculator(9); const value = calculator .add(1) .multiply(2) .pow(1) .subtract(97) .subtract(57) .add(42) .add(31) .multiply(2) .multiply(2) .multiply(2); assert.equal(value, 147); }); it('48', () => { const calculator = new SmartCalculator(7); const value = calculator .subtract(83) .pow(1) .pow(1); assert.equal(value, -76); }); it('49', () => { const calculator = new SmartCalculator(7); const value = calculator .subtract(96); assert.equal(value, -89); }); it('50', () => { const calculator = new SmartCalculator(5); const value = calculator .multiply(1) .pow(1) .subtract(8) .add(84) .subtract(12) .add(20) .subtract(95) .subtract(72) .multiply(2) .subtract(77); assert.equal(value, -227); }); it('51', () => { const calculator = new SmartCalculator(8); const value = calculator .multiply(2) .subtract(48) .subtract(25) .multiply(1) .pow(2) .multiply(1); assert.equal(value, -57); }); it('52', () => { const calculator = new SmartCalculator(5); const value = calculator .subtract(88); assert.equal(value, -83); }); it('53', () => { const calculator = new SmartCalculator(6); const value = calculator .pow(1) .subtract(93) .multiply(1) .pow(2); assert.equal(value, -87); }); it('54', () => { const calculator = new SmartCalculator(5); const value = calculator .multiply(2) .add(68) .add(7) .multiply(2) .subtract(32) .pow(2) .subtract(93) .multiply(2) .add(61) .pow(1); assert.equal(value, -1057); }); it('55', () => { const calculator = new SmartCalculator(8); const value = calculator .multiply(1) .add(66) .pow(1) .add(98); assert.equal(value, 172); }); it('56', () => { const calculator = new SmartCalculator(3); const value = calculator .pow(2) .multiply(1) .multiply(2) .subtract(20) .multiply(2) .subtract(64); assert.equal(value, -86); }); it('57', () => { const calculator = new SmartCalculator(1); const value = calculator .pow(1) .multiply(1) .subtract(7) .pow(2) .subtract(98) .add(77) .subtract(66) .add(11); assert.equal(value, -124); }); it('58', () => { const calculator = new SmartCalculator(10); const value = calculator .multiply(2) .add(89); assert.equal(value, 109); }); it('59', () => { const calculator = new SmartCalculator(5); const value = calculator .add(57) .subtract(93) .subtract(70) .add(88); assert.equal(value, -13); }); it('60', () => { const calculator = new SmartCalculator(7); const value = calculator .subtract(43) .subtract(43) .multiply(1) .subtract(60) .add(8) .subtract(28); assert.equal(value, -159); }); it('61', () => { const calculator = new SmartCalculator(5); const value = calculator .pow(2) .pow(2) .multiply(1) .pow(2) .add(75) .pow(1) .multiply(1) .pow(1) .subtract(89) .multiply(2); assert.equal(value, 522); }); it('62', () => { const calculator = new SmartCalculator(9); const value = calculator .multiply(1) .pow(1) .subtract(12) .multiply(1) .pow(2) .multiply(2); assert.equal(value, -15); }); it('63', () => { const calculator = new SmartCalculator(6); const value = calculator .add(18) .add(34); assert.equal(value, 58); }); it('64', () => { const calculator = new SmartCalculator(1); const value = calculator .multiply(2); assert.equal(value, 2); }); it('65', () => { const calculator = new SmartCalculator(3); const value = calculator .multiply(1) .subtract(29) .multiply(2); assert.equal(value, -55); }); it('66', () => { const calculator = new SmartCalculator(2); const value = calculator .multiply(1) .subtract(67) .subtract(11) .add(61) .multiply(1) .multiply(1) .pow(2) .subtract(60); assert.equal(value, -75); }); it('67', () => { const calculator = new SmartCalculator(7); const value = calculator .add(24) .add(2) .multiply(1); assert.equal(value, 33); }); it('68', () => { const calculator = new SmartCalculator(3); const value = calculator .multiply(1) .add(92) .multiply(1) .pow(2) .add(25) .subtract(90) .multiply(2) .pow(2); assert.equal(value, -240); }); it('69', () => { const calculator = new SmartCalculator(2); const value = calculator .multiply(1) .pow(2) .multiply(2) .pow(1) .multiply(2) .subtract(97) .subtract(52) .pow(1); assert.equal(value, -141); }); it('70', () => { const calculator = new SmartCalculator(10); const value = calculator .pow(2) .multiply(2) .subtract(83) .multiply(1) .pow(2) .add(36); assert.equal(value, 153); }); it('71', () => { const calculator = new SmartCalculator(4); const value = calculator .subtract(84) .subtract(88); assert.equal(value, -168); }); it('72', () => { const calculator = new SmartCalculator(8); const value = calculator .add(93) .add(15) .add(98) .add(92) .multiply(2) .add(93) .add(67) .multiply(2) .subtract(72); assert.equal(value, 553); }); it('73', () => { const calculator = new SmartCalculator(2); const value = calculator .pow(2) .pow(2) .multiply(1) .multiply(2) .pow(1) .add(7) .multiply(1) .subtract(74) .pow(1) .pow(1); assert.equal(value, -35); }); it('74', () => { const calculator = new SmartCalculator(9); const value = calculator .subtract(18) .multiply(2) .subtract(97) .multiply(1) .subtract(62); assert.equal(value, -186); }); it('75', () => { const calculator = new SmartCalculator(1); const value = calculator .subtract(10) .multiply(1) .multiply(2); assert.equal(value, -19); }); it('76', () => { const calculator = new SmartCalculator(2); const value = calculator .pow(2) .subtract(31) .pow(1) .multiply(2) .add(48) .multiply(2) .pow(1) .subtract(42); assert.equal(value, -4); }); it('77', () => { const calculator = new SmartCalculator(6); const value = calculator .subtract(20) .subtract(83) .multiply(1) .pow(2) .pow(2) .subtract(10) .add(96) .subtract(75) .add(49) .pow(2); assert.equal(value, 2315); }); it('78', () => { const calculator = new SmartCalculator(3); const value = calculator .pow(2) .add(20) .subtract(76) .subtract(66) .multiply(1) .pow(1) .pow(1) .multiply(1) .multiply(2) .add(56); assert.equal(value, -123); }); it('79', () => { const calculator = new SmartCalculator(9); const value = calculator .pow(1) .add(100) .pow(1) .subtract(75) .multiply(2) .pow(1) .multiply(2) .subtract(50) .subtract(23) .multiply(1); assert.equal(value, -264); }); it('80', () => { const calculator = new SmartCalculator(8); const value = calculator .pow(1) .subtract(36) .add(84) .add(99) .add(71); assert.equal(value, 226); }); it('81', () => { const calculator = new SmartCalculator(2); const value = calculator .pow(1) .subtract(6) .multiply(1); assert.equal(value, -4); }); it('82', () => { const calculator = new SmartCalculator(8); const value = calculator .pow(2) .subtract(7) .pow(2) .multiply(1) .subtract(57) .multiply(1) .pow(1) .multiply(1); assert.equal(value, -42); }); it('83', () => { const calculator = new SmartCalculator(9); const value = calculator .pow(1) .subtract(70); assert.equal(value, -61); }); it('84', () => { const calculator = new SmartCalculator(10); const value = calculator .pow(1) .pow(2); assert.equal(value, 10); }); it('85', () => { const calculator = new SmartCalculator(8); const value = calculator .pow(1) .pow(1); assert.equal(value, 8); }); it('86', () => { const calculator = new SmartCalculator(6); const value = calculator .subtract(52) .add(53) .pow(2) .add(52) .subtract(64) .add(84); assert.equal(value, 2835); }); it('87', () => { const calculator = new SmartCalculator(9); const value = calculator .pow(2) .pow(2) .subtract(90) .multiply(1) .pow(2) .multiply(1); assert.equal(value, 6471); }); it('88', () => { const calculator = new SmartCalculator(10); const value = calculator .multiply(2) .subtract(38) .add(84) .multiply(1) .subtract(96) .multiply(1); assert.equal(value, -30); }); it('89', () => { const calculator = new SmartCalculator(7); const value = calculator .pow(1) .pow(1) .multiply(1) .multiply(2) .subtract(76) .subtract(90); assert.equal(value, -152); }); it('90', () => { const calculator = new SmartCalculator(8); const value = calculator .add(37) .pow(2) .pow(1) .subtract(1) .multiply(2) .pow(1) .subtract(4) .subtract(98); assert.equal(value, 1273); }); it('91', () => { const calculator = new SmartCalculator(5); const value = calculator .multiply(2) .subtract(40) .add(58) .pow(2) .pow(1) .subtract(48); assert.equal(value, 3286); }); it('92', () => { const calculator = new SmartCalculator(9); const value = calculator .add(2) .multiply(1) .multiply(1) .multiply(2) .multiply(2) .add(90); assert.equal(value, 107); }); it('94', () => { const calculator = new SmartCalculator(10); const value = calculator .multiply(2) .multiply(2) .subtract(91) .multiply(2) .pow(2) .multiply(1) .pow(2); assert.equal(value, -324); }); it('95', () => { const calculator = new SmartCalculator(2); const value = calculator .subtract(93) .multiply(1) .pow(1) .subtract(54) .subtract(21) .add(93) .pow(1); assert.equal(value, -73); }); it('96', () => { const calculator = new SmartCalculator(4); const value = calculator .add(34) .pow(1) .pow(1); assert.equal(value, 38); }); it('97', () => { const calculator = new SmartCalculator(8); const value = calculator .add(74) .multiply(1) .pow(2) .subtract(65) .multiply(2) .subtract(31) .pow(2) .add(57) .pow(1) .subtract(39); assert.equal(value, -991); }); it('98', () => { const calculator = new SmartCalculator(8); const value = calculator .pow(2) .subtract(59) .multiply(1) .pow(2) .multiply(1) .subtract(34) .subtract(81) .add(4) .add(18) .pow(1); assert.equal(value, -88); }); it('99', () => { const calculator = new SmartCalculator(2); const value = calculator .multiply(1) .multiply(2) .add(25) .pow(2); assert.equal(value, 629); }); it('100', () => { const calculator = new SmartCalculator(3); const value = calculator .pow(1) .pow(1) .multiply(2) .subtract(58) .subtract(33) .multiply(1); assert.equal(value, -85); }); it('101', () => { const calculator = new SmartCalculator(8); const value = calculator .multiply(2) .add(96) .pow(1) .pow(1) .multiply(1); assert.equal(value, 112); }); it('102', () => { const calculator = new SmartCalculator(4); const value = calculator .subtract(31) .add(37) .add(45); assert.equal(value, 55); }); it('103', () => { const calculator = new SmartCalculator(5); const value = calculator .pow(1) .pow(1); assert.equal(value, 5); }); it('104', () => { const calculator = new SmartCalculator(9); const value = calculator .multiply(1); assert.equal(value, 9); }); it('105', () => { const calculator = new SmartCalculator(3); const value = calculator .add(40) .multiply(2) .add(85); assert.equal(value, 168); }); it('106', () => { const calculator = new SmartCalculator(10); const value = calculator .add(40) .subtract(47) .add(68) .subtract(96) .add(64) .multiply(1) .subtract(17) .multiply(1); assert.equal(value, 22); }); it('107', () => { const calculator = new SmartCalculator(4); const value = calculator .multiply(1) .subtract(39) .multiply(2); assert.equal(value, -74); }); it('109', () => { const calculator = new SmartCalculator(2); const value = calculator .pow(2) .add(97) .add(81) .subtract(54) .add(9) .multiply(1) .pow(2) .pow(1); assert.equal(value, 137); }); it('110', () => { const calculator = new SmartCalculator(3); const value = calculator .add(3) .add(18) .add(85) .multiply(2) .subtract(24) .pow(1) .pow(2) .pow(2) .subtract(52); assert.equal(value, 118); }); it('111', () => { const calculator = new SmartCalculator(7); const value = calculator .multiply(2) .multiply(2) .pow(2) .pow(1) .add(98) .add(76) .subtract(48); assert.equal(value, 182); }); it('112', () => { const calculator = new SmartCalculator(4); const value = calculator .subtract(58) .multiply(1) .add(1) .multiply(1) .multiply(2) .pow(1) .pow(1) .multiply(1) .subtract(48) .subtract(55); assert.equal(value, -155); }); it('113', () => { const calculator = new SmartCalculator(4); const value = calculator .subtract(89) .subtract(78); assert.equal(value, -163); }); it('114', () => { const calculator = new SmartCalculator(3); const value = calculator .multiply(2) .multiply(2) .add(18) .pow(1) .multiply(2) .subtract(3) .subtract(86) .pow(1); assert.equal(value, -41); }); it('115', () => { const calculator = new SmartCalculator(2); const value = calculator .multiply(2) .subtract(4) .subtract(88) .add(17) .pow(1) .subtract(19) .subtract(50) .subtract(61) .subtract(65); assert.equal(value, -266); }); it('116', () => { const calculator = new SmartCalculator(7); const value = calculator .subtract(67) .add(79) .subtract(7) .multiply(1) .multiply(1) .multiply(2) .subtract(89); assert.equal(value, -84); }); it('117', () => { const calculator = new SmartCalculator(4); const value = calculator .subtract(36) .multiply(1) .add(16) .multiply(2) .add(80); assert.equal(value, 80); }); it('118', () => { const calculator = new SmartCalculator(9); const value = calculator .add(92) .subtract(39) .multiply(1) .pow(2) .pow(1) .pow(1) .pow(2) .add(71) .subtract(50) .multiply(2); assert.equal(value, 33); }); it('119', () => { const calculator = new SmartCalculator(4); const value = calculator .add(96) .subtract(22) .pow(2) .multiply(2) .multiply(2) .add(4) .add(20) .add(99); assert.equal(value, -1713); }); it('120', () => { const calculator = new SmartCalculator(6); const value = calculator .add(97) .subtract(3) .add(22) .subtract(25) .pow(2) .pow(2); assert.equal(value, -390503); }); it('121', () => { const calculator = new SmartCalculator(4); const value = calculator .pow(1) .multiply(1) .multiply(2) .pow(1) .add(27) .multiply(1) .multiply(1); assert.equal(value, 35); }); it('122', () => { const calculator = new SmartCalculator(1); const value = calculator .subtract(2) .multiply(2) .pow(1) .multiply(2) .add(88) .pow(2) .subtract(21) .subtract(38); assert.equal(value, 7678); }); it('123', () => { const calculator = new SmartCalculator(6); const value = calculator .pow(2) .multiply(1) .subtract(22); assert.equal(value, 14); }); it('124', () => { const calculator = new SmartCalculator(3); const value = calculator .pow(1) .add(27) .subtract(14) .subtract(24) .pow(2) .add(3) .subtract(48) .multiply(2) .add(58) .pow(1); assert.equal(value, -595); }); it('125', () => { const calculator = new SmartCalculator(4); const value = calculator .add(65) .add(87) .add(94) .subtract(20) .pow(1) .pow(1) .subtract(56); assert.equal(value, 174); }); it('126', () => { const calculator = new SmartCalculator(2); const value = calculator .add(63) .subtract(19) .add(41) .pow(1) .add(44) .subtract(37) .multiply(1) .multiply(1) .subtract(24); assert.equal(value, 70); }); it('127', () => { const calculator = new SmartCalculator(4); const value = calculator .add(96) .add(36); assert.equal(value, 136); }); it('128', () => { const calculator = new SmartCalculator(4); const value = calculator .pow(1); assert.equal(value, 4); }); it('129', () => { const calculator = new SmartCalculator(6); const value = calculator .multiply(1) .subtract(93); assert.equal(value, -87); }); it('130', () => { const calculator = new SmartCalculator(8); const value = calculator .multiply(1) .subtract(64); assert.equal(value, -56); }); it('131', () => { const calculator = new SmartCalculator(1); const value = calculator .subtract(67) .add(59) .multiply(2); assert.equal(value, 52); }); it('132', () => { const calculator = new SmartCalculator(8); const value = calculator .multiply(2) .pow(2) .multiply(2) .subtract(52) .pow(1) .pow(2) .add(9) .subtract(62) .subtract(82) .multiply(1); assert.equal(value, -123); }); it('133', () => { const calculator = new SmartCalculator(8); const value = calculator .pow(2); assert.equal(value, 64); }); it('134', () => { const calculator = new SmartCalculator(2); const value = calculator .subtract(95) .multiply(2) .subtract(81); assert.equal(value, -269); }); it('135', () => { const calculator = new SmartCalculator(10); const value = calculator .multiply(2) .subtract(26) .add(75) .add(84) .multiply(2) .multiply(1) .pow(2) .subtract(84) .multiply(2) .subtract(43); assert.equal(value, 26); }); it('136', () => { const calculator = new SmartCalculator(8); const value = calculator .multiply(2) .multiply(1) .add(32) .pow(1) .add(55) .multiply(2) .subtract(96); assert.equal(value, 62); }); it('137', () => { const calculator = new SmartCalculator(10); const value = calculator .add(43) .multiply(1) .pow(1) .subtract(5) .add(31) .multiply(1) .add(59) .add(21) .subtract(48); assert.equal(value, 111); }); it('138', () => { const calculator = new SmartCalculator(1); const value = calculator .add(38); assert.equal(value, 39); }); it('139', () => { const calculator = new SmartCalculator(7); const value = calculator .multiply(2) .subtract(26) .pow(1) .add(78) .subtract(81) .multiply(1) .pow(2); assert.equal(value, -15); }); it('140', () => { const calculator = new SmartCalculator(10); const value = calculator .add(73) .multiply(1) .multiply(2) .pow(1) .pow(2) .multiply(1); assert.equal(value, 156); }); it('141', () => { const calculator = new SmartCalculator(10); const value = calculator .subtract(8) .subtract(69); assert.equal(value, -67); }); it('142', () => { const calculator = new SmartCalculator(7); const value = calculator .add(69) .multiply(2) .multiply(2) .multiply(2) .pow(2) .subtract(28) .subtract(78) .pow(2); assert.equal(value, -5001); }); it('143', () => { const calculator = new SmartCalculator(3); const value = calculator .multiply(2) .multiply(2) .subtract(69) .pow(1) .subtract(55) .subtract(92) .subtract(11); assert.equal(value, -215); }); it('144', () => { const calculator = new SmartCalculator(5); const value = calculator .multiply(1) .pow(1) .subtract(60) .subtract(55); assert.equal(value, -110); }); it('145', () => { const calculator = new SmartCalculator(3); const value = calculator .multiply(1) .add(40) .pow(2) .subtract(20); assert.equal(value, 1583); }); it('146', () => { const calculator = new SmartCalculator(4); const value = calculator .subtract(7) .multiply(2) .multiply(1); assert.equal(value, -10); }); it('147', () => { const calculator = new SmartCalculator(8); const value = calculator .subtract(93) .multiply(1) .pow(1) .subtract(94) .add(30); assert.equal(value, -149); }); it('148', () => { const calculator = new SmartCalculator(8); const value = calculator .subtract(89) .multiply(2) .multiply(1) .multiply(1) .add(50) .subtract(47) .pow(1); assert.equal(value, -167); }); it('149', () => { const calculator = new SmartCalculator(9); const value = calculator .subtract(42) .subtract(83) .multiply(2) .add(27) .pow(1) .add(8); assert.equal(value, -164); }); it('150', () => { const calculator = new SmartCalculator(5); const value = calculator .subtract(61) .add(88) .subtract(86); assert.equal(value, -54); }); it('151', () => { const calculator = new SmartCalculator(8); const value = calculator .multiply(1) .add(99); assert.equal(value, 107); }); it('152', () => { const calculator = new SmartCalculator(2); const value = calculator .multiply(1) .subtract(67) .multiply(1) .add(8) .multiply(1) .subtract(28) .multiply(1) .subtract(15); assert.equal(value, -100); }); it('153', () => { const calculator = new SmartCalculator(1); const value = calculator .pow(1) .add(97) .subtract(27) .add(38) .subtract(52) .subtract(58) .add(8) .subtract(55); assert.equal(value, -48); }); it('154', () => { const calculator = new SmartCalculator(10); const value = calculator .pow(1) .multiply(2) .multiply(1) .subtract(89) .subtract(18) .pow(2) .multiply(1) .multiply(2) .subtract(64) .multiply(1); assert.equal(value, -781); }); it('155', () => { const calculator = new SmartCalculator(8); const value = calculator .add(36) .multiply(2) .add(33) .add(49); assert.equal(value, 162); }); it('156', () => { const calculator = new SmartCalculator(3); const value = calculator .add(49) .multiply(1) .add(28) .multiply(1) .subtract(46); assert.equal(value, 34); }); it('157', () => { const calculator = new SmartCalculator(4); const value = calculator .subtract(28) .subtract(21) .pow(2) .multiply(1) .pow(2); assert.equal(value, -465); }); it('158', () => { const calculator = new SmartCalculator(10); const value = calculator .add(99) .add(45) .add(65); assert.equal(value, 219); }); it('159', () => { const calculator = new SmartCalculator(4); const value = calculator .add(41) .subtract(62) .subtract(93) .multiply(1) .add(55) .add(61) .subtract(40); assert.equal(value, -34); }); it('160', () => { const calculator = new SmartCalculator(10); const value = calculator .subtract(41) .add(58) .multiply(2) .add(58) .subtract(61) .multiply(2); assert.equal(value, 21); }); it('161', () => { const calculator = new SmartCalculator(3); const value = calculator .multiply(1) .subtract(74) .pow(1) .add(6); assert.equal(value, -65); }); it('162', () => { const calculator = new SmartCalculator(4); const value = calculator .add(47) .subtract(4) .pow(2) .add(55) .add(39) .subtract(86) .multiply(1); assert.equal(value, 43); }); it('163', () => { const calculator = new SmartCalculator(3); const value = calculator .subtract(57); assert.equal(value, -54); }); it('164', () => { const calculator = new SmartCalculator(10); const value = calculator .add(100) .pow(1) .add(82) .multiply(2) .pow(2) .add(15) .subtract(24); assert.equal(value, 429); }); it('165', () => { const calculator = new SmartCalculator(6); const value = calculator .subtract(34) .multiply(1) .subtract(36) .multiply(1) .subtract(65); assert.equal(value, -129); }); it('166', () => { const calculator = new SmartCalculator(7); const value = calculator .subtract(45) .subtract(44) .pow(1) .add(4); assert.equal(value, -78); }); it('167', () => { const calculator = new SmartCalculator(2); const value = calculator .pow(1) .multiply(2) .subtract(47) .add(89) .subtract(40) .pow(1) .add(15); assert.equal(value, 21); }); it('168', () => { const calculator = new SmartCalculator(5); const value = calculator .multiply(2) .add(60) .subtract(72) .multiply(1) .multiply(1) .subtract(40) .multiply(1); assert.equal(value, -42); }); it('169', () => { const calculator = new SmartCalculator(9); const value = calculator .subtract(25) .add(73); assert.equal(value, 57); }); it('170', () => { const calculator = new SmartCalculator(7); const value = calculator .pow(1) .add(57) .subtract(34) .add(80); assert.equal(value, 110); }); it('171', () => { const calculator = new SmartCalculator(5); const value = calculator .multiply(2) .pow(2) .add(25) .multiply(1) .pow(1); assert.equal(value, 45); }); it('172', () => { const calculator = new SmartCalculator(10); const value = calculator .add(61) .multiply(2); assert.equal(value, 132); }); it('173', () => { const calculator = new SmartCalculator(9); const value = calculator .add(26); assert.equal(value, 35); }); it('174', () => { const calculator = new SmartCalculator(3); const value = calculator .subtract(57) .multiply(2) .subtract(46) .subtract(1) .pow(1) .add(32) .add(41) .pow(1); assert.equal(value, -85); }); it('175', () => { const calculator = new SmartCalculator(6); const value = calculator .multiply(2) .multiply(1) .pow(1) .add(18) .add(4); assert.equal(value, 34); }); it('176', () => { const calculator = new SmartCalculator(8); const value = calculator .pow(1) .subtract(83); assert.equal(value, -75); }); it('177', () => { const calculator = new SmartCalculator(5); const value = calculator .subtract(80) .pow(1) .multiply(1) .subtract(66) .pow(2) .multiply(1) .multiply(2) .subtract(91) .add(16) .multiply(2); assert.equal(value, -8846); }); it('178', () => { const calculator = new SmartCalculator(1); const value = calculator .pow(1); assert.equal(value, 1); }); it('179', () => { const calculator = new SmartCalculator(9); const value = calculator .subtract(70) .multiply(2); assert.equal(value, -131); }); it('180', () => { const calculator = new SmartCalculator(1); const value = calculator .pow(1) .add(65) .pow(1) .add(7) .pow(1) .pow(1) .subtract(26); assert.equal(value, 47); }); it('181', () => { const calculator = new SmartCalculator(7); const value = calculator .subtract(38) .multiply(1); assert.equal(value, -31); }); it('182', () => { const calculator = new SmartCalculator(5); const value = calculator .subtract(81) .pow(2) .multiply(2) .multiply(2) .pow(1) .add(37) .pow(2) .add(59) .multiply(1) .multiply(1); assert.equal(value, -24811); }); it('183', () => { const calculator = new SmartCalculator(8); const value = calculator .pow(1) .multiply(1) .subtract(52) .subtract(66); assert.equal(value, -110); }); it('184', () => { const calculator = new SmartCalculator(6); const value = calculator .multiply(1) .pow(2) .multiply(1) .subtract(3) .subtract(7) .multiply(2) .pow(1) .add(15) .multiply(2); assert.equal(value, 19); }); it('185', () => { const calculator = new SmartCalculator(10); const value = calculator .pow(2); assert.equal(value, 100); }); it('186', () => { const calculator = new SmartCalculator(10); const value = calculator .subtract(55) .multiply(2) .add(32) .pow(2) .subtract(90) .subtract(94) .multiply(1) .multiply(2) .subtract(11) .pow(1); assert.equal(value, 635); }); it('187', () => { const calculator = new SmartCalculator(4); const value = calculator .multiply(1) .add(64) .subtract(60) .subtract(74) .add(92) .subtract(71) .pow(2); assert.equal(value, -5015); }); it('188', () => { const calculator = new SmartCalculator(3); const value = calculator .pow(2) .subtract(39) .subtract(46) .subtract(96) .subtract(80) .subtract(32) .subtract(21) .add(4); assert.equal(value, -301); }); it('189', () => { const calculator = new SmartCalculator(3); const value = calculator .subtract(92) .pow(2) .multiply(1); assert.equal(value, -8461); }); it('190', () => { const calculator = new SmartCalculator(1); const value = calculator .multiply(2) .pow(1); assert.equal(value, 2); }); it('191', () => { const calculator = new SmartCalculator(9); const value = calculator .subtract(55); assert.equal(value, -46); }); it('192', () => { const calculator = new SmartCalculator(3); const value = calculator .multiply(2) .pow(1); assert.equal(value, 6); }); it('193', () => { const calculator = new SmartCalculator(10); const value = calculator .add(19) .pow(1) .add(53) .add(52) .add(87) .subtract(9) .subtract(54) .add(33) .add(17) .pow(2); assert.equal(value, 480); }); it('194', () => { const calculator = new SmartCalculator(2); const value = calculator .add(93) .add(78) .multiply(2); assert.equal(value, 251); }); it('195', () => { const calculator = new SmartCalculator(1); const value = calculator .multiply(2) .add(96); assert.equal(value, 98); }); it('196', () => { const calculator = new SmartCalculator(4); const value = calculator .pow(2) .multiply(1) .subtract(19) .add(70) .subtract(50) .multiply(1) .pow(2) .subtract(20); assert.equal(value, -3); }); it('197', () => { const calculator = new SmartCalculator(4); const value = calculator .add(18) .multiply(1) .pow(1); assert.equal(value, 22); }); it('198', () => { const calculator = new SmartCalculator(3); const value = calculator .multiply(2) .pow(2) .subtract(30); assert.equal(value, -18); }); it('199', () => { const calculator = new SmartCalculator(9); const value = calculator .subtract(49) .pow(1) .multiply(2) .add(11); assert.equal(value, -78); }); it('200', () => { const calculator = new SmartCalculator(10); const value = calculator .subtract(55) .subtract(12) .pow(2) .pow(2) .add(21); assert.equal(value, -20760); }); it('201', () => { const calculator = new SmartCalculator(4); const value = calculator .pow(1) .add(78) .add(63) .subtract(89) .multiply(1) .add(68) .subtract(92) .add(27); assert.equal(value, 59); }); it('202', () => { const calculator = new SmartCalculator(9); const value = calculator .add(38) .multiply(2) .subtract(50) .pow(1); assert.equal(value, 35); }); it('203', () => { const calculator = new SmartCalculator(8); const value = calculator .add(48) .add(59) .multiply(1) .add(91) .multiply(2) .add(66) .add(97) .add(93); assert.equal(value, 553); }); it('204', () => { const calculator = new SmartCalculator(5); const value = calculator .add(80) .subtract(99) .subtract(38) .multiply(2) .pow(1); assert.equal(value, -90); }); it('205', () => { const calculator = new SmartCalculator(3); const value = calculator .subtract(35); assert.equal(value, -32); }); it('206', () => { const calculator = new SmartCalculator(3); const value = calculator .pow(2) .add(47) .add(84); assert.equal(value, 140); }); it('207', () => { const calculator = new SmartCalculator(4); const value = calculator .pow(2) .pow(2) .subtract(37) .add(77) .add(47); assert.equal(value, 343); }); it('208', () => { const calculator = new SmartCalculator(8); const value = calculator .subtract(72) .subtract(79) .add(33); assert.equal(value, -110); }); it('209', () => { const calculator = new SmartCalculator(3); const value = calculator .add(90) .subtract(24); assert.equal(value, 69); }); it('210', () => { const calculator = new SmartCalculator(6); const value = calculator .add(62) .pow(1) .multiply(2); assert.equal(value, 130); }); it('211', () => { const calculator = new SmartCalculator(9); const value = calculator .multiply(1) .subtract(54) .subtract(76) .add(68) .pow(1) .pow(1) .multiply(1) .add(35) .multiply(1) .subtract(25); assert.equal(value, -43); }); it('212', () => { const calculator = new SmartCalculator(2); const value = calculator .multiply(2) .add(68); assert.equal(value, 72); }); it('213', () => { const calculator = new SmartCalculator(1); const value = calculator .add(46); assert.equal(value, 47); }); it('214', () => { const calculator = new SmartCalculator(9); const value = calculator .pow(2) .multiply(1) .add(52) .multiply(1) .multiply(1) .subtract(61) .pow(1) .subtract(31); assert.equal(value, 41); }); it('215', () => { const calculator = new SmartCalculator(3); const value = calculator .multiply(2) .subtract(94) .add(9); assert.equal(value, -79); }); it('216', () => { const calculator = new SmartCalculator(8); const value = calculator .add(31); assert.equal(value, 39); }); it('217', () => { const calculator = new SmartCalculator(9); const value = calculator .add(3) .add(94) .subtract(13); assert.equal(value, 93); }); it('218', () => { const calculator = new SmartCalculator(9); const value = calculator .multiply(2) .multiply(1) .subtract(25); assert.equal(value, -7); }); it('219', () => { const calculator = new SmartCalculator(9); const value = calculator .subtract(25) .subtract(71) .add(65) .subtract(45); assert.equal(value, -67); }); it('220', () => { const calculator = new SmartCalculator(6); const value = calculator .multiply(1); assert.equal(value, 6); }); it('221', () => { const calculator = new SmartCalculator(8); const value = calculator .add(53) .pow(1) .add(22) .subtract(42) .multiply(1) .multiply(2); assert.equal(value, -1); }); it('222', () => { const calculator = new SmartCalculator(6); const value = calculator .multiply(2) .pow(1) .pow(1) .subtract(99) .subtract(93) .pow(1); assert.equal(value, -180); }); it('223', () => { const calculator = new SmartCalculator(1); const value = calculator .pow(2); assert.equal(value, 1); }); it('224', () => { const calculator = new SmartCalculator(2); const value = calculator .pow(1) .pow(1) .pow(1) .subtract(93) .multiply(2) .multiply(2) .add(90) .subtract(13); assert.equal(value, -293); }); it('225', () => { const calculator = new SmartCalculator(7); const value = calculator .multiply(1) .pow(1) .pow(1) .pow(2) .add(65) .pow(1); assert.equal(value, 72); }); it('226', () => { const calculator = new SmartCalculator(8); const value = calculator .pow(2) .add(93) .subtract(89) .multiply(2) .pow(2) .multiply(2) .multiply(2) .multiply(2) .multiply(1) .pow(2); assert.equal(value, -2691); }); it('227', () => { const calculator = new SmartCalculator(3); const value = calculator .subtract(47) .subtract(18) .multiply(1) .pow(1); assert.equal(value, -62); }); it('228', () => { const calculator = new SmartCalculator(1); const value = calculator .add(40) .pow(2) .multiply(2) .multiply(1) .subtract(37) .add(54) .pow(2) .multiply(2) .add(16); assert.equal(value, 9012); }); it('229', () => { const calculator = new SmartCalculator(3); const value = calculator .pow(2) .add(49) .add(55) .subtract(80) .multiply(2) .pow(1) .pow(1) .subtract(98) .subtract(90) .multiply(1); assert.equal(value, -235); }); it('230', () => { const calculator = new SmartCalculator(3); const value = calculator .multiply(2) .multiply(2) .pow(2) .add(42) .subtract(59) .multiply(1) .pow(1) .subtract(22) .pow(1); assert.equal(value, -15); }); it('231', () => { const calculator = new SmartCalculator(8); const value = calculator .pow(1) .multiply(1) .add(92) .multiply(2) .subtract(34) .multiply(2) .subtract(71); assert.equal(value, 53); }); it('232', () => { const calculator = new SmartCalculator(3); const value = calculator .subtract(100) .add(37) .multiply(2) .subtract(65) .multiply(2) .subtract(55) .pow(1) .add(35); assert.equal(value, -173); }); it('233', () => { const calculator = new SmartCalculator(1); const value = calculator .multiply(2) .pow(2) .subtract(6) .multiply(1) .add(85) .multiply(1) .multiply(1); assert.equal(value, 83); }); it('234', () => { const calculator = new SmartCalculator(4); const value = calculator .subtract(24) .pow(2) .subtract(59) .subtract(89) .multiply(1); assert.equal(value, -720); }); it('235', () => { const calculator = new SmartCalculator(1); const value = calculator .subtract(34) .subtract(64) .multiply(2) .subtract(49) .subtract(18) .subtract(88) .pow(1) .add(91); assert.equal(value, -225); }); it('236', () => { const calculator = new SmartCalculator(6); const value = calculator .pow(1) .add(52) .subtract(8) .subtract(33) .multiply(1) .pow(1); assert.equal(value, 17); }); it('237', () => { const calculator = new SmartCalculator(3); const value = calculator .pow(1); assert.equal(value, 3); }); it('238', () => { const calculator = new SmartCalculator(5); const value = calculator .add(4); assert.equal(value, 9); }); it('239', () => { const calculator = new SmartCalculator(8); const value = calculator .multiply(2) .multiply(1) .subtract(67) .add(6) .add(11) .pow(2); assert.equal(value, 76); }); it('240', () => { const calculator = new SmartCalculator(10); const value = calculator .pow(1) .subtract(79) .multiply(2) .subtract(99) .pow(2) .add(95) .add(79) .multiply(2) .add(70) .multiply(2); assert.equal(value, -9556); }); it('241', () => { const calculator = new SmartCalculator(4); const value = calculator .add(55) .pow(2); assert.equal(value, 3029); }); it('242', () => { const calculator = new SmartCalculator(9); const value = calculator .pow(1) .multiply(1); assert.equal(value, 9); }); it('243', () => { const calculator = new SmartCalculator(9); const value = calculator .add(71) .add(2) .add(63) .pow(1) .pow(1) .pow(2) .multiply(2) .add(24); assert.equal(value, 232); }); it('244', () => { const calculator = new SmartCalculator(8); const value = calculator .subtract(47) .pow(2) .add(31) .pow(2) .subtract(69) .subtract(49) .multiply(1) .multiply(1) .add(34) .pow(2); assert.equal(value, -202); }); it('245', () => { const calculator = new SmartCalculator(2); const value = calculator .add(86) .add(37) .add(78) .subtract(89) .subtract(33) .pow(1) .add(34); assert.equal(value, 115); }); it('246', () => { const calculator = new SmartCalculator(1); const value = calculator .subtract(6) .pow(2) .pow(1) .multiply(1) .subtract(6) .subtract(79) .multiply(1) .add(9) .multiply(2) .add(24); assert.equal(value, -78); }); it('247', () => { const calculator = new SmartCalculator(5); const value = calculator .subtract(87) .pow(1) .subtract(26) .pow(1) .pow(2); assert.equal(value, -108); }); it('248', () => { const calculator = new SmartCalculator(2); const value = calculator .add(35) .pow(2) .subtract(28) .add(39) .pow(2) .add(83) .add(11) .pow(1); assert.equal(value, 2814); }); it('249', () => { const calculator = new SmartCalculator(6); const value = calculator .multiply(2) .pow(2) .add(9) .subtract(70) .pow(2); assert.equal(value, -4867); }); it('250', () => { const calculator = new SmartCalculator(2); const value = calculator .pow(1) .add(95) .pow(2) .multiply(2) .multiply(1); assert.equal(value, 18052); }); it('251', () => { const calculator = new SmartCalculator(7); const value = calculator .add(3) .multiply(1) .add(66) .multiply(1) .add(7); assert.equal(value, 83); }); it('252', () => { const calculator = new SmartCalculator(1); const value = calculator .pow(2) .add(2) .add(10) .pow(1) .pow(1) .subtract(94) .pow(2); assert.equal(value, -8823); }); it('253', () => { const calculator = new SmartCalculator(6); const value = calculator .pow(1) .add(32) .add(64) .add(29) .multiply(2); assert.equal(value, 160); }); it('254', () => { const calculator = new SmartCalculator(8); const value = calculator .subtract(17) .pow(2) .pow(1) .subtract(30) .subtract(4); assert.equal(value, -315); }); it('255', () => { const calculator = new SmartCalculator(3); const value = calculator .subtract(25) .multiply(2) .subtract(32) .pow(2) .multiply(2) .pow(2) .add(21); assert.equal(value, -4122); }); it('256', () => { const calculator = new SmartCalculator(5); const value = calculator .subtract(22) .pow(2) .multiply(1) .add(65) .add(85) .multiply(2) .add(98) .multiply(1) .add(77) .pow(2); assert.equal(value, 5783); }); it('257', () => { const calculator = new SmartCalculator(2); const value = calculator .multiply(1) .add(67) .subtract(5) .add(77) .multiply(1) .subtract(11) .pow(2); assert.equal(value, 20); }); it('258', () => { const calculator = new SmartCalculator(6); const value = calculator .add(34) .pow(1) .pow(2); assert.equal(value, 40); }); it('259', () => { const calculator = new SmartCalculator(5); const value = calculator .pow(1) .pow(2) .add(37) .subtract(58) .multiply(1) .pow(2) .add(30) .subtract(38) .multiply(1) .subtract(93); assert.equal(value, -117); }); it('260', () => { const calculator = new SmartCalculator(8); const value = calculator .subtract(67) .subtract(88) .subtract(28) .pow(2) .multiply(1) .multiply(2); assert.equal(value, -1715); }); it('261', () => { const calculator = new SmartCalculator(10); const value = calculator .subtract(70) .add(23); assert.equal(value, -37); }); it('262', () => { const calculator = new SmartCalculator(1); const value = calculator .add(86) .pow(2); assert.equal(value, 7397); }); it('263', () => { const calculator = new SmartCalculator(3); const value = calculator .multiply(2) .subtract(84) .add(93) .multiply(1) .multiply(1) .subtract(28); assert.equal(value, -13); }); it('264', () => { const calculator = new SmartCalculator(4); const value = calculator .add(49) .multiply(2) .pow(1) .pow(2) .pow(2) .subtract(48) .subtract(1) .pow(1); assert.equal(value, 53); }); it('265', () => { const calculator = new SmartCalculator(9); const value = calculator .pow(2) .add(58); assert.equal(value, 139); }); it('267', () => { const calculator = new SmartCalculator(4); const value = calculator .pow(1) .add(75) .add(5); assert.equal(value, 84); }); it('269', () => { const calculator = new SmartCalculator(1); const value = calculator .multiply(2) .pow(2) .pow(2) .add(28) .subtract(86) .subtract(23) .add(35) .pow(2) .add(13); assert.equal(value, 1173); }); it('270', () => { const calculator = new SmartCalculator(7); const value = calculator .pow(1) .subtract(25) .subtract(40) .pow(1) .pow(2) .pow(2) .multiply(1) .subtract(9); assert.equal(value, -67); }); it('271', () => { const calculator = new SmartCalculator(9); const value = calculator .pow(2) .subtract(3); assert.equal(value, 78); }); it('272', () => { const calculator = new SmartCalculator(1); const value = calculator .pow(1) .subtract(97) .add(46) .pow(1) .subtract(5) .add(5); assert.equal(value, -50); }); it('273', () => { const calculator = new SmartCalculator(8); const value = calculator .pow(2) .add(4) .add(15) .add(29) .add(79) .add(8) .add(34) .add(9) .multiply(2); assert.equal(value, 251); }); it('274', () => { const calculator = new SmartCalculator(2); const value = calculator .add(44) .subtract(22); assert.equal(value, 24); }); it('275', () => { const calculator = new SmartCalculator(8); const value = calculator .multiply(1) .pow(1) .subtract(60) .pow(1) .pow(2) .add(50); assert.equal(value, -2); }); it('276', () => { const calculator = new SmartCalculator(7); const value = calculator .pow(2) .multiply(1) .multiply(1) .pow(1) .pow(2) .add(48) .multiply(1) .subtract(8) .add(26) .subtract(93); assert.equal(value, 22); }); it('277', () => { const calculator = new SmartCalculator(8); const value = calculator .pow(1) .pow(2) .pow(1); assert.equal(value, 8); }); it('278', () => { const calculator = new SmartCalculator(5); const value = calculator .subtract(43) .add(33); assert.equal(value, -5); }); it('279', () => { const calculator = new SmartCalculator(2); const value = calculator .add(80) .add(31); assert.equal(value, 113); }); it('280', () => { const calculator = new SmartCalculator(7); const value = calculator .add(61) .pow(1) .pow(1) .add(40) .pow(1) .pow(1) .add(54) .pow(1); assert.equal(value, 162); }); it('281', () => { const calculator = new SmartCalculator(3); const value = calculator .add(50) .pow(2); assert.equal(value, 2503); }); it('282', () => { const calculator = new SmartCalculator(6); const value = calculator .pow(1) .subtract(96) .add(51) .multiply(2) .subtract(81) .multiply(2) .add(42) .multiply(2); assert.equal(value, -66); }); it('283', () => { const calculator = new SmartCalculator(4); const value = calculator .subtract(30) .subtract(30) .add(98) .subtract(2) .subtract(80) .pow(1) .subtract(22) .multiply(1); assert.equal(value, -62); }); it('284', () => { const calculator = new SmartCalculator(1); const value = calculator .multiply(1) .pow(1) .add(31) .multiply(1) .subtract(51) .subtract(33) .multiply(2) .subtract(6) .multiply(2); assert.equal(value, -97); }); it('285', () => { const calculator = new SmartCalculator(1); const value = calculator .add(90) .subtract(38) .add(68) .multiply(1); assert.equal(value, 121); }); it('286', () => { const calculator = new SmartCalculator(3); const value = calculator .pow(1) .subtract(21) .multiply(2); assert.equal(value, -39); }); it('287', () => { const calculator = new SmartCalculator(3); const value = calculator .subtract(6); assert.equal(value, -3); }); it('288', () => { const calculator = new SmartCalculator(5); const value = calculator .pow(1) .multiply(1) .multiply(1) .multiply(1) .pow(2) .pow(1) .subtract(67) .multiply(1); assert.equal(value, -62); }); it('289', () => { const calculator = new SmartCalculator(6); const value = calculator .subtract(95) .add(58) .add(12) .pow(1) .subtract(14) .subtract(77) .add(87) .add(89) .add(27) .add(52); assert.equal(value, 145); }); it('290', () => { const calculator = new SmartCalculator(4); const value = calculator .pow(2) .multiply(2) .multiply(1) .add(87) .multiply(1) .subtract(41) .add(26) .add(3) .subtract(60); assert.equal(value, 47); }); it('291', () => { const calculator = new SmartCalculator(4); const value = calculator .add(9) .pow(2) .multiply(1) .pow(1) .add(58) .multiply(1) .subtract(54); assert.equal(value, 89); }); it('292', () => { const calculator = new SmartCalculator(4); const value = calculator .add(61) .add(51) .pow(2) .add(82) .pow(2) .add(60) .pow(2) .pow(1) .subtract(25) .pow(1); assert.equal(value, 12965); }); it('293', () => { const calculator = new SmartCalculator(4); const value = calculator .subtract(54) .add(72) .multiply(2); assert.equal(value, 94); }); it('294', () => { const calculator = new SmartCalculator(4); const value = calculator .add(53) .subtract(74) .pow(1) .pow(2); assert.equal(value, -17); }); it('295', () => { const calculator = new SmartCalculator(9); const value = calculator .pow(1) .multiply(1) .subtract(80) .multiply(2); assert.equal(value, -151); }); it('296', () => { const calculator = new SmartCalculator(5); const value = calculator .add(57) .add(49); assert.equal(value, 111); }); it('297', () => { const calculator = new SmartCalculator(5); const value = calculator .multiply(2) .add(92) .add(81) .subtract(71); assert.equal(value, 112); }); it('298', () => { const calculator = new SmartCalculator(3); const value = calculator .multiply(2) .subtract(60) .pow(2); assert.equal(value, -3594); }); it('299', () => { const calculator = new SmartCalculator(2); const value = calculator .subtract(28) .add(41) .multiply(2) .pow(2) .add(48) .add(15) .add(75); assert.equal(value, 276); }); it('300', () => { const calculator = new SmartCalculator(9); const value = calculator .multiply(2) .pow(2) .multiply(1); assert.equal(value, 36); }); it('301', () => { const calculator = new SmartCalculator(5); const value = calculator .multiply(2) .pow(2); assert.equal(value, 20); }); it('302', () => { const calculator = new SmartCalculator(4); const value = calculator .pow(1) .pow(1); assert.equal(value, 4); }); it('303', () => { const calculator = new SmartCalculator(9); const value = calculator .subtract(43) .add(21) .subtract(36) .subtract(6) .pow(1) .multiply(1) .subtract(74); assert.equal(value, -129); }); it('304', () => { const calculator = new SmartCalculator(1); const value = calculator .subtract(30) .add(59) .add(42); assert.equal(value, 72); }); it('305', () => { const calculator = new SmartCalculator(8); const value = calculator .subtract(84) .subtract(38) .pow(1) .add(38) .subtract(10) .add(27) .add(36) .add(70) .subtract(65) .add(92); assert.equal(value, 74); }); it('306', () => { const calculator = new SmartCalculator(7); const value = calculator .multiply(1) .multiply(2) .multiply(1) .add(52); assert.equal(value, 66); }); });
16.300324
47
0.491554
c5e2149e03678a4056197e1e24377545deadaa84
520
js
JavaScript
packages/translator/src/makeReplaceable.js
hoyeungw/Texting
223f80fd39a90f3ad417af94c67995b0bd76828b
[ "MIT" ]
null
null
null
packages/translator/src/makeReplaceable.js
hoyeungw/Texting
223f80fd39a90f3ad417af94c67995b0bd76828b
[ "MIT" ]
null
null
null
packages/translator/src/makeReplaceable.js
hoyeungw/Texting
223f80fd39a90f3ad417af94c67995b0bd76828b
[ "MIT" ]
null
null
null
import { sortKeysByLength } from '../utils/sortKeysByLength' export const makeReplaceable = function (dict) { if (this?.sort) sortKeysByLength(dict) Object.defineProperty( dict, Symbol.replace, { value(word, after) { for (let [curr, proj] of this) word = word.replace(curr, proj) return after ? after(word) : word }, configurable: true, enumerable: false }) return dict } export const MakeReplaceable = ({ sort = true } = {}) => makeReplaceable.bind({ sort })
27.368421
87
0.636538
c5e2260d2434937b694a2ca7eb92a8046549c1be
3,424
js
JavaScript
tests/api/v1/models/gifmodel.test.js
dave-ok/devc-teamwork-rest-api
879949455fb1d61b6e546bcfee41e1ff5fd9b63f
[ "MIT" ]
1
2020-08-15T20:24:22.000Z
2020-08-15T20:24:22.000Z
tests/api/v1/models/gifmodel.test.js
dave-ok/devc-teamwork-rest-api
879949455fb1d61b6e546bcfee41e1ff5fd9b63f
[ "MIT" ]
36
2019-11-06T04:29:30.000Z
2021-09-02T01:58:30.000Z
tests/api/v1/models/gifmodel.test.js
dave-ok/devc-teamwork-rest-api
879949455fb1d61b6e546bcfee41e1ff5fd9b63f
[ "MIT" ]
1
2019-11-27T01:20:27.000Z
2019-11-27T01:20:27.000Z
import { expect } from 'chai'; import Gif from '../../../../src/api/v1/models/gif.model'; import db from '../../../../src/api/db'; describe('Gif model', () => { let lastGifId; before(async () => { const result = await db.query(` insert into gifs(image_url, title, user_id) values('first gif content', 'title', 1) returning gif_id; `); lastGifId = result.rows[0].gif_id; await db.query(` insert into gif_comments(gif_id, comment, user_id) values(${lastGifId}, 'gif comment', 1); insert into gif_comments(gif_id, comment, user_id) values(${lastGifId}, 'gif comment 2', 1); `); }); describe('Static methods', () => { describe('when pkField is called', () => { it('should return "gifid"', () => { expect(Gif.pkfield()).to.be.equal('gif_id'); }); }); describe('when viewtable is called', () => { it('should return "gifs"', () => { expect(Gif.viewTable()).to.be.equal('vw_gifs'); }); }); describe('when modifyTable is called', () => { it('should return "gifs"', () => { expect(Gif.modifyTable()).to.be.equal('gifs'); }); }); describe('when modifyFields is called', () => { it('should return array of length 4', () => { expect(Gif.modifyFields()).to.be.an('array').with.length(4); }); }); describe('when getGif is called', () => { it('should return an object with array property comments of length 2', async () => { const gif = await Gif.getGif(lastGifId); expect(gif).to.have.property('comments').that.is.an('array').with.length(2); }); }); }); describe('Instance methods', () => { describe('when new gif is created', () => { let gif; beforeEach(() => { gif = new Gif(); gif.image_url = 'content'; gif.title = 'first gif'; gif.user_id = 1; }); it('should have all specifed fields', () => { expect(gif).to.haveOwnProperty('gif_id'); expect(gif).to.haveOwnProperty('image_url'); expect(gif).to.haveOwnProperty('title'); expect(gif).to.haveOwnProperty('user_id'); expect(gif).to.haveOwnProperty('flagged'); expect(gif).to.haveOwnProperty('created_on'); }); it('setting flagged field should be ignored', async () => { expect(await gif.flag()).to.be.false; expect(await gif.unflag()).to.be.false; }); describe('after record is created in DB and flag method is called', () => { it('should be flagged in DB and locally', async () => { await gif.save(); const success = await gif.flag(); const dbRec = await Gif.getbyId(gif.gif_id); expect(gif.flagged).to.be.true; expect(success).to.be.true; expect(dbRec.flagged).to.be.true; }); }); describe('after record is created in DB and unflag method is called', () => { it('should be unflagged in DB and locally', async () => { await gif.save(); const success = await gif.unflag(); const dbRec = await Gif.getbyId(gif.gif_id); expect(gif.flagged).to.be.false; expect(success).to.be.true; expect(dbRec.flagged).to.be.false; }); }); }); }); after(async () => { await db.query('delete from gifs'); }); });
31.703704
90
0.548189
c5e255c2f969d401387c633d6bf6f297905a3026
96
js
JavaScript
wrapper-compiled.js
Zoweb/SJQ
4e28ee5d94aafa4acb3e6c4ac39f476293021b4c
[ "MIT" ]
null
null
null
wrapper-compiled.js
Zoweb/SJQ
4e28ee5d94aafa4acb3e6c4ac39f476293021b4c
[ "MIT" ]
null
null
null
wrapper-compiled.js
Zoweb/SJQ
4e28ee5d94aafa4acb3e6c4ac39f476293021b4c
[ "MIT" ]
null
null
null
// SJQ - The tiny, simple jQuery-like API // (c) 2016 zoweb (function(){%output%}).call(window);
32
41
0.65625
c5e26bc495faf53a78d328d63e97aa2e32110a5d
5,536
js
JavaScript
src/app/main/documentation/material-ui-components/pages/Dividers.js
mliceaga/letmework4U-frontend2
10075fe38ffed50cca27106e5ea7a14aab3f5403
[ "MIT" ]
null
null
null
src/app/main/documentation/material-ui-components/pages/Dividers.js
mliceaga/letmework4U-frontend2
10075fe38ffed50cca27106e5ea7a14aab3f5403
[ "MIT" ]
null
null
null
src/app/main/documentation/material-ui-components/pages/Dividers.js
mliceaga/letmework4U-frontend2
10075fe38ffed50cca27106e5ea7a14aab3f5403
[ "MIT" ]
null
null
null
import React from 'react'; import {FuseExample, FuseHighlight, FusePageSimple} from '@fuse'; import {Button, Icon, Typography} from '@material-ui/core'; import {makeStyles} from '@material-ui/styles'; /* eslint import/no-webpack-loader-syntax: off */ /* eslint no-unused-vars: off */ /* eslint-disable jsx-a11y/accessible-emoji */ const useStyles = makeStyles(theme => ({ layoutRoot: { '& .description': { marginBottom: 16 } } })); function DividersDoc(props) { const classes = useStyles(); return ( <FusePageSimple classes={{ root: classes.layoutRoot }} header={ <div className="flex flex-1 items-center justify-between p-24"> <div className="flex flex-col"> <div className="flex items-center mb-16"> <Icon className="text-18" color="action">home</Icon> <Icon className="text-16" color="action">chevron_right</Icon> <Typography color="textSecondary">Documentation</Typography> <Icon className="text-16" color="action">chevron_right</Icon> <Typography color="textSecondary">Material UI Components</Typography> </div> <Typography variant="h6">Dividers</Typography> </div> <Button className="normal-case" variant="contained" component="a" href="https://material-ui.com/components/dividers" target="_blank" > <Icon className="mr-4">link</Icon> Reference </Button> </div> } content={ <div className="p-24 max-w-2xl"> <Typography className="text-44 mt-32 mb-8" component="h1">Dividers</Typography> <Typography className="description">A divider is a thin line that groups content in lists and layouts.</Typography> <Typography className="mb-16" component="div"><a href="https://material.io/design/components/dividers.html">Dividers</a> separate content into clear groups.</Typography> <Typography className="text-32 mt-32 mb-8" component="h2">List Dividers</Typography> <Typography className="mb-16" component="div">The divider renders as a <code>{`&lt;hr&gt;`}</code> by default. You can save rendering this DOM element by using the <code>{`divider`}</code> property on the <code>{`ListItem`}</code> component.</Typography> <Typography className="mb-16" component="div"><FuseExample className="my-24" iframe={false} component={require('app/main/documentation/material-ui-components/components/dividers/ListDividers.js').default} raw={require('!raw-loader!app/main/documentation/material-ui-components/components/dividers/ListDividers.js')} /></Typography> <Typography className="text-32 mt-32 mb-8" component="h2">HTML5 Specification</Typography> <Typography className="mb-16" component="div">We need to make sure the <code>{`Divider`}</code> is rendered as a <code>{`li`}</code> to match the HTML5 specification. The examples below show two ways of achieving this.</Typography> <Typography className="text-32 mt-32 mb-8" component="h2">Inset Dividers</Typography> <Typography className="mb-16" component="div"><FuseExample className="my-24" iframe={false} component={require('app/main/documentation/material-ui-components/components/dividers/InsetDividers.js').default} raw={require('!raw-loader!app/main/documentation/material-ui-components/components/dividers/InsetDividers.js')} /></Typography> <Typography className="text-32 mt-32 mb-8" component="h2">Subheader Dividers</Typography> <Typography className="mb-16" component="div"><FuseExample className="my-24" iframe={false} component={require('app/main/documentation/material-ui-components/components/dividers/SubheaderDividers.js').default} raw={require('!raw-loader!app/main/documentation/material-ui-components/components/dividers/SubheaderDividers.js')} /></Typography> <Typography className="text-32 mt-32 mb-8" component="h2">Middle Dividers</Typography> <Typography className="mb-16" component="div"><FuseExample className="my-24" iframe={false} component={require('app/main/documentation/material-ui-components/components/dividers/MiddleDividers.js').default} raw={require('!raw-loader!app/main/documentation/material-ui-components/components/dividers/MiddleDividers.js')} /></Typography> </div> } /> ); } export default DividersDoc;
55.919192
171
0.552023
c5e2f59f823fcf4107402612041f16991a167eff
6,412
js
JavaScript
src/index.js
meetingmaker/pdfwriter
1de0a8b2f45d4ee758fc60feeedc20513fe5b8d3
[ "MIT" ]
null
null
null
src/index.js
meetingmaker/pdfwriter
1de0a8b2f45d4ee758fc60feeedc20513fe5b8d3
[ "MIT" ]
5
2021-03-10T09:05:17.000Z
2022-02-27T00:17:39.000Z
src/index.js
ngager-group/ngager-pdfwriter
7096f440e133b12a4b1270afccc8f862d4688507
[ "MIT" ]
1
2022-03-16T04:00:12.000Z
2022-03-16T04:00:12.000Z
/* eslint-disabled: 1 */ /* eslint no-param-reassign: 0 */ /* eslint class-methods-use-this: 0 */ /* eslint new-parens: 0 */ /* eslint semi: ["error", "always"] */ // import jsPDF from 'jspdf'; // import _isNumber from 'lodash/isNumber'; import _replace from 'lodash/replace'; import _split from 'lodash/split'; function rgb2hex(str) { return '#' + str.split(',').map(s => (s.replace(/\D/g, '') | 0).toString(16)).map(s => s.length < 2 ? '0' + s : s).join(''); } function findBoldTag(str, open) { let i = 0; const normalText = str.substr(i, open - i); let boldText; i = open + 3; const close = str.indexOf('</b>', i); if (close > i) { boldText = str.substr(i, close - i); i = close + 3; } else { boldText = str.substr(i); i = str.length; } if (i < 0) { i = 0; } return { n: i, normalText, boldText }; } function findSpanTag(str, open) { // console.log('findSpanTag', str); let i = 0; const normalText = str.substr(i, open - i); const span = { text: '', font: 'n' }; const close = str.indexOf('</span>', open); if (close > open) { const spanHTML = str.substr(open, close + 6 - i); i = close + 6; const div = document.createElement('div'); div.innerHTML = spanHTML; if (div.firstChild && div.firstChild.style && div.firstChild.style !== undefined) { if (div.firstChild.style.color !== undefined) { span.color = rgb2hex(div.firstChild.style.color); } if (div.firstChild.style.fontWeight === 'bold') { span.font = 'b'; } } span.text = div.firstChild.innerText; } else { span.text = str.substr(i); i = str.length; } if (i < 0) { i = 0; } return { i, normalText, span }; } class Pdf { constructor(options = null) { this.host = 'https://nclong87.github.io'; this.path = '/pdfwriter'; this.data = []; this.options = options; } setHost(host) { this.host = host; } setPath(path) { this.path = path; } addPage(options) { this.data.push({ type: 'addPage', item: { options } }); } moveUp(value = 1) { this.data.push({ type: 'move', item: { direction: 'up', value } }); } moveDown(value = 1) { this.data.push({ type: 'move', item: { direction: 'down', value } }); } addIcon(icon, style = null, options = null) { this.data.push({ type: 'icon', item: { icon, style, options } }); } addImage(image, options = {}) { this.data.push({ type: 'image', item: { image, options } }); } addText(text, style = null, options = null) { let newContent = _replace(text, '<br/>', '<br>'); newContent = _replace(text, '<br></b>', '</b><br>'); _split(newContent, '<br>').forEach(text => { if (text.length === 0) { this.data.push({ type: 'text', item: { text: ' ', style, options } }); return; } const array = []; let max = 0; for (let i = 0; i < text.length; i++) { if (max > 30) { break; } max += 1; const str = text.substr(i); const regex = /(<span|<b>)/g; const matches = regex.exec(str); if (matches) { if (matches[0].includes('<b>')) { const { normalText, boldText, n } = findBoldTag(str, matches.index); i += n; if (normalText) { array.push({ text: normalText, type: 'n' }); } if (boldText) { array.push({ text: boldText, type: 'b' }); } } else if (matches[0].includes('<span')) { const findSpanTagResp = findSpanTag(str, matches.index); i += findSpanTagResp.i; const { normalText, span } = findSpanTagResp; const { text, font, color } = span; if (normalText) { array.push({ text: normalText, type: 'n' }); } if (text) { array.push({ text: text, type: font, color: color }); } } } else { i = text.length; array.push({ text: str, type: 'n' }); } } if (array.length === 1 && array[0].type === 'n') { this.data.push({ type: 'text', item: { text: array[0].text, style, options } }); } else { this.data.push({ type: 'formatted-text', item: { text: array, style, options } }); } }); } output() { const { host, path } = this; this.iframe = document.createElement('iframe'); this.iframe.style = 'border:0 ;position: fixed;left: 0;top: 0;z-index: 9999;cursor: wait;background-color: #fff;opacity: 0.5;'; this.iframe.width = '100%'; this.iframe.height = '100%'; this.iframe.src = `${host}${path}`; document.body.appendChild(this.iframe); const self = this; const promise = new Promise(resolve => { function handleOnReceivedMessage(event) { if (event.data && event.data.type) { if (event.data.type === 'ready') { const data = { data: self.data, options: self.options }; // console.log('data', data); self.iframe.contentWindow.postMessage(data, '*'); } else if (event.data.type === 'finish') { // console.log(event.data.data); resolve(event.data.data); document.body.removeChild(self.iframe); window.removeEventListener('message', handleOnReceivedMessage, false); } } } window.addEventListener('message', handleOnReceivedMessage); }); return promise .catch(error => { console.log('ERROR', error); return null; }); } async save(fileName = null) { const blob = await this.output(); const url = window.URL.createObjectURL(blob); var a = document.createElement('a'); document.body.appendChild(a); a.style = 'display: none'; a.href = url; a.download = fileName || 'untitled.pdf'; a.click(); window.URL.revokeObjectURL(url); } } export default Pdf;
26.278689
131
0.501871
c5e35640f35fd2dcebcbce796b88d785889a1f55
384
js
JavaScript
plugins/feeds/lang/pt.js
darkpsy/rutorrent-ui
56efc3467366d8c51502a68fe3e510761ce06312
[ "MIT" ]
2
2018-07-09T15:18:00.000Z
2018-07-11T16:15:28.000Z
plugins/feeds/lang/pt.js
darkpsy/rtorrent-ui
56efc3467366d8c51502a68fe3e510761ce06312
[ "MIT" ]
null
null
null
plugins/feeds/lang/pt.js
darkpsy/rtorrent-ui
56efc3467366d8c51502a68fe3e510761ce06312
[ "MIT" ]
null
null
null
/* * PLUGIN FEEDS * * Portuguese language file. * * Author: */ theUILang.feedAll = "All torrents"; theUILang.feedCompleted = "Completed torrents"; theUILang.feedDownloading = "Downloading torrents"; theUILang.feedActive = "Active torrents"; theUILang.feedInactive = "Inactive torrents"; theUILang.feedError = "Error torrents"; thePlugins.get("feeds").langLoaded();
24
52
0.721354
c5e3b95c65d8983bff312933d34098ec1253dd48
1,794
js
JavaScript
app/components/infinite-scroll.js
backspace/keyset
018bad92352cb8ad068ccf56ddd585f6a408bd22
[ "MIT" ]
null
null
null
app/components/infinite-scroll.js
backspace/keyset
018bad92352cb8ad068ccf56ddd585f6a408bd22
[ "MIT" ]
null
null
null
app/components/infinite-scroll.js
backspace/keyset
018bad92352cb8ad068ccf56ddd585f6a408bd22
[ "MIT" ]
null
null
null
import Ember from 'ember'; export default Ember.Component.extend({ /** Element for the container to watch for scroll events. @property @type String */ containerElement: null, /** Selector for the container to watch for scroll events, if `containerElement` is not specified. Defaults to the component's element. @property @type String */ containerSelector: null, /** The paginated array containing the elements to scroll @property @type PaginatedArray */ contents:null, didInsertElement: function() { var container = this.get('containerElement') || Ember.$(this.get('containerSelector') || this.$()); this.set('scrollListener', () => { Ember.run.debounce(this, this.checkScroll, container, 20); }); container.on('scroll', this.get('scrollListener')) this.checkScroll(container); }, willDestroyElement: function() { var container = this.get('containerElement') || Ember.$(this.get('containerSelector') || this.$()); container.off('scroll', this.get('scrollListener')) }, checkScroll: function(container) { if (this.get('isDestroyed') || this.get('isDestroying') || !this.get('contents').nextPage) { return; } var content = this.$(); if (!content) { return; } var contentHeight = content.height(); if (content[0].scrollHeight) { // if the content element is scrollable, use the scrollHeight to calculate the content height // this allows us to use the same element for content and container. contentHeight = content[0].scrollHeight; } if (contentHeight < (container.height() * 2) + container.scrollTop()) { if (!this.get('contents.isUpdating')) { this.get('contents').nextPage(); } } } });
26.776119
103
0.64437
c5e3db5e40a977dd9d7fe4e7b6740306edeeaee5
28,830
js
JavaScript
node_modules/primeng/esm2015/galleria/galleria.js
GhozziAmira/PfeFinal-2
d4d1c7b962b78a172feb2566fc8dbae0738f8582
[ "MIT" ]
null
null
null
node_modules/primeng/esm2015/galleria/galleria.js
GhozziAmira/PfeFinal-2
d4d1c7b962b78a172feb2566fc8dbae0738f8582
[ "MIT" ]
null
null
null
node_modules/primeng/esm2015/galleria/galleria.js
GhozziAmira/PfeFinal-2
d4d1c7b962b78a172feb2566fc8dbae0738f8582
[ "MIT" ]
null
null
null
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) { var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d; if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc); else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r; return c > 3 && r && Object.defineProperty(target, key, r), r; }; import { NgModule, Component, ElementRef, AfterViewChecked, AfterViewInit, OnDestroy, Input, Output, EventEmitter, ChangeDetectionStrategy } from '@angular/core'; import { CommonModule } from '@angular/common'; import { DomHandler } from 'primeng/dom'; let Galleria = class Galleria { constructor(el) { this.el = el; this.panelWidth = 600; this.panelHeight = 400; this.frameWidth = 60; this.frameHeight = 40; this.activeIndex = 0; this.showFilmstrip = true; this.autoPlay = true; this.transitionInterval = 4000; this.showCaption = true; this.effectDuration = 500; this.onImageClicked = new EventEmitter(); this.onImageChange = new EventEmitter(); this.stripLeft = 0; } ngAfterViewChecked() { if (this.imagesChanged) { this.stopSlideshow(); Promise.resolve(null).then(() => { this.render(); this.imagesChanged = false; }); } } get images() { return this._images; } set images(value) { this._images = value; this.imagesChanged = true; if (this.initialized) { this.activeIndex = 0; } } ngAfterViewInit() { this.container = this.el.nativeElement.children[0]; this.panelWrapper = DomHandler.findSingle(this.el.nativeElement, 'ul.ui-galleria-panel-wrapper'); this.initialized = true; if (this.showFilmstrip) { this.stripWrapper = DomHandler.findSingle(this.container, 'div.ui-galleria-filmstrip-wrapper'); this.strip = DomHandler.findSingle(this.stripWrapper, 'ul.ui-galleria-filmstrip'); } if (this.images && this.images.length) { this.render(); } } render() { this.panels = DomHandler.find(this.panelWrapper, 'li.ui-galleria-panel'); if (this.showFilmstrip) { this.frames = DomHandler.find(this.strip, 'li.ui-galleria-frame'); this.stripWrapper.style.width = DomHandler.width(this.panelWrapper) - 50 + 'px'; this.stripWrapper.style.height = this.frameHeight + 'px'; } if (this.showCaption) { this.caption = DomHandler.findSingle(this.container, 'div.ui-galleria-caption'); this.caption.style.bottom = this.showFilmstrip ? DomHandler.getOuterHeight(this.stripWrapper, true) + 'px' : 0 + 'px'; this.caption.style.width = DomHandler.width(this.panelWrapper) + 'px'; } if (this.autoPlay) { this.startSlideshow(); } this.container.style.visibility = 'visible'; } startSlideshow() { this.interval = setInterval(() => { this.next(); }, this.transitionInterval); this.slideshowActive = true; } stopSlideshow() { if (this.interval) { clearInterval(this.interval); } this.slideshowActive = false; } clickNavRight() { if (this.slideshowActive) { this.stopSlideshow(); } this.next(); } clickNavLeft() { if (this.slideshowActive) { this.stopSlideshow(); } this.prev(); } frameClick(frame) { if (this.slideshowActive) { this.stopSlideshow(); } this.select(DomHandler.index(frame), false); } prev() { if (this.activeIndex !== 0) { this.select(this.activeIndex - 1, true); } } next() { if (this.activeIndex !== (this.panels.length - 1)) { this.select(this.activeIndex + 1, true); } else { this.select(0, false); this.stripLeft = 0; } } select(index, reposition) { if (index !== this.activeIndex) { let oldPanel = this.panels[this.activeIndex], newPanel = this.panels[index]; DomHandler.fadeIn(newPanel, this.effectDuration); if (this.showFilmstrip) { let oldFrame = this.frames[this.activeIndex], newFrame = this.frames[index]; if (reposition === undefined || reposition === true) { let frameLeft = newFrame.offsetLeft, stepFactor = this.frameWidth + parseInt(getComputedStyle(newFrame)['margin-right'], 10), stripLeft = this.strip.offsetLeft, frameViewportLeft = frameLeft + stripLeft, frameViewportRight = frameViewportLeft + this.frameWidth; if (frameViewportRight > DomHandler.width(this.stripWrapper)) this.stripLeft -= stepFactor; else if (frameViewportLeft < 0) this.stripLeft += stepFactor; } } this.activeIndex = index; this.onImageChange.emit({ index: index }); } } clickImage(event, image, i) { this.onImageClicked.emit({ originalEvent: event, image: image, index: i }); } ngOnDestroy() { this.stopSlideshow(); } }; Galleria.ctorParameters = () => [ { type: ElementRef } ]; __decorate([ Input() ], Galleria.prototype, "style", void 0); __decorate([ Input() ], Galleria.prototype, "styleClass", void 0); __decorate([ Input() ], Galleria.prototype, "panelWidth", void 0); __decorate([ Input() ], Galleria.prototype, "panelHeight", void 0); __decorate([ Input() ], Galleria.prototype, "frameWidth", void 0); __decorate([ Input() ], Galleria.prototype, "frameHeight", void 0); __decorate([ Input() ], Galleria.prototype, "activeIndex", void 0); __decorate([ Input() ], Galleria.prototype, "showFilmstrip", void 0); __decorate([ Input() ], Galleria.prototype, "autoPlay", void 0); __decorate([ Input() ], Galleria.prototype, "transitionInterval", void 0); __decorate([ Input() ], Galleria.prototype, "showCaption", void 0); __decorate([ Input() ], Galleria.prototype, "effectDuration", void 0); __decorate([ Output() ], Galleria.prototype, "onImageClicked", void 0); __decorate([ Output() ], Galleria.prototype, "onImageChange", void 0); __decorate([ Input() ], Galleria.prototype, "images", null); Galleria = __decorate([ Component({ selector: 'p-galleria', template: ` <div [ngClass]="{'ui-galleria ui-widget ui-widget-content ui-corner-all':true}" [ngStyle]="style" [class]="styleClass" [style.width.px]="panelWidth"> <ul class="ui-galleria-panel-wrapper" [style.width.px]="panelWidth" [style.height.px]="panelHeight"> <li *ngFor="let image of images;let i=index" class="ui-galleria-panel" [ngClass]="{'ui-helper-hidden':i!=activeIndex}" [style.width.px]="panelWidth" [style.height.px]="panelHeight" (click)="clickImage($event,image,i)"> <img class="ui-panel-images" [src]="image.source" [alt]="image.alt" [title]="image.title"/> </li> </ul> <div [ngClass]="{'ui-galleria-filmstrip-wrapper':true}" *ngIf="showFilmstrip"> <ul class="ui-galleria-filmstrip" style="transition:left 1s" [style.left.px]="stripLeft"> <li #frame *ngFor="let image of images;let i=index" [ngClass]="{'ui-galleria-frame-active':i==activeIndex}" class="ui-galleria-frame" (click)="frameClick(frame)" [style.width.px]="frameWidth" [style.height.px]="frameHeight" [style.transition]="'opacity 0.75s ease'"> <div class="ui-galleria-frame-content"> <img [src]="image.source" [alt]="image.alt" [title]="image.title" class="ui-galleria-frame-image" [style.width.px]="frameWidth" [style.height.px]="frameHeight"> </div> </li> </ul> </div> <div class="ui-galleria-nav-prev pi pi-fw pi-chevron-left" (click)="clickNavLeft()" [style.bottom.px]="frameHeight/2" *ngIf="activeIndex !== 0"></div> <div class="ui-galleria-nav-next pi pi-fw pi-chevron-right" (click)="clickNavRight()" [style.bottom.px]="frameHeight/2"></div> <div class="ui-galleria-caption" *ngIf="showCaption&&images" style="display:block"> <h4>{{images[activeIndex]?.title}}</h4><p>{{images[activeIndex]?.alt}}</p> </div> </div> `, changeDetection: ChangeDetectionStrategy.Default }) ], Galleria); export { Galleria }; let GalleriaModule = class GalleriaModule { }; GalleriaModule = __decorate([ NgModule({ imports: [CommonModule], exports: [Galleria], declarations: [Galleria] }) ], GalleriaModule); export { GalleriaModule }; //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZ2FsbGVyaWEuanMiLCJzb3VyY2VSb290Ijoibmc6Ly9wcmltZW5nL2dhbGxlcmlhLyIsInNvdXJjZXMiOlsiZ2FsbGVyaWEudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7O0FBQUEsT0FBTyxFQUFDLFFBQVEsRUFBQyxTQUFTLEVBQUMsVUFBVSxFQUFDLGdCQUFnQixFQUFDLGFBQWEsRUFBQyxTQUFTLEVBQUMsS0FBSyxFQUFDLE1BQU0sRUFBQyxZQUFZLEVBQUMsdUJBQXVCLEVBQUMsTUFBTSxlQUFlLENBQUM7QUFDdkosT0FBTyxFQUFDLFlBQVksRUFBQyxNQUFNLGlCQUFpQixDQUFDO0FBQzdDLE9BQU8sRUFBQyxVQUFVLEVBQUMsTUFBTSxhQUFhLENBQUM7QUFnQ3ZDLElBQWEsUUFBUSxHQUFyQixNQUFhLFFBQVE7SUF3RGpCLFlBQW1CLEVBQWM7UUFBZCxPQUFFLEdBQUYsRUFBRSxDQUFZO1FBbER4QixlQUFVLEdBQVcsR0FBRyxDQUFDO1FBRXpCLGdCQUFXLEdBQVcsR0FBRyxDQUFDO1FBRTFCLGVBQVUsR0FBVyxFQUFFLENBQUM7UUFFeEIsZ0JBQVcsR0FBVyxFQUFFLENBQUM7UUFFekIsZ0JBQVcsR0FBVyxDQUFDLENBQUM7UUFFeEIsa0JBQWEsR0FBWSxJQUFJLENBQUM7UUFFOUIsYUFBUSxHQUFZLElBQUksQ0FBQztRQUV6Qix1QkFBa0IsR0FBVyxJQUFJLENBQUM7UUFFbEMsZ0JBQVcsR0FBWSxJQUFJLENBQUM7UUFFNUIsbUJBQWMsR0FBVyxHQUFHLENBQUM7UUFFNUIsbUJBQWMsR0FBRyxJQUFJLFlBQVksRUFBRSxDQUFDO1FBRXBDLGtCQUFhLEdBQUcsSUFBSSxZQUFZLEVBQUUsQ0FBQztRQXNCdEMsY0FBUyxHQUFXLENBQUMsQ0FBQztJQU1PLENBQUM7SUFFckMsa0JBQWtCO1FBQ2QsSUFBSSxJQUFJLENBQUMsYUFBYSxFQUFFO1lBQ3BCLElBQUksQ0FBQyxhQUFhLEVBQUUsQ0FBQztZQUNyQixPQUFPLENBQUMsT0FBTyxDQUFDLElBQUksQ0FBQyxDQUFDLElBQUksQ0FBQyxHQUFHLEVBQUU7Z0JBQzVCLElBQUksQ0FBQyxNQUFNLEVBQUUsQ0FBQztnQkFDZCxJQUFJLENBQUMsYUFBYSxHQUFHLEtBQUssQ0FBQztZQUMvQixDQUFDLENBQUMsQ0FBQztTQUNOO0lBQ0wsQ0FBQztJQUVRLElBQUksTUFBTTtRQUNmLE9BQU8sSUFBSSxDQUFDLE9BQU8sQ0FBQztJQUN4QixDQUFDO0lBQ0QsSUFBSSxNQUFNLENBQUMsS0FBVztRQUNsQixJQUFJLENBQUMsT0FBTyxHQUFHLEtBQUssQ0FBQztRQUNyQixJQUFJLENBQUMsYUFBYSxHQUFHLElBQUksQ0FBQztRQUUxQixJQUFJLElBQUksQ0FBQyxXQUFXLEVBQUU7WUFDbEIsSUFBSSxDQUFDLFdBQVcsR0FBRyxDQUFDLENBQUM7U0FDeEI7SUFDTCxDQUFDO0lBRUQsZUFBZTtRQUNYLElBQUksQ0FBQyxTQUFTLEdBQUcsSUFBSSxDQUFDLEVBQUUsQ0FBQyxhQUFhLENBQUMsUUFBUSxDQUFDLENBQUMsQ0FBQyxDQUFDO1FBQ25ELElBQUksQ0FBQyxZQUFZLEdBQUcsVUFBVSxDQUFDLFVBQVUsQ0FBQyxJQUFJLENBQUMsRUFBRSxDQUFDLGFBQWEsRUFBRSw4QkFBOEIsQ0FBQyxDQUFDO1FBQ2pHLElBQUksQ0FBQyxXQUFXLEdBQUcsSUFBSSxDQUFDO1FBRXhCLElBQUksSUFBSSxDQUFDLGFBQWEsRUFBRTtZQUNwQixJQUFJLENBQUMsWUFBWSxHQUFHLFVBQVUsQ0FBQyxVQUFVLENBQUMsSUFBSSxDQUFDLFNBQVMsRUFBQyxtQ0FBbUMsQ0FBQyxDQUFDO1lBQzlGLElBQUksQ0FBQyxLQUFLLEdBQUcsVUFBVSxDQUFDLFVBQVUsQ0FBQyxJQUFJLENBQUMsWUFBWSxFQUFDLDBCQUEwQixDQUFDLENBQUM7U0FDcEY7UUFFRCxJQUFJLElBQUksQ0FBQyxNQUFNLElBQUksSUFBSSxDQUFDLE1BQU0sQ0FBQyxNQUFNLEVBQUU7WUFDbkMsSUFBSSxDQUFDLE1BQU0sRUFBRSxDQUFDO1NBQ2pCO0lBQ0wsQ0FBQztJQUVELE1BQU07UUFDRixJQUFJLENBQUMsTUFBTSxHQUFHLFVBQVUsQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLFlBQVksRUFBRSxzQkFBc0IsQ0FBQyxDQUFDO1FBRXpFLElBQUksSUFBSSxDQUFDLGFBQWEsRUFBRTtZQUNwQixJQUFJLENBQUMsTUFBTSxHQUFHLFVBQVUsQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLEtBQUssRUFBQyxzQkFBc0IsQ0FBQyxDQUFDO1lBQ2pFLElBQUksQ0FBQyxZQUFZLENBQUMsS0FBSyxDQUFDLEtBQUssR0FBRyxVQUFVLENBQUMsS0FBSyxDQUFDLElBQUksQ0FBQyxZQUFZLENBQUMsR0FBRyxFQUFFLEdBQUcsSUFBSSxDQUFDO1lBQ2hGLElBQUksQ0FBQyxZQUFZLENBQUMsS0FBSyxDQUFDLE1BQU0sR0FBRyxJQUFJLENBQUMsV0FBVyxHQUFHLElBQUksQ0FBQztTQUM1RDtRQUVELElBQUksSUFBSSxDQUFDLFdBQVcsRUFBRTtZQUNsQixJQUFJLENBQUMsT0FBTyxHQUFHLFVBQVUsQ0FBQyxVQUFVLENBQUMsSUFBSSxDQUFDLFNBQVMsRUFBQyx5QkFBeUIsQ0FBQyxDQUFDO1lBQy9FLElBQUksQ0FBQyxPQUFPLENBQUMsS0FBSyxDQUFDLE1BQU0sR0FBRyxJQUFJLENBQUMsYUFBYSxDQUFDLENBQUMsQ0FBQyxVQUFVLENBQUMsY0FBYyxDQUFDLElBQUksQ0FBQyxZQUFZLEVBQUMsSUFBSSxDQUFDLEdBQUcsSUFBSSxDQUFDLENBQUMsQ0FBQyxDQUFDLEdBQUcsSUFBSSxDQUFDO1lBQ3JILElBQUksQ0FBQyxPQUFPLENBQUMsS0FBSyxDQUFDLEtBQUssR0FBRyxVQUFVLENBQUMsS0FBSyxDQUFDLElBQUksQ0FBQyxZQUFZLENBQUMsR0FBRyxJQUFJLENBQUM7U0FDekU7UUFFRCxJQUFJLElBQUksQ0FBQyxRQUFRLEVBQUU7WUFDZixJQUFJLENBQUMsY0FBYyxFQUFFLENBQUM7U0FDekI7UUFFRCxJQUFJLENBQUMsU0FBUyxDQUFDLEtBQUssQ0FBQyxVQUFVLEdBQUcsU0FBUyxDQUFDO0lBQ2hELENBQUM7SUFFRCxjQUFjO1FBQ1YsSUFBSSxDQUFDLFFBQVEsR0FBRyxXQUFXLENBQUMsR0FBRyxFQUFFO1lBQzdCLElBQUksQ0FBQyxJQUFJLEVBQUUsQ0FBQztRQUNoQixDQUFDLEVBQUUsSUFBSSxDQUFDLGtCQUFrQixDQUFDLENBQUM7UUFFNUIsSUFBSSxDQUFDLGVBQWUsR0FBRyxJQUFJLENBQUM7SUFDaEMsQ0FBQztJQUVELGFBQWE7UUFDVCxJQUFJLElBQUksQ0FBQyxRQUFRLEVBQUU7WUFDZixhQUFhLENBQUMsSUFBSSxDQUFDLFFBQVEsQ0FBQyxDQUFDO1NBQ2hDO1FBRUQsSUFBSSxDQUFDLGVBQWUsR0FBRyxLQUFLLENBQUM7SUFDakMsQ0FBQztJQUVELGFBQWE7UUFDVCxJQUFJLElBQUksQ0FBQyxlQUFlLEVBQUU7WUFDdEIsSUFBSSxDQUFDLGFBQWEsRUFBRSxDQUFDO1NBQ3hCO1FBQ0QsSUFBSSxDQUFDLElBQUksRUFBRSxDQUFDO0lBQ2hCLENBQUM7SUFFRCxZQUFZO1FBQ1IsSUFBSSxJQUFJLENBQUMsZUFBZSxFQUFFO1lBQ3RCLElBQUksQ0FBQyxhQUFhLEVBQUUsQ0FBQztTQUN4QjtRQUNELElBQUksQ0FBQyxJQUFJLEVBQUUsQ0FBQztJQUNoQixDQUFDO0lBRUQsVUFBVSxDQUFDLEtBQUs7UUFDWixJQUFJLElBQUksQ0FBQyxlQUFlLEVBQUU7WUFDdEIsSUFBSSxDQUFDLGFBQWEsRUFBRSxDQUFDO1NBQ3hCO1FBRUQsSUFBSSxDQUFDLE1BQU0sQ0FBQyxVQUFVLENBQUMsS0FBSyxDQUFDLEtBQUssQ0FBQyxFQUFFLEtBQUssQ0FBQyxDQUFDO0lBQ2hELENBQUM7SUFFRCxJQUFJO1FBQ0EsSUFBSSxJQUFJLENBQUMsV0FBVyxLQUFLLENBQUMsRUFBRTtZQUN4QixJQUFJLENBQUMsTUFBTSxDQUFDLElBQUksQ0FBQyxXQUFXLEdBQUcsQ0FBQyxFQUFFLElBQUksQ0FBQyxDQUFDO1NBQzNDO0lBQ0wsQ0FBQztJQUVELElBQUk7UUFDQSxJQUFJLElBQUksQ0FBQyxXQUFXLEtBQUssQ0FBQyxJQUFJLENBQUMsTUFBTSxDQUFDLE1BQU0sR0FBQyxDQUFDLENBQUMsRUFBRTtZQUM3QyxJQUFJLENBQUMsTUFBTSxDQUFDLElBQUksQ0FBQyxXQUFXLEdBQUcsQ0FBQyxFQUFFLElBQUksQ0FBQyxDQUFDO1NBQzNDO2FBQ0k7WUFDRCxJQUFJLENBQUMsTUFBTSxDQUFDLENBQUMsRUFBRSxLQUFLLENBQUMsQ0FBQztZQUN0QixJQUFJLENBQUMsU0FBUyxHQUFHLENBQUMsQ0FBQztTQUN0QjtJQUNMLENBQUM7SUFFRCxNQUFNLENBQUMsS0FBSyxFQUFFLFVBQVU7UUFDcEIsSUFBSSxLQUFLLEtBQUssSUFBSSxDQUFDLFdBQVcsRUFBRTtZQUM1QixJQUFJLFFBQVEsR0FBRyxJQUFJLENBQUMsTUFBTSxDQUFDLElBQUksQ0FBQyxXQUFXLENBQUMsRUFDNUMsUUFBUSxHQUFHLElBQUksQ0FBQyxNQUFNLENBQUMsS0FBSyxDQUFDLENBQUM7WUFFOUIsVUFBVSxDQUFDLE1BQU0sQ0FBQyxRQUFRLEVBQUUsSUFBSSxDQUFDLGNBQWMsQ0FBQyxDQUFDO1lBRWpELElBQUksSUFBSSxDQUFDLGFBQWEsRUFBRTtnQkFDcEIsSUFBSSxRQUFRLEdBQUcsSUFBSSxDQUFDLE1BQU0sQ0FBQyxJQUFJLENBQUMsV0FBVyxDQUFDLEVBQzVDLFFBQVEsR0FBRyxJQUFJLENBQUMsTUFBTSxDQUFDLEtBQUssQ0FBQyxDQUFDO2dCQUU5QixJQUFJLFVBQVUsS0FBSyxTQUFTLElBQUksVUFBVSxLQUFLLElBQUksRUFBRTtvQkFDakQsSUFBSSxTQUFTLEdBQUcsUUFBUSxDQUFDLFVBQVUsRUFDbkMsVUFBVSxHQUFHLElBQUksQ0FBQyxVQUFVLEdBQUcsUUFBUSxDQUFDLGdCQUFnQixDQUFDLFFBQVEsQ0FBQyxDQUFDLGNBQWMsQ0FBQyxFQUFFLEVBQUUsQ0FBQyxFQUN2RixTQUFTLEdBQUcsSUFBSSxDQUFDLEtBQUssQ0FBQyxVQUFVLEVBQ2pDLGlCQUFpQixHQUFHLFNBQVMsR0FBRyxTQUFTLEVBQ3pDLGtCQUFrQixHQUFHLGlCQUFpQixHQUFHLElBQUksQ0FBQyxVQUFVLENBQUM7b0JBRXpELElBQUksa0JBQWtCLEdBQUcsVUFBVSxDQUFDLEtBQUssQ0FBQyxJQUFJLENBQUMsWUFBWSxDQUFDO3dCQUN4RCxJQUFJLENBQUMsU0FBUyxJQUFJLFVBQVUsQ0FBQzt5QkFDNUIsSUFBSSxpQkFBaUIsR0FBRyxDQUFDO3dCQUMxQixJQUFJLENBQUMsU0FBUyxJQUFJLFVBQVUsQ0FBQztpQkFDcEM7YUFDSjtZQUVELElBQUksQ0FBQyxXQUFXLEdBQUcsS0FBSyxDQUFDO1lBRXpCLElBQUksQ0FBQyxhQUFhLENBQUMsSUFBSSxDQUFDLEVBQUMsS0FBSyxFQUFFLEtBQUssRUFBQyxDQUFDLENBQUM7U0FDM0M7SUFDTCxDQUFDO0lBRUQsVUFBVSxDQUFDLEtBQUssRUFBRSxLQUFLLEVBQUUsQ0FBQztRQUN0QixJQUFJLENBQUMsY0FBYyxDQUFDLElBQUksQ0FBQyxFQUFDLGFBQWEsRUFBRSxLQUFLLEVBQUUsS0FBSyxFQUFFLEtBQUssRUFBRSxLQUFLLEVBQUUsQ0FBQyxFQUFDLENBQUMsQ0FBQTtJQUM1RSxDQUFDO0lBRUQsV0FBVztRQUNQLElBQUksQ0FBQyxhQUFhLEVBQUUsQ0FBQztJQUN6QixDQUFDO0NBRUosQ0FBQTs7WUExSjBCLFVBQVU7O0FBdER4QjtJQUFSLEtBQUssRUFBRTt1Q0FBWTtBQUVYO0lBQVIsS0FBSyxFQUFFOzRDQUFvQjtBQUVuQjtJQUFSLEtBQUssRUFBRTs0Q0FBMEI7QUFFekI7SUFBUixLQUFLLEVBQUU7NkNBQTJCO0FBRTFCO0lBQVIsS0FBSyxFQUFFOzRDQUF5QjtBQUV4QjtJQUFSLEtBQUssRUFBRTs2Q0FBMEI7QUFFekI7SUFBUixLQUFLLEVBQUU7NkNBQXlCO0FBRXhCO0lBQVIsS0FBSyxFQUFFOytDQUErQjtBQUU5QjtJQUFSLEtBQUssRUFBRTswQ0FBMEI7QUFFekI7SUFBUixLQUFLLEVBQUU7b0RBQW1DO0FBRWxDO0lBQVIsS0FBSyxFQUFFOzZDQUE2QjtBQUU1QjtJQUFSLEtBQUssRUFBRTtnREFBOEI7QUFFNUI7SUFBVCxNQUFNLEVBQUU7Z0RBQXFDO0FBRXBDO0lBQVQsTUFBTSxFQUFFOytDQUFvQztBQXdDcEM7SUFBUixLQUFLLEVBQUU7c0NBRVA7QUF0RVEsUUFBUTtJQTlCcEIsU0FBUyxDQUFDO1FBQ1AsUUFBUSxFQUFFLFlBQVk7UUFDdEIsUUFBUSxFQUFFOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O0tBeUJUO1FBQ0QsZUFBZSxFQUFFLHVCQUF1QixDQUFDLE9BQU87S0FDbkQsQ0FBQztHQUNXLFFBQVEsQ0FrTnBCO1NBbE5ZLFFBQVE7QUF5TnJCLElBQWEsY0FBYyxHQUEzQixNQUFhLGNBQWM7Q0FBSSxDQUFBO0FBQWxCLGNBQWM7SUFMMUIsUUFBUSxDQUFDO1FBQ04sT0FBTyxFQUFFLENBQUMsWUFBWSxDQUFDO1FBQ3ZCLE9BQU8sRUFBRSxDQUFDLFFBQVEsQ0FBQztRQUNuQixZQUFZLEVBQUUsQ0FBQyxRQUFRLENBQUM7S0FDM0IsQ0FBQztHQUNXLGNBQWMsQ0FBSTtTQUFsQixjQUFjIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtOZ01vZHVsZSxDb21wb25lbnQsRWxlbWVudFJlZixBZnRlclZpZXdDaGVja2VkLEFmdGVyVmlld0luaXQsT25EZXN0cm95LElucHV0LE91dHB1dCxFdmVudEVtaXR0ZXIsQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3l9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHtDb21tb25Nb2R1bGV9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbic7XG5pbXBvcnQge0RvbUhhbmRsZXJ9IGZyb20gJ3ByaW1lbmcvZG9tJztcblxuQENvbXBvbmVudCh7XG4gICAgc2VsZWN0b3I6ICdwLWdhbGxlcmlhJyxcbiAgICB0ZW1wbGF0ZTogYFxuICAgICAgICA8ZGl2IFtuZ0NsYXNzXT1cInsndWktZ2FsbGVyaWEgdWktd2lkZ2V0IHVpLXdpZGdldC1jb250ZW50IHVpLWNvcm5lci1hbGwnOnRydWV9XCIgW25nU3R5bGVdPVwic3R5bGVcIiBbY2xhc3NdPVwic3R5bGVDbGFzc1wiIFtzdHlsZS53aWR0aC5weF09XCJwYW5lbFdpZHRoXCI+XG4gICAgICAgICAgICA8dWwgY2xhc3M9XCJ1aS1nYWxsZXJpYS1wYW5lbC13cmFwcGVyXCIgW3N0eWxlLndpZHRoLnB4XT1cInBhbmVsV2lkdGhcIiBbc3R5bGUuaGVpZ2h0LnB4XT1cInBhbmVsSGVpZ2h0XCI+XG4gICAgICAgICAgICAgICAgPGxpICpuZ0Zvcj1cImxldCBpbWFnZSBvZiBpbWFnZXM7bGV0IGk9aW5kZXhcIiBjbGFzcz1cInVpLWdhbGxlcmlhLXBhbmVsXCIgW25nQ2xhc3NdPVwieyd1aS1oZWxwZXItaGlkZGVuJzppIT1hY3RpdmVJbmRleH1cIlxuICAgICAgICAgICAgICAgICAgICBbc3R5bGUud2lkdGgucHhdPVwicGFuZWxXaWR0aFwiIFtzdHlsZS5oZWlnaHQucHhdPVwicGFuZWxIZWlnaHRcIiAoY2xpY2spPVwiY2xpY2tJbWFnZSgkZXZlbnQsaW1hZ2UsaSlcIj5cbiAgICAgICAgICAgICAgICAgICAgPGltZyBjbGFzcz1cInVpLXBhbmVsLWltYWdlc1wiIFtzcmNdPVwiaW1hZ2Uuc291cmNlXCIgW2FsdF09XCJpbWFnZS5hbHRcIiBbdGl0bGVdPVwiaW1hZ2UudGl0bGVcIi8+XG4gICAgICAgICAgICAgICAgPC9saT5cbiAgICAgICAgICAgIDwvdWw+XG4gICAgICAgICAgICA8ZGl2IFtuZ0NsYXNzXT1cInsndWktZ2FsbGVyaWEtZmlsbXN0cmlwLXdyYXBwZXInOnRydWV9XCIgKm5nSWY9XCJzaG93RmlsbXN0cmlwXCI+XG4gICAgICAgICAgICAgICAgPHVsIGNsYXNzPVwidWktZ2FsbGVyaWEtZmlsbXN0cmlwXCIgc3R5bGU9XCJ0cmFuc2l0aW9uOmxlZnQgMXNcIiBbc3R5bGUubGVmdC5weF09XCJzdHJpcExlZnRcIj5cbiAgICAgICAgICAgICAgICAgICAgPGxpICNmcmFtZSAqbmdGb3I9XCJsZXQgaW1hZ2Ugb2YgaW1hZ2VzO2xldCBpPWluZGV4XCIgW25nQ2xhc3NdPVwieyd1aS1nYWxsZXJpYS1mcmFtZS1hY3RpdmUnOmk9PWFjdGl2ZUluZGV4fVwiIGNsYXNzPVwidWktZ2FsbGVyaWEtZnJhbWVcIiAoY2xpY2spPVwiZnJhbWVDbGljayhmcmFtZSlcIlxuICAgICAgICAgICAgICAgICAgICAgICAgW3N0eWxlLndpZHRoLnB4XT1cImZyYW1lV2lkdGhcIiBbc3R5bGUuaGVpZ2h0LnB4XT1cImZyYW1lSGVpZ2h0XCIgW3N0eWxlLnRyYW5zaXRpb25dPVwiJ29wYWNpdHkgMC43NXMgZWFzZSdcIj5cbiAgICAgICAgICAgICAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJ1aS1nYWxsZXJpYS1mcmFtZS1jb250ZW50XCI+XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgPGltZyBbc3JjXT1cImltYWdlLnNvdXJjZVwiIFthbHRdPVwiaW1hZ2UuYWx0XCIgW3RpdGxlXT1cImltYWdlLnRpdGxlXCIgY2xhc3M9XCJ1aS1nYWxsZXJpYS1mcmFtZS1pbWFnZVwiXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIFtzdHlsZS53aWR0aC5weF09XCJmcmFtZVdpZHRoXCIgW3N0eWxlLmhlaWdodC5weF09XCJmcmFtZUhlaWdodFwiPlxuICAgICAgICAgICAgICAgICAgICAgICAgPC9kaXY+XG4gICAgICAgICAgICAgICAgICAgIDwvbGk+XG4gICAgICAgICAgICAgICAgPC91bD5cbiAgICAgICAgICAgIDwvZGl2PlxuICAgICAgICAgICAgPGRpdiBjbGFzcz1cInVpLWdhbGxlcmlhLW5hdi1wcmV2IHBpIHBpLWZ3IHBpLWNoZXZyb24tbGVmdFwiIChjbGljayk9XCJjbGlja05hdkxlZnQoKVwiIFtzdHlsZS5ib3R0b20ucHhdPVwiZnJhbWVIZWlnaHQvMlwiICpuZ0lmPVwiYWN0aXZlSW5kZXggIT09IDBcIj48L2Rpdj5cbiAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJ1aS1nYWxsZXJpYS1uYXYtbmV4dCBwaSBwaS1mdyBwaS1jaGV2cm9uLXJpZ2h0XCIgKGNsaWNrKT1cImNsaWNrTmF2UmlnaHQoKVwiIFtzdHlsZS5ib3R0b20ucHhdPVwiZnJhbWVIZWlnaHQvMlwiPjwvZGl2PlxuICAgICAgICAgICAgPGRpdiBjbGFzcz1cInVpLWdhbGxlcmlhLWNhcHRpb25cIiAqbmdJZj1cInNob3dDYXB0aW9uJiZpbWFnZXNcIiBzdHlsZT1cImRpc3BsYXk6YmxvY2tcIj5cbiAgICAgICAgICAgICAgICA8aDQ+e3tpbWFnZXNbYWN0aXZlSW5kZXhdPy50aXRsZX19PC9oND48cD57e2ltYWdlc1thY3RpdmVJbmRleF0/LmFsdH19PC9wPlxuICAgICAgICAgICAgPC9kaXY+XG4gICAgICAgIDwvZGl2PlxuICAgIGAsXG4gICAgY2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5EZWZhdWx0XG59KVxuZXhwb3J0IGNsYXNzIEdhbGxlcmlhIGltcGxlbWVudHMgQWZ0ZXJWaWV3Q2hlY2tlZCxBZnRlclZpZXdJbml0LE9uRGVzdHJveSB7XG4gICAgICAgIFxuICAgIEBJbnB1dCgpIHN0eWxlOiBhbnk7XG5cbiAgICBASW5wdXQoKSBzdHlsZUNsYXNzOiBzdHJpbmc7XG5cbiAgICBASW5wdXQoKSBwYW5lbFdpZHRoOiBudW1iZXIgPSA2MDA7XG5cbiAgICBASW5wdXQoKSBwYW5lbEhlaWdodDogbnVtYmVyID0gNDAwO1xuXG4gICAgQElucHV0KCkgZnJhbWVXaWR0aDogbnVtYmVyID0gNjA7XG4gICAgXG4gICAgQElucHV0KCkgZnJhbWVIZWlnaHQ6IG51bWJlciA9IDQwO1xuXG4gICAgQElucHV0KCkgYWN0aXZlSW5kZXg6IG51bWJlciA9IDA7XG5cbiAgICBASW5wdXQoKSBzaG93RmlsbXN0cmlwOiBib29sZWFuID0gdHJ1ZTtcblxuICAgIEBJbnB1dCgpIGF1dG9QbGF5OiBib29sZWFuID0gdHJ1ZTtcblxuICAgIEBJbnB1dCgpIHRyYW5zaXRpb25JbnRlcnZhbDogbnVtYmVyID0gNDAwMDtcblxuICAgIEBJbnB1dCgpIHNob3dDYXB0aW9uOiBib29sZWFuID0gdHJ1ZTtcblxuICAgIEBJbnB1dCgpIGVmZmVjdER1cmF0aW9uOiBudW1iZXIgPSA1MDA7XG4gICAgXG4gICAgQE91dHB1dCgpIG9uSW1hZ2VDbGlja2VkID0gbmV3IEV2ZW50RW1pdHRlcigpO1xuXG4gICAgQE91dHB1dCgpIG9uSW1hZ2VDaGFuZ2UgPSBuZXcgRXZlbnRFbWl0dGVyKCk7XG4gICAgXG4gICAgX2ltYWdlczogYW55W107XG4gICAgXG4gICAgc2xpZGVzaG93QWN0aXZlOiBib29sZWFuO1xuICAgIFxuICAgIHB1YmxpYyBjb250YWluZXI6IGFueTtcbiAgICBcbiAgICBwdWJsaWMgcGFuZWxXcmFwcGVyOiBhbnk7XG4gICAgXG4gICAgcHVibGljIHBhbmVsczogYW55O1xuICAgIFxuICAgIHB1YmxpYyBjYXB0aW9uOiBhbnk7XG4gICAgXG4gICAgcHVibGljIHN0cmlwV3JhcHBlcjogYW55O1xuICAgIFxuICAgIHB1YmxpYyBzdHJpcDogYW55O1xuICAgIFxuICAgIHB1YmxpYyBmcmFtZXM6IGFueTtcbiAgICBcbiAgICBwdWJsaWMgaW50ZXJ2YWw6IGFueTtcbiAgICBcbiAgICBwdWJsaWMgc3RyaXBMZWZ0OiBudW1iZXIgPSAwO1xuICAgIFxuICAgIHB1YmxpYyBpbWFnZXNDaGFuZ2VkOiBib29sZWFuO1xuICAgIFxuICAgIHB1YmxpYyBpbml0aWFsaXplZDogYm9vbGVhbjtcblxuICAgIGNvbnN0cnVjdG9yKHB1YmxpYyBlbDogRWxlbWVudFJlZikge31cbiAgICBcbiAgICBuZ0FmdGVyVmlld0NoZWNrZWQoKSB7XG4gICAgICAgIGlmICh0aGlzLmltYWdlc0NoYW5nZWQpIHtcbiAgICAgICAgICAgIHRoaXMuc3RvcFNsaWRlc2hvdygpO1xuICAgICAgICAgICAgUHJvbWlzZS5yZXNvbHZlKG51bGwpLnRoZW4oKCkgPT4ge1xuICAgICAgICAgICAgICAgIHRoaXMucmVuZGVyKCk7XG4gICAgICAgICAgICAgICAgdGhpcy5pbWFnZXNDaGFuZ2VkID0gZmFsc2U7XG4gICAgICAgICAgICB9KTtcbiAgICAgICAgfVxuICAgIH1cblxuICAgIEBJbnB1dCgpIGdldCBpbWFnZXMoKTogYW55W10ge1xuICAgICAgICByZXR1cm4gdGhpcy5faW1hZ2VzO1xuICAgIH1cbiAgICBzZXQgaW1hZ2VzKHZhbHVlOmFueVtdKSB7XG4gICAgICAgIHRoaXMuX2ltYWdlcyA9IHZhbHVlO1xuICAgICAgICB0aGlzLmltYWdlc0NoYW5nZWQgPSB0cnVlO1xuXG4gICAgICAgIGlmICh0aGlzLmluaXRpYWxpemVkKSB7XG4gICAgICAgICAgICB0aGlzLmFjdGl2ZUluZGV4ID0gMDtcbiAgICAgICAgfVxuICAgIH1cbiAgICAgICAgXG4gICAgbmdBZnRlclZpZXdJbml0KCkge1xuICAgICAgICB0aGlzLmNvbnRhaW5lciA9IHRoaXMuZWwubmF0aXZlRWxlbWVudC5jaGlsZHJlblswXTtcbiAgICAgICAgdGhpcy5wYW5lbFdyYXBwZXIgPSBEb21IYW5kbGVyLmZpbmRTaW5nbGUodGhpcy5lbC5uYXRpdmVFbGVtZW50LCAndWwudWktZ2FsbGVyaWEtcGFuZWwtd3JhcHBlcicpO1xuICAgICAgICB0aGlzLmluaXRpYWxpemVkID0gdHJ1ZTtcbiAgICAgICAgXG4gICAgICAgIGlmICh0aGlzLnNob3dGaWxtc3RyaXApIHtcbiAgICAgICAgICAgIHRoaXMuc3RyaXBXcmFwcGVyID0gRG9tSGFuZGxlci5maW5kU2luZ2xlKHRoaXMuY29udGFpbmVyLCdkaXYudWktZ2FsbGVyaWEtZmlsbXN0cmlwLXdyYXBwZXInKTtcbiAgICAgICAgICAgIHRoaXMuc3RyaXAgPSBEb21IYW5kbGVyLmZpbmRTaW5nbGUodGhpcy5zdHJpcFdyYXBwZXIsJ3VsLnVpLWdhbGxlcmlhLWZpbG1zdHJpcCcpO1xuICAgICAgICB9XG4gICAgICAgIFxuICAgICAgICBpZiAodGhpcy5pbWFnZXMgJiYgdGhpcy5pbWFnZXMubGVuZ3RoKSB7XG4gICAgICAgICAgICB0aGlzLnJlbmRlcigpO1xuICAgICAgICB9IFxuICAgIH1cbiAgICBcbiAgICByZW5kZXIoKSB7XG4gICAgICAgIHRoaXMucGFuZWxzID0gRG9tSGFuZGxlci5maW5kKHRoaXMucGFuZWxXcmFwcGVyLCAnbGkudWktZ2FsbGVyaWEtcGFuZWwnKTsgXG4gICAgICAgIFxuICAgICAgICBpZiAodGhpcy5zaG93RmlsbXN0cmlwKSB7XG4gICAgICAgICAgICB0aGlzLmZyYW1lcyA9IERvbUhhbmRsZXIuZmluZCh0aGlzLnN0cmlwLCdsaS51aS1nYWxsZXJpYS1mcmFtZScpO1xuICAgICAgICAgICAgdGhpcy5zdHJpcFdyYXBwZXIuc3R5bGUud2lkdGggPSBEb21IYW5kbGVyLndpZHRoKHRoaXMucGFuZWxXcmFwcGVyKSAtIDUwICsgJ3B4JztcbiAgICAgICAgICAgIHRoaXMuc3RyaXBXcmFwcGVyLnN0eWxlLmhlaWdodCA9IHRoaXMuZnJhbWVIZWlnaHQgKyAncHgnO1xuICAgICAgICB9XG4gICAgICAgIFxuICAgICAgICBpZiAodGhpcy5zaG93Q2FwdGlvbikge1xuICAgICAgICAgICAgdGhpcy5jYXB0aW9uID0gRG9tSGFuZGxlci5maW5kU2luZ2xlKHRoaXMuY29udGFpbmVyLCdkaXYudWktZ2FsbGVyaWEtY2FwdGlvbicpO1xuICAgICAgICAgICAgdGhpcy5jYXB0aW9uLnN0eWxlLmJvdHRvbSA9IHRoaXMuc2hvd0ZpbG1zdHJpcCA/IERvbUhhbmRsZXIuZ2V0T3V0ZXJIZWlnaHQodGhpcy5zdHJpcFdyYXBwZXIsdHJ1ZSkgKyAncHgnIDogMCArICdweCc7XG4gICAgICAgICAgICB0aGlzLmNhcHRpb24uc3R5bGUud2lkdGggPSBEb21IYW5kbGVyLndpZHRoKHRoaXMucGFuZWxXcmFwcGVyKSArICdweCc7XG4gICAgICAgIH1cbiAgIFxuICAgICAgICBpZiAodGhpcy5hdXRvUGxheSkge1xuICAgICAgICAgICAgdGhpcy5zdGFydFNsaWRlc2hvdygpO1xuICAgICAgICB9XG4gICAgICAgIFxuICAgICAgICB0aGlzLmNvbnRhaW5lci5zdHlsZS52aXNpYmlsaXR5ID0gJ3Zpc2libGUnO1xuICAgIH1cbiAgICBcbiAgICBzdGFydFNsaWRlc2hvdygpIHtcbiAgICAgICAgdGhpcy5pbnRlcnZhbCA9IHNldEludGVydmFsKCgpID0+IHtcbiAgICAgICAgICAgIHRoaXMubmV4dCgpO1xuICAgICAgICB9LCB0aGlzLnRyYW5zaXRpb25JbnRlcnZhbCk7XG4gICAgICAgIFxuICAgICAgICB0aGlzLnNsaWRlc2hvd0FjdGl2ZSA9IHRydWU7XG4gICAgfVxuICAgICAgICBcbiAgICBzdG9wU2xpZGVzaG93KCkge1xuICAgICAgICBpZiAodGhpcy5pbnRlcnZhbCkge1xuICAgICAgICAgICAgY2xlYXJJbnRlcnZhbCh0aGlzLmludGVydmFsKTtcbiAgICAgICAgfVxuICAgICAgICBcbiAgICAgICAgdGhpcy5zbGlkZXNob3dBY3RpdmUgPSBmYWxzZTtcbiAgICB9XG4gICAgXG4gICAgY2xpY2tOYXZSaWdodCgpIHtcbiAgICAgICAgaWYgKHRoaXMuc2xpZGVzaG93QWN0aXZlKSB7XG4gICAgICAgICAgICB0aGlzLnN0b3BTbGlkZXNob3coKTtcbiAgICAgICAgfVxuICAgICAgICB0aGlzLm5leHQoKTtcbiAgICB9IFxuICAgIFxuICAgIGNsaWNrTmF2TGVmdCgpIHtcbiAgICAgICAgaWYgKHRoaXMuc2xpZGVzaG93QWN0aXZlKSB7XG4gICAgICAgICAgICB0aGlzLnN0b3BTbGlkZXNob3coKTtcbiAgICAgICAgfVxuICAgICAgICB0aGlzLnByZXYoKTtcbiAgICB9XG4gICAgXG4gICAgZnJhbWVDbGljayhmcmFtZSkge1xuICAgICAgICBpZiAodGhpcy5zbGlkZXNob3dBY3RpdmUpIHtcbiAgICAgICAgICAgIHRoaXMuc3RvcFNsaWRlc2hvdygpO1xuICAgICAgICB9XG4gICAgICAgIFxuICAgICAgICB0aGlzLnNlbGVjdChEb21IYW5kbGVyLmluZGV4KGZyYW1lKSwgZmFsc2UpO1xuICAgIH1cbiAgICBcbiAgICBwcmV2KCkge1xuICAgICAgICBpZiAodGhpcy5hY3RpdmVJbmRleCAhPT0gMCkge1xuICAgICAgICAgICAgdGhpcy5zZWxlY3QodGhpcy5hY3RpdmVJbmRleCAtIDEsIHRydWUpO1xuICAgICAgICB9XG4gICAgfVxuICAgIFxuICAgIG5leHQoKSB7XG4gICAgICAgIGlmICh0aGlzLmFjdGl2ZUluZGV4ICE9PSAodGhpcy5wYW5lbHMubGVuZ3RoLTEpKSB7XG4gICAgICAgICAgICB0aGlzLnNlbGVjdCh0aGlzLmFjdGl2ZUluZGV4ICsgMSwgdHJ1ZSk7XG4gICAgICAgIH1cbiAgICAgICAgZWxzZSB7XG4gICAgICAgICAgICB0aGlzLnNlbGVjdCgwLCBmYWxzZSk7XG4gICAgICAgICAgICB0aGlzLnN0cmlwTGVmdCA9IDA7XG4gICAgICAgIH1cbiAgICB9XG4gICAgICAgIFxuICAgIHNlbGVjdChpbmRleCwgcmVwb3NpdGlvbikge1xuICAgICAgICBpZiAoaW5kZXggIT09IHRoaXMuYWN0aXZlSW5kZXgpIHsgICAgICAgICAgICBcbiAgICAgICAgICAgIGxldCBvbGRQYW5lbCA9IHRoaXMucGFuZWxzW3RoaXMuYWN0aXZlSW5kZXhdLFxuICAgICAgICAgICAgbmV3UGFuZWwgPSB0aGlzLnBhbmVsc1tpbmRleF07XG4gICAgICAgICAgICBcbiAgICAgICAgICAgIERvbUhhbmRsZXIuZmFkZUluKG5ld1BhbmVsLCB0aGlzLmVmZmVjdER1cmF0aW9uKTtcbiAgICAgICAgICAgIFxuICAgICAgICAgICAgaWYgKHRoaXMuc2hvd0ZpbG1zdHJpcCkge1xuICAgICAgICAgICAgICAgIGxldCBvbGRGcmFtZSA9IHRoaXMuZnJhbWVzW3RoaXMuYWN0aXZlSW5kZXhdLFxuICAgICAgICAgICAgICAgIG5ld0ZyYW1lID0gdGhpcy5mcmFtZXNbaW5kZXhdO1xuICAgICAgICAgICAgICAgIFxuICAgICAgICAgICAgICAgIGlmIChyZXBvc2l0aW9uID09PSB1bmRlZmluZWQgfHwgcmVwb3NpdGlvbiA9PT0gdHJ1ZSkge1xuICAgICAgICAgICAgICAgICAgICBsZXQgZnJhbWVMZWZ0ID0gbmV3RnJhbWUub2Zmc2V0TGVmdCxcbiAgICAgICAgICAgICAgICAgICAgc3RlcEZhY3RvciA9IHRoaXMuZnJhbWVXaWR0aCArIHBhcnNlSW50KGdldENvbXB1dGVkU3R5bGUobmV3RnJhbWUpWydtYXJnaW4tcmlnaHQnXSwgMTApLFxuICAgICAgICAgICAgICAgICAgICBzdHJpcExlZnQgPSB0aGlzLnN0cmlwLm9mZnNldExlZnQsXG4gICAgICAgICAgICAgICAgICAgIGZyYW1lVmlld3BvcnRMZWZ0ID0gZnJhbWVMZWZ0ICsgc3RyaXBMZWZ0LFxuICAgICAgICAgICAgICAgICAgICBmcmFtZVZpZXdwb3J0UmlnaHQgPSBmcmFtZVZpZXdwb3J0TGVmdCArIHRoaXMuZnJhbWVXaWR0aDtcbiAgICAgICAgICAgICAgICAgICAgXG4gICAgICAgICAgICAgICAgICAgIGlmIChmcmFtZVZpZXdwb3J0UmlnaHQgPiBEb21IYW5kbGVyLndpZHRoKHRoaXMuc3RyaXBXcmFwcGVyKSlcbiAgICAgICAgICAgICAgICAgICAgICAgIHRoaXMuc3RyaXBMZWZ0IC09IHN0ZXBGYWN0b3I7XG4gICAgICAgICAgICAgICAgICAgIGVsc2UgaWYgKGZyYW1lVmlld3BvcnRMZWZ0IDwgMClcbiAgICAgICAgICAgICAgICAgICAgICAgIHRoaXMuc3RyaXBMZWZ0ICs9IHN0ZXBGYWN0b3I7XG4gICAgICAgICAgICAgICAgfVxuICAgICAgICAgICAgfVxuICAgICAgICAgICAgXG4gICAgICAgICAgICB0aGlzLmFjdGl2ZUluZGV4ID0gaW5kZXg7XG5cbiAgICAgICAgICAgIHRoaXMub25JbWFnZUNoYW5nZS5lbWl0KHtpbmRleDogaW5kZXh9KTtcbiAgICAgICAgfVxuICAgIH1cbiAgICBcbiAgICBjbGlja0ltYWdlKGV2ZW50LCBpbWFnZSwgaSkge1xuICAgICAgICB0aGlzLm9uSW1hZ2VDbGlja2VkLmVtaXQoe29yaWdpbmFsRXZlbnQ6IGV2ZW50LCBpbWFnZTogaW1hZ2UsIGluZGV4OiBpfSlcbiAgICB9XG4gICAgICAgIFxuICAgIG5nT25EZXN0cm95KCkge1xuICAgICAgICB0aGlzLnN0b3BTbGlkZXNob3coKTtcbiAgICB9XG5cbn1cblxuQE5nTW9kdWxlKHtcbiAgICBpbXBvcnRzOiBbQ29tbW9uTW9kdWxlXSxcbiAgICBleHBvcnRzOiBbR2FsbGVyaWFdLFxuICAgIGRlY2xhcmF0aW9uczogW0dhbGxlcmlhXVxufSlcbmV4cG9ydCBjbGFzcyBHYWxsZXJpYU1vZHVsZSB7IH0iXX0=
122.680851
19,526
0.865418
c5e4de69da04a9e46ad40d00888b29f50ab1f77b
479
js
JavaScript
models/channelModel.js
AlyonaUdod/EasyChat_AU
803f9092c560f4f1a00bfa0ad929cfbe16e53f76
[ "MIT" ]
2
2019-04-04T14:37:08.000Z
2019-04-09T15:51:16.000Z
models/channelModel.js
AlyonaUdod/EasyChat_AU
803f9092c560f4f1a00bfa0ad929cfbe16e53f76
[ "MIT" ]
null
null
null
models/channelModel.js
AlyonaUdod/EasyChat_AU
803f9092c560f4f1a00bfa0ad929cfbe16e53f76
[ "MIT" ]
null
null
null
let mongoose = require('mongoose'); let MessageSchema = require('./channelMessageModel') let Schema = mongoose.Schema; let channelSchema = new Schema({ channelName: {type: String, unique: true, required: true}, author: String, addAt: {type: Date, default: Date.now}, type: String, messages: [MessageSchema], }, { versionKey: false, collection: "ChannelCollection" }); const Channel = mongoose.model('ChannelCollection', channelSchema); module.exports = Channel;
26.611111
67
0.722338
c5e52dd9ee8e103bfa943c07378bb9e55f078e25
2,247
js
JavaScript
public/asset/front/js/profile/index.js
konderson/myldl
dd84d25dde245eafe680156dfd8b9af284b84dde
[ "MIT" ]
null
null
null
public/asset/front/js/profile/index.js
konderson/myldl
dd84d25dde245eafe680156dfd8b9af284b84dde
[ "MIT" ]
4
2021-02-03T01:44:18.000Z
2022-02-27T07:21:39.000Z
public/asset/front/js/profile/index.js
konderson/myldl
dd84d25dde245eafe680156dfd8b9af284b84dde
[ "MIT" ]
null
null
null
var count = 20; var filter = "all"; $(document).ready(function() { $(document).on('click', '#more', function (e) { e.preventDefault(); $('#more').hide(); $.ajax({ type: "POST", url: baseurl+"profile/ajax_lenta", data: { 'count': count, 'filter': filter }, dataType: "json", success: function (msg) { $('.layer').append(msg.str); $(".layer").addClass("layer-visible"); count = msg.count; if (msg.end_count) $('#more').hide(); else $('#more').show(); if (msg.not_show > 0) { $("#current_count").html("(" + msg.not_show + ")"); $("#current_count_small").html("(" + msg.not_show + ")"); } else { $("#current_count").html(""); $("#current_count_small").html(""); } } }); }); $(document).on('click', '.filter-list span', function(e){ e.preventDefault(); $(this).parent().addClass('checked'); filter = $(this).parent().attr('data-filter'); $(this).parent().siblings('.checked').removeClass('checked'); $('.layer').html(""); $('#more').hide(); $.ajax({ type: "POST", url: baseurl+"profile/ajax_lenta", data: { 'count': 0, 'filter': filter }, dataType: "json", success: function (msg) { $('.layer').append(msg.str); count = msg.count; if (msg.end_count) $('#more').hide(); else $('#more').show(); if (msg.not_show > 0) { $("#current_count").html("(" + msg.not_show + ")"); $("#current_count_small").html("(" + msg.not_show + ")"); } else { $("#current_count").html(""); $("#current_count_small").html(""); } } }); }); });
33.044118
77
0.374277
c5e55a0010e8c99a59f0fc06ad6ccaf82716a21d
15,603
js
JavaScript
lib/helpers/client_schema.js
TexasOnCourse/ee_oidc_provider
e1aebd40e3b3e606d175e2d34983f366f439fb44
[ "MIT" ]
null
null
null
lib/helpers/client_schema.js
TexasOnCourse/ee_oidc_provider
e1aebd40e3b3e606d175e2d34983f366f439fb44
[ "MIT" ]
null
null
null
lib/helpers/client_schema.js
TexasOnCourse/ee_oidc_provider
e1aebd40e3b3e606d175e2d34983f366f439fb44
[ "MIT" ]
null
null
null
'use strict'; const _ = require('lodash'); const url = require('url'); const validUrl = require('valid-url'); const errors = require('./errors'); const instance = require('./weak_cache'); function invalidate(message) { throw new errors.InvalidClientMetadata(message); } const RECOGNIZED_METADATA = [ 'application_type', 'backchannel_logout_uri', 'backchannel_logout_session_required', 'client_id', 'client_id_issued_at', 'client_name', 'client_secret', 'client_secret_expires_at', 'client_uri', 'contacts', 'default_acr_values', 'default_max_age', 'grant_types', 'id_token_encrypted_response_alg', 'id_token_encrypted_response_enc', 'id_token_signed_response_alg', 'initiate_login_uri', 'jwks', 'jwks_uri', 'logo_uri', 'policy_uri', 'post_logout_redirect_uris', 'redirect_uris', 'request_object_encryption_alg', 'request_object_encryption_enc', 'request_object_signing_alg', 'request_uris', 'require_auth_time', 'response_types', 'sector_identifier_uri', 'subject_type', 'token_endpoint_auth_method', 'token_endpoint_auth_signing_alg', 'tos_uri', 'userinfo_encrypted_response_alg', 'userinfo_encrypted_response_enc', 'userinfo_signed_response_alg', ]; const SECRET_LENGTH_REQUIRED = [ 'id_token_signed_response_alg', 'request_object_signing_alg', 'token_endpoint_auth_signing_alg', 'userinfo_signed_response_alg', ]; const REQUIRED = [ 'client_id', // 'client_secret', => validated elsewhere and only needed somewhen 'redirect_uris', ]; const BOOL = [ 'require_auth_time', 'backchannel_logout_session_required', ]; const ARYS = [ 'contacts', 'default_acr_values', 'grant_types', 'redirect_uris', 'post_logout_redirect_uris', 'request_uris', 'response_types', ]; const STRING = [ 'application_type', 'backchannel_logout_uri', 'client_id', 'client_name', 'client_secret', 'id_token_signed_response_alg', 'sector_identifier_uri', 'subject_type', 'token_endpoint_auth_method', 'userinfo_signed_response_alg', 'id_token_encrypted_response_alg', 'request_object_signing_alg', 'id_token_encrypted_response_enc', 'userinfo_encrypted_response_alg', 'userinfo_encrypted_response_enc', 'request_object_encryption_enc', 'request_object_encryption_alg', 'client_uri', 'initiate_login_uri', 'jwks_uri', 'logo_uri', 'policy_uri', 'tos_uri', // in arrays 'contacts', 'default_acr_values', 'grant_types', 'redirect_uris', 'post_logout_redirect_uris', 'request_uris', 'response_types', ]; const WHEN = { id_token_encrypted_response_enc: ['id_token_encrypted_response_alg', 'A128CBC-HS256'], userinfo_encrypted_response_enc: ['userinfo_encrypted_response_alg', 'A128CBC-HS256'], request_object_encryption_enc: ['request_object_encryption_alg', 'A128CBC-HS256'], }; const WEB_URI = [ 'client_uri', 'initiate_login_uri', 'jwks_uri', 'logo_uri', 'policy_uri', 'tos_uri', 'sector_identifier_uri', 'backchannel_logout_uri', // in arrays 'post_logout_redirect_uris', 'request_uris', ]; const HTTPS_URI = [ 'initiate_login_uri', 'sector_identifier_uri', 'request_uris', ]; const LENGTH = [ 'grant_types', 'redirect_uris', 'response_types', ]; const LOOPBACKS = ['localhost', '127.0.0.1', '::1']; module.exports = function getSchema(provider) { const ENUM = { application_type: ['native', 'web'], response_types: instance(provider).configuration('responseTypes'), default_acr_values: instance(provider).configuration('acrValues'), grant_types: instance(provider).configuration('grantTypes'), subject_type: instance(provider).configuration('subjectTypes'), token_endpoint_auth_method: instance(provider).configuration('tokenEndpointAuthMethods'), token_endpoint_auth_signing_alg: instance(provider).configuration('tokenEndpointAuthSigningAlgValues'), userinfo_signed_response_alg: () => instance(provider).configuration('userinfoSigningAlgValues'), id_token_signed_response_alg: (metadata) => { if (metadata.response_types.join(' ').indexOf('token') === -1) { return instance(provider).configuration('idTokenSigningAlgValues'); } return _.without(instance(provider).configuration('idTokenSigningAlgValues'), 'none'); }, id_token_encrypted_response_alg: instance(provider).configuration('idTokenEncryptionAlgValues'), id_token_encrypted_response_enc: instance(provider).configuration('idTokenEncryptionEncValues'), userinfo_encrypted_response_alg: instance(provider).configuration('userinfoEncryptionAlgValues'), userinfo_encrypted_response_enc: instance(provider).configuration('userinfoEncryptionEncValues'), request_object_encryption_alg: () => instance(provider).configuration('requestObjectEncryptionAlgValues'), request_object_encryption_enc: instance(provider).configuration('requestObjectEncryptionEncValues'), }; const DEFAULT = { application_type: 'web', backchannel_logout_session_required: instance(provider).configuration('features.backchannelLogout') ? false : undefined, grant_types: ['authorization_code'], id_token_signed_response_alg: 'RS256', post_logout_redirect_uris: instance(provider).configuration('features.sessionManagement') ? [] : undefined, request_uris: instance(provider).configuration('features.requestUri.requireRequestUriRegistration') ? [] : undefined, require_auth_time: false, response_types: ['code'], subject_type: 'public', token_endpoint_auth_method: 'client_secret_basic', }; class Schema { constructor(metadata) { _.assign(this, DEFAULT); Object.assign(this, _.chain(metadata) .omitBy(_.isNull) .pick(RECOGNIZED_METADATA) .value()); this.required(); this.whens(); this.arrays(); this.lengths(); this.strings(); this.enums(); this.booleans(); this.webUris(); this.redirectUris(); this.normalizeNativeAppUris(); // MAX AGE FORMAT if (this.default_max_age !== undefined) { if (!Number.isInteger(this.default_max_age) || this.default_max_age <= 0) { invalidate('default_max_age must be a positive integer'); } } const rts = _.chain(this.response_types) .map(rt => rt.split(' ')) .flatten() .uniq() .value(); if (this.token_endpoint_auth_method === 'none') { if (_.includes(this.grant_types, 'authorization_code')) { invalidate('grant_types must not use token endpoint when token_endpoint_auth_method is none'); } } if (_.includes(rts, 'code') && !_.includes(this.grant_types, 'authorization_code')) { invalidate('grant_types must contain authorization_code when code is amongst response_types'); } if (_.includes(rts, 'token') || _.includes(rts, 'id_token')) { if (!_.includes(this.grant_types, 'implicit')) { invalidate('grant_types must contain implicit when id_token or token are amongst response_types'); } } // CLIENT SECRET LENGHT const hsLengths = SECRET_LENGTH_REQUIRED.map((prop) => { if (this[prop] && this[prop].startsWith('HS')) { return parseInt(this[prop].slice(-3) / 8, 10); } return undefined; }); const validateSecretLength = _.max(hsLengths); const validateSecretPresence = validateSecretLength || ['private_key_jwt', 'none'].indexOf(this.token_endpoint_auth_method) === -1; if (validateSecretPresence && !this.client_secret) { invalidate('client_secret is mandatory property'); } if (validateSecretLength) { if (this.client_secret.length < validateSecretLength) { invalidate('insufficient client_secret length'); } } // PAIRWISE PRESENCE if (this.subject_type === 'pairwise' && !this.sector_identifier_uri) { const hosts = _.chain(this.redirect_uris) .map(uri => url.parse(uri).host) .uniq() .value(); if (hosts.length === 1) { this.sector_identifier = hosts[0]; } else { invalidate('sector_identifier_uri is required when using multiple hosts in your redirect_uris'); } } else if (this.sector_identifier_uri) { this.sector_identifier = url.parse(this.sector_identifier_uri).host; } if (this.jwks !== undefined && this.jwks_uri !== undefined) { invalidate('jwks and jwks_uri must not be used at the same time'); } if (this.jwks !== undefined) { if (!Array.isArray(this.jwks.keys)) { invalidate('jwks must be a JWK Set'); } if (!this.jwks.keys.length) { invalidate('jwks.keys must not be empty'); } } } required() { REQUIRED.forEach((prop) => { if (!this[prop]) { invalidate(`${prop} is mandatory property`); } }); const requireJwks = this.token_endpoint_auth_method === 'private_key_jwt' || (String(this.request_object_signing_alg).match(/^(RS|ES)/)) || (String(this.id_token_encrypted_response_alg).match(/^(RSA|ECDH)/)) || (String(this.userinfo_encrypted_response_alg).match(/^(RSA|ECDH)/)); if (requireJwks && !this.jwks && !this.jwks_uri) { invalidate('jwks or jwks_uri is mandatory for this client'); } } strings() { STRING.forEach((prop) => { if (this[prop] !== undefined) { const isAry = ARYS.indexOf(prop) !== -1; (isAry ? this[prop] : [this[prop]]).forEach((val) => { if (typeof val !== 'string' || !val.length) { invalidate(isAry ? `${prop} must only contain strings` : `${prop} must be a non-empty string if provided`); } }); } }); } webUris() { WEB_URI.forEach((prop) => { if (this[prop] !== undefined) { const isAry = ARYS.indexOf(prop) !== -1; (isAry ? this[prop] : [this[prop]]).forEach((val) => { const method = HTTPS_URI.indexOf(prop) === -1 ? 'isWebUri' : 'isHttpsUri'; const type = method === 'isWebUri' ? 'web' : 'https'; if (!validUrl[method](val)) { invalidate(isAry ? `${prop} must only contain ${type} uris` : `${prop} must be a ${type} uri`); } }); } }); } arrays() { ARYS.forEach((prop) => { if (this[prop] !== undefined) { if (!Array.isArray(this[prop])) { invalidate(`${prop} must be an array`); } this[prop] = _.uniq(this[prop]); } }); } lengths() { if (LENGTH.every(prop => this[prop] && this[prop].length === 0)) { return; } LENGTH.forEach((prop) => { if (this[prop] !== undefined && !this[prop].length) { invalidate(`${prop} must contain members`); } }); } booleans() { BOOL.forEach((prop) => { if (this[prop] !== undefined) { if (typeof this[prop] !== 'boolean') { invalidate(`${prop} must be a boolean`); } } }); } whens() { _.forEach(WHEN, (then, when) => { if (this[when] !== undefined && this[then[0]] === undefined) { invalidate(`${then[0]} is mandatory property`); } else if (this[when] === undefined && this[then[0]] !== undefined) { this[when] = then[1]; } }); } enums() { _.forEach(ENUM, (only, prop) => { if (typeof only === 'function') { only = only(this); // eslint-disable-line no-param-reassign } if (this[prop] !== undefined) { const isAry = ARYS.indexOf(prop) !== -1; if (isAry && this[prop].some((val) => { if (only instanceof Set) { return !only.has(val); } return only.indexOf(val) === -1; })) { invalidate(`${prop} can only contain members [${only}]`); } else if (!isAry && only.indexOf(this[prop]) === -1) { invalidate(`${prop} must be one of [${only}]`); } } }); } normalizeNativeAppUris() { if (this.application_type === 'web') return; if (!instance(provider).configuration('features.oauthNativeApps')) return; this.redirect_uris = _.map(this.redirect_uris, (redirectUri) => { const parsed = url.parse(redirectUri); // remove the port component, making dynamic ports allowed for loopback uris if (parsed.protocol === 'http:' && LOOPBACKS.indexOf(parsed.hostname) !== -1) { return url.format(Object.assign(parsed, { host: null, port: null, })); } return redirectUri; }); } redirectUris() { this.redirect_uris.forEach((redirectUri) => { if (redirectUri.indexOf('#') !== -1) { invalidate('redirect_uris must not contain fragments'); } switch (this.application_type) { // eslint-disable-line default-case case 'web': if (!validUrl.isWebUri(redirectUri)) { invalidate('redirect_uris must only contain valid web uris'); } if (this.grant_types.indexOf('implicit') !== -1 && redirectUri.startsWith('http:')) { invalidate('redirect_uris for web clients using implicit flow MUST only register URLs using the https scheme'); } // if (url.parse(redirectUri).hostname === 'localhost') { // invalidate('redirect_uris for web clients must not be using localhost'); // } if (this.grant_types.indexOf('implicit') !== -1 && url.parse(redirectUri).hostname === 'localhost') { invalidate('redirect_uris for web clients using implicit flow must not be using localhost'); } break; case 'native': if (!validUrl.isUri(redirectUri)) { invalidate('redirect_uris must only contain valid uris'); } if (instance(provider).configuration('features.oauthNativeApps')) { const uri = url.parse(redirectUri); switch (uri.protocol) { case 'http:': // Loopback URI Redirection if (LOOPBACKS.indexOf(uri.hostname) === -1) { invalidate('redirect_uris for native clients using http as a protocol can only use loopback addresses as hostnames'); } break; case 'https:': // App-claimed HTTPS URI Redirection if (LOOPBACKS.indexOf(uri.hostname) !== -1) { invalidate(`redirect_uris for native clients using claimed HTTPS URIs must not be using ${uri.hostname} as hostname`); } break; default: // App-declared Custom URI Scheme Redirection } } else { if (redirectUri.startsWith('https:')) { invalidate('redirect_uris for native clients must not be using https URI scheme'); } if (redirectUri.startsWith('http:') && url.parse(redirectUri).hostname !== 'localhost') { invalidate('redirect_uris for native clients must be using localhost as hostname'); } } break; } }); } } return Schema; };
32.104938
138
0.613279
c5e5cd254d4d8d164a5455403a7b9f2436e4b886
1,808
js
JavaScript
src/modules/storage/repoFolder.js
kowala-tech/edge-core-js
c3523994df9e25565e78b7a8fc767d5f327798fc
[ "BSD-2-Clause-FreeBSD" ]
null
null
null
src/modules/storage/repoFolder.js
kowala-tech/edge-core-js
c3523994df9e25565e78b7a8fc767d5f327798fc
[ "BSD-2-Clause-FreeBSD" ]
null
null
null
src/modules/storage/repoFolder.js
kowala-tech/edge-core-js
c3523994df9e25565e78b7a8fc767d5f327798fc
[ "BSD-2-Clause-FreeBSD" ]
1
2021-07-07T17:16:49.000Z
2021-07-07T17:16:49.000Z
// @flow import type { DiskletFile, DiskletFolder, EdgeIo } from '../../edge-core-index.js' import { decrypt, encrypt } from '../../util/crypto/crypto.js' import { utf8 } from '../../util/encoding.js' /** * A file within an encrypted folder. */ class RepoFile { io: EdgeIo dataKey: Uint8Array file: DiskletFile constructor (io: EdgeIo, dataKey: Uint8Array, file: DiskletFile) { this.io = io this.dataKey = dataKey this.file = file } delete () { return this.file.delete() } getData (): Promise<Uint8Array> { return this.file .getText() .then(text => JSON.parse(text)) .then(json => decrypt(json, this.dataKey)) } getText (): Promise<string> { return this.getData().then(data => utf8.stringify(data)) } setData (data: Array<number> | Uint8Array): Promise<void> { const dataCast: any = data // Treating Array<number> like Uint8Array return this.file.setText( JSON.stringify(encrypt(this.io, dataCast, this.dataKey)) ) } setText (text: string): Promise<void> { return this.setData(utf8.parse(text)) } } /** * Wraps a folder with automatic encryption and decryption. */ export class RepoFolder { io: EdgeIo dataKey: Uint8Array inner: DiskletFolder constructor (io: EdgeIo, dataKey: Uint8Array, folder: DiskletFolder) { this.io = io this.dataKey = dataKey this.inner = folder } delete () { return this.inner.delete() } file (name: string): DiskletFile { return new RepoFile(this.io, this.dataKey, this.inner.file(name)) } folder (name: string): DiskletFolder { return new RepoFolder(this.io, this.dataKey, this.inner.folder(name)) } listFiles () { return this.inner.listFiles() } listFolders () { return this.inner.listFolders() } }
21.023256
73
0.64823
c5e6adf2e8a676e4aeffa1fce9bbf93005a2a3eb
15,678
js
JavaScript
src/screens/Edit.js
megany128/ReShare
46b1b33de5e15c9ec684e14374e86fed2a28387f
[ "MIT" ]
null
null
null
src/screens/Edit.js
megany128/ReShare
46b1b33de5e15c9ec684e14374e86fed2a28387f
[ "MIT" ]
null
null
null
src/screens/Edit.js
megany128/ReShare
46b1b33de5e15c9ec684e14374e86fed2a28387f
[ "MIT" ]
null
null
null
import React, { Component } from 'react'; import { View, Text, TouchableHighlight, TouchableOpacity, StyleSheet, TextInput, Alert, } from 'react-native'; import DropDownPicker from 'react-native-dropdown-picker'; import { db } from '../config'; import firebase from 'firebase' import 'firebase/storage'; import uuid from 'react-native-uuid'; import ResourceImagePicker from "../components/ResourceImagePicker" import * as Permissions from 'expo-permissions'; import Constants from 'expo-constants'; import { KeyboardAwareScrollView } from 'react-native-keyboard-aware-scroll-view' import DateTimePickerModal from "react-native-modal-datetime-picker"; import moment from 'moment' import Icon from "react-native-vector-icons/MaterialCommunityIcons"; import { AsyncStorage } from "react-native" class Edit extends Component { constructor() { super() this.state = { // Sets the visibility of the date picker isVisible: false } } state = { name: '', author: firebase.auth().currentUser.uid, category: '', time: firebase.database.ServerValue.TIMESTAMP, description: '', location: '', expiry: '', imageUri: '', }; // Shows the date picker showPicker = () => { this.setState({ isVisible: true }) }; // Hides the date picker and resets expiry (users have to press confirm to save their changes) hidePicker = () => { this.setState({ isVisible: false, expiry: '' }) } // Hides the date picker and sets the state of expiry to the date the user has picked handlePicker = (date) => { this.setState({ isVisible: false, expiry: moment(date).format('MMMM Do YYYY') }) } // Sets all the inputs to the correct values from the offer itself componentDidMount = async () => { this.getPermissionAsync(); const { navigation } = this.props; const name = navigation.getParam('name', 'no name'); this.setState({ name }) const uid = navigation.getParam('uid', 'no uid') this.setState({ uid }) const key = navigation.getParam('key', 'no key') this.setState({ key }) const description = navigation.getParam('description', 'no description'); this.setState({ description }) const category = '' this.setState({ category }) const expiry = navigation.getParam('expiry', 'no expiry'); this.setState({ expiry }) const location = '' this.setState({ location }) const time = navigation.getParam('time', 'no time') this.setState({ time }) const imageID = navigation.getParam('imageID', 'no imageID') const ref = firebase.storage().ref('offers/' + { imageID }.imageID + '.jpg'); const url = await ref.getDownloadURL(); this.setState({ image: url, imageUri: url }) } // Gets permission to access the camera roll getPermissionAsync = async () => { if (Constants.platform.ios) { console.log('getting permission'); const { status } = await Permissions.askAsync(Permissions.CAMERA_ROLL); if (status !== 'granted') { alert('Sorry, we need camera roll permissions to make this work!'); } } } // Updates the offer in Firebase with the new values editOffer(name, category, description, location, expiry, id) { db.ref('offers/' + this.state.key).update({ name: name, category: category, description: description, location: location, expiry: expiry, id: id }); }; // Sets this.state.imageUri to the uri that is passed setOfferImage = (uri) => { this.setState({ imageUri: uri.uri }) } // Alerts the user if they have not filled out one of the fields // If all fields are filled, uploads the offer to Firebase along with the blob of the image handleSubmit = () => { // Checks if an image has been selected if (!(/\S/.test(this.state.imageUri))) { Alert.alert( "Please add an image for your offer" ); } // Checks if the other inputs have been filled else if (!(/\S/.test(this.state.name)) || !(/\S/.test(this.state.category)) || !(/\S/.test(this.state.description)) || !(/\S/.test(this.state.location))) { Alert.alert( "Please fill in all the fields before submitting" ); } else { this.uriToBlob(this.state.imageUri).then((blob) => { return this.uploadToFirebase(blob); }); } }; // Converts the URI to a blob that can be stored in Firebase Storage uriToBlob = (uri) => { console.log('uri: ' + uri) return new Promise(function (resolve, reject) { try { var xhr = new XMLHttpRequest(); xhr.open("GET", uri); xhr.responseType = "blob"; xhr.onerror = function () { reject("Network error.") }; xhr.onload = function () { if (xhr.status === 200) { resolve(xhr.response) } else { reject("Loading error:" + xhr.statusText) } }; xhr.send(); } catch (err) { reject(err.message) } }) } // Uploads the offer to Firebase along with the blob uploadToFirebase = (blob) => { console.log('uploading to firebase') return new Promise((resolve, reject) => { var storageRef = firebase.storage().ref(); // Generates a random and unique ID for the image const imageUuid = uuid.v1(); console.log('uuid: ' + imageUuid) AsyncStorage.setItem('imageLoaded', 'not loaded') // Stores the blob as an image in Firebase Storage under the previously generated UUID storageRef.child('offers/' + imageUuid + '.jpg').put(blob, { contentType: 'image/jpeg' }).then((snapshot) => { AsyncStorage.setItem('imageLoaded', 'loaded') blob.close(); resolve(snapshot); }).catch((error) => { reject(error); }); // Edits the offer and updates the relevant values this.editOffer(this.state.name, this.state.category, this.state.description, this.state.location, this.state.expiry, imageUuid); Alert.alert('Offer saved successfully'); this.props.navigation.navigate('Offer', { name: this.state.name, key: this.state.key, uid: this.state.uid, description: this.state.description, category: this.state.category, expiry: this.state.expiry, location: this.state.location, time: this.state.time, imageID: this.state.imageID }) }); } render() { return ( <KeyboardAwareScrollView style={{ backgroundColor: 'white', padding: 30 }} resetScrollToCoords={{ x: 0, y: 0 }} contentContainerStyle={styles.container} scrollEnabled={true} > <View style={{ flexDirection: 'row' }}> <Icon name="arrow-left" color='grey' size={30} onPress={() => this.props.navigation.goBack()} style={{ marginTop: 30 }} /> <Text style={styles.title}>Edit Offer</Text> </View> <ResourceImagePicker image={this.state.image} onImagePicked={this.setOfferImage} /> <Text style={styles.heading}>Offer Title</Text> <View style={[styles.inputView]}> <TextInput style={styles.inputText} placeholder="Name your offer" autoCorrect={true} onChangeText={name => this.setState({ name })} value={this.state.name} /> </View> <Text style={styles.heading}>Select a Category</Text> <DropDownPicker zIndex={5000} items={[ { label: 'Appliances', value: 'Appliances' }, { label: 'Babies and Kids', value: 'Babies and Kids' }, { label: 'Books', value: 'Books' }, { label: 'Clothing', value: 'Clothing' }, { label: 'Electronics', value: 'Electronics' }, { label: 'Food', value: 'Food' }, { label: 'Furniture', value: 'Furniture' }, { label: 'Health', value: 'Health' }, { label: 'Stationery', value: 'Stationery' }, { label: 'Hobbies', value: 'Hobbies' }, { label: 'Sports', value: 'Sports' }, { label: 'Toys and Games', value: 'Toys and Games' } ]} placeholder="Select a category" defaultNull={this.state.category === ''} containerStyle={styles.dropdown} style={{ backgroundColor: 'white', borderTopLeftRadius: 25, borderTopRightRadius: 25, borderBottomLeftRadius: 25, borderBottomRightRadius: 25, padding: 20 }} dropDownStyle={{ backgroundColor: 'white', borderBottomLeftRadius: 25, borderBottomRightRadius: 25 }} placeholderStyle={{ color: "#c9c9c9", position: 'absolute', left: 0 }} labelStyle={{ color: "#c9c9c9", position: 'relative', marginLeft: 10 }} activeLabelStyle={{ color: "#c9c9c9", position: 'relative', marginLeft: 10 }} onChangeItem={(item) => { this.setState({ category: item.label }); }} dropDownMaxHeight={240} /> <Text style={styles.heading}>Select a Location</Text> <DropDownPicker zIndex={4000} items={[ { label: 'Johor' }, { label: 'Kedah' }, { label: 'Kelantan' }, { label: 'KL/Selangor' }, { label: 'Melaka' }, { label: 'Negeri Sembilan' }, { label: 'Pahang' }, { label: 'Penang' }, { label: 'Perak' }, { label: 'Perlis' }, { label: 'Sabah' }, { label: 'Sarawak' }, { label: 'Terengganu' } ]} defaultNull={this.state.location === ''} placeholder="Select a state" containerStyle={styles.dropdown} style={{ backgroundColor: 'white', borderTopLeftRadius: 25, borderTopRightRadius: 25, borderBottomLeftRadius: 25, borderBottomRightRadius: 25 }} dropDownStyle={{ backgroundColor: 'white', borderBottomLeftRadius: 25, borderBottomRightRadius: 25 }} placeholderStyle={{ color: "#c9c9c9", position: 'absolute', left: 0 }} labelStyle={{ color: "#c9c9c9", position: 'relative', marginLeft: 10 }} activeLabelStyle={{ color: "#c9c9c9", position: 'relative', marginLeft: 10 }} onChangeItem={(item) => { this.setState({ location: item.label }); }} dropDownMaxHeight={240} /> <Text style={styles.heading}>Offer Description</Text> <TextInput style={styles.description} placeholder="Describe your offer - what does it look like? What are its dimensions? How much is available? Can the recipient take a partial amount or does it have to be all?" onChangeText={description => this.setState({ description })} multiline={true} maxLength={300} clearButtonMode='while-editing' value={this.state.description} /> <View style={{ flexDirection: 'row' }}> <Text style={styles.heading}>Offer Expiry Date (optional)</Text> <TouchableOpacity style={{ position: 'absolute', right: 0 }} onPress={this.showPicker}><Text style={{ color: "#CFC8EF" }}>Choose Date</Text></TouchableOpacity> </View> <Text style={{ marginLeft: 10, color: "#2C2061" }}>{this.state.expiry}</Text> <DateTimePickerModal isVisible={this.state.isVisible} mode={"date"} onConfirm={this.handlePicker} onCancel={this.hidePicker} datePickerModeAndroid={'spinner'} /> <TouchableHighlight style={styles.button} underlayColor="black" onPress={this.handleSubmit} > <Text style={styles.buttonText}>CONFIRM</Text> </TouchableHighlight> <View style={{ height: 50 }}></View> </KeyboardAwareScrollView> ); } } export default Edit; const styles = StyleSheet.create({ title: { marginHorizontal: 10, fontSize: 25, marginTop: 30, fontWeight: 'bold' }, inputView: { width: "100%", backgroundColor: "white", borderRadius: 25, height: 60, marginBottom: 20, justifyContent: "center", padding: 20, shadowColor: "#000", shadowOffset: { width: 0, height: 2, }, shadowOpacity: 0.2, shadowRadius: 3.84 }, description: { width: "100%", backgroundColor: "white", borderRadius: 25, height: 150, marginBottom: 20, padding: 20, paddingTop: 20, justifyContent: "flex-start", shadowColor: "#000", shadowOffset: { width: 0, height: 2, }, shadowOpacity: 0.2, shadowRadius: 3.84, alignSelf: 'center', }, inputText: { color: "#2C2061", }, dropdown: { height: 50, width: '100%', marginBottom: 20, shadowColor: "#000", shadowOffset: { width: 0, height: 2, }, shadowOpacity: 0.2, shadowRadius: 3.84 }, button: { width: "50%", backgroundColor: "#2C2061", borderRadius: 25, height: 50, alignItems: "center", justifyContent: "center", marginVertical: 20, alignSelf: 'center', }, buttonText: { color: "#CFC8EF", fontWeight: 'bold', fontSize: 17 }, heading: { marginLeft: 10, marginBottom: 10, fontSize: 15, color: '#4b4c4c', fontWeight: 'bold' } });
37.869565
194
0.505103
c5e6d2bec5035fea3a046ddb57d38986e9c90c6a
59
js
JavaScript
src/FluidForm/index.js
kwieszalka-maystreet/carbon-components-svelte
07655aed3ed983e5dd734913ac10417b121b386b
[ "Apache-2.0" ]
1,055
2019-12-18T21:04:20.000Z
2021-07-29T14:36:56.000Z
src/FluidForm/index.js
kwieszalka-maystreet/carbon-components-svelte
07655aed3ed983e5dd734913ac10417b121b386b
[ "Apache-2.0" ]
614
2019-12-16T18:48:56.000Z
2021-07-29T23:04:26.000Z
src/FluidForm/index.js
kwieszalka-maystreet/carbon-components-svelte
07655aed3ed983e5dd734913ac10417b121b386b
[ "Apache-2.0" ]
153
2019-12-16T17:59:48.000Z
2021-07-27T20:19:34.000Z
export { default as FluidForm } from "./FluidForm.svelte";
29.5
58
0.728814
c5e6e6431d9c7d46d7a3e39c3a9278fb2ac847bc
17,724
js
JavaScript
core/code/utils_misc.js
erikchristiansson/ingress-intel-total-conversion
52cbacc9a88fb168090ef179b26b7305f958226b
[ "ISC" ]
null
null
null
core/code/utils_misc.js
erikchristiansson/ingress-intel-total-conversion
52cbacc9a88fb168090ef179b26b7305f958226b
[ "ISC" ]
null
null
null
core/code/utils_misc.js
erikchristiansson/ingress-intel-total-conversion
52cbacc9a88fb168090ef179b26b7305f958226b
[ "ISC" ]
null
null
null
// UTILS + MISC /////////////////////////////////////////////////////// window.aboutIITC = function () { // Plugins metadata come from 2 sources: // - buildName, pluginId, dateTimeVersion: inserted in plugin body by build script // (only standard plugins) // - script.name/version/description: from GM_info object, passed to wrapper // `script` may be not available if userscript manager does not provede GM_info // (atm: IITC-Mobile for iOS) var pluginsInfo = window.bootPlugins.info; var iitc = script_info; var iitcVersion = (iitc.script && iitc.script.version || iitc.dateTimeVersion) + ' [' + iitc.buildName + ']'; function prepData (info,idx) { // try to gather plugin metadata from both sources var data = { build: info.buildName, name: info.pluginId, date: info.dateTimeVersion, error: info.error }; var script = info.script; if (script) { if (typeof script.name === 'string') { // cut non-informative name part data.name = script.name.replace(/^IITC plugin: /,''); } data.version = script.version; data.description = script.description; } if (!data.name) { if (iitc.script) { // check if GM_info is available data.name = '[unknown plugin: index ' + idx + ']'; data.description = "this plugin does not have proper wrapper; report to it's author"; } else { // userscript manager fault data.name = '[3rd-party plugin: index ' + idx + ']'; } } return data; } var extra = iitc.script && iitc.script.version.match(/^\d+\.\d+\.\d+(\..+)$/); extra = extra && extra[1]; function formatVerInfo (p) { if (p.version && extra) { var cutPos = p.version.length-extra.length; // cut extra version component (timestamp) if it is equal to main script's one if (p.version.substring(cutPos) === extra) { p.version = p.version.substring(0,cutPos); } } p.version = p.version || p.date; if (p.version) { var tooltip = []; if (p.build) { tooltip.push('[' + p.build + ']'); } if (p.date && p.date !== p.version) { tooltip.push(p.date); } return L.Util.template(' - <code{title}>{version}</code>', { title: tooltip[0] ? ' title="' + tooltip.join(' ') + '"' : '', version: p.version }); } } var plugins = pluginsInfo.map(prepData) .sort(function (a,b) { return a.name > b.name ? 1 : -1; }) .map(function (p) { p.style = ''; p.description = p.description || ''; if (p.error) { p.style += 'text-decoration:line-through;'; p.description = p.error; } else if (p.build === iitc.buildName && p.date === iitc.dateTimeVersion) { // is standard plugin p.style += 'color:darkgray;'; } p.verinfo = formatVerInfo(p) || ''; return L.Util.template('<li style="{style}" title="{description}">{name}{verinfo}</li>', p); }) .join('\n'); var html = '' + '<div><b>About IITC</b></div> ' + '<div>Ingress Intel Total Conversion</div> ' + '<hr>' + '<div>' + ' <a href="'+'@url_homepage@'+'" target="_blank">IITC Homepage</a> |' + ' <a href="'+'@url_tg@'+'" target="_blank">Telegram channel</a><br />' + ' On the script’s homepage you can:' + ' <ul>' + ' <li>Find Updates</li>' + ' <li>Get Plugins</li>' + ' <li>Report Bugs</li>' + ' <li>Contribute!</li>' + ' </ul>' + '</div>' + '<hr>' + '<div>Version: ' + iitcVersion + '</div>'; if (typeof android !== 'undefined' && android.getVersionName) { html += '<div>IITC Mobile ' + android.getVersionName() + '</div>'; } if (plugins) { html += '<div><p>Plugins:</p><ul>' + plugins + '</ul></div>'; } dialog({ title: 'IITC ' + iitcVersion, id: 'iitc-about', html: html, width: 'auto', dialogClass: 'ui-dialog-aboutIITC' }); } window.layerGroupLength = function(layerGroup) { var layersCount = 0; var layers = layerGroup._layers; if (layers) layersCount = Object.keys(layers).length; return layersCount; } // retrieves parameter from the URL?query=string. window.getURLParam = function(param) { var items = window.location.search.substr(1).split('&'); if (items == "") return ""; for (var i=0; i<items.length; i++) { var item = items[i].split('='); if (item[0] == param) { var val = item.length==1 ? '' : decodeURIComponent (item[1].replace(/\+/g,' ')); return val; } } return ''; } // read cookie by name. // http://stackoverflow.com/a/5639455/1684530 by cwolves window.readCookie = function(name){ var C, i, c = document.cookie.split('; '); var cookies = {}; for(i=c.length-1; i>=0; i--){ C = c[i].split('='); cookies[C[0]] = unescape(C[1]); } return cookies[name]; } window.writeCookie = function(name, val) { var d = new Date(Date.now() + 10 * 365 * 24 * 60 * 60 * 1000).toUTCString(); document.cookie = name + "=" + val + '; expires='+d+'; path=/'; } window.eraseCookie = function(name) { document.cookie = name + '=; expires=Thu, 1 Jan 1970 00:00:00 GMT; path=/'; } //certain values were stored in cookies, but we're better off using localStorage instead - make it easy to convert window.convertCookieToLocalStorage = function(name) { var cookie=readCookie(name); if(cookie !== undefined) { log.log('converting cookie '+name+' to localStorage'); if(localStorage[name] === undefined) { localStorage[name] = cookie; } eraseCookie(name); } } // add thousand separators to given number. // http://stackoverflow.com/a/1990590/1684530 by Doug Neiner. window.digits = function(d) { // U+2009 - Thin Space. Recommended for use as a thousands separator... // https://en.wikipedia.org/wiki/Space_(punctuation)#Table_of_spaces return (d+"").replace(/(\d)(?=(\d\d\d)+(?!\d))/g, "$1&#8201;"); } window.zeroPad = function(number,pad) { number = number.toString(); var zeros = pad - number.length; return Array(zeros>0?zeros+1:0).join("0") + number; } // converts javascript timestamps to HH:mm:ss format if it was today; // otherwise it returns YYYY-MM-DD window.unixTimeToString = function(time, full) { if(!time) return null; var d = new Date(typeof time === 'string' ? parseInt(time) : time); var time = d.toLocaleTimeString(); // var time = zeroPad(d.getHours(),2)+':'+zeroPad(d.getMinutes(),2)+':'+zeroPad(d.getSeconds(),2); var date = d.getFullYear()+'-'+zeroPad(d.getMonth()+1,2)+'-'+zeroPad(d.getDate(),2); if(typeof full !== 'undefined' && full) return date + ' ' + time; if(d.toDateString() == new Date().toDateString()) return time; else return date; } // converts a javascript time to a precise date and time (optionally with millisecond precision) // formatted in ISO-style YYYY-MM-DD hh:mm:ss.mmm - but using local timezone window.unixTimeToDateTimeString = function(time, millisecond) { if(!time) return null; var d = new Date(typeof time === 'string' ? parseInt(time) : time); return d.getFullYear()+'-'+zeroPad(d.getMonth()+1,2)+'-'+zeroPad(d.getDate(),2) +' '+zeroPad(d.getHours(),2)+':'+zeroPad(d.getMinutes(),2)+':'+zeroPad(d.getSeconds(),2)+(millisecond?'.'+zeroPad(d.getMilliseconds(),3):''); } window.unixTimeToHHmm = function(time) { if(!time) return null; var d = new Date(typeof time === 'string' ? parseInt(time) : time); var h = '' + d.getHours(); h = h.length === 1 ? '0' + h : h; var s = '' + d.getMinutes(); s = s.length === 1 ? '0' + s : s; return h + ':' + s; } window.formatInterval = function(seconds,maxTerms) { var d = Math.floor(seconds / 86400); var h = Math.floor((seconds % 86400) / 3600); var m = Math.floor((seconds % 3600) / 60); var s = seconds % 60; var terms = []; if (d > 0) terms.push(d+'d'); if (h > 0) terms.push(h+'h'); if (m > 0) terms.push(m+'m'); if (s > 0 || terms.length==0) terms.push(s+'s'); if (maxTerms) terms = terms.slice(0,maxTerms); return terms.join(' '); } window.rangeLinkClick = function() { if(window.portalRangeIndicator) window.map.fitBounds(window.portalRangeIndicator.getBounds()); if(window.isSmartphone()) window.show('map'); } window.showPortalPosLinks = function(lat, lng, name) { var encoded_name = 'undefined'; if(name !== undefined) { encoded_name = encodeURIComponent(name); } if (typeof android !== 'undefined' && android && android.intentPosLink) { android.intentPosLink(lat, lng, map.getZoom(), name, true); } else { var qrcode = '<div id="qrcode"></div>'; var script = '<script>$(\'#qrcode\').qrcode({text:\'GEO:'+lat+','+lng+'\'});</script>'; var gmaps = '<a href="https://maps.google.com/maps?ll='+lat+','+lng+'&q='+lat+','+lng+'%20('+encoded_name+')">Google Maps</a>'; var bingmaps = '<a href="https://www.bing.com/maps/?v=2&cp='+lat+'~'+lng+'&lvl=16&sp=Point.'+lat+'_'+lng+'_'+encoded_name+'___">Bing Maps</a>'; var osm = '<a href="https://www.openstreetmap.org/?mlat='+lat+'&mlon='+lng+'&zoom=16">OpenStreetMap</a>'; var latLng = '<span>' + lat + ',' + lng +'</span>'; dialog({ html: '<div style="text-align: center;">' + qrcode + script + gmaps + '; ' + bingmaps + '; ' + osm + '<br />' + latLng + '</div>', title: name, id: 'poslinks' }); } } window.isTouchDevice = function() { return 'ontouchstart' in window // works on most browsers || 'onmsgesturechange' in window; // works on ie10 }; window.androidCopy = function(text) { if(typeof android === 'undefined' || !android || !android.copy) return true; // i.e. execute other actions else android.copy(text); return false; } window.getCurrentZoomTileParameters = function() { var zoom = getDataZoomForMapZoom( map.getZoom() ); var tileParams = getMapZoomTileParameters(zoom); return tileParams; } // returns number of pixels left to scroll down before reaching the // bottom. Works similar to the native scrollTop function. window.scrollBottom = function(elm) { if(typeof elm === 'string') elm = $(elm); return elm.get(0).scrollHeight - elm.innerHeight() - elm.scrollTop(); } window.zoomToAndShowPortal = function(guid, latlng) { map.setView(latlng, DEFAULT_ZOOM); // if the data is available, render it immediately. Otherwise defer // until it becomes available. if(window.portals[guid]) renderPortalDetails(guid); else urlPortal = guid; } window.selectPortalByLatLng = function(lat, lng) { if(lng === undefined && lat instanceof Array) { lng = lat[1]; lat = lat[0]; } else if(lng === undefined && lat instanceof L.LatLng) { lng = lat.lng; lat = lat.lat; } for(var guid in window.portals) { var latlng = window.portals[guid].getLatLng(); if(latlng.lat == lat && latlng.lng == lng) { renderPortalDetails(guid); return; } } // not currently visible urlPortalLL = [lat, lng]; map.setView(urlPortalLL, DEFAULT_ZOOM); }; String.prototype.capitalize = function() { return this.charAt(0).toUpperCase() + this.slice(1).toLowerCase(); } // http://stackoverflow.com/a/646643/1684530 by Bergi and CMS if (typeof String.prototype.startsWith !== 'function') { String.prototype.startsWith = function (str){ return this.slice(0, str.length) === str; }; } // escape a javascript string, so quotes and backslashes are escaped with a backslash // (for strings passed as parameters to html onclick="..." for example) window.escapeJavascriptString = function(str) { return (str+'').replace(/[\\"']/g,'\\$&'); } //escape special characters, such as tags window.escapeHtmlSpecialChars = function(str) { var div = document.createElement('div'); var text = document.createTextNode(str); div.appendChild(text); return div.innerHTML; } window.prettyEnergy = function(nrg) { return nrg> 1000 ? Math.round(nrg/1000) + ' k': nrg; } window.uniqueArray = function(arr) { return $.grep(arr, function(v, i) { return $.inArray(v, arr) === i; }); } window.genFourColumnTable = function(blocks) { var t = $.map(blocks, function(detail, index) { if(!detail) return ''; var title = detail[2] ? ' title="'+escapeHtmlSpecialChars(detail[2]) + '"' : ''; if(index % 2 === 0) return '<tr><td'+title+'>'+detail[1]+'</td><th'+title+'>'+detail[0]+'</th>'; else return ' <th'+title+'>'+detail[0]+'</th><td'+title+'>'+detail[1]+'</td></tr>'; }).join(''); if(t.length % 2 === 1) t + '<td></td><td></td></tr>'; return t; } // converts given text with newlines (\n) and tabs (\t) to a HTML // table automatically. window.convertTextToTableMagic = function(text) { // check if it should be converted to a table if(!text.match(/\t/)) return text.replace(/\n/g, '<br>'); var data = []; var columnCount = 0; // parse data var rows = text.split('\n'); $.each(rows, function(i, row) { data[i] = row.split('\t'); if(data[i].length > columnCount) columnCount = data[i].length; }); // build the table var table = '<table>'; $.each(data, function(i, row) { table += '<tr>'; $.each(data[i], function(k, cell) { var attributes = ''; if(k === 0 && data[i].length < columnCount) { attributes = ' colspan="'+(columnCount - data[i].length + 1)+'"'; } table += '<td'+attributes+'>'+cell+'</td>'; }); table += '</tr>'; }); table += '</table>'; return table; } // Given 3 sets of points in an array[3]{lat, lng} returns the area of the triangle window.calcTriArea = function(p) { return Math.abs((p[0].lat*(p[1].lng-p[2].lng)+p[1].lat*(p[2].lng-p[0].lng)+p[2].lat*(p[0].lng-p[1].lng))/2); } // Update layerGroups display status to window.overlayStatus and localStorage 'ingress.intelmap.layergroupdisplayed' window.updateDisplayedLayerGroup = function(name, display) { overlayStatus[name] = display; localStorage['ingress.intelmap.layergroupdisplayed'] = JSON.stringify(overlayStatus); } // Read layerGroup status from window.overlayStatus if it was added to map, // read from cookie if it has not added to map yet. // return 'defaultDisplay' if both overlayStatus and cookie didn't have the record window.isLayerGroupDisplayed = function(name, defaultDisplay) { if(typeof(overlayStatus[name]) !== 'undefined') return overlayStatus[name]; convertCookieToLocalStorage('ingress.intelmap.layergroupdisplayed'); var layersJSON = localStorage['ingress.intelmap.layergroupdisplayed']; if(!layersJSON) return defaultDisplay; var layers = JSON.parse(layersJSON); // keep latest overlayStatus overlayStatus = $.extend(layers, overlayStatus); if(typeof(overlayStatus[name]) === 'undefined') return defaultDisplay; return overlayStatus[name]; } window.addLayerGroup = function(name, layerGroup, defaultDisplay) { if (defaultDisplay === undefined) defaultDisplay = true; if(isLayerGroupDisplayed(name, defaultDisplay)) map.addLayer(layerGroup); layerChooser.addOverlay(layerGroup, name); } window.removeLayerGroup = function(layerGroup) { function find (arr, callback) { // ES5 doesn't include Array.prototype.find() for (var i=0; i<arr.length; i++) { if (callback(arr[i], i, arr)) { return arr[i]; } } } var element = find(layerChooser._layers, function (el) { return el.layer === layerGroup; }); if (!element) { throw new Error('Layer was not found'); } // removing the layer will set it's default visibility to false (store if layer gets added again) var enabled = isLayerGroupDisplayed(element.name); map.removeLayer(layerGroup); layerChooser.removeLayer(layerGroup); updateDisplayedLayerGroup(element.name, enabled); }; function clamp (n,max,min) { if (n===0) { return 0; } return n>0 ? Math.min(n,max) : Math.max(n,min); } var MAX_LATITUDE = 85.051128; // L.Projection.SphericalMercator.MAX_LATITUDE window.clampLatLng = function (latlng) { // Ingress accepts requests only for this range return [ clamp(latlng.lat, MAX_LATITUDE, -MAX_LATITUDE), clamp(latlng.lng, 179.999999, -180) ]; } window.clampLatLngBounds = function (bounds) { var SW = bounds.getSouthWest(), NE = bounds.getNorthEast(); return L.latLngBounds(clampLatLng(SW), clampLatLng(NE)); } // @function makePermalink(latlng?: LatLng, options?: Object): String // Makes the permalink for the portal with specified latlng, possibly including current map view. // Portal latlng can be omitted to create mapview-only permalink. // @option: includeMapView: Boolean = null // Use to add zoom level and latlng of current map center. // @option: fullURL: Boolean = null // Use to make absolute fully qualified URL (default: relative link). window.makePermalink = function (latlng, options) { options = options || {}; function round (l) { // ensures that lat,lng are with same precision as in stock intel permalinks return Math.trunc(l*1e6)/1e6; } var args = []; if (!latlng || options.includeMapView) { var c = window.map.getCenter(); args.push( 'll='+[round(c.lat),round(c.lng)].join(','), 'z='+window.map.getZoom() ); } if (latlng) { if ('lat' in latlng) { latlng = [latlng.lat, latlng.lng]; } args.push('pll='+latlng.join(',')); } var url = options.fullURL ? '@url_intel_base@' : '/'; return url + '?' + args.join('&'); }; window.setPermaLink = function(elm) { // deprecated $(elm).attr('href', window.makePermalink(null,true)); } window.androidPermalink = function() { // deprecated if(typeof android === 'undefined' || !android || !android.intentPosLink) return true; // i.e. execute other actions var center = map.getCenter(); android.intentPosLink(center.lat, center.lng, map.getZoom(), "Selected map view", false); return false; } // todo refactor main.js to get rid of setPermaLink and androidPermalink
34.216216
147
0.632814
c5e7286d89b070375aabb20ee88a78d96aea4077
795
js
JavaScript
plugins/nomorhoki.js
fitrawahyudi222/mysqlbot
38283133bb6f31601a23b3427b9df0cb77d7a74b
[ "MIT" ]
null
null
null
plugins/nomorhoki.js
fitrawahyudi222/mysqlbot
38283133bb6f31601a23b3427b9df0cb77d7a74b
[ "MIT" ]
null
null
null
plugins/nomorhoki.js
fitrawahyudi222/mysqlbot
38283133bb6f31601a23b3427b9df0cb77d7a74b
[ "MIT" ]
null
null
null
let axios = require("axios"); let handler = async(m, { conn, text }) => { if (!text) return conn.reply(m.chat, 'Silahkan masukan nomor hpmu yang akan diartikan', m) axios.get(`https://kocakz.herokuapp.com/api/primbon/nomorhoki?nomor=${text}`).then ((res) => { let hasil = `Nomor HP : ${res.data.result.hoki}\nPositif : ${res.data.result.positif}\nNegatif : ${res.data.result.positif}` conn.reply(m.chat, hasil, m) }) } handler.help = ['nomorhoki'].map(v => v + ' <no hp>') handler.tags = ['primbon'] handler.command = /^(nomorhoki)$/i handler.owner = false handler.mods = false handler.premium = false handler.group = false handler.private = false handler.admin = false handler.botAdmin = false handler.fail = null handler.exp = 0 handler.limit = true module.exports = handler
28.392857
127
0.684277
c5e768e041f430266280f5b1ae29c9aba928d928
2,206
js
JavaScript
ExpressForms/ExpressFormsExample/Scripts/ExpressForms.Inputs-0.8.6.js
DanielLangdon/ExpressForms
ea8edf4a9d69b4573cd8169538f94cd1fb28bac9
[ "MIT" ]
1
2015-10-07T11:50:46.000Z
2015-10-07T11:50:46.000Z
ExpressForms/ExpressFormsExample/Scripts/ExpressForms.Inputs-0.8.6.js
DanielLangdon/ExpressForms
ea8edf4a9d69b4573cd8169538f94cd1fb28bac9
[ "MIT" ]
null
null
null
ExpressForms/ExpressFormsExample/Scripts/ExpressForms.Inputs-0.8.6.js
DanielLangdon/ExpressForms
ea8edf4a9d69b4573cd8169538f94cd1fb28bac9
[ "MIT" ]
3
2015-10-07T11:49:55.000Z
2019-05-18T15:05:56.000Z
// Register the default ExpressForms FormInputIOs (function () { 'use strict'; // ExpressFormsTextBox window.ef.registerInputFormIO({ name: 'ExpressFormsTextBox', getValue: function ($element) { return $element.val(); }, // end getValue setValue: function ($element, value) { $element.val(value); } // end setValue }); // ExpressFormsTextArea window.ef.registerInputFormIO({ name: 'ExpressFormsTextArea', getValue: function ($element) { return $element.val(); }, // end getValue setValue: function ($element, value) { $element.val(value); } // end setValue }); // ExpressFormsCheckBox window.ef.registerInputFormIO({ name: 'ExpressFormsCheckBox', getValue: function ($element) { return $element.is(':checked'); }, // end getValue setValue: function ($element, value) { if (value) $element.attr('checked', 'checked'); else $element.removeAttr('checked'); } // end setValue }); // ExpressFormsListBox window.ef.registerInputFormIO({ name: 'ExpressFormsListBox', getValue: function ($element) { return (function () { var idStringArray, value, x; idStringArray = $element.val(); value = []; for (x in idStringArray) { var id; id = parseInt(idStringArray[x]); value.push({ id: id }) } return value; })(); }, // end getValue setValue: function ($element, value) { alert('setting value to ExpressFormsListBox is not yet implemented'); } // end setValue }); // ExpressFormsDropDownList window.ef.registerInputFormIO({ name: 'ExpressFormsDropDownList', getValue: function ($element) { return $element.val(); }, // end getValue setValue: function ($element, value) { $element.val(value); } // end setValue }); })();
31.070423
81
0.521759
c5e77ddbd26121d704fe913e9f3bfa42780c5c69
9,287
js
JavaScript
src/main/webapp/apps/svn/js/index.js
214175590/lightos
6cf8b4354382cc3e24b7aab64f1474bcbd91ae6f
[ "MIT" ]
35
2018-12-20T03:12:40.000Z
2020-04-16T04:35:32.000Z
src/main/webapp/apps/svn/js/index.js
214175590/lightos
6cf8b4354382cc3e24b7aab64f1474bcbd91ae6f
[ "MIT" ]
null
null
null
src/main/webapp/apps/svn/js/index.js
214175590/lightos
6cf8b4354382cc3e24b7aab64f1474bcbd91ae6f
[ "MIT" ]
9
2018-12-27T06:43:33.000Z
2020-04-16T04:35:35.000Z
/** * */ define(function(require, exports, module) { function PageScript(){ this.datas = []; this.svnsrv = ''; } PageScript.prototype = { init: function(){ $.useModule(['chosen', 'datetimepicker', 'datatable'], function(){ $('#startDate').val(utils.formatDate(new Date().getTime() - (1000 * 60 * 60 * 24 * 6), 'yyyy-MM-dd')); $('#endDate').val(utils.formatDate(new Date(), 'yyyy-MM-dd')); // 选择时间和日期 $(".form-date").datetimepicker({ weekStart: 1, todayBtn: 1, autoclose: 1, todayHighlight: 1, startView: 2, forceParse: 0, minView: 2, format: "yyyy-mm-dd" }).on('changeDate', function(ev){ var id = this.id; if(id == 'startDate'){ $('#endDate').datetimepicker('setStartDate', $('#startDate').val()); var edstr = $('#endDate').val(); if(edstr){ var st = parseInt($('#startDate').val().replace(/-/g, '')); var ed = parseInt(edstr.replace(/-/g, '')); if(st > ed){ $('#endDate').val(''); $('#startDate').datetimepicker('setEndDate', $('#endDate').val()); } } } var p = $('#project').val(); if(p){ page.load(p); } }); $('.chosen').chosen({}); page.loadProjects(); page.bindEvent(); }); }, loadProjects: function(){ $('.btn-load').attr('disabled', true); var zuiLoad = waiting('列表加载中...'); ajax.post({ url: 'svn/get/projects', data: {} }).done(function(res, rtn, state, msg){ log.info(res); if(state){ page.renderProject(rtn.data); } }).fail(function(e){ error('error'); log.error(e); }).always(function(){ zuiLoad.hide(); $('.btn-load').attr('disabled', false); }); }, renderProject: function(datas){ var html = ['<option value="">选择一个项目</option>']; if(datas && datas.length){ var obj = null; for(var i = 0, k = datas.length; i < k; i++){ obj = datas[i]; html.push(laytpl('ops.html').render({ name: obj.projectName, value: obj.projectUrl, selected: (function(){ var a = $.zui.store.getItem('svn_view_project'); if(a){ return a == obj.projectName; } return i == 0; })() })); } } html.push('<option value="add">添加项目</option>'); $('#project').html(html.join('')).trigger('chosen:updated'); setTimeout(function(){ var p = $('#project').val(); if(p){ page.load(p); } }, 300); }, load: function(p){ var startDate = $('#startDate').val(); var endDate = $('#endDate').val(); var filename = $('#filename').val(); var version = $('#version').val(); var author = $('#author').val(); ajax.post({ url: 'svn/get/date', data: { "path": p, "begin": startDate, "end": endDate, "version": version, "author": author } }).done(function(res, rtn, state, msg){ log.info(res); if(state){ page.renderTable1(p, rtn.data); } else { $('#data-body1').html(''); $('#data-body2').html(''); $('table.datatable').datatable('load'); } }).fail(function(e){ error('error'); log.error(e); }); }, renderTable1: function(p, datas){ if(datas && datas.length){ page.datas = datas; page.svnsrv = page.getSvnsrv(p); var obj = null, trHtmls = []; for(var i = 0, k = datas.length; i < k; i++){ obj = datas[i]; trHtmls.push(laytpl('list-tr1.tpl').render({ "trclass": '', "version": obj.version, "author": obj.author, "date": utils.formatDate(obj.date), "desc": (function(){ var d = obj.desc; if(d && d.length > 20){ d = d.substring(0, 20) + '...'; } return d; })(), "btns": (function(){ var icon = [], type = '', aj = {}; for (var j = 0, u = obj.files.length; j < u; j++) { type = obj.files[j].type; if (type == 'A' && !aj['A']) { aj['A'] = 'A'; icon[0] = laytpl('add.html').render({}); } else if (type == 'M' && !aj['M']) { aj['M'] = 'M'; icon[1] = laytpl('edit.html').render({}); } else if (type == 'D' && !aj['D']) { aj['D'] = 'D'; icon[2] = laytpl('del.html').render({}); } } return icon.join(''); })() })); } $('#data-body1').html(trHtmls.join('')); if(page.firstLoad){ page.firstLoad = false; $('table.datatable').datatable({ checkable: false, checkByClickRow: false }); } else { $('table.datatable').datatable('load'); } page.ajustWidth(); } }, renderTable2: function(datas, ver){ if(datas && datas.length){ var obj = null, trHtmls = []; var fillname = $('#filename').val(); var findname = function(n, m){ if(m){ var r = new RegExp(m, 'g'); n = n.replace(r, laytpl('place.html').render({ text: m })); } return n; }; for(var i = 0, k = datas.length; i < k; i++){ obj = datas[i]; if(fillname && obj.path.indexOf(fillname) == -1){ continue; } trHtmls.push(laytpl('list-tr2.tpl').render({ "ver": ver, "pathtext": findname(obj.path, fillname), "path": obj.path, "kind": obj.kind, "copyFormPath": obj.copyFormPath || '', "version": obj.copyFormVersion || '', "type": obj.type || '', "state": {"A":"新增","M":"修改","D":"删除"}[obj.type] })); } $('#data-body2').html(trHtmls.join('')); if(page.firstLoad){ page.firstLoad = false; $('table.datatable').datatable({ checkable: false, checkByClickRow: false }); } else { $('.files-box table.datatable').datatable('load'); } page.ajustWidth(); } }, ajustWidth: function(){ var maxw = $(window).width(); var w1 = maxw * 0.50, w2 = maxw * 0.05, w3 = maxw * 0.33, w4 = maxw * 0.10; $('.td1').css('width', w1); $('.td2').css('width', w2); $('.td3').css('width', w3); $('.td4').css('width', w4); }, getSvnsrv: function(u){ if(u){ var i = u.indexOf("://") + 4; var inx = u.indexOf('/', i); u = u.substring(0, inx + 1); } return u; }, getVersionData: function(v){ var obj; for(var i = 0, k = page.datas.length; i < k; i++){ obj = page.datas[i]; if(obj.version == v){ return obj; } } return null; }, bindEvent: function(){ $('#project').on('change', function(){ var $this = $(this), pv = $this.val(); if(pv == 'add'){ $this.val(''); $this.trigger('chosen:updated'); // 创建iframe弹出框 window['$addDialog'] = new $.zui.ModalTrigger({ name: 'addpFrame', title: '添加SVN项目信息', backdrop: 'static', moveable: true, waittime: consts.PAGE_LOAD_TIME, width: 650, height: 350, iframe: './svn_add.html' }); // 显示弹出框 $addDialog.show(); } else if(pv){ page.load(pv); } }); $('.btn-load').on('click', function(){ page.loadProjects(); }); $('.version-box').on('click', '.trow', function(){ var $tr = $(this), ver = $tr.data('id'); var obj = page.getVersionData(ver); $('.version-box .trow').removeClass('active'); $tr.addClass('active'); if(obj){ $('.desc-view').val(obj.desc); page.renderTable2(obj.files, ver); } else { $('.desc-view').val(''); } }); $(window).on('resize', function (e) { page.ajustWidth(); }); $('.files-box').on('click', '.file-item', function(){ var $this = $(this), path = $this.data('id'), mode = $this.data('mode'), ver = $this.data('ver'); var p = "s=" + page.svnsrv + "&p=" + path; if(mode != 'D'){ p += "&v=" + ver; } else { alert("文件已被删除"); return; } if(top['SYSTEM']){ top['SYSTEM']['openWindow']({ title: "文件内容预览 - " + path, types: 'exe', url: consts.WEB_BASE + 'apps/svn/svn_editor.html?' + p, width: 1100, height: 700, needMax: false, needMin: false, desktopIconId: 'cus-' + new Date().getTime(), icon: consts.WEB_BASE + 'content/images/icons/svn.png' }); } else { // 创建iframe弹出框 window['$svnDialog'] = new $.zui.ModalTrigger({ name: 'multiFrame', title: "文件内容预览 - " + path, backdrop: 'static', moveable: true, waittime: consts.PAGE_LOAD_TIME, width: 1100, height: 700, iframe: './svn_editor.html?' + p }); // 显示弹出框 $svnDialog.show(); } }); var timer = 0, oldname = ''; $('#filename').on('keyup', function(){ var $this = $(this), name = $this.val(), $tr = $('.version-box .trow.active'); if($tr.length && name != oldname){ oldname = name; var ver = $tr.data('id'); if(timer){ clearTimeout(timer); } timer = setTimeout(function(){ var obj = page.getVersionData(ver); if(obj){ page.renderTable2(obj.files, ver); } }, 300); } }); } }; var page = new PageScript(); window['loadProject'] = page.loadProjects; page.init(); });
24.311518
106
0.491009
c5e7c5e81e2dca78a098e21724c9259716367ff6
814
js
JavaScript
src/components/PlayerAvgHeader.js
jfeng530/nba_frontend
e94f5a34fb3ec8f81dcc1367d795539b43eeb254
[ "MIT" ]
1
2020-01-13T23:19:49.000Z
2020-01-13T23:19:49.000Z
src/components/PlayerAvgHeader.js
jfeng530/nba_frontend
e94f5a34fb3ec8f81dcc1367d795539b43eeb254
[ "MIT" ]
5
2021-05-08T14:20:52.000Z
2022-02-26T21:24:12.000Z
src/components/PlayerAvgHeader.js
jfeng530/nba_frontend
e94f5a34fb3ec8f81dcc1367d795539b43eeb254
[ "MIT" ]
null
null
null
import React from 'react'; const PlayerAvgHeader = () => { return ( <thead> <tr className="center aligned"> <th>Name</th> <th>Team</th> <th>GP</th> <th>FG</th> <th>FGA</th> <th>FG%</th> <th>3P</th> <th>3PA</th> <th>3P%</th> <th>FT</th> <th>FTA</th> <th>FT%</th> <th>ORB</th> <th>DRB</th> <th>TRB</th> <th>AST</th> <th>STL</th> <th>BLK</th> <th>TO</th> <th>PF</th> <th>PTS</th> </tr> </thead> ); } export default PlayerAvgHeader;
24.666667
43
0.307125
c5e8ad49ee1af4d5267bc5f584e4620e3b7cdabe
6,875
js
JavaScript
08_scene/tests/textures/Single2DTextureTest.js
gameofbombs/awayjs
5790701d7e558cdf4e6f67da24331b7f64bf6350
[ "Apache-2.0" ]
null
null
null
08_scene/tests/textures/Single2DTextureTest.js
gameofbombs/awayjs
5790701d7e558cdf4e6f67da24331b7f64bf6350
[ "Apache-2.0" ]
null
null
null
08_scene/tests/textures/Single2DTextureTest.js
gameofbombs/awayjs
5790701d7e558cdf4e6f67da24331b7f64bf6350
[ "Apache-2.0" ]
null
null
null
"use strict"; var BitmapImage2D_1 = require("awayjs-core/lib/image/BitmapImage2D"); var Rectangle_1 = require("awayjs-core/lib/geom/Rectangle"); var URLLoader_1 = require("awayjs-core/lib/net/URLLoader"); var URLLoaderDataFormat_1 = require("awayjs-core/lib/net/URLLoaderDataFormat"); var URLRequest_1 = require("awayjs-core/lib/net/URLRequest"); var LoaderEvent_1 = require("awayjs-core/lib/events/LoaderEvent"); var ParserUtils_1 = require("awayjs-core/lib/parsers/ParserUtils"); var Debug_1 = require("awayjs-core/lib/utils/Debug"); var Single2DTexture_1 = require("awayjs-display/lib/textures/Single2DTexture"); var Single2DTextureTest = (function () { function Single2DTextureTest() { //--------------------------------------- // Load a PNG var _this = this; var mipUrlRequest = new URLRequest_1.default('assets/1024x1024.png'); this.mipLoader = new URLLoader_1.default(); this.mipLoader.dataFormat = URLLoaderDataFormat_1.default.BLOB; this.mipLoader.load(mipUrlRequest); this.mipLoader.addEventListener(LoaderEvent_1.default.LOAD_COMPLETE, function (event) { return _this.mipImgLoaded(event); }); } Single2DTextureTest.prototype.mipImgLoaded = function (event) { var _this = this; var loader = event.target; var image = ParserUtils_1.default.blobToImage(loader.data); image.onload = function (event) { return _this.onImageLoad(event); }; }; Single2DTextureTest.prototype.onImageLoad = function (event) { var image = event.target; var rect = new Rectangle_1.default(0, 0, image.width, image.height); console.log('LoaderEvent', image); this.bitmapData = new BitmapImage2D_1.default(image.width, image.height); this.bitmapData.draw(image); this.target = new Single2DTexture_1.default(this.bitmapData); Debug_1.default.log('BitmapImage2D', this.bitmapData); Debug_1.default.log('Single2DTexture', this.target); }; return Single2DTextureTest; }()); //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbInRleHR1cmVzL1NpbmdsZTJEVGV4dHVyZVRlc3QudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IjtBQUFBLDhCQUEyQixxQ0FBcUMsQ0FBQyxDQUFBO0FBQ2pFLDBCQUF3QixnQ0FBZ0MsQ0FBQyxDQUFBO0FBQ3pELDBCQUF3QiwrQkFBK0IsQ0FBQyxDQUFBO0FBQ3hELG9DQUFnQyx5Q0FBeUMsQ0FBQyxDQUFBO0FBQzFFLDJCQUF5QixnQ0FBZ0MsQ0FBQyxDQUFBO0FBQzFELDRCQUEwQixvQ0FBb0MsQ0FBQyxDQUFBO0FBQy9ELDRCQUEwQixxQ0FBcUMsQ0FBQyxDQUFBO0FBQ2hFLHNCQUFxQiw2QkFBNkIsQ0FBQyxDQUFBO0FBRW5ELGdDQUE2Qiw2Q0FBNkMsQ0FBQyxDQUFBO0FBRTNFO0lBTUM7UUFFQyx5Q0FBeUM7UUFDekMsYUFBYTtRQVRmLGlCQTJDQztRQWhDQyxJQUFJLGFBQWEsR0FBRyxJQUFJLG9CQUFVLENBQUMsc0JBQXNCLENBQUMsQ0FBQztRQUMzRCxJQUFJLENBQUMsU0FBUyxHQUFJLElBQUksbUJBQVMsRUFBRSxDQUFDO1FBQ2xDLElBQUksQ0FBQyxTQUFTLENBQUMsVUFBVSxHQUFHLDZCQUFtQixDQUFDLElBQUksQ0FBQztRQUNyRCxJQUFJLENBQUMsU0FBUyxDQUFDLElBQUksQ0FBQyxhQUFhLENBQUMsQ0FBQztRQUNuQyxJQUFJLENBQUMsU0FBUyxDQUFDLGdCQUFnQixDQUFDLHFCQUFXLENBQUMsYUFBYSxFQUFFLFVBQUMsS0FBaUIsSUFBSyxPQUFBLEtBQUksQ0FBQyxZQUFZLENBQUMsS0FBSyxDQUFDLEVBQXhCLENBQXdCLENBQUMsQ0FBQztJQUU3RyxDQUFDO0lBRU8sMENBQVksR0FBcEIsVUFBcUIsS0FBaUI7UUFBdEMsaUJBTUM7UUFIQSxJQUFJLE1BQU0sR0FBYSxLQUFLLENBQUMsTUFBTSxDQUFDO1FBQ3BDLElBQUksS0FBSyxHQUFvQixxQkFBVyxDQUFDLFdBQVcsQ0FBQyxNQUFNLENBQUMsSUFBSSxDQUFDLENBQUM7UUFDbEUsS0FBSyxDQUFDLE1BQU0sR0FBRyxVQUFDLEtBQUssSUFBSyxPQUFBLEtBQUksQ0FBQyxXQUFXLENBQUMsS0FBSyxDQUFDLEVBQXZCLENBQXVCLENBQUM7SUFDbkQsQ0FBQztJQUVPLHlDQUFXLEdBQW5CLFVBQW9CLEtBQUs7UUFFeEIsSUFBSSxLQUFLLEdBQXVDLEtBQUssQ0FBQyxNQUFNLENBQUM7UUFFN0QsSUFBSSxJQUFJLEdBQWEsSUFBSSxtQkFBUyxDQUFDLENBQUMsRUFBRSxDQUFDLEVBQUUsS0FBSyxDQUFDLEtBQUssRUFBRSxLQUFLLENBQUMsTUFBTSxDQUFDLENBQUM7UUFFcEUsT0FBTyxDQUFDLEdBQUcsQ0FBQyxhQUFhLEVBQUUsS0FBSyxDQUFDLENBQUM7UUFFbEMsSUFBSSxDQUFDLFVBQVUsR0FBRyxJQUFJLHVCQUFhLENBQUMsS0FBSyxDQUFDLEtBQUssRUFBRyxLQUFLLENBQUMsTUFBTSxDQUFDLENBQUM7UUFDaEUsSUFBSSxDQUFDLFVBQVUsQ0FBQyxJQUFJLENBQUMsS0FBSyxDQUFDLENBQUM7UUFFNUIsSUFBSSxDQUFDLE1BQU0sR0FBRyxJQUFJLHlCQUFlLENBQUMsSUFBSSxDQUFDLFVBQVUsQ0FBQyxDQUFDO1FBRW5ELGVBQUssQ0FBQyxHQUFHLENBQUMsZUFBZSxFQUFFLElBQUksQ0FBQyxVQUFVLENBQUMsQ0FBQztRQUM1QyxlQUFLLENBQUMsR0FBRyxDQUFDLGlCQUFpQixFQUFFLElBQUksQ0FBQyxNQUFNLENBQUMsQ0FBQztJQUMzQyxDQUFDO0lBQ0YsMEJBQUM7QUFBRCxDQTNDQSxBQTJDQyxJQUFBIiwiZmlsZSI6InRleHR1cmVzL1NpbmdsZTJEVGV4dHVyZVRlc3QuanMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgQml0bWFwSW1hZ2UyRFx0XHRmcm9tIFwiYXdheWpzLWNvcmUvbGliL2ltYWdlL0JpdG1hcEltYWdlMkRcIjtcbmltcG9ydCBSZWN0YW5nbGVcdFx0XHRmcm9tIFwiYXdheWpzLWNvcmUvbGliL2dlb20vUmVjdGFuZ2xlXCI7XG5pbXBvcnQgVVJMTG9hZGVyXHRcdFx0ZnJvbSBcImF3YXlqcy1jb3JlL2xpYi9uZXQvVVJMTG9hZGVyXCI7XG5pbXBvcnQgVVJMTG9hZGVyRGF0YUZvcm1hdFx0ZnJvbSBcImF3YXlqcy1jb3JlL2xpYi9uZXQvVVJMTG9hZGVyRGF0YUZvcm1hdFwiO1xuaW1wb3J0IFVSTFJlcXVlc3RcdFx0XHRmcm9tIFwiYXdheWpzLWNvcmUvbGliL25ldC9VUkxSZXF1ZXN0XCI7XG5pbXBvcnQgTG9hZGVyRXZlbnRcdFx0XHRmcm9tIFwiYXdheWpzLWNvcmUvbGliL2V2ZW50cy9Mb2FkZXJFdmVudFwiO1xuaW1wb3J0IFBhcnNlclV0aWxzXHRcdFx0ZnJvbSBcImF3YXlqcy1jb3JlL2xpYi9wYXJzZXJzL1BhcnNlclV0aWxzXCI7XG5pbXBvcnQgRGVidWdcdFx0XHRcdGZyb20gXCJhd2F5anMtY29yZS9saWIvdXRpbHMvRGVidWdcIjtcblxuaW1wb3J0IFNpbmdsZTJEVGV4dHVyZVx0XHRmcm9tIFwiYXdheWpzLWRpc3BsYXkvbGliL3RleHR1cmVzL1NpbmdsZTJEVGV4dHVyZVwiO1xuXG5jbGFzcyBTaW5nbGUyRFRleHR1cmVUZXN0XG57XG5cdHByaXZhdGUgbWlwTG9hZGVyOlVSTExvYWRlcjtcblx0cHJpdmF0ZSBiaXRtYXBEYXRhOkJpdG1hcEltYWdlMkQ7XG5cdHByaXZhdGUgdGFyZ2V0OlNpbmdsZTJEVGV4dHVyZTtcblxuXHRjb25zdHJ1Y3RvcigpXG5cdHtcblx0XHQvLy0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLVxuXHRcdC8vIExvYWQgYSBQTkdcblxuXHRcdHZhciBtaXBVcmxSZXF1ZXN0ID0gbmV3IFVSTFJlcXVlc3QoJ2Fzc2V0cy8xMDI0eDEwMjQucG5nJyk7XG5cdFx0dGhpcy5taXBMb2FkZXIgID0gbmV3IFVSTExvYWRlcigpO1xuXHRcdHRoaXMubWlwTG9hZGVyLmRhdGFGb3JtYXQgPSBVUkxMb2FkZXJEYXRhRm9ybWF0LkJMT0I7XG5cdFx0dGhpcy5taXBMb2FkZXIubG9hZChtaXBVcmxSZXF1ZXN0KTtcblx0XHR0aGlzLm1pcExvYWRlci5hZGRFdmVudExpc3RlbmVyKExvYWRlckV2ZW50LkxPQURfQ09NUExFVEUsIChldmVudDpMb2FkZXJFdmVudCkgPT4gdGhpcy5taXBJbWdMb2FkZWQoZXZlbnQpKTtcblxuXHR9XG5cblx0cHJpdmF0ZSBtaXBJbWdMb2FkZWQoZXZlbnQ6TG9hZGVyRXZlbnQpXG5cdHtcblxuXHRcdHZhciBsb2FkZXI6VVJMTG9hZGVyID0gZXZlbnQudGFyZ2V0O1xuXHRcdHZhciBpbWFnZTpIVE1MSW1hZ2VFbGVtZW50ID0gUGFyc2VyVXRpbHMuYmxvYlRvSW1hZ2UobG9hZGVyLmRhdGEpO1xuXHRcdGltYWdlLm9ubG9hZCA9IChldmVudCkgPT4gdGhpcy5vbkltYWdlTG9hZChldmVudCk7XG5cdH1cblxuXHRwcml2YXRlIG9uSW1hZ2VMb2FkKGV2ZW50KVxuXHR7XG5cdFx0dmFyIGltYWdlOkhUTUxJbWFnZUVsZW1lbnQgPSA8SFRNTEltYWdlRWxlbWVudD4gZXZlbnQudGFyZ2V0O1xuXG5cdFx0dmFyIHJlY3Q6UmVjdGFuZ2xlID0gbmV3IFJlY3RhbmdsZSgwLCAwLCBpbWFnZS53aWR0aCwgaW1hZ2UuaGVpZ2h0KTtcblxuXHRcdGNvbnNvbGUubG9nKCdMb2FkZXJFdmVudCcsIGltYWdlKTtcblxuXHRcdHRoaXMuYml0bWFwRGF0YSA9IG5ldyBCaXRtYXBJbWFnZTJEKGltYWdlLndpZHRoICwgaW1hZ2UuaGVpZ2h0KTtcblx0XHR0aGlzLmJpdG1hcERhdGEuZHJhdyhpbWFnZSk7XG5cblx0XHR0aGlzLnRhcmdldCA9IG5ldyBTaW5nbGUyRFRleHR1cmUodGhpcy5iaXRtYXBEYXRhKTtcblxuXHRcdERlYnVnLmxvZygnQml0bWFwSW1hZ2UyRCcsIHRoaXMuYml0bWFwRGF0YSk7XG5cdFx0RGVidWcubG9nKCdTaW5nbGUyRFRleHR1cmUnLCB0aGlzLnRhcmdldCk7XG5cdH1cbn0iXSwic291cmNlUm9vdCI6Ii4vdGVzdHMifQ==
163.690476
4,834
0.907782
c5e8fc92f5929c0f4924e42a47df16b789e6f42a
1,392
js
JavaScript
src/components/molecules/Menu/Menu.styles.js
nunobreis/nr-gatsby-netlify-cms
bc72af6d2b2756264d244838e3776ba1305522b9
[ "MIT" ]
null
null
null
src/components/molecules/Menu/Menu.styles.js
nunobreis/nr-gatsby-netlify-cms
bc72af6d2b2756264d244838e3776ba1305522b9
[ "MIT" ]
null
null
null
src/components/molecules/Menu/Menu.styles.js
nunobreis/nr-gatsby-netlify-cms
bc72af6d2b2756264d244838e3776ba1305522b9
[ "MIT" ]
null
null
null
import styled from 'styled-components' import media from 'styled-media-query' import Link from '../../atoms/Link/Link' import { fadeIn } from '../../animations/animations' import { mobile } from '../../mediaQueries/default' const color = ({ theme }) => theme.colors.primary[0] const backgroundColor = ({ theme }) => theme.colors.secondary[0] const fontFamily = ({ theme }) => theme.fonts.display const closeButtonFont = ({ theme }) => theme.fonts.primary export const Wrapper = styled.div` display: flex; flex-direction: column; justify-content: center; height: 100vh; width: 100%; position: absolute; z-index: 2000; top: 0; background-color: ${backgroundColor}; opacity: 0.9; padding: 2rem; animation: ${fadeIn} 0.35s; transition: opacity 0, 2s; ` export const StyledLink = styled(Link)` font-family: ${fontFamily}; font-size: 2rem; margin-bottom: 4rem; color: ${color}; text-align: center; text-decoration: none; &:hover { text-decoration: line-through; } ${media.greaterThan(mobile)` font-size: 4rem; `} ` export const CloseButton = styled(Link)` font-family: ${closeButtonFont}; color: ${color}; cursor: pointer; margin: 1rem auto; text-align: center; padding: 1rem 2rem; &:hover { background-color: ${color}; transform: scale(0.95); color: ${backgroundColor}; transform: scale(1.05); } `
21.090909
64
0.663793
c5e954c8028870428a0272a662d260bf2e6756cf
682
js
JavaScript
client/src/store/actions/signUp.js
guinzar/play-story
47310b95cf115edf982ecc7d3439e82f743bfd7b
[ "ISC" ]
1
2018-07-11T04:49:33.000Z
2018-07-11T04:49:33.000Z
client/src/store/actions/signUp.js
guinzar/play-story
47310b95cf115edf982ecc7d3439e82f743bfd7b
[ "ISC" ]
null
null
null
client/src/store/actions/signUp.js
guinzar/play-story
47310b95cf115edf982ecc7d3439e82f743bfd7b
[ "ISC" ]
null
null
null
import * as actionTypes from "./actionTypes"; export const signUpChangeInput = ( fieldIndex, input ) => { return { type: actionTypes.SIGNUP_CHANGE_INPUT, fieldIndex: fieldIndex, input: input }; }; export const signUpDeselectInput = ( fieldIndex, input ) => { return { type: actionTypes.SIGNUP_DESELECT_INPUT, fieldIndex: fieldIndex, input: input }; }; export const signUpSubmit = ( fields, formValid ) => { return { type: actionTypes.SIGNUP_SUBMIT, fields: fields, formValid: formValid }; }; export const signUpFailed = ( field, error ) => { return { type: actionTypes.SIGNUP_FAILED, field: field, error: error }; };
22
61
0.664223
c5e980d724cb73b2fce344cee3a36deb5c08266b
1,661
js
JavaScript
server/db/mongo/migrations/1-country-indicator-info.js
joshweir/economicdata.co
549a0141a6ffb7db7375b8a59ccbb080e1d1e490
[ "MIT" ]
null
null
null
server/db/mongo/migrations/1-country-indicator-info.js
joshweir/economicdata.co
549a0141a6ffb7db7375b8a59ccbb080e1d1e490
[ "MIT" ]
1
2018-04-09T08:55:23.000Z
2018-04-09T08:55:23.000Z
server/db/mongo/migrations/1-country-indicator-info.js
joshweir/economicdata.co
549a0141a6ffb7db7375b8a59ccbb080e1d1e490
[ "MIT" ]
null
null
null
module.exports.id = 'country-indicator-info'; module.exports.up = function (done) { // use this.db for MongoDB communication, and this.log() for logging this.db.createCollection('countryIndicatorInfo', { validator: { $jsonSchema: { bsonType: 'object', required: [ 'country', 'countryDisplay', 'indicator', 'indicatorDisplay', 'importance', 'source', 'description' ], properties: { country: { bsonType: 'string', description: 'must be a string and is required' }, countryDisplay: { bsonType: 'string', description: 'must be a string and is required' }, indicator: { bsonType: 'string', description: 'must be a string and is required' }, indicatorDisplay: { bsonType: 'string', description: 'must be a string and is required' }, importance: { bsonType: 'string', description: 'must be a string and is required' }, source: { bsonType: 'string', description: 'must be a string and is required' }, description: { bsonType: 'string', description: 'must be a string and is required' } } } } }); done(); }; module.exports.down = function (done) { // use this.db for MongoDB communication, and this.log() for logging this.db.collection('countryIndicatorInfo').drop(); done(); };
28.637931
70
0.505117
c5ea8c620a15dd6ec16d00ae9132aeec4f78d5b9
81
js
JavaScript
components/net/js/src/index.js
knicos/voltu
70b39da7069f8ffd7e33aeb5bdacc84fe4a78f01
[ "MIT" ]
4
2020-12-28T15:29:15.000Z
2021-06-27T12:37:15.000Z
components/net/js/src/index.js
knicos/voltu
70b39da7069f8ffd7e33aeb5bdacc84fe4a78f01
[ "MIT" ]
null
null
null
components/net/js/src/index.js
knicos/voltu
70b39da7069f8ffd7e33aeb5bdacc84fe4a78f01
[ "MIT" ]
2
2021-01-13T05:28:39.000Z
2021-05-04T03:37:11.000Z
export.Peer = require('./peer.js'); export.Universe = require('./universe.js');
20.25
43
0.666667
c5ea97c173c76929fab83823909f882fdc948791
673
js
JavaScript
src/business/modules/hz/views/person/api.js
zifeiyu333/keeps-company-ui
c9190160ded7cb5c7aa29b87220320ba5b19451e
[ "MIT" ]
null
null
null
src/business/modules/hz/views/person/api.js
zifeiyu333/keeps-company-ui
c9190160ded7cb5c7aa29b87220320ba5b19451e
[ "MIT" ]
null
null
null
src/business/modules/hz/views/person/api.js
zifeiyu333/keeps-company-ui
c9190160ded7cb5c7aa29b87220320ba5b19451e
[ "MIT" ]
null
null
null
import { request } from '@/api/service' const apiPrefix = '/hz/person' export function GetList (query) { return request({ url: apiPrefix + '/query', method: 'get', params: query }) } export function AddObj (obj) { return request({ url: apiPrefix + '/add', method: 'post', data: obj }) } export function UpdateObj (obj) { return request({ url: apiPrefix + '/update', method: 'put', data: obj }) } export function DelObj (id) { return request({ url: apiPrefix + '/delete/' + id, method: 'delete' }) } export function GetObj (id) { return request({ url: apiPrefix + '/info/' + id, method: 'get' }) }
16.825
39
0.586924
c5eaf1f9f605668cbb1a952a4714305dcdf8675a
168
js
JavaScript
public/components/version/version.js
websitescenes/rails-angular-seed-app
37a4d72c206ceb1a7efecece029fee5982894b58
[ "Unlicense", "MIT" ]
1
2016-04-13T15:51:55.000Z
2016-04-13T15:51:55.000Z
public/components/version/version.js
websitescenes/rails-angular-seed-app
37a4d72c206ceb1a7efecece029fee5982894b58
[ "Unlicense", "MIT" ]
null
null
null
public/components/version/version.js
websitescenes/rails-angular-seed-app
37a4d72c206ceb1a7efecece029fee5982894b58
[ "Unlicense", "MIT" ]
null
null
null
'use strict'; angular.module('angularApp.version', [ 'angularApp.version.interpolate-filter', 'angularApp.version.version-directive' ]) .value('version', '0.1');
18.666667
42
0.714286
c5ebfe84a144eaeff7fdf7198035882bf81d1e08
34,841
js
JavaScript
version/1.0/ajax/LOBI_PLUGINS/lobilist-v1.0/js/lobilist.js
sasijarvis/lobiadmin
00aa1e83d62e859458963b5137efaec87fbcd0cb
[ "Apache-2.0" ]
62
2016-08-17T10:45:48.000Z
2021-05-26T03:00:07.000Z
version/1.0/ajax/LOBI_PLUGINS/lobilist-v1.0/js/lobilist.js
sasijarvis/lobiadmin
00aa1e83d62e859458963b5137efaec87fbcd0cb
[ "Apache-2.0" ]
5
2016-08-18T15:15:46.000Z
2018-08-31T12:08:02.000Z
version/1.0/ajax/LOBI_PLUGINS/lobilist-v1.0/js/lobilist.js
sasijarvis/lobiadmin
00aa1e83d62e859458963b5137efaec87fbcd0cb
[ "Apache-2.0" ]
39
2016-08-13T13:13:13.000Z
2021-02-23T06:54:15.000Z
//Author : @arboshiki /** * Generates random string of n length. * String contains only letters and numbers * * @param {int} n * @returns {String} */ Math.randomString = function(n) { var text = ""; var possible = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"; for (var i = 0; i < n; i++) text += possible.charAt(Math.floor(Math.random() * possible.length)); return text; }; $(function(){ var List = function($lobiList, options){ //------------------------------------------------------------------------------ //----------------PROTOTYPE VARIABLES------------------------------------------- //------------------------------------------------------------------------------ this.$lobiList = $lobiList; this.$el; this.$options = options; this.$items; this.$globalOptions = $lobiList.$options; //------------------------------------------------------------------------------ //-----------------PRIVATE VARIABLES-------------------------------------------- //------------------------------------------------------------------------------ var me = this, $LIST, $HEADER, $TITLE, $FORM, $FOOTER, $BODY; //------------------------------------------------------------------------------ //-----------------PRIVATE FUNCTIONS-------------------------------------------- //------------------------------------------------------------------------------ var _processItemData = function(item){ return $.extend({}, $.fn.lobiList.OPTIONS.itemOptions, item); }; var _init = function(){ if ( ! me.$options.id){ me.$options.id = Math.randomString(10); } var $div = $('<div>', { 'id': me.$options.id, 'class': 'lobilist' }); // window.console.log(me.$options); if (me.$options.defaultStyle){ $div.addClass(me.$options.defaultStyle); } me.$el = $div; $HEADER = _createHeader(); $TITLE = _createTitle(); $BODY = _createBody(); $LIST = _createList(); if (options.items){ _createItems(options.items); } $FORM = _createForm(); $BODY.append($LIST, $FORM); $FOOTER = _createFooter(); if (me.$globalOptions.sortable) _enableSorting(); }; var _createHeader = function(){ var $header = $('<div>', { 'class': 'lobilist-header' }); var $actions = $('<div>', { 'class': 'lobilist-actions' }).appendTo($header); if (me.$options.controls && me.$options.controls.length > 0){ if (me.$options.controls.indexOf('styleChange') > -1){ $actions.append(_createDropdownForStyleChange()); } if (me.$options.controls.indexOf('edit') > -1){ $actions.append(_createEditTitleButton()); $actions.append(_createFinishTitleEditing()); $actions.append(_createCancelTitleEditing()); } if (me.$options.controls.indexOf('add') > -1){ $actions.append(_createAddNewButton()); } if (me.$options.controls.indexOf('remove') > -1){ $actions.append(_createCloseButton()); } } me.$el.append($header); return $header; }; var _createTitle = function(){ var $title = $('<div>', { 'class': 'lobilist-title', html: me.$options.title }).appendTo($HEADER); if (me.$options.controls && me.$options.controls.indexOf('edit') > -1){ $title.on('dblclick', function(){ me.startTitleEditing(); }); } return $title; }; var _createBody =function(){ return $('<div>', { 'class': 'lobilist-body' }).appendTo(me.$el); }; var _createForm = function () { var $form = $('<form>',{ 'class': 'lobilist-add-todo-form hide' }); $('<input>', { type: 'hidden', name: 'id' }).appendTo($form); $('<div>', { 'class': 'form-group' }).append( $('<input>', { 'type': 'text', name: 'title', 'class': 'form-control', placeholder: 'TODO title' }) ).appendTo($form); $('<div>', { 'class': 'form-group' }).append( $('<textarea>', { rows: '2', name: 'description', 'class': 'form-control', 'placeholder': 'TODO description' }) ).appendTo($form); $('<div>', { 'class': 'form-group' }).append( $('<input>', { 'type': 'text', name: 'dueDate', 'class': 'form-control', placeholder: 'Due Date' }) ).appendTo($form); var $ft = $('<div>', { 'class': 'lobilist-form-footer' }); $('<button>', { 'class': 'btn btn-primary btn-sm btn-add-todo', html: 'Add' }).appendTo($ft); $('<button>', { type: 'button', 'class': 'btn btn-default btn-sm btn-discard-todo', html: '<i class="glyphicon glyphicon-remove-circle"></i>' }).click(function(){ $FORM.addClass('hide'); $FOOTER.removeClass('hide'); }).appendTo($ft); $ft.appendTo($form); _formHandler($form); me.$el.append($form); return $form; }; var _formHandler = function($form){ $form.on('submit', function(ev){ ev.preventDefault(); _submitForm(); }); }; var _submitForm = function(){ if (!$FORM[0].title.value) { _showFormError('title', 'Title can not be empty'); return; } me.saveOrUpdateItem({ id: $FORM[0].id.value, title: $FORM[0].title.value, description: $FORM[0].description.value, dueDate: $FORM[0].dueDate.value }); $FORM.addClass('hide'); $FOOTER.removeClass('hide'); }; var _createFooter = function(){ var $footer = $('<div>', { 'class': 'lobilist-footer' }); $('<button>', { type: 'button', 'class': 'btn-link btn-show-form', 'html': 'Add new' }).click(function(){ _resetForm(); $FORM.removeClass('hide'); $FOOTER.addClass('hide'); }).appendTo($footer); me.$el.append($footer); return $footer; }; var _createList = function () { var $list = $('<ul>', { 'class': 'lobilist-items' }); me.$el.append($list); return $list; }; var _createItems = function(items){ for (var i = 0; i < items.length; i++) { _addItem(items[i]); } }; /** * This method is called when plugin is initialized * and initial items are added to the list * * @type Object */ var _addItem = function(item){ if ( ! item.id){ item.id = me.$lobiList.getNextId(); } item = _processItemData(item); _addItemToList(item); }; var _createCheckbox = function(){ var $item = $('<input>', { 'type': 'checkbox' }); $item.change(function(){ $item.closest('.lobilist-item').toggleClass('item-done'); }); var $label = $('<label>', { 'class': 'checkbox-inline lobilist-check' }).append($item); if (me.$options.useLobicheck){ $label.addClass('lobicheck') .addClass(me.$options.lobicheckClass); $label.append('<i></i>'); } return $label; }; var _createDropdownForStyleChange = function(){ var $dropdown = $('<div>', { 'class': 'dropdown' }).append( $('<button>', { 'type': 'button', 'data-toggle': 'dropdown', 'class': 'btn btn-default btn-xs', 'html': '<i class="glyphicon glyphicon-th"></i>' }) ); var $menu = $('<div>', { 'class': 'dropdown-menu dropdown-menu-right' }).appendTo($dropdown); for (var i = 0; i<$.fn.lobiList.OPTIONS.listStyles.length; i++){ var st = $.fn.lobiList.OPTIONS.listStyles[i]; $('<div class="'+st+'"></div>') .on('mousedown', function(ev){ ev.stopPropagation() }) .click(function(){ me.$el.removeClass($.fn.lobiList.OPTIONS.listStyles.join(" ")) .addClass(this.className); }) .appendTo($menu); } return $dropdown; }; var _createEditTitleButton = function(){ var $btn = $('<button>', { 'class': 'btn btn-default btn-xs', html: '<i class="glyphicon glyphicon-edit"></i>' }); $btn.click(function(){ me.startTitleEditing(); }); return $btn; }; var _createAddNewButton = function(){ var $btn = $('<button>', { 'class': 'btn btn-default btn-xs', html: '<i class="glyphicon glyphicon-plus"></i>' }); $btn.click(function(){ var list = me.$lobiList.addList(); list.startTitleEditing(); }); return $btn; }; var _createCloseButton = function(){ var $btn = $('<button>', { 'class': 'btn btn-default btn-xs', html: '<i class="glyphicon glyphicon-remove"></i>' }); $btn.click(function(){ me.remove(); }); return $btn; }; var _createFinishTitleEditing = function(){ var $btn = $('<button>', { 'class': 'btn btn-default btn-xs btn-finish-title-editing', html: '<i class="glyphicon glyphicon-ok-circle"></i>' }); $btn.click(function () { me.finishTitleEditing(); }); return $btn; }; var _createCancelTitleEditing = function(){ var $btn = $('<button>', { 'class': 'btn btn-default btn-xs btn-cancel-title-editing', html: '<i class="glyphicon glyphicon-remove-circle"></i>' }); $btn.click(function () { me.cancelTitleEditing(); }); return $btn; }; var _createInput = function () { var input = $('<input>', { type: 'text', 'class': 'form-control' }); input.on('keyup', function (ev) { if (ev.which === 13) { me.finishTitleEditing(); } }); return input; }; var _showFormError = function(field, error){ var $fGroup = $FORM.find('[name="'+field+'"]').closest('.form-group') .addClass('has-error'); $fGroup.find('.help-block').remove(); $fGroup.append( $('<span>', { 'class': 'help-block', html: error }) ); }; var _resetForm = function(){ $FORM[0].reset(); $FORM[0].id.value = ""; $FORM.find('.form-group').removeClass('has-error').find('.help-block').remove(); }; var _enableSorting = function(){ me.$el.find('.lobilist-items').sortable({ connectWith: '.lobilist .lobilist-items', items: '.lobilist-item', handle: '.drag-handler', cursor: 'move', placeholder: 'lobilist-item-placeholder', forcePlaceholderSize: true, opacity: 0.9, revert: 70 }); }; var _addItemToList = function(item){ // item = var $li = $('<li>', { 'data-id': item.id, 'class': 'lobilist-item' }); $li.append($('<div>', { 'class': 'lobilist-item-title', 'html': item.title })); if (item.description) { $li.append($('<div>', { 'class': 'lobilist-item-description', html: item.description })); } if (item.dueDate) { $li.append($('<div>', { 'class': 'lobilist-item-duedate', html: item.dueDate })); } $li = _addItemControls($li); if (item.done){ $li.find('input[type=checkbox]').prop('checked', true); $li.addClass('item-done'); } $li.data('lobiListItem', item); $LIST.append($li); return $li; }; var _addItemControls = function($li){ if (me.$options.useCheckboxes) { $li.append(_createCheckbox()); } if (me.$options.removeItemButton){ $li.append($('<div>', { 'class': 'delete-todo', html: '<i class="glyphicon glyphicon-remove"></i>' }).click(function () { me.deleteItem($(this).closest('li').data('lobiListItem')); })); } if (me.$options.editItemButton){ $li.append($('<div>', { 'class': 'edit-todo', html: '<i class="glyphicon glyphicon-pencil"></i>' }).click(function () { me.editItem($(this).closest('li').data('id')); })); } $li.append($('<div>', { 'class': 'drag-handler' })); return $li; }; var _updateItemInList = function(item){ var $li = me.$lobiList.$el.find('li[data-id="'+item.id+'"]'); $li.find('input[type=checkbox]').prop('checked', item.done); $li.find('.lobilist-item-title').html(item.title); $li.find('.lobilist-item-description').remove(); $li.find('.lobilist-item-duedate').remove(); if (item.description){ $li.append('<div class="lobilist-item-description">'+item.description+'</div>'); } if (item.dueDate){ $li.append('<div class="lobilist-item-duedate">'+item.dueDate+'</div>'); } $li.data('lobiListItem', item); }; //------------------------------------------------------------------------------ //----------------PROTOTYPE FUNCTIONS------------------------------------------- //------------------------------------------------------------------------------ /** * Add item. If <code>action.insert</code> url is provided request is sent to the server. * Server respond: <code>{"success": Boolean, "msg": String}</code> * If <code>respond.success</code> is true item is added. * Otherwise <big>Lobibox</big> error notification is shown with the message server responded and item is not added. * * @param {Plain Object} item "item options" * @returns {List} */ this.addItem = function(item){ if (me.$options.onItemAdd){ me.$options.onItemAdd(me, item); } var saved = false; item = _processItemData(item); if (me.$globalOptions.actions.insert){ $.ajax(me.$globalOptions.actions.insert, { data: item, method: 'POST', async: false }) //res is JSON object of format {"id": Number, "success": Boolean, "msg": String} .done(function(res){ if (res.success){ saved = true; item.id = res.id; }else { Lobibox.notify('error', { msg: res.msg || "Error occured" }); } }); }else{ saved = true; item.id = me.$lobiList.getNextId(); } if (saved){ _addItemToList(item); } if (me.$options.afterItemAdd){ me.$options.afterItemAdd(me, item); } return me; }; /** * Update item. If <code>action.update</code> url is provided request is sent to the server. * Server respond: <code>{"success": Boolean, "msg": String}</code> * If <code>respond.success</code> is true item is updated. * Otherwise <code>Lobibox</code> error notification is shown with the message server responded and item is not updated. * * @param {Plain Object} item "item options" * @returns {List} */ this.updateItem = function(item){ if (me.$options.onItemUpdate) { me.$options.onItemUpdate(me, item); } var saved = false; if (me.$globalOptions.actions.update) { $.ajax(me.$globalOptions.actions.update, { data: item, method: 'POST', async: false }) //res is JSON object of format {"id": Number, "success": Boolean, "msg": String} .done(function (res) { if (res.success) { saved = true; } else { Lobibox.notify('error', { msg: res.msg || "Error occured" }); } }); } else { saved = true; } if (saved) { _updateItemInList(item); } if (me.$options.afterItemUpdate) { me.$options.afterItemUpdate(me, item); } return me; }; /** * Delete item from the list. If <code>action.delete</code> url is provided request is sent to the server. * Server respond: <code>{"success": Boolean, "msg": String}</code> * If <code>respond.success</code> is true item is deleted from the list. * Otherwise <code>Lobibox</code> error notification is shown with the message server responded and item is not deleted. * * @param {Plain Object} item "item options" * @param {Boolean} discardEvent "trigger 'onItemDelete' event or not. * The event is triggered by default but disabling event is necessary when you * already listen the event and show custom confirm dialog. After confirm dialog * approvement you can call this method dynamically and give second parameter as true * which does not trigger the event again and item will be deleted" * @returns {List} */ this.deleteItem = function (item, discardEvent) { var check = true; if (!discardEvent && me.$options.onItemDelete) { check = me.$options.onItemDelete(me, item); } if (check === false) { return me; } var deleted = false; if (me.$globalOptions.actions.delete) { $.ajax(me.$globalOptions.actions.delete, { data: item, method: 'POST', async: false }) //res is JSON object of format .done(function (res) { if (res.success) { deleted = true; } else { Lobibox.notify('error', { msg: res.msg || "Error occured" }); } }); } else { deleted = true; } if (deleted) { me.$lobiList.$el.find('li[data-id=' + item.id + ']').remove(); } if (me.$options.afterItemDelete) { me.$options.afterItemDelete(me, item); } return me; }; /** * If item does not have id, it is considered as new and adds to the list. * If it has id it is updated. If update and insert actions are provided corresponding request is sent to the server * * @param {Plain Object} item "Item options" * @returns {List} */ this.saveOrUpdateItem = function(item){ if (item.id){ me.updateItem(item); }else{ me.addItem(item); } return me; }; /** * Start title editing * * @returns {List} */ this.startTitleEditing = function () { var input = _createInput(); $TITLE.attr('data-old-title', $TITLE.html()); input.val($TITLE.html()); input.insertAfter($TITLE); $TITLE.addClass('hide'); $HEADER.addClass('title-editing'); input[0].focus(); input[0].select(); return me; }; /** * Finish title editing * * @returns {List} */ this.finishTitleEditing = function () { var $input = $HEADER.find('input'); $TITLE.html($input.val()).removeClass('hide').removeAttr('data-old-title'); $input.remove(); $HEADER.removeClass('title-editing'); return me; }; /** * Cancel title editing * * @returns {List} */ this.cancelTitleEditing = function () { var $input = $HEADER.find('input'); if ($input.length === 0){ return me; } $TITLE.html($TITLE.attr('data-old-title')).removeClass('hide'); $input.remove(); $HEADER.removeClass('title-editing'); return me; }; /** * Remove list * * @param {Boolean} discardEvent "trigger 'onRemove' event or not. * The event is triggered by default but disabling event is necessary when you * already listen the event and show custom confirm dialog. After confirm dialog * approvement you can call this method dynamically and give second parameter as true * which does not trigger the event again and list will be removed" * @returns {List} */ this.remove = function(discardEvent){ var check = true; if (!discardEvent && me.$options.onRemove) { check = me.$options.onRemove(me); } if (check === false){ return me; } me.$lobiList.$lists.splice(me.$el.index(), 1); me.$el.remove(); if (me.$options.afterRemove){ me.$options.afterRemove(me); } return me; }; /** * Start editing of TODO * * @param {Integer} id "id of the TODO" * @returns {List} */ this.editItem = function(id){ var $item = me.$lobiList.$el.find('li[data-id='+id+']'); var $FORM = $item.closest('.lobilist').find('.lobilist-add-todo-form'); var $FOOTER = $item.closest('.lobilist').find('.lobilist-footer'); $FORM.removeClass('hide'); $FOOTER.addClass('hide'); $FORM[0].id.value = $item.attr('data-id'); $FORM[0].title.value = $item.find('.lobilist-item-title').html(); var desc = $item.find('.lobilist-item-description').html() || ''; $FORM[0].description.value = desc; var date = $item.find('.lobilist-item-duedate').html() || ''; $FORM[0].dueDate.value = date; return me; }; //------------------------------------------------------------------------------ //------------------------------------------------------------------------------ //------------------------------------------------------------------------------ _init(); }; //|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| var LobiList = function($el, options){ //------------------------------------------------------------------------------ //----------------PROTOTYPE VARIABLES------------------------------------------- //------------------------------------------------------------------------------ this.$el; this.$lists = []; this.$options; //------------------------------------------------------------------------------ //-----------------PRIVATE VARIABLES-------------------------------------------- //------------------------------------------------------------------------------ var me = this, $nextId = 1; //------------------------------------------------------------------------------ //-----------------PRIVATE FUNCTIONS-------------------------------------------- //------------------------------------------------------------------------------ var _processInput = function(options){ options = $.extend({}, $.fn.lobiList.DEFAULT_OPTIONS, options); if (options.actions.load){ $.ajax(options.actions.load, { async: false }).done(function(res){ options.lists = res.lists; }); } return options; }; var _processListOptions = function(listOptions){ listOptions = $.extend({}, $.fn.lobiList.OPTIONS.listsOptions, listOptions); var processOptions = ['useCheckboxes', 'useLobicheck', 'lobicheckClass', 'removeItemButton', 'editItemButton', 'sortable', 'controls', 'defaultStyle', 'onAdd', 'onRemove', 'afterRemove', 'onItemAdd', 'afterItemAdd', 'onItemUpdate', 'afterItemUpdate', 'onItemDelete', 'afterItemDelete']; for (var i = 0; i<processOptions.length; i++){ if (listOptions[processOptions[i]] === undefined){ listOptions[processOptions[i]] = me.$options[processOptions[i]]; } } return listOptions; }; var _init = function(){ me.$el.addClass('lobilists'); _createLists(); if (me.$options.sortable){ me.$el.sortable({ items: '.lobilist', handle: '.lobilist-header', cursor: 'move', placeholder: 'lobilist-placeholder', forcePlaceholderSize: true, opacity: 0.9, revert: 70 }); } if (me.$options.onInit){ me.$options.onInit(me); } }; var _createLists = function(){ for (var i = 0; i < me.$options.lists.length; i++){ me.addList(me.$options.lists[i]); } }; // var _triggerEvent = function(event){ // me.$el.trigger(event+'.lobiList', [me]); // }; //------------------------------------------------------------------------------ //----------------PROTOTYPE FUNCTIONS------------------------------------------- //------------------------------------------------------------------------------ /** * * @param {Object} options * @returns {List} */ this.addList = function(options){ var list; if (options instanceof List){ list = options; }else{ options = _processListOptions(options); list = new List(me, options); } me.$lists.push(list); me.$el.append(list.$el); list.$el.data('lobiList', list); //Trigger onAdd event if (me.$options.onAdd){ me.$options.onAdd(me); } return list; }; /** * Get next id which will be assigned to new TODO * * @returns {Number} */ this.getNextId = function(){ return $nextId++; }; //------------------------------------------------------------------------------ //------------------------------------------------------------------------------ //------------------------------------------------------------------------------ this.$el = $el; this.$options = _processInput(options); _init(); // window.console.log(me); }; $.fn.lobiList = function (option) { var args = arguments; var ret; return this.each(function (index, el) { var $this = $(this); var data = $this.data('lobiList'); var options = typeof option === 'object' && option; if (!data) { $this.data('lobiList', (data = new LobiList($this, options))); } if (typeof option === 'string') { args = Array.prototype.slice.call(args, 1); ret = data[option].apply(data, args); } }); }; $.fn.lobiList.OPTIONS = { 'listStyles': ['lobilist-default', 'lobilist-danger', 'lobilist-success', 'lobilist-warning', 'lobilist-info', 'lobilist-primary'], listsOptions: { id: false, title: '', // This event is triggered after list is added // onAdd: function(){} // This event is triggered before list is removed. Return false to prevent removing // onRemove: function(){} // This event is triggered after list is removed // afterRemove: function(){} // This event is triggered before item is added // onItemAdd: function(){} // This event is triggered after item is added // afterItemAdd: function(){} // This event is triggered before item is updated // onItemUpdate: function(){} // This event is triggered after item is updated // afterItemUpdate: function(){} // This event is triggered before item is removed. Return false to prevent delete // onItemDelete: function(){} // This event is triggered after item is removed // afterItemDelete: function(){} items: [ ] }, itemOptions: { id: false, title: '', description: '', dueDate: '', done: false } }; $.fn.lobiList.DEFAULT_OPTIONS = { lists: [], actions: { 'load' : '', 'update': '', 'insert': '', 'delete': '' }, useCheckboxes: true, useLobicheck: true, //.lobicheck is automatically added. //Add .lobicheck-inversed, .lobicheck-rounded, .lobicheck-* (info|danger|success|inverse|warning) lobicheckClass: 'lobicheck-info lobicheck-inversed', removeItemButton: true, editItemButton: true, sortable: true, controls: ['edit', 'add', 'remove', 'styleChange'], //List style. Available options: 'lobilist-default', 'controlslobilist-info', 'lobilist-success', 'lobilist-danger', 'lobilist-warning', 'lobilist-primary' defaultStyle: 'lobilist-default' // onInit: function(){} // This event is triggered after list is added // onAdd: function(){} // This event is triggered before list is removed. Return false to prevent removing // onRemove: function(){} // This event is triggered after list is removed // afterRemove: function(){} // This event is triggered before item is added // onItemAdd: function(){} // This event is triggered after item is added // afterItemAdd: function(){} // This event is triggered before item is updated // onItemUpdate: function(){} // This event is triggered after item is updated // afterItemUpdate: function(){} // This event is triggered before item is removed. Return false to prevent delete // onItemDelete: function(){} // This event is triggered after item is removed // afterItemDelete: function(){} }; $('.lobilists').lobiList(); });
38.712222
163
0.415373
c5ec5b59940b1ae3e00fa61156279bfb0b723315
65
js
JavaScript
web-react/src/actions/acceptNodes.js
ComplexData-MILA/HTUI
2aa7b2c83a2deb7f6fd79d9604913fc85dc25f91
[ "Apache-2.0" ]
null
null
null
web-react/src/actions/acceptNodes.js
ComplexData-MILA/HTUI
2aa7b2c83a2deb7f6fd79d9604913fc85dc25f91
[ "Apache-2.0" ]
20
2021-11-22T15:16:53.000Z
2022-01-04T16:55:26.000Z
web-react/src/actions/acceptNodes.js
ComplexData-MILA/HTUI
2aa7b2c83a2deb7f6fd79d9604913fc85dc25f91
[ "Apache-2.0" ]
null
null
null
export default function accepNodes() { console.log('accept') }
16.25
38
0.723077
c5ec71b738eb717b811c3e269cd8858274147519
12,134
js
JavaScript
client/src/components/Visual.js
The-New-Maps-Project/legacywebsite
a8dc16c2d471d929a30dca9853e75a92186ff337
[ "MIT" ]
1
2021-02-19T21:17:30.000Z
2021-02-19T21:17:30.000Z
client/src/components/Visual.js
The-New-Maps-Project/legacywebsite
a8dc16c2d471d929a30dca9853e75a92186ff337
[ "MIT" ]
null
null
null
client/src/components/Visual.js
The-New-Maps-Project/legacywebsite
a8dc16c2d471d929a30dca9853e75a92186ff337
[ "MIT" ]
1
2021-02-19T20:55:48.000Z
2021-02-19T20:55:48.000Z
import React from "react"; import Loading from "./Loading"; import { storage, firestore } from "../config/firebase"; import maicon from "../images/maicon.png" class Visual extends React.Component { constructor(props) { super(); this.state = { currentFile: null, stateLocations: {}, visualizeOptions: {}, markersArr: [], //just for purposes of deleting markers. map: null, districts: [], //starting at 1, NOT 0. the "dataObj" the readFile() function focusDistrict: -1, isLoading: false, }; } //This downloads specified file from storage and sets currentFile; setCurrentFile = (filename) => { var pathReference = storage.ref("textfiles/" + filename + ".txt"); var classThis = this; //have to declare this for "this.setState" to reference the correct "this" inside a function pathReference .getDownloadURL() .then(function (url) { // This can be downloaded directly: var xhr = new XMLHttpRequest(); xhr.responseType = "blob"; xhr.onload = function (event) { var blob = xhr.response; classThis.setState({ currentFile: blob }); document.getElementById("confirm-visualization").textContent = "Visualize " + filename + " >>>"; document.getElementById("confirm-visualization").classList = "submit-real"; }; xhr.open("GET", url); xhr.send(); // Or inserted into an <img> element: }) .catch((err) => { console.error(err); document.getElementById("confirm-visualization").textContent = "Error, Select Another Option"; }); }; componentDidMount() { /**THIS LOADS THE MAP */ var script = document.createElement("script"); script.src = "https://maps.googleapis.com/maps/api/js?key=" + "AIzaSyB5dR_M5LglL5rK-2P5oA44lHduBUD8C2c" + ""; script.defer = true; document.head.appendChild(script); script.addEventListener("load", () => { this.initMap(); }); document.getElementById("options").style.display = "none"; //Get all the states' locations from firestore firestore .collection("stateLocations") .doc("efG8X0pxBLabJe5BbOpr") .get() .then((doc) => { if (doc.exists) { this.setState({ stateLocations: doc.data() }); } else { console.error("Nonexsistent Document!"); } }) .catch((err) => console.error(err)); //Get all options for visualization from firestore firestore .collection("visualizeOptions") .doc("v38Eqbri3jvGCndvfsy5") .get() .then((doc) => { if (doc.exists) { this.setState({ visualizeOptions: doc.data() }); } else { console.error("Nonexistent Document"); } }) .catch((err) => console.error(err)); } clearAllMarkers = () => { this.state.markersArr.forEach((e) => e.setMap(null)); this.setState({ markersArr: [] }); }; selectedOption = (e) => { //could return the span as e.target if you click on it var fname = e.target.name || e.target.parentElement.name; document.getElementById("confirm-visualization").classList = ""; window.location = "/visualizer#top-section"; document.getElementById("confirm-visualization").textContent = "Loading..."; this.setCurrentFile(fname); }; initMap = function () { //create the map, default in Washington, DC; var center = { lat: 39.3433, lng: -95.4603 }; var map = new window.google.maps.Map(document.getElementById("map"), { zoom: 4, center: center, }); this.setState({ map: map }); //VISUALIZES ALL THE DATA FOR THAT FILE, Generate Districts, Markers, and all other data from a file. //This file used is the variable "currentFile" }; uploadOwnFile = async (e) => { await this.setState({ currentFile: e.target.files[0] }); this.unfocusDistrict(); }; changeFocusDistrict = (e) => { const { name } = e.target; this.setState({ focusDistrict: Number(name) }); this.readFile(); }; readFile = () => { this.setState({ isLoading: true }); var fr = new FileReader(); var classThis = this; fr.onload = function () { window.location = "/visualizer#title"; //array of districts, each an object with a population, and an array of towns. STARTS AT INDEX 1, NOT 0. var dataObj = []; //no need to put in state, just for purposes of storing data in this function. classThis.clearAllMarkers(); var colors = ["blue", "red", "green", "yellow", "purple", "orange"]; var lines = fr.result.split("\n"); var numLine = 0; lines.forEach((e) => { numLine++; if (numLine !== 1) { var elements = e.split(","); var townName = elements[0]; var districtNo = Number(elements[1]); var lat = Number(elements[2]); var lng = Number(elements[3]); var pop = Number(elements[4]); if (!dataObj[districtNo]) { dataObj[districtNo] = { population: pop, towns: [townName], color: colors[districtNo % colors.length], }; } else { dataObj[districtNo].population += pop; dataObj[districtNo].towns.push(townName); } //only put the marker if it is in the selected district or there is no selected district if ( classThis.state.focusDistrict == -1 || classThis.state.focusDistrict === districtNo ) { var s = "http://maps.google.com/mapfiles/ms/icons/" + colors[districtNo % colors.length] + "-dot.png"; var marker = new window.google.maps.Marker({ position: { lat: lat, lng: lng }, map: classThis.state.map, icon: { url: s, }, title: townName, }); classThis.setState((prevState) => { var addOneMarker = prevState.markersArr; addOneMarker.push(marker); return { markersArr: addOneMarker }; }); //add to array, so can delete later const contentString = "<div className='town-name'>" + townName + "<span> District " + districtNo + "</span>" + "</div>"; const infowindow = new window.google.maps.InfoWindow({ content: contentString, }); marker.addListener("click", () => { infowindow.open(classThis.state.map, marker); }); } } else { var elmts = e.split(","); document.getElementById("title").innerHTML = elmts[0] + " | Threshold: " + elmts[1]; if (classThis.state.stateLocations[elmts[0]]) { classThis.state.map.setCenter({ lat: classThis.state.stateLocations[elmts[0]].lat, lng: classThis.state.stateLocations[elmts[0]].lng, }); classThis.state.map.setZoom( classThis.state.stateLocations[elmts[0]].zoom ); } } }); classThis.setState({ isLoading: false }); //fills out district in state, so that the data can be filled out. classThis.setState({ districts: dataObj }); }; if (this.state.currentFile) fr.readAsText(this.state.currentFile); }; openCloseOptions = () => { const optionsDOM = document.getElementById("options"); if (optionsDOM.style.display == "none") { optionsDOM.style.display = "grid"; } else { optionsDOM.style.display = "none"; } }; returnDistrictsListsDOM = () => { var districts = this.state.districts; var arr = []; for (var i = 1; i < districts.length; i++) { if(!districts[i]) continue; arr.push( <div id={"district" + i}> <button type="button" class="view-alone" onClick={this.changeFocusDistrict} name={i} > View Alone </button> <h3 style={{ backgroundColor: districts[i].color }}> {"District " + i + " | Population:" + districts[i].population} </h3> <ul class="towns-list"> {districts[i].towns.map((e) => ( <li>{e}</li> ))} </ul> </div> ); } return arr; }; //This ALSO READS THE FILE!! Call this whenver you need to visualize ALL districts unfocusDistrict = () => { this.setState({ focusDistrict: -1 }); this.readFile(); }; render() { return ( <div id="visual-container"> {this.state.isLoading && <Loading />} <h3 id="visualizer-title"> The New Maps <span style={{ color: "lightcoral" }}>Visualizer</span> </h3> <p id="visualizer-description">Visualize examples of districts drawn by the New Maps Project Algorithm with different settings</p> <div className="second-row"> <span>This is the legacy visualizer</span> <p className="ma-p"><img src={maicon}></img> Use the <a style ={{margin: "0px 5px"}}target="_blank" href="https://maps.thenewmapsproject.org">Map Analysis</a> tool to visualize disticts with more flexibility, interactivity, and data analysis.</p> </div> <section id="top-section"> <div id="options-container"> <div id="options-menu-buttons"> <button id="confirm-visualization" onClick={() => this.unfocusDistrict()} > Select an option </button> <button type="button" id="open-close-options" onClick={this.openCloseOptions} class="fa fa-bars" ></button> </div> <p> *For demonstrative purposes only, input data is NOT accurate, only to show examples of district drawings. </p> <div id="options"> {this.state.visualizeOptions.allOptions && this.state.visualizeOptions.allOptions .sort((a, b) => { return a.state.localeCompare(b.state); }) .map((e) => { return ( <button className="option" type="button" key={`${e.filename}-uniquekey`} id={`${e.filename}-button`} name={e.filename} onClick={this.selectedOption} > {e.state} {e.text ? <span>{e.text}</span> : ""} </button> ); })} </div> </div> <div id="or-text">OR</div> <div id="uploadfile-container"> <div>Upload a File</div> <input type="file" id="fileupload" onChange={this.uploadOwnFile} /> <p> *Files must be in a{" "} <a href="/docs#visual-format">specific format</a> </p> </div> </section> <h2 id="title"></h2> <div id="map"></div> <div id="focusedDistrict"> {this.state.focusDistrict != -1 && ( <div> <div>District {this.state.focusDistrict}</div> <button type="button" onClick={this.unfocusDistrict}> Unselect </button> </div> )} </div> <div id="data">{this.returnDistrictsListsDOM()}</div> </div> ); } } // { // this.state.focusDistrict != -1 && ( // <div> // District Selected: {this.state.focusDistrict} // <button onClick={this.unfocusDistrict()}>Unselect</button> // </div> // ); // } export default Visual;
32.972826
256
0.528927
c5ecb8964b99d87321b63f369f4a9a80ce5b867f
1,233
js
JavaScript
src/components/Footer/BottomSection/SocialIcons.js
m3Lith/site
a67d0ed32edfe1c0238975f2055e49a405e21e2c
[ "MIT" ]
1
2019-11-01T06:00:17.000Z
2019-11-01T06:00:17.000Z
src/components/Footer/BottomSection/SocialIcons.js
m3Lith/site
a67d0ed32edfe1c0238975f2055e49a405e21e2c
[ "MIT" ]
null
null
null
src/components/Footer/BottomSection/SocialIcons.js
m3Lith/site
a67d0ed32edfe1c0238975f2055e49a405e21e2c
[ "MIT" ]
null
null
null
import React from 'react' import { twitterHandle, githubHandle, linkedinHandle, } from 'src/constants/urls' import twitterGrayIcon from 'src/assets/images/twitter.svg' import githubGrayIcon from 'src/assets/images/github-gray.svg' import linkedinGrayIcon from 'src/assets/images/linkedin-gray.svg' //TODO: removed unused image files from source import { NavLink } from 'src/components' import styled from 'styled-components' import { InlineBlock, Flex } from 'serverless-design-system' const SocialIconWrapper = styled(InlineBlock)` & > a > div { height: 20px; width: 20px; background-image: url(${props => props.icon}); background-size: contain; background-repeat: no-repeat; background-position: center; } & > a:hover > div { opacity: 0.6; } ` const SocialIcon = ({ to, icon }) => ( <SocialIconWrapper icon={icon} mr={[24]}> <NavLink to={to} crossDomain> <InlineBlock /> </NavLink> </SocialIconWrapper> ) const SocialIcons = props => ( <Flex> <SocialIcon to={twitterHandle} icon={twitterGrayIcon} /> <SocialIcon to={githubHandle} icon={githubGrayIcon} /> <SocialIcon to={linkedinHandle} icon={linkedinGrayIcon} /> </Flex> ) export default SocialIcons
26.804348
66
0.699108
c5ed5d0cdac7adb15dbc2e9bdb3e00c0c9c23375
1,151
js
JavaScript
src/helper/Helper.js
galen-hlh/sakurua
af7bbd307e56d6e729a8e8d6a18db47359c1262f
[ "Apache-2.0" ]
null
null
null
src/helper/Helper.js
galen-hlh/sakurua
af7bbd307e56d6e729a8e8d6a18db47359c1262f
[ "Apache-2.0" ]
null
null
null
src/helper/Helper.js
galen-hlh/sakurua
af7bbd307e56d6e729a8e8d6a18db47359c1262f
[ "Apache-2.0" ]
null
null
null
import {REQUEST_SUCCESS_CODE, USER_NOT_LOGIN_CODE} from "../config/config"; import {Notice} from './Notice'; /** * 拼接get请求的字段 * @param url * @param params * @returns {*} */ export function urlHandler(url, params) { if (params && Object.keys(params).length !== 0) { let paramsArray = []; Object.keys(params).forEach(key => paramsArray.push(key + '=' + encodeURIComponent(params[key]))); if (url.search(/\?/) === -1) { if (typeof (params) === 'object') { url += '?' + paramsArray.join('&') } } else { url += '&' + paramsArray.join('&') } } return url } /** * 拼接formData * @param params * @returns {FormData} */ export function formDataHandler(params) { let formData = new FormData(); Object.keys(params).forEach(key => formData.append(key, params[key])); return formData; } /** * 处理http返回错误码 * @param code * @param msg */ export function errorCodeHandler(code, msg) { if (code !== REQUEST_SUCCESS_CODE) { Notice.warning(msg); } if (code === USER_NOT_LOGIN_CODE) { Notice.warning(msg); } }
23.489796
106
0.569939
c5ed88a6e81765cf82ea67ab4e8d3d557f1ee4d3
654
js
JavaScript
fusion-plugin-i18n-react/__tests__/with-translations.test.browser.js
Eraz1997/fusionjs
75d6915539bf9a13f94578cfb3c7ab2a87497784
[ "MIT" ]
750
2019-05-09T17:17:53.000Z
2022-03-30T05:57:08.000Z
fusion-plugin-i18n-react/__tests__/with-translations.test.browser.js
Eraz1997/fusionjs
75d6915539bf9a13f94578cfb3c7ab2a87497784
[ "MIT" ]
361
2019-05-09T17:43:59.000Z
2021-12-10T22:53:09.000Z
fusion-plugin-i18n-react/__tests__/with-translations.test.browser.js
Eraz1997/fusionjs
75d6915539bf9a13f94578cfb3c7ab2a87497784
[ "MIT" ]
123
2019-05-10T15:11:46.000Z
2022-03-08T18:55:46.000Z
// @flow import React from 'react'; import {mount} from 'enzyme'; import {withTranslations} from '../src/index'; import {I18nContext} from '../src/plugin.js'; test('withTranslations() HOC - localeCode', () => { const Foo = withTranslations([])(({localeCode, translate}) => { return ( <div> {localeCode} {translate()} </div> ); }); const mockI18n = { async load() {}, localeCode: 'fr_CA', translate() { return 'foo bar baz'; }, }; expect( mount( <I18nContext.Provider value={mockI18n}> <Foo /> </I18nContext.Provider> ).html() ).toMatchSnapshot(); });
18.685714
65
0.555046
c5ed9c5dd2498663dbbb628e4531d34bd5f49abc
7,214
js
JavaScript
src/plugins/DamagePlugin/Components/Subcomponents/CompDamagedata.js
Wannes-C/front-react
5634cbb347a5b4e8e848559b6bc7ace4e12573ed
[ "MIT" ]
null
null
null
src/plugins/DamagePlugin/Components/Subcomponents/CompDamagedata.js
Wannes-C/front-react
5634cbb347a5b4e8e848559b6bc7ace4e12573ed
[ "MIT" ]
null
null
null
src/plugins/DamagePlugin/Components/Subcomponents/CompDamagedata.js
Wannes-C/front-react
5634cbb347a5b4e8e848559b6bc7ace4e12573ed
[ "MIT" ]
1
2021-05-15T08:24:28.000Z
2021-05-15T08:24:28.000Z
import React, { useContext, useState } from 'react'; import Typography from '@material-ui/core/Typography'; import { getDocument } from 'lbd-server'; import AppContext from "@context"; export default function Damagedata(props) { const { context, setContext } = useContext(AppContext); const info = props.allInfo[props.currentURI] //don't display if (info === undefined || props.checked === false) { return ( <div></div> ) } ///////////////////////////////////////////////////////////////////////////////////////what to display if ((props.checked === true)) { //////////////////////////////////////////////////////////////GUID const clickGuid = () => { const selection = [{guid: info.objectGuid[0]}] setContext({...context, selection}) console.log(context) }; //////////////////////////////////////////////////////////////currently occuring const currentlyOccuring = () => { if (info.stateType === true) { return ( <Typography className='damageInfoDetail'> Currently occuring </Typography> ) } else { return ( <Typography className='damageInfoDetail'> Resolved </Typography> ) } } //////////////////////////////////////////////////////////////damage type const damageTypes = info.damageType.map((element, i) => { return ( <div> <Typography key={i} className='damageInfoDetail'> <li> {element}</li> </Typography> </div> ) }) //////////////////////////////////////////////////////////////task const orderTask = () => { if (info.task === true && info.taskType === undefined) { return ( <div> <Typography className='damageInfo'> Assigned repair tasks: </Typography> <Typography className='damageInfoDetail'> undefined task ordered </Typography> </div> ) } if (info.task === true && info.taskType !== undefined) { return ( <Typography className='damageInfo'> Assigned repair tasks: </Typography> ) } else { return } } const taskTypes = info.taskType.map((element, i) => { return ( <div> <Typography key={i} className='damageInfoDetail'> <li> {element}</li> </Typography> </div> ) }) const taskComment = () => { if (info.taskComment !== undefined) { return ( <Typography className='damageInfoDetail' style={{ paddingTop: '20px' }}> Comment: {info.taskComment} </Typography> ) } else { return } } //////////////////////////////////////////////////////////////Comment const comment = () => { if (info.comment !== undefined) { return ( <div> <Typography className='damageInfo'> Comment: </Typography> <Typography className='damageInfoDetail'> {info.comment} </Typography> </div> ) } else { return } } //////////////////////////////////////////////////////////////Document const documentSelection = () => { if (info.doc.join() !== '') { const damage = info.doc.map((element,i)=>{ const displayImage = ()=>{ var name = element.name.replaceAll('.', '.$') var arrayName = name.split("$") var label = arrayName[arrayName.length - 1] if(label === 'jpg' || label === 'JPG' || label === 'JPEG'|| label === 'jpeg' || label === 'TIFF' || label === 'tif' || label === 'tiff' || label === 'png' || label === 'PNG'){ return <img src={element.uri.replace("https://lbdserver.org/", "http://localhost:5000/")} alt={element.name} width="80%" ></img> } else{ return } } return ( <Typography key={i} className='damageInfoDetail'> <li className = "link" onClick ={()=>downloadDoc(element.uri)}> {element.name} </li> {displayImage()} </Typography> ) }) return ( <div> <Typography className='damageInfo'> Document(s): </Typography> {damage} </div> ) } else { return } } function downloadDoc(uri) { window.open(uri.replace("https://lbdserver.org/", "http://localhost:5000/")); } /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////RETURN return ( <div> <Typography className='damageInfo'> Object GUID: </Typography> <Typography className='damageInfoDetail'> {/* <div onClick={()=>console.log('test')}>{info.objectGuid}</div> */} <div className = "link" onClick={()=>clickGuid()}>{info.objectGuid}</div> </Typography> <Typography className='damageInfo'> Damage status: </Typography> {currentlyOccuring()} <Typography className='damageInfo'> Date of corresponding damage state: </Typography> <Typography className='damageInfoDetail'> {info.timeOfGeneration} </Typography> <Typography className='damageInfo'> Damage type: </Typography> {damageTypes} {orderTask()} {taskTypes} {taskComment()} {comment()} {documentSelection()} </div> ) } else { return (<div></div>) } }
32.642534
199
0.362351
c5edde7624721740d65172f519660f7319fe6805
7,037
js
JavaScript
clients/next/src/tutor/factorComun/EjerciciosFC.js
PabloSzx/lear-model-tutor
d38fccbaf0e93eedb0acef3db2391312ee043a5b
[ "MIT" ]
null
null
null
clients/next/src/tutor/factorComun/EjerciciosFC.js
PabloSzx/lear-model-tutor
d38fccbaf0e93eedb0acef3db2391312ee043a5b
[ "MIT" ]
null
null
null
clients/next/src/tutor/factorComun/EjerciciosFC.js
PabloSzx/lear-model-tutor
d38fccbaf0e93eedb0acef3db2391312ee043a5b
[ "MIT" ]
null
null
null
export const Ejercicio1 = { itemId : 1000, itemTitle : "Factor común", level:"3", text: "Texto problema/ejercicio, planteamiento", steps:[{ stepId:0, expression: "6xy^2 - 15x^2y + 21x^2y^2", step: "Paso 1: Ingrese el factor común de la siguiente expresión: ", result:"(3xy)(2y-5x+7xy)", //hint_solicitado:["Un factor común de esta ecuación es 3, pero la eexpresión todavía es factorizable","Otro factor común es 3x, pero todavía se puede agregar otro valor al factor común","El factor común de la expresión es 3xy"], hints:[ {hintId:0, hint:"Un factor común de esta ecuación es 3, pero la eexpresión todavía es factorizable"}, {hintId:1, hint:"Otro factor común es 3x, pero todavía se puede agregar otro valor al factor común"}, {hintId:2, hint:"El factor común de la expresión es 3xy"} ], answers:[{answer:"3xy", nextStep:null}, {answer:"3yx", nextStep:null} ], error:"Factor común incorrecto, ingrese el factor común correspondiente a la expresión dada", validation:"Haz encontrado el factor común" }], } export const Ejercicio2 = { itemId : 1001, itemTitle : "Factor común", level:"3", text: "Texto problema/ejercicio, planteamiento", steps:[{ stepId:0, expression: "\\frac{5x^6}{3y^2} - \\frac{10x^2}{21y}- \\frac{20x^3}{9y^4}", step: "Ingrese el factor común de la siguiente expresión: ", result:"( \\frac{5x^2}{3y} )( \\frac{x^4}{y} - \\frac{2}{7} - \\frac{4x}{3y^3} )", hints:[ {hintId:0, hint:"Un factor común de esta ecuación es 5/3, pero la eexpresión todavía es factorizable"}, {hintId:1, hint:"Otro factor común es 5x^2/3, pero todavía se puede agregar otro valor al factor común"}, {hintId:2, hint:"El factor común de la expresión es (5x^2)/(3y)"} ], answers:[{answer:"(5x^2)/(3y)", nextStep:null}, {answer:"5x^2/(3y)", nextStep:null} ], error:"Factor común incorrecto, ingrese el factor común correspondiente a la expresión dada", validation:"Haz encontrado el factor común" }], } export const Ejercicio3 = { itemId : 1002, itemTitle : "Factor común", level:"1", text: "Texto problema/ejercicio, planteamiento", steps:[{ stepId:0, expression: "2x^2y+3x^2z", step: "Ingrese el factor común de la siguiente expresión: ", result:"(x^2)(2y+3z)", hints:[ {hintId:0, hint:"Un factor común de esta ecuación es x, pero la eexpresión todavía es factorizable"}, {hintId:1, hint:"Es un valor elevado al cuadrado"}, {hintId:2, hint:"El factor común de la expresión es x^2"} ], answers:[{answer:"x^2", nextStep:null} ], error:"Factor común incorrecto, ingrese el factor común correspondiente a la expresión dada", validation:"Haz encontrado el factor común" }], } export const Ejercicio4 = { itemId : 1003, itemTitle : "Factor común", level:"1", text: "Texto problema/ejercicio, planteamiento", steps:[{ stepId:0, expression: "12x+18y-24z", step: "Ingrese el factor común de la siguiente expresión: ", result:"(6)(2x+3y-4z)", hints:[ {hintId:0, hint:"El factor común de esta expresión es una constante"}, {hintId:1, hint:"Un factor común de esta ecuación es 3, pero la expresión todavía es factorizable"}, {hintId:2, hint:"El factor común de la expresión es 6"} ], answers:[{answer:"6", nextStep:null} ], error:"factor común incorrecto, ingrese el factor común correspondiente a la expresión dada", validation:"Haz encontrado el factor común" }], } export const Ejercicio5 = { itemId : 1004, itemTitle : "Factor común", level:"4", text: "Texto problema/ejercicio, planteamiento", steps:[{ stepId:0, expression: "\\frac{x^{20}}{20} + \\frac{x^{10}}{10} - \\frac{x^5}{5}", step: "Ingrese el factor común de la siguiente expresión: ", result:"(\\frac{x^5}{5})(\\frac{x^15}{4} + \\frac{x^5}{2} - 1)", hints:[ {hintId:0, hint:"Un factor común de esta ecuación es 1/5, pero la eexpresión todavía es factorizable"}, {hintId:1, hint:"Otro factor común es x/5, pero todavía se puede agregar otro valor al factor común"}, {hintId:2, hint:"El factor común de la expresión es x^5/5"} ], //entrada:["x^5/5","(x^5)/5","(x^5)/(5)"], answers:[{answer:"x^5/5", nextStep:null}, {answer:"(x^5)/5", nextStep:null}, {answer:"(x^5)/(5)", nextStep:null} ], error:"Factor común incorrecto, ingrese el factor común correspondiente a la expresión dada", validacion:"Haz encontrado el factor común" }], } export const Ejercicio6 = { itemId : 1005, itemTitle : "Factor común", level:"3", text: "Texto problema/ejercicio, planteamiento", steps:[{ stepId:0, expression: "10y^5-30xy^5-15xy^6", step: "Ingrese el factor común de la siguiente expresión: ", result:"(5y^5)(2-6x-3xy)", hints:[ {hintId:0, hint:"Un factor común de esta ecuación es 5, pero la eexpresión todavía es factorizable"}, {hintId:1, hint:"Otro factor común es 5y, pero todavía se puede agregar otro valor al factor común"}, {hintId:2, hint:"El factor común de la expresión es 5y^5"} ], answers:[{answer:"5y^5", nextStep:null} ], error:"Factor común incorrecto, ingrese el factor común correspondiente a la expresión dada", validation:"Haz encontrado el factor común" }], } export const Ejercicio7 = { itemId : 1006, itemTitle : "Factor común", level:"4", text: "Texto problema/ejercicio, planteamiento", steps:[{ stepId:0, expression: "6x^2yz-30xy^2z^2+12x^2y^2z^2", step: "Ingrese el factor común de la siguiente expresión: ", result:"(6xyz)(x-5yz+2xyz)", hints:[ {hintId:0, hint:"Un factor común de esta ecuación es 6, pero la eexpresión todavía es factorizable"}, {hintId:1, hint:"Otro factor común es 6x, pero todavía se puede agregar otro valor al factor común"}, {hintId:2, hint:"El factor común de la expresión es 6xyz"} ], answers:[{answer:"6xyz", nextStep:null}, {answer:"6xzy", nextStep:null}, {answer:"6yxz", nextStep:null}, {answer:"6yzx", nextStep:null}, {answer:"6zxy", nextStep:null}, {answer:"6zyx", nextStep:null} ], error:"factor común incorrecto, ingrese el factor común correspondiente a la expresión dada", validation:"Haz encontrado el factor común" }], }
40.211429
237
0.589314
c5ede9eb4d71ae986c3aa1994160a0e25040c917
33,459
js
JavaScript
node_modules/appium/node_modules/appium-uiautomator2-driver/build/test/functional/commands/find/by-uiautomator-e2e-specs.js
migueref/educational-app
45c9ba10135e87a1ebb2d67998529dae23b184a6
[ "Apache-2.0" ]
1
2018-09-12T15:43:32.000Z
2018-09-12T15:43:32.000Z
node_modules/appium/node_modules/appium-uiautomator2-driver/build/test/functional/commands/find/by-uiautomator-e2e-specs.js
migueref/educational-app
45c9ba10135e87a1ebb2d67998529dae23b184a6
[ "Apache-2.0" ]
null
null
null
node_modules/appium/node_modules/appium-uiautomator2-driver/build/test/functional/commands/find/by-uiautomator-e2e-specs.js
migueref/educational-app
45c9ba10135e87a1ebb2d67998529dae23b184a6
[ "Apache-2.0" ]
3
2018-09-12T15:43:33.000Z
2019-07-10T09:50:15.000Z
'use strict'; var _regeneratorRuntime = require('babel-runtime/regenerator')['default']; var _interopRequireDefault = require('babel-runtime/helpers/interop-require-default')['default']; var _chai = require('chai'); var _chai2 = _interopRequireDefault(_chai); var _chaiAsPromised = require('chai-as-promised'); var _chaiAsPromised2 = _interopRequireDefault(_chaiAsPromised); var _ = require('../../../..'); var _2 = _interopRequireDefault(_); var _sampleApps = require('sample-apps'); var _sampleApps2 = _interopRequireDefault(_sampleApps); _chai2['default'].should(); _chai2['default'].use(_chaiAsPromised2['default']); var driver = undefined; var defaultCaps = { app: (0, _sampleApps2['default'])('ApiDemos-debug'), deviceName: 'Android', platformName: 'Android' }; describe('Find - uiautomator', function () { var _this = this; before(function callee$1$0() { return _regeneratorRuntime.async(function callee$1$0$(context$2$0) { while (1) switch (context$2$0.prev = context$2$0.next) { case 0: driver = new _2['default'](); context$2$0.next = 3; return _regeneratorRuntime.awrap(driver.createSession(defaultCaps)); case 3: case 'end': return context$2$0.stop(); } }, null, _this); }); after(function callee$1$0() { return _regeneratorRuntime.async(function callee$1$0$(context$2$0) { while (1) switch (context$2$0.prev = context$2$0.next) { case 0: context$2$0.next = 2; return _regeneratorRuntime.awrap(driver.deleteSession()); case 2: case 'end': return context$2$0.stop(); } }, null, _this); }); it('should find elements with a boolean argument', function callee$1$0() { return _regeneratorRuntime.async(function callee$1$0$(context$2$0) { while (1) switch (context$2$0.prev = context$2$0.next) { case 0: context$2$0.next = 2; return _regeneratorRuntime.awrap(driver.findElOrEls('-android uiautomator', 'new UiSelector().clickable(true)', true).should.eventually.have.length.at.least(10)); case 2: case 'end': return context$2$0.stop(); } }, null, _this); }); it('should find elements within the context of another element', function callee$1$0() { var els; return _regeneratorRuntime.async(function callee$1$0$(context$2$0) { while (1) switch (context$2$0.prev = context$2$0.next) { case 0: context$2$0.next = 2; return _regeneratorRuntime.awrap(driver.findElOrEls('-android uiautomator', 'new UiSelector().className("android.widget.TextView")', true)); case 2: els = context$2$0.sent; els.length.should.be.above(8); els.length.should.be.below(14); case 5: case 'end': return context$2$0.stop(); } }, null, _this); }); it('should find elements without prepending "new UiSelector()"', function callee$1$0() { return _regeneratorRuntime.async(function callee$1$0$(context$2$0) { while (1) switch (context$2$0.prev = context$2$0.next) { case 0: context$2$0.next = 2; return _regeneratorRuntime.awrap(driver.findElOrEls('-android uiautomator', '.clickable(true)', true).should.eventually.have.length.at.least(10)); case 2: case 'end': return context$2$0.stop(); } }, null, _this); }); it('should find elements without prepending "new UiSelector()"', function callee$1$0() { return _regeneratorRuntime.async(function callee$1$0$(context$2$0) { while (1) switch (context$2$0.prev = context$2$0.next) { case 0: context$2$0.next = 2; return _regeneratorRuntime.awrap(driver.findElOrEls('-android uiautomator', '.clickable(true)', true).should.eventually.have.length.at.least(10)); case 2: case 'end': return context$2$0.stop(); } }, null, _this); }); it('should find elements without prepending "new UiSelector()"', function callee$1$0() { return _regeneratorRuntime.async(function callee$1$0$(context$2$0) { while (1) switch (context$2$0.prev = context$2$0.next) { case 0: context$2$0.next = 2; return _regeneratorRuntime.awrap(driver.findElOrEls('-android uiautomator', 'clickable(true)', true).should.eventually.have.length.at.least(10)); case 2: case 'end': return context$2$0.stop(); } }, null, _this); }); it('should find elements without prepending "new "', function callee$1$0() { return _regeneratorRuntime.async(function callee$1$0$(context$2$0) { while (1) switch (context$2$0.prev = context$2$0.next) { case 0: context$2$0.next = 2; return _regeneratorRuntime.awrap(driver.findElOrEls('-android uiautomator', 'UiSelector().clickable(true)', true).should.eventually.have.length.at.least(10)); case 2: case 'end': return context$2$0.stop(); } }, null, _this); }); it('should ignore trailing semicolons', function callee$1$0() { return _regeneratorRuntime.async(function callee$1$0$(context$2$0) { while (1) switch (context$2$0.prev = context$2$0.next) { case 0: context$2$0.next = 2; return _regeneratorRuntime.awrap(driver.findElOrEls('-android uiautomator', 'new UiSelector().clickable(true);', true).should.eventually.have.length.at.least(10)); case 2: case 'end': return context$2$0.stop(); } }, null, _this); }); it('should find an element with an int argument', function callee$1$0() { var el; return _regeneratorRuntime.async(function callee$1$0$(context$2$0) { while (1) switch (context$2$0.prev = context$2$0.next) { case 0: context$2$0.next = 2; return _regeneratorRuntime.awrap(driver.findElOrEls('-android uiautomator', 'new UiSelector().index(0)', false)); case 2: el = context$2$0.sent; context$2$0.next = 5; return _regeneratorRuntime.awrap(driver.getName(el.ELEMENT).should.eventually.equal('android.widget.FrameLayout')); case 5: case 'end': return context$2$0.stop(); } }, null, _this); }); it('should find an element with a string argument', function callee$1$0() { return _regeneratorRuntime.async(function callee$1$0$(context$2$0) { while (1) switch (context$2$0.prev = context$2$0.next) { case 0: context$2$0.next = 2; return _regeneratorRuntime.awrap(driver.findElOrEls('-android uiautomator', 'new UiSelector().description("Animation")', false).should.eventually.exist); case 2: case 'end': return context$2$0.stop(); } }, null, _this); }); it('should find an element with an overloaded method argument', function callee$1$0() { return _regeneratorRuntime.async(function callee$1$0$(context$2$0) { while (1) switch (context$2$0.prev = context$2$0.next) { case 0: context$2$0.next = 2; return _regeneratorRuntime.awrap(driver.findElOrEls('-android uiautomator', 'new UiSelector().className("android.widget.TextView")', true).should.eventually.have.length.at.least(10)); case 2: case 'end': return context$2$0.stop(); } }, null, _this); }); it('should find an element with a Class<T> method argument', function callee$1$0() { return _regeneratorRuntime.async(function callee$1$0$(context$2$0) { while (1) switch (context$2$0.prev = context$2$0.next) { case 0: context$2$0.next = 2; return _regeneratorRuntime.awrap(driver.findElOrEls('-android uiautomator', 'new UiSelector().className(android.widget.TextView)', true).should.eventually.have.length.at.least(10)); case 2: case 'end': return context$2$0.stop(); } }, null, _this); }); it('should find an element with a long chain of methods', function callee$1$0() { var el; return _regeneratorRuntime.async(function callee$1$0$(context$2$0) { while (1) switch (context$2$0.prev = context$2$0.next) { case 0: context$2$0.next = 2; return _regeneratorRuntime.awrap(driver.findElOrEls('-android uiautomator', 'new UiSelector().clickable(true).className(android.widget.TextView).index(1)', false)); case 2: el = context$2$0.sent; context$2$0.next = 5; return _regeneratorRuntime.awrap(driver.getText(el.ELEMENT).should.eventually.equal('Accessibility')); case 5: case 'end': return context$2$0.stop(); } }, null, _this); }); it('should find an element with recursive UiSelectors', function callee$1$0() { return _regeneratorRuntime.async(function callee$1$0$(context$2$0) { while (1) switch (context$2$0.prev = context$2$0.next) { case 0: context$2$0.next = 2; return _regeneratorRuntime.awrap(driver.findElOrEls('-android uiautomator', 'new UiSelector().childSelector(new UiSelector().clickable(true)).clickable(true)', true).should.eventually.have.length(1)); case 2: case 'end': return context$2$0.stop(); } }, null, _this); }); it('should not find an element which does not exist', function callee$1$0() { return _regeneratorRuntime.async(function callee$1$0$(context$2$0) { while (1) switch (context$2$0.prev = context$2$0.next) { case 0: context$2$0.next = 2; return _regeneratorRuntime.awrap(driver.findElOrEls('-android uiautomator', 'new UiSelector().description("chuckwudi")', true).should.eventually.have.length(0)); case 2: case 'end': return context$2$0.stop(); } }, null, _this); }); it('should allow multiple selector statements and return the Union of the two sets', function callee$1$0() { var clickable, notClickable, both; return _regeneratorRuntime.async(function callee$1$0$(context$2$0) { while (1) switch (context$2$0.prev = context$2$0.next) { case 0: context$2$0.next = 2; return _regeneratorRuntime.awrap(driver.findElOrEls('-android uiautomator', 'new UiSelector().clickable(true)', true)); case 2: clickable = context$2$0.sent; clickable.length.should.be.above(0); context$2$0.next = 6; return _regeneratorRuntime.awrap(driver.findElOrEls('-android uiautomator', 'new UiSelector().clickable(false)', true)); case 6: notClickable = context$2$0.sent; notClickable.length.should.be.above(0); context$2$0.next = 10; return _regeneratorRuntime.awrap(driver.findElOrEls('-android uiautomator', 'new UiSelector().clickable(true); new UiSelector().clickable(false);', true)); case 10: both = context$2$0.sent; both.should.have.length(clickable.length + notClickable.length); case 12: case 'end': return context$2$0.stop(); } }, null, _this); }); it('should allow multiple selector statements and return the Union of the two sets', function callee$1$0() { var clickable, clickableClickable; return _regeneratorRuntime.async(function callee$1$0$(context$2$0) { while (1) switch (context$2$0.prev = context$2$0.next) { case 0: context$2$0.next = 2; return _regeneratorRuntime.awrap(driver.findElOrEls('-android uiautomator', 'new UiSelector().clickable(true)', true)); case 2: clickable = context$2$0.sent; clickable.length.should.be.above(0); context$2$0.next = 6; return _regeneratorRuntime.awrap(driver.findElOrEls('-android uiautomator', 'new UiSelector().clickable(true); new UiSelector().clickable(true);', true)); case 6: clickableClickable = context$2$0.sent; clickableClickable.length.should.be.above(0); clickableClickable.should.have.length(clickable.length); case 9: case 'end': return context$2$0.stop(); } }, null, _this); }); it('should find an element in the second selector if the first finds no elements', function callee$1$0() { var selector; return _regeneratorRuntime.async(function callee$1$0$(context$2$0) { while (1) switch (context$2$0.prev = context$2$0.next) { case 0: selector = 'new UiSelector().className("not.a.class"); new UiSelector().className("android.widget.TextView")'; context$2$0.next = 3; return _regeneratorRuntime.awrap(driver.findElOrEls('-android uiautomator', selector, true).should.eventually.exist); case 3: case 'end': return context$2$0.stop(); } }, null, _this); }); it('should scroll to, and return elements using UiScrollable', function callee$1$0() { var selector, el; return _regeneratorRuntime.async(function callee$1$0$(context$2$0) { while (1) switch (context$2$0.prev = context$2$0.next) { case 0: selector = 'new UiScrollable(new UiSelector().scrollable(true).instance(0)).scrollIntoView(new UiSelector().text("Views").instance(0))'; context$2$0.next = 3; return _regeneratorRuntime.awrap(driver.findElOrEls('-android uiautomator', selector, false)); case 3: el = context$2$0.sent; context$2$0.next = 6; return _regeneratorRuntime.awrap(driver.getText(el.ELEMENT).should.eventually.equal('Views')); case 6: case 'end': return context$2$0.stop(); } }, null, _this); }); it('should allow chaining UiScrollable methods', function callee$1$0() { var selector, el; return _regeneratorRuntime.async(function callee$1$0$(context$2$0) { while (1) switch (context$2$0.prev = context$2$0.next) { case 0: selector = 'new UiScrollable(new UiSelector().scrollable(true).instance(0)).setMaxSearchSwipes(10).scrollIntoView(new UiSelector().text("Views").instance(0))'; context$2$0.next = 3; return _regeneratorRuntime.awrap(driver.findElOrEls('-android uiautomator', selector, false)); case 3: el = context$2$0.sent; context$2$0.next = 6; return _regeneratorRuntime.awrap(driver.getText(el.ELEMENT).should.eventually.equal('Views')); case 6: case 'end': return context$2$0.stop(); } }, null, _this); }); it('should allow UiScrollable scrollIntoView', function callee$1$0() { var selector, el; return _regeneratorRuntime.async(function callee$1$0$(context$2$0) { while (1) switch (context$2$0.prev = context$2$0.next) { case 0: selector = 'new UiScrollable(new UiSelector().scrollable(true).instance(0)).scrollIntoView(new UiSelector().text("Views").instance(0));'; context$2$0.next = 3; return _regeneratorRuntime.awrap(driver.findElOrEls('-android uiautomator', selector, false)); case 3: el = context$2$0.sent; context$2$0.next = 6; return _regeneratorRuntime.awrap(driver.getText(el.ELEMENT).should.eventually.equal('Views')); case 6: case 'end': return context$2$0.stop(); } }, null, _this); }); it('should allow UiScrollable with unicode string', function callee$1$0() { var selector, el; return _regeneratorRuntime.async(function callee$1$0$(context$2$0) { while (1) switch (context$2$0.prev = context$2$0.next) { case 0: context$2$0.next = 2; return _regeneratorRuntime.awrap(driver.startActivity('io.appium.android.apis', '.text.Unicode')); case 2: selector = 'new UiSelector().text("عربي").instance(0);'; context$2$0.next = 5; return _regeneratorRuntime.awrap(driver.findElOrEls('-android uiautomator', selector, false)); case 5: el = context$2$0.sent; context$2$0.next = 8; return _regeneratorRuntime.awrap(driver.getText(el.ELEMENT).should.eventually.equal('عربي')); case 8: case 'end': return context$2$0.stop(); } }, null, _this); }); }); //# sourceMappingURL=data:application/json;charset=utf8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbInRlc3QvZnVuY3Rpb25hbC9jb21tYW5kcy9maW5kL2J5LXVpYXV0b21hdG9yLWUyZS1zcGVjcy5qcyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7Ozs7b0JBQWlCLE1BQU07Ozs7OEJBQ0ksa0JBQWtCOzs7O2dCQUNQLGFBQWE7Ozs7MEJBQzVCLGFBQWE7Ozs7QUFFcEMsa0JBQUssTUFBTSxFQUFFLENBQUM7QUFDZCxrQkFBSyxHQUFHLDZCQUFnQixDQUFDOztBQUV6QixJQUFJLE1BQU0sWUFBQSxDQUFDO0FBQ1gsSUFBSSxXQUFXLEdBQUc7QUFDaEIsS0FBRyxFQUFFLDZCQUFXLGdCQUFnQixDQUFDO0FBQ2pDLFlBQVUsRUFBRSxTQUFTO0FBQ3JCLGNBQVksRUFBRSxTQUFTO0NBQ3hCLENBQUM7O0FBRUYsUUFBUSxDQUFDLG9CQUFvQixFQUFFLFlBQVk7OztBQUN6QyxRQUFNLENBQUM7Ozs7QUFDTCxnQkFBTSxHQUFHLG1CQUErQixDQUFDOzsyQ0FDbkMsTUFBTSxDQUFDLGFBQWEsQ0FBQyxXQUFXLENBQUM7Ozs7Ozs7R0FDeEMsQ0FBQyxDQUFDO0FBQ0gsT0FBSyxDQUFDOzs7OzsyQ0FDRSxNQUFNLENBQUMsYUFBYSxFQUFFOzs7Ozs7O0dBQzdCLENBQUMsQ0FBQztBQUNILElBQUUsQ0FBQyw4Q0FBOEMsRUFBRTs7Ozs7MkNBQzNDLE1BQU0sQ0FBQyxXQUFXLENBQUMsc0JBQXNCLEVBQUUsa0NBQWtDLEVBQUUsSUFBSSxDQUFDLENBQ3ZGLE1BQU0sQ0FBQyxVQUFVLENBQUMsSUFBSSxDQUFDLE1BQU0sQ0FBQyxFQUFFLENBQUMsS0FBSyxDQUFDLEVBQUUsQ0FBQzs7Ozs7OztHQUM5QyxDQUFDLENBQUM7QUFDSCxJQUFFLENBQUMsNERBQTRELEVBQUU7UUFDM0QsR0FBRzs7Ozs7MkNBQVMsTUFBTSxDQUNuQixXQUFXLENBQUMsc0JBQXNCLEVBQUUsdURBQXVELEVBQUUsSUFBSSxDQUFDOzs7QUFEakcsYUFBRzs7QUFFUCxhQUFHLENBQUMsTUFBTSxDQUFDLE1BQU0sQ0FBQyxFQUFFLENBQUMsS0FBSyxDQUFDLENBQUMsQ0FBQyxDQUFDO0FBQzlCLGFBQUcsQ0FBQyxNQUFNLENBQUMsTUFBTSxDQUFDLEVBQUUsQ0FBQyxLQUFLLENBQUMsRUFBRSxDQUFDLENBQUM7Ozs7Ozs7R0FDaEMsQ0FBQyxDQUFDO0FBQ0gsSUFBRSxDQUFDLDREQUE0RCxFQUFFOzs7OzsyQ0FDekQsTUFBTSxDQUFDLFdBQVcsQ0FBQyxzQkFBc0IsRUFBRSxrQkFBa0IsRUFBRSxJQUFJLENBQUMsQ0FDdkUsTUFBTSxDQUFDLFVBQVUsQ0FBQyxJQUFJLENBQUMsTUFBTSxDQUFDLEVBQUUsQ0FBQyxLQUFLLENBQUMsRUFBRSxDQUFDOzs7Ozs7O0dBQzlDLENBQUMsQ0FBQztBQUNILElBQUUsQ0FBQyw0REFBNEQsRUFBRTs7Ozs7MkNBQ3pELE1BQU0sQ0FBQyxXQUFXLENBQUMsc0JBQXNCLEVBQUUsa0JBQWtCLEVBQUUsSUFBSSxDQUFDLENBQ3ZFLE1BQU0sQ0FBQyxVQUFVLENBQUMsSUFBSSxDQUFDLE1BQU0sQ0FBQyxFQUFFLENBQUMsS0FBSyxDQUFDLEVBQUUsQ0FBQzs7Ozs7OztHQUM5QyxDQUFDLENBQUM7QUFDSCxJQUFFLENBQUMsNERBQTRELEVBQUU7Ozs7OzJDQUN6RCxNQUFNLENBQUMsV0FBVyxDQUFDLHNCQUFzQixFQUFFLGlCQUFpQixFQUFFLElBQUksQ0FBQyxDQUN0RSxNQUFNLENBQUMsVUFBVSxDQUFDLElBQUksQ0FBQyxNQUFNLENBQUMsRUFBRSxDQUFDLEtBQUssQ0FBQyxFQUFFLENBQUM7Ozs7Ozs7R0FDOUMsQ0FBQyxDQUFDO0FBQ0gsSUFBRSxDQUFDLGdEQUFnRCxFQUFFOzs7OzsyQ0FDN0MsTUFBTSxDQUFDLFdBQVcsQ0FBQyxzQkFBc0IsRUFBRSw4QkFBOEIsRUFBRSxJQUFJLENBQUMsQ0FDbkYsTUFBTSxDQUFDLFVBQVUsQ0FBQyxJQUFJLENBQUMsTUFBTSxDQUFDLEVBQUUsQ0FBQyxLQUFLLENBQUMsRUFBRSxDQUFDOzs7Ozs7O0dBQzlDLENBQUMsQ0FBQztBQUNILElBQUUsQ0FBQyxtQ0FBbUMsRUFBRTs7Ozs7MkNBQ2hDLE1BQU0sQ0FBQyxXQUFXLENBQUMsc0JBQXNCLEVBQUUsbUNBQW1DLEVBQUUsSUFBSSxDQUFDLENBQ3hGLE1BQU0sQ0FBQyxVQUFVLENBQUMsSUFBSSxDQUFDLE1BQU0sQ0FBQyxFQUFFLENBQUMsS0FBSyxDQUFDLEVBQUUsQ0FBQzs7Ozs7OztHQUM5QyxDQUFDLENBQUM7QUFDSCxJQUFFLENBQUMsNkNBQTZDLEVBQUU7UUFDNUMsRUFBRTs7Ozs7MkNBQVMsTUFBTSxDQUFDLFdBQVcsQ0FBQyxzQkFBc0IsRUFBRSwyQkFBMkIsRUFBRSxLQUFLLENBQUM7OztBQUF6RixZQUFFOzsyQ0FDQSxNQUFNLENBQUMsT0FBTyxDQUFDLEVBQUUsQ0FBQyxPQUFPLENBQUMsQ0FBQyxNQUFNLENBQUMsVUFBVSxDQUFDLEtBQUssQ0FBQyw0QkFBNEIsQ0FBQzs7Ozs7OztHQUN2RixDQUFDLENBQUM7QUFDSCxJQUFFLENBQUMsK0NBQStDLEVBQUU7Ozs7OzJDQUM1QyxNQUFNLENBQ1QsV0FBVyxDQUFDLHNCQUFzQixFQUFFLDJDQUEyQyxFQUFFLEtBQUssQ0FBQyxDQUN2RixNQUFNLENBQUMsVUFBVSxDQUFDLEtBQUs7Ozs7Ozs7R0FDM0IsQ0FBQyxDQUFDO0FBQ0gsSUFBRSxDQUFDLDJEQUEyRCxFQUFFOzs7OzsyQ0FDeEQsTUFBTSxDQUFDLFdBQVcsQ0FBQyxzQkFBc0IsRUFBRSx1REFBdUQsRUFBRSxJQUFJLENBQUMsQ0FDNUcsTUFBTSxDQUFDLFVBQVUsQ0FBQyxJQUFJLENBQUMsTUFBTSxDQUFDLEVBQUUsQ0FBQyxLQUFLLENBQUMsRUFBRSxDQUFDOzs7Ozs7O0dBQzlDLENBQUMsQ0FBQztBQUNILElBQUUsQ0FBQyx3REFBd0QsRUFBRTs7Ozs7MkNBQ3JELE1BQU0sQ0FBQyxXQUFXLENBQUMsc0JBQXNCLEVBQUUscURBQXFELEVBQUUsSUFBSSxDQUFDLENBQzFHLE1BQU0sQ0FBQyxVQUFVLENBQUMsSUFBSSxDQUFDLE1BQU0sQ0FBQyxFQUFFLENBQUMsS0FBSyxDQUFDLEVBQUUsQ0FBQzs7Ozs7OztHQUM5QyxDQUFDLENBQUM7QUFDSCxJQUFFLENBQUMscURBQXFELEVBQUU7UUFDcEQsRUFBRTs7Ozs7MkNBQVMsTUFBTSxDQUFDLFdBQVcsQ0FBQyxzQkFBc0IsRUFBRSw4RUFBOEUsRUFBRSxLQUFLLENBQUM7OztBQUE1SSxZQUFFOzsyQ0FDQSxNQUFNLENBQUMsT0FBTyxDQUFDLEVBQUUsQ0FBQyxPQUFPLENBQUMsQ0FBQyxNQUFNLENBQUMsVUFBVSxDQUFDLEtBQUssQ0FBQyxlQUFlLENBQUM7Ozs7Ozs7R0FDMUUsQ0FBQyxDQUFDO0FBQ0gsSUFBRSxDQUFDLG1EQUFtRCxFQUFFOzs7OzsyQ0FDaEQsTUFBTSxDQUFDLFdBQVcsQ0FBQyxzQkFBc0IsRUFBRSxrRkFBa0YsRUFBRSxJQUFJLENBQUMsQ0FDdkksTUFBTSxDQUFDLFVBQVUsQ0FBQyxJQUFJLENBQUMsTUFBTSxDQUFDLENBQUMsQ0FBQzs7Ozs7OztHQUNwQyxDQUFDLENBQUM7QUFDSCxJQUFFLENBQUMsaURBQWlELEVBQUU7Ozs7OzJDQUM5QyxNQUFNLENBQUMsV0FBVyxDQUFDLHNCQUFzQixFQUFFLDJDQUEyQyxFQUFFLElBQUksQ0FBQyxDQUNoRyxNQUFNLENBQUMsVUFBVSxDQUFDLElBQUksQ0FBQyxNQUFNLENBQUMsQ0FBQyxDQUFDOzs7Ozs7O0dBQ3BDLENBQUMsQ0FBQztBQUNILElBQUUsQ0FBQyxnRkFBZ0YsRUFBRTtRQUMvRSxTQUFTLEVBRVQsWUFBWSxFQUVaLElBQUk7Ozs7OzJDQUpjLE1BQU0sQ0FBQyxXQUFXLENBQUMsc0JBQXNCLEVBQUUsa0NBQWtDLEVBQUUsSUFBSSxDQUFDOzs7QUFBdEcsbUJBQVM7O0FBQ2IsbUJBQVMsQ0FBQyxNQUFNLENBQUMsTUFBTSxDQUFDLEVBQUUsQ0FBQyxLQUFLLENBQUMsQ0FBQyxDQUFDLENBQUM7OzJDQUNYLE1BQU0sQ0FBQyxXQUFXLENBQUMsc0JBQXNCLEVBQUUsbUNBQW1DLEVBQUUsSUFBSSxDQUFDOzs7QUFBMUcsc0JBQVk7O0FBQ2hCLHNCQUFZLENBQUMsTUFBTSxDQUFDLE1BQU0sQ0FBQyxFQUFFLENBQUMsS0FBSyxDQUFDLENBQUMsQ0FBQyxDQUFDOzsyQ0FDdEIsTUFBTSxDQUFDLFdBQVcsQ0FBQyxzQkFBc0IsRUFBRSxzRUFBc0UsRUFBRSxJQUFJLENBQUM7OztBQUFySSxjQUFJOztBQUNSLGNBQUksQ0FBQyxNQUFNLENBQUMsSUFBSSxDQUFDLE1BQU0sQ0FBQyxTQUFTLENBQUMsTUFBTSxHQUFHLFlBQVksQ0FBQyxNQUFNLENBQUMsQ0FBQzs7Ozs7OztHQUNqRSxDQUFDLENBQUM7QUFDSCxJQUFFLENBQUMsZ0ZBQWdGLEVBQUU7UUFDL0UsU0FBUyxFQUVULGtCQUFrQjs7Ozs7MkNBRkEsTUFBTSxDQUFDLFdBQVcsQ0FBQyxzQkFBc0IsRUFBRSxrQ0FBa0MsRUFBRSxJQUFJLENBQUM7OztBQUF0RyxtQkFBUzs7QUFDYixtQkFBUyxDQUFDLE1BQU0sQ0FBQyxNQUFNLENBQUMsRUFBRSxDQUFDLEtBQUssQ0FBQyxDQUFDLENBQUMsQ0FBQzs7MkNBQ0wsTUFBTSxDQUFDLFdBQVcsQ0FBQyxzQkFBc0IsRUFBRSxxRUFBcUUsRUFBRSxJQUFJLENBQUM7OztBQUFsSiw0QkFBa0I7O0FBQ3RCLDRCQUFrQixDQUFDLE1BQU0sQ0FBQyxNQUFNLENBQUMsRUFBRSxDQUFDLEtBQUssQ0FBQyxDQUFDLENBQUMsQ0FBQztBQUM3Qyw0QkFBa0IsQ0FBQyxNQUFNLENBQUMsSUFBSSxDQUFDLE1BQU0sQ0FBQyxTQUFTLENBQUMsTUFBTSxDQUFDLENBQUM7Ozs7Ozs7R0FDekQsQ0FBQyxDQUFDO0FBQ0gsSUFBRSxDQUFDLDhFQUE4RSxFQUFFO1FBQzdFLFFBQVE7Ozs7QUFBUixrQkFBUSxHQUFHLGtHQUFrRzs7MkNBQzNHLE1BQU0sQ0FBQyxXQUFXLENBQUMsc0JBQXNCLEVBQUUsUUFBUSxFQUFFLElBQUksQ0FBQyxDQUM3RCxNQUFNLENBQUMsVUFBVSxDQUFDLEtBQUs7Ozs7Ozs7R0FDM0IsQ0FBQyxDQUFDO0FBQ0gsSUFBRSxDQUFDLDBEQUEwRCxFQUFFO1FBQ3pELFFBQVEsRUFDUixFQUFFOzs7O0FBREYsa0JBQVEsR0FBRyw0SEFBNEg7OzJDQUM1SCxNQUFNLENBQUMsV0FBVyxDQUFDLHNCQUFzQixFQUFFLFFBQVEsRUFBRSxLQUFLLENBQUM7OztBQUF0RSxZQUFFOzsyQ0FDQSxNQUFNLENBQUMsT0FBTyxDQUFDLEVBQUUsQ0FBQyxPQUFPLENBQUMsQ0FBQyxNQUFNLENBQUMsVUFBVSxDQUFDLEtBQUssQ0FBQyxPQUFPLENBQUM7Ozs7Ozs7R0FDbEUsQ0FBQyxDQUFDO0FBQ0gsSUFBRSxDQUFDLDRDQUE0QyxFQUFFO1FBQzNDLFFBQVEsRUFDUixFQUFFOzs7O0FBREYsa0JBQVEsR0FBRyxtSkFBbUo7OzJDQUNuSixNQUFNLENBQUMsV0FBVyxDQUFDLHNCQUFzQixFQUFFLFFBQVEsRUFBRSxLQUFLLENBQUM7OztBQUF0RSxZQUFFOzsyQ0FDQSxNQUFNLENBQUMsT0FBTyxDQUFDLEVBQUUsQ0FBQyxPQUFPLENBQUMsQ0FBQyxNQUFNLENBQUMsVUFBVSxDQUFDLEtBQUssQ0FBQyxPQUFPLENBQUM7Ozs7Ozs7R0FDbEUsQ0FBQyxDQUFDO0FBQ0gsSUFBRSxDQUFDLDBDQUEwQyxFQUFFO1FBQ3pDLFFBQVEsRUFDUixFQUFFOzs7O0FBREYsa0JBQVEsR0FBRyw2SEFBNkg7OzJDQUM3SCxNQUFNLENBQUMsV0FBVyxDQUFDLHNCQUFzQixFQUFFLFFBQVEsRUFBRSxLQUFLLENBQUM7OztBQUF0RSxZQUFFOzsyQ0FDQSxNQUFNLENBQUMsT0FBTyxDQUFDLEVBQUUsQ0FBQyxPQUFPLENBQUMsQ0FBQyxNQUFNLENBQUMsVUFBVSxDQUFDLEtBQUssQ0FBQyxPQUFPLENBQUM7Ozs7Ozs7R0FDbEUsQ0FBQyxDQUFDO0FBQ0gsSUFBRSxDQUFDLCtDQUErQyxFQUFFO1FBRTlDLFFBQVEsRUFDUixFQUFFOzs7OzsyQ0FGQSxNQUFNLENBQUMsYUFBYSxDQUFDLHdCQUF3QixFQUFFLGVBQWUsQ0FBQzs7O0FBQ2pFLGtCQUFRLEdBQUcsNENBQTRDOzsyQ0FDNUMsTUFBTSxDQUFDLFdBQVcsQ0FBQyxzQkFBc0IsRUFBRSxRQUFRLEVBQUUsS0FBSyxDQUFDOzs7QUFBdEUsWUFBRTs7MkNBQ0EsTUFBTSxDQUFDLE9BQU8sQ0FBQyxFQUFFLENBQUMsT0FBTyxDQUFDLENBQUMsTUFBTSxDQUFDLFVBQVUsQ0FBQyxLQUFLLENBQUMsTUFBTSxDQUFDOzs7Ozs7O0dBQ2pFLENBQUMsQ0FBQztDQUNKLENBQUMsQ0FBQyIsImZpbGUiOiJ0ZXN0L2Z1bmN0aW9uYWwvY29tbWFuZHMvZmluZC9ieS11aWF1dG9tYXRvci1lMmUtc3BlY3MuanMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgY2hhaSBmcm9tICdjaGFpJztcbmltcG9ydCBjaGFpQXNQcm9taXNlZCBmcm9tICdjaGFpLWFzLXByb21pc2VkJztcbmltcG9ydCBBbmRyb2lkVWlhdXRvbWF0b3IyRHJpdmVyIGZyb20gJy4uLy4uLy4uLy4uJztcbmltcG9ydCBzYW1wbGVBcHBzIGZyb20gJ3NhbXBsZS1hcHBzJztcblxuY2hhaS5zaG91bGQoKTtcbmNoYWkudXNlKGNoYWlBc1Byb21pc2VkKTtcblxubGV0IGRyaXZlcjtcbmxldCBkZWZhdWx0Q2FwcyA9IHtcbiAgYXBwOiBzYW1wbGVBcHBzKCdBcGlEZW1vcy1kZWJ1ZycpLFxuICBkZXZpY2VOYW1lOiAnQW5kcm9pZCcsXG4gIHBsYXRmb3JtTmFtZTogJ0FuZHJvaWQnXG59O1xuXG5kZXNjcmliZSgnRmluZCAtIHVpYXV0b21hdG9yJywgZnVuY3Rpb24gKCkge1xuICBiZWZvcmUoYXN5bmMgKCkgPT4ge1xuICAgIGRyaXZlciA9IG5ldyBBbmRyb2lkVWlhdXRvbWF0b3IyRHJpdmVyKCk7XG4gICAgYXdhaXQgZHJpdmVyLmNyZWF0ZVNlc3Npb24oZGVmYXVsdENhcHMpO1xuICB9KTtcbiAgYWZ0ZXIoYXN5bmMgKCkgPT4ge1xuICAgIGF3YWl0IGRyaXZlci5kZWxldGVTZXNzaW9uKCk7XG4gIH0pO1xuICBpdCgnc2hvdWxkIGZpbmQgZWxlbWVudHMgd2l0aCBhIGJvb2xlYW4gYXJndW1lbnQnLCBhc3luYyAoKSA9PiB7XG4gICAgYXdhaXQgZHJpdmVyLmZpbmRFbE9yRWxzKCctYW5kcm9pZCB1aWF1dG9tYXRvcicsICduZXcgVWlTZWxlY3RvcigpLmNsaWNrYWJsZSh0cnVlKScsIHRydWUpXG4gICAgICAuc2hvdWxkLmV2ZW50dWFsbHkuaGF2ZS5sZW5ndGguYXQubGVhc3QoMTApO1xuICB9KTtcbiAgaXQoJ3Nob3VsZCBmaW5kIGVsZW1lbnRzIHdpdGhpbiB0aGUgY29udGV4dCBvZiBhbm90aGVyIGVsZW1lbnQnLCBhc3luYyAoKSA9PiB7XG4gICAgbGV0IGVscyA9IGF3YWl0IGRyaXZlclxuICAgICAgLmZpbmRFbE9yRWxzKCctYW5kcm9pZCB1aWF1dG9tYXRvcicsICduZXcgVWlTZWxlY3RvcigpLmNsYXNzTmFtZShcImFuZHJvaWQud2lkZ2V0LlRleHRWaWV3XCIpJywgdHJ1ZSk7XG4gICAgZWxzLmxlbmd0aC5zaG91bGQuYmUuYWJvdmUoOCk7XG4gICAgZWxzLmxlbmd0aC5zaG91bGQuYmUuYmVsb3coMTQpO1xuICB9KTtcbiAgaXQoJ3Nob3VsZCBmaW5kIGVsZW1lbnRzIHdpdGhvdXQgcHJlcGVuZGluZyBcIm5ldyBVaVNlbGVjdG9yKClcIicsIGFzeW5jICgpID0+IHtcbiAgICBhd2FpdCBkcml2ZXIuZmluZEVsT3JFbHMoJy1hbmRyb2lkIHVpYXV0b21hdG9yJywgJy5jbGlja2FibGUodHJ1ZSknLCB0cnVlKVxuICAgICAgLnNob3VsZC5ldmVudHVhbGx5LmhhdmUubGVuZ3RoLmF0LmxlYXN0KDEwKTtcbiAgfSk7XG4gIGl0KCdzaG91bGQgZmluZCBlbGVtZW50cyB3aXRob3V0IHByZXBlbmRpbmcgXCJuZXcgVWlTZWxlY3RvcigpXCInLCBhc3luYyAoKSA9PiB7XG4gICAgYXdhaXQgZHJpdmVyLmZpbmRFbE9yRWxzKCctYW5kcm9pZCB1aWF1dG9tYXRvcicsICcuY2xpY2thYmxlKHRydWUpJywgdHJ1ZSlcbiAgICAgIC5zaG91bGQuZXZlbnR1YWxseS5oYXZlLmxlbmd0aC5hdC5sZWFzdCgxMCk7XG4gIH0pO1xuICBpdCgnc2hvdWxkIGZpbmQgZWxlbWVudHMgd2l0aG91dCBwcmVwZW5kaW5nIFwibmV3IFVpU2VsZWN0b3IoKVwiJywgYXN5bmMgKCkgPT4ge1xuICAgIGF3YWl0IGRyaXZlci5maW5kRWxPckVscygnLWFuZHJvaWQgdWlhdXRvbWF0b3InLCAnY2xpY2thYmxlKHRydWUpJywgdHJ1ZSlcbiAgICAgIC5zaG91bGQuZXZlbnR1YWxseS5oYXZlLmxlbmd0aC5hdC5sZWFzdCgxMCk7XG4gIH0pO1xuICBpdCgnc2hvdWxkIGZpbmQgZWxlbWVudHMgd2l0aG91dCBwcmVwZW5kaW5nIFwibmV3IFwiJywgYXN5bmMgKCkgPT4ge1xuICAgIGF3YWl0IGRyaXZlci5maW5kRWxPckVscygnLWFuZHJvaWQgdWlhdXRvbWF0b3InLCAnVWlTZWxlY3RvcigpLmNsaWNrYWJsZSh0cnVlKScsIHRydWUpXG4gICAgICAuc2hvdWxkLmV2ZW50dWFsbHkuaGF2ZS5sZW5ndGguYXQubGVhc3QoMTApO1xuICB9KTtcbiAgaXQoJ3Nob3VsZCBpZ25vcmUgdHJhaWxpbmcgc2VtaWNvbG9ucycsIGFzeW5jICgpID0+IHtcbiAgICBhd2FpdCBkcml2ZXIuZmluZEVsT3JFbHMoJy1hbmRyb2lkIHVpYXV0b21hdG9yJywgJ25ldyBVaVNlbGVjdG9yKCkuY2xpY2thYmxlKHRydWUpOycsIHRydWUpXG4gICAgICAuc2hvdWxkLmV2ZW50dWFsbHkuaGF2ZS5sZW5ndGguYXQubGVhc3QoMTApO1xuICB9KTtcbiAgaXQoJ3Nob3VsZCBmaW5kIGFuIGVsZW1lbnQgd2l0aCBhbiBpbnQgYXJndW1lbnQnLCBhc3luYyAoKSA9PiB7XG4gICAgbGV0IGVsID0gYXdhaXQgZHJpdmVyLmZpbmRFbE9yRWxzKCctYW5kcm9pZCB1aWF1dG9tYXRvcicsICduZXcgVWlTZWxlY3RvcigpLmluZGV4KDApJywgZmFsc2UpO1xuICAgIGF3YWl0IGRyaXZlci5nZXROYW1lKGVsLkVMRU1FTlQpLnNob3VsZC5ldmVudHVhbGx5LmVxdWFsKCdhbmRyb2lkLndpZGdldC5GcmFtZUxheW91dCcpO1xuICB9KTtcbiAgaXQoJ3Nob3VsZCBmaW5kIGFuIGVsZW1lbnQgd2l0aCBhIHN0cmluZyBhcmd1bWVudCcsIGFzeW5jICgpID0+IHtcbiAgICBhd2FpdCBkcml2ZXJcbiAgICAgIC5maW5kRWxPckVscygnLWFuZHJvaWQgdWlhdXRvbWF0b3InLCAnbmV3IFVpU2VsZWN0b3IoKS5kZXNjcmlwdGlvbihcIkFuaW1hdGlvblwiKScsIGZhbHNlKVxuICAgICAgLnNob3VsZC5ldmVudHVhbGx5LmV4aXN0O1xuICB9KTtcbiAgaXQoJ3Nob3VsZCBmaW5kIGFuIGVsZW1lbnQgd2l0aCBhbiBvdmVybG9hZGVkIG1ldGhvZCBhcmd1bWVudCcsIGFzeW5jICgpID0+IHtcbiAgICBhd2FpdCBkcml2ZXIuZmluZEVsT3JFbHMoJy1hbmRyb2lkIHVpYXV0b21hdG9yJywgJ25ldyBVaVNlbGVjdG9yKCkuY2xhc3NOYW1lKFwiYW5kcm9pZC53aWRnZXQuVGV4dFZpZXdcIiknLCB0cnVlKVxuICAgICAgLnNob3VsZC5ldmVudHVhbGx5LmhhdmUubGVuZ3RoLmF0LmxlYXN0KDEwKTtcbiAgfSk7XG4gIGl0KCdzaG91bGQgZmluZCBhbiBlbGVtZW50IHdpdGggYSBDbGFzczxUPiBtZXRob2QgYXJndW1lbnQnLCBhc3luYyAoKSA9PiB7XG4gICAgYXdhaXQgZHJpdmVyLmZpbmRFbE9yRWxzKCctYW5kcm9pZCB1aWF1dG9tYXRvcicsICduZXcgVWlTZWxlY3RvcigpLmNsYXNzTmFtZShhbmRyb2lkLndpZGdldC5UZXh0VmlldyknLCB0cnVlKVxuICAgICAgLnNob3VsZC5ldmVudHVhbGx5LmhhdmUubGVuZ3RoLmF0LmxlYXN0KDEwKTtcbiAgfSk7XG4gIGl0KCdzaG91bGQgZmluZCBhbiBlbGVtZW50IHdpdGggYSBsb25nIGNoYWluIG9mIG1ldGhvZHMnLCBhc3luYyAoKSA9PiB7XG4gICAgbGV0IGVsID0gYXdhaXQgZHJpdmVyLmZpbmRFbE9yRWxzKCctYW5kcm9pZCB1aWF1dG9tYXRvcicsICduZXcgVWlTZWxlY3RvcigpLmNsaWNrYWJsZSh0cnVlKS5jbGFzc05hbWUoYW5kcm9pZC53aWRnZXQuVGV4dFZpZXcpLmluZGV4KDEpJywgZmFsc2UpO1xuICAgIGF3YWl0IGRyaXZlci5nZXRUZXh0KGVsLkVMRU1FTlQpLnNob3VsZC5ldmVudHVhbGx5LmVxdWFsKCdBY2Nlc3NpYmlsaXR5Jyk7XG4gIH0pO1xuICBpdCgnc2hvdWxkIGZpbmQgYW4gZWxlbWVudCB3aXRoIHJlY3Vyc2l2ZSBVaVNlbGVjdG9ycycsIGFzeW5jICgpID0+IHtcbiAgICBhd2FpdCBkcml2ZXIuZmluZEVsT3JFbHMoJy1hbmRyb2lkIHVpYXV0b21hdG9yJywgJ25ldyBVaVNlbGVjdG9yKCkuY2hpbGRTZWxlY3RvcihuZXcgVWlTZWxlY3RvcigpLmNsaWNrYWJsZSh0cnVlKSkuY2xpY2thYmxlKHRydWUpJywgdHJ1ZSlcbiAgICAgIC5zaG91bGQuZXZlbnR1YWxseS5oYXZlLmxlbmd0aCgxKTtcbiAgfSk7XG4gIGl0KCdzaG91bGQgbm90IGZpbmQgYW4gZWxlbWVudCB3aGljaCBkb2VzIG5vdCBleGlzdCcsIGFzeW5jICgpID0+IHtcbiAgICBhd2FpdCBkcml2ZXIuZmluZEVsT3JFbHMoJy1hbmRyb2lkIHVpYXV0b21hdG9yJywgJ25ldyBVaVNlbGVjdG9yKCkuZGVzY3JpcHRpb24oXCJjaHVja3d1ZGlcIiknLCB0cnVlKVxuICAgICAgLnNob3VsZC5ldmVudHVhbGx5LmhhdmUubGVuZ3RoKDApO1xuICB9KTtcbiAgaXQoJ3Nob3VsZCBhbGxvdyBtdWx0aXBsZSBzZWxlY3RvciBzdGF0ZW1lbnRzIGFuZCByZXR1cm4gdGhlIFVuaW9uIG9mIHRoZSB0d28gc2V0cycsIGFzeW5jICgpID0+IHtcbiAgICBsZXQgY2xpY2thYmxlID0gYXdhaXQgZHJpdmVyLmZpbmRFbE9yRWxzKCctYW5kcm9pZCB1aWF1dG9tYXRvcicsICduZXcgVWlTZWxlY3RvcigpLmNsaWNrYWJsZSh0cnVlKScsIHRydWUpO1xuICAgIGNsaWNrYWJsZS5sZW5ndGguc2hvdWxkLmJlLmFib3ZlKDApO1xuICAgIGxldCBub3RDbGlja2FibGUgPSBhd2FpdCBkcml2ZXIuZmluZEVsT3JFbHMoJy1hbmRyb2lkIHVpYXV0b21hdG9yJywgJ25ldyBVaVNlbGVjdG9yKCkuY2xpY2thYmxlKGZhbHNlKScsIHRydWUpO1xuICAgIG5vdENsaWNrYWJsZS5sZW5ndGguc2hvdWxkLmJlLmFib3ZlKDApO1xuICAgIGxldCBib3RoID0gYXdhaXQgZHJpdmVyLmZpbmRFbE9yRWxzKCctYW5kcm9pZCB1aWF1dG9tYXRvcicsICduZXcgVWlTZWxlY3RvcigpLmNsaWNrYWJsZSh0cnVlKTsgbmV3IFVpU2VsZWN0b3IoKS5jbGlja2FibGUoZmFsc2UpOycsIHRydWUpO1xuICAgIGJvdGguc2hvdWxkLmhhdmUubGVuZ3RoKGNsaWNrYWJsZS5sZW5ndGggKyBub3RDbGlja2FibGUubGVuZ3RoKTtcbiAgfSk7XG4gIGl0KCdzaG91bGQgYWxsb3cgbXVsdGlwbGUgc2VsZWN0b3Igc3RhdGVtZW50cyBhbmQgcmV0dXJuIHRoZSBVbmlvbiBvZiB0aGUgdHdvIHNldHMnLCBhc3luYyAoKSA9PiB7XG4gICAgbGV0IGNsaWNrYWJsZSA9IGF3YWl0IGRyaXZlci5maW5kRWxPckVscygnLWFuZHJvaWQgdWlhdXRvbWF0b3InLCAnbmV3IFVpU2VsZWN0b3IoKS5jbGlja2FibGUodHJ1ZSknLCB0cnVlKTtcbiAgICBjbGlja2FibGUubGVuZ3RoLnNob3VsZC5iZS5hYm92ZSgwKTtcbiAgICBsZXQgY2xpY2thYmxlQ2xpY2thYmxlID0gYXdhaXQgZHJpdmVyLmZpbmRFbE9yRWxzKCctYW5kcm9pZCB1aWF1dG9tYXRvcicsICduZXcgVWlTZWxlY3RvcigpLmNsaWNrYWJsZSh0cnVlKTsgbmV3IFVpU2VsZWN0b3IoKS5jbGlja2FibGUodHJ1ZSk7JywgdHJ1ZSk7XG4gICAgY2xpY2thYmxlQ2xpY2thYmxlLmxlbmd0aC5zaG91bGQuYmUuYWJvdmUoMCk7XG4gICAgY2xpY2thYmxlQ2xpY2thYmxlLnNob3VsZC5oYXZlLmxlbmd0aChjbGlja2FibGUubGVuZ3RoKTtcbiAgfSk7XG4gIGl0KCdzaG91bGQgZmluZCBhbiBlbGVtZW50IGluIHRoZSBzZWNvbmQgc2VsZWN0b3IgaWYgdGhlIGZpcnN0IGZpbmRzIG5vIGVsZW1lbnRzJywgYXN5bmMgKCkgPT4ge1xuICAgIGxldCBzZWxlY3RvciA9ICduZXcgVWlTZWxlY3RvcigpLmNsYXNzTmFtZShcIm5vdC5hLmNsYXNzXCIpOyBuZXcgVWlTZWxlY3RvcigpLmNsYXNzTmFtZShcImFuZHJvaWQud2lkZ2V0LlRleHRWaWV3XCIpJztcbiAgICBhd2FpdCBkcml2ZXIuZmluZEVsT3JFbHMoJy1hbmRyb2lkIHVpYXV0b21hdG9yJywgc2VsZWN0b3IsIHRydWUpXG4gICAgICAuc2hvdWxkLmV2ZW50dWFsbHkuZXhpc3Q7XG4gIH0pO1xuICBpdCgnc2hvdWxkIHNjcm9sbCB0bywgYW5kIHJldHVybiBlbGVtZW50cyB1c2luZyBVaVNjcm9sbGFibGUnLCBhc3luYyAoKSA9PiB7XG4gICAgbGV0IHNlbGVjdG9yID0gJ25ldyBVaVNjcm9sbGFibGUobmV3IFVpU2VsZWN0b3IoKS5zY3JvbGxhYmxlKHRydWUpLmluc3RhbmNlKDApKS5zY3JvbGxJbnRvVmlldyhuZXcgVWlTZWxlY3RvcigpLnRleHQoXCJWaWV3c1wiKS5pbnN0YW5jZSgwKSknO1xuICAgIGxldCBlbCA9IGF3YWl0IGRyaXZlci5maW5kRWxPckVscygnLWFuZHJvaWQgdWlhdXRvbWF0b3InLCBzZWxlY3RvciwgZmFsc2UpO1xuICAgIGF3YWl0IGRyaXZlci5nZXRUZXh0KGVsLkVMRU1FTlQpLnNob3VsZC5ldmVudHVhbGx5LmVxdWFsKCdWaWV3cycpO1xuICB9KTtcbiAgaXQoJ3Nob3VsZCBhbGxvdyBjaGFpbmluZyBVaVNjcm9sbGFibGUgbWV0aG9kcycsIGFzeW5jICgpID0+IHtcbiAgICBsZXQgc2VsZWN0b3IgPSAnbmV3IFVpU2Nyb2xsYWJsZShuZXcgVWlTZWxlY3RvcigpLnNjcm9sbGFibGUodHJ1ZSkuaW5zdGFuY2UoMCkpLnNldE1heFNlYXJjaFN3aXBlcygxMCkuc2Nyb2xsSW50b1ZpZXcobmV3IFVpU2VsZWN0b3IoKS50ZXh0KFwiVmlld3NcIikuaW5zdGFuY2UoMCkpJztcbiAgICBsZXQgZWwgPSBhd2FpdCBkcml2ZXIuZmluZEVsT3JFbHMoJy1hbmRyb2lkIHVpYXV0b21hdG9yJywgc2VsZWN0b3IsIGZhbHNlKTtcbiAgICBhd2FpdCBkcml2ZXIuZ2V0VGV4dChlbC5FTEVNRU5UKS5zaG91bGQuZXZlbnR1YWxseS5lcXVhbCgnVmlld3MnKTtcbiAgfSk7XG4gIGl0KCdzaG91bGQgYWxsb3cgVWlTY3JvbGxhYmxlIHNjcm9sbEludG9WaWV3JywgYXN5bmMgKCkgPT4ge1xuICAgIGxldCBzZWxlY3RvciA9ICduZXcgVWlTY3JvbGxhYmxlKG5ldyBVaVNlbGVjdG9yKCkuc2Nyb2xsYWJsZSh0cnVlKS5pbnN0YW5jZSgwKSkuc2Nyb2xsSW50b1ZpZXcobmV3IFVpU2VsZWN0b3IoKS50ZXh0KFwiVmlld3NcIikuaW5zdGFuY2UoMCkpOyc7XG4gICAgbGV0IGVsID0gYXdhaXQgZHJpdmVyLmZpbmRFbE9yRWxzKCctYW5kcm9pZCB1aWF1dG9tYXRvcicsIHNlbGVjdG9yLCBmYWxzZSk7XG4gICAgYXdhaXQgZHJpdmVyLmdldFRleHQoZWwuRUxFTUVOVCkuc2hvdWxkLmV2ZW50dWFsbHkuZXF1YWwoJ1ZpZXdzJyk7XG4gIH0pO1xuICBpdCgnc2hvdWxkIGFsbG93IFVpU2Nyb2xsYWJsZSB3aXRoIHVuaWNvZGUgc3RyaW5nJywgYXN5bmMgKCkgPT4ge1xuICAgIGF3YWl0IGRyaXZlci5zdGFydEFjdGl2aXR5KCdpby5hcHBpdW0uYW5kcm9pZC5hcGlzJywgJy50ZXh0LlVuaWNvZGUnKTtcbiAgICBsZXQgc2VsZWN0b3IgPSAnbmV3IFVpU2VsZWN0b3IoKS50ZXh0KFwi2LnYsdio2YpcIikuaW5zdGFuY2UoMCk7JztcbiAgICBsZXQgZWwgPSBhd2FpdCBkcml2ZXIuZmluZEVsT3JFbHMoJy1hbmRyb2lkIHVpYXV0b21hdG9yJywgc2VsZWN0b3IsIGZhbHNlKTtcbiAgICBhd2FpdCBkcml2ZXIuZ2V0VGV4dChlbC5FTEVNRU5UKS5zaG91bGQuZXZlbnR1YWxseS5lcXVhbCgn2LnYsdio2YonKTtcbiAgfSk7XG59KTtcbiJdLCJzb3VyY2VSb290IjoiLi4vLi4vLi4vLi4vLi4ifQ==
78.727059
17,107
0.815535
c5ee1463df66d2416237a99eba09d8ed0aa73691
2,396
js
JavaScript
gulpfile.js
angular-actioncable/angular-actioncable
b8d57209b7f1962381170054dc484fe9bd6446a9
[ "MIT" ]
40
2016-04-08T23:41:38.000Z
2018-06-14T15:43:37.000Z
gulpfile.js
angular-actioncable/angular-actioncable
b8d57209b7f1962381170054dc484fe9bd6446a9
[ "MIT" ]
54
2016-04-09T03:10:23.000Z
2018-01-21T02:28:32.000Z
gulpfile.js
angular-actioncable/angular-actioncable
b8d57209b7f1962381170054dc484fe9bd6446a9
[ "MIT" ]
27
2016-04-09T19:43:20.000Z
2018-09-18T19:43:54.000Z
var gulp = require('gulp'); var chai = require('chai'); var Server = require('karma').Server; var concat = require('gulp-concat'); var uglify = require('gulp-uglify'); var rename = require('gulp-rename'); var ngAnnotate = require('gulp-ng-annotate'); var clean = require('gulp-clean'); var path = require('path'); var plumber = require('gulp-plumber'); var jshint = require('gulp-jshint'); var map = require('map-stream'); var eventStream = require('event-stream'); // Root directory var rootDirectory = path.resolve('./'); // Source directory for build process var sourceDirectory = path.join(rootDirectory, './src'); var sourceFiles = [ path.join(sourceDirectory, '/**/*.js'), path.join(rootDirectory, '/*footer.*') ]; var lintFiles = [ 'gulpfile.js' // Karma configuration // 'karma-*.conf.js' ].concat(sourceFiles); // Build JavaScript distribution files gulp.task('build', ['clean'], function() { return eventStream.merge(gulp.src(sourceFiles)) .pipe(plumber()) .pipe(concat('angular-actioncable.js')) .pipe(gulp.dest('./dist/')) .pipe(ngAnnotate()) .pipe(uglify({mangle: false})) .pipe(rename('angular-actioncable.min.js')) .pipe(gulp.dest('./dist/')); }); // removes the dist folder gulp.task('clean', function () { return gulp.src('dist', {read: false}) .pipe(clean()); }); // Validate source JavaScript var map = require('map-stream'); var exitOnJshintError = map(function (file, cb) { if (!file.jshint.success) { console.error('jshint failed'); process.exit(1); } }); gulp.task('jshint', function () { gulp.src(lintFiles) .pipe(plumber()) .pipe(jshint()) .pipe(jshint.reporter('jshint-stylish')) .pipe(exitOnJshintError); }); // watch for changes gulp.task('watch', function () { gulp.watch([sourceFiles], ['build']); }); // Run test once and exit gulp.task('test', function (done) { new Server({ configFile: __dirname + '/karma.conf.js', singleRun: true }, done).start(); }); gulp.task('test-dist', function (done) { new Server({ configFile: __dirname + '/karma-dist-concatenated.conf.js', singleRun: true }, done).start(); }); gulp.task('test-min', function (done) { new Server({ configFile: __dirname + '/karma-dist-minified.conf.js', singleRun: true }, done).start(); }); gulp.task('serve', ['test', 'watch', 'build']); gulp.task('default', ['test']);
24.20202
63
0.646912
c5ee61ec86e236e3e8b4926de8d637efbdc18070
1,456
js
JavaScript
app/assets/javascripts/editor/extensions/editor_ci_schema_ext.js
innogames/gitlabhq
82009412a065a58d076adbaa723268188fd9b20a
[ "MIT" ]
1
2021-09-25T16:27:13.000Z
2021-09-25T16:27:13.000Z
app/assets/javascripts/editor/extensions/editor_ci_schema_ext.js
qzxe/gitlabhq
82009412a065a58d076adbaa723268188fd9b20a
[ "MIT" ]
12
2021-06-16T07:56:10.000Z
2022-03-30T22:10:28.000Z
app/assets/javascripts/editor/extensions/editor_ci_schema_ext.js
qzxe/gitlabhq
82009412a065a58d076adbaa723268188fd9b20a
[ "MIT" ]
3
2019-07-09T12:16:21.000Z
2021-09-06T05:29:33.000Z
import Api from '~/api'; import { registerSchema } from '~/ide/utils'; import { EXTENSION_CI_SCHEMA_FILE_NAME_MATCH } from '../constants'; import { EditorLiteExtension } from './editor_lite_extension_base'; export class CiSchemaExtension extends EditorLiteExtension { /** * Registers a syntax schema to the editor based on project * identifier and commit. * * The schema is added to the file that is currently edited * in the editor. * * @param {Object} opts * @param {String} opts.projectNamespace * @param {String} opts.projectPath * @param {String?} opts.ref - Current ref. Defaults to main */ registerCiSchema({ projectNamespace, projectPath, ref } = {}) { const ciSchemaPath = Api.buildUrl(Api.projectFileSchemaPath) .replace(':namespace_path', projectNamespace) .replace(':project_path', projectPath) .replace(':ref', ref) .replace(':filename', EXTENSION_CI_SCHEMA_FILE_NAME_MATCH); // In order for workers loaded from `data://` as the // ones loaded by monaco editor, we use absolute URLs // to fetch schema files, hence the `gon.gitlab_url` // reference. This prevents error: // "Failed to execute 'fetch' on 'WorkerGlobalScope'" const absoluteSchemaUrl = gon.gitlab_url + ciSchemaPath; const modelFileName = this.getModel().uri.path.split('/').pop(); registerSchema({ uri: absoluteSchemaUrl, fileMatch: [modelFileName], }); } }
37.333333
68
0.690247
c5ee9b72ec09aad8e6e4360021a445cf3ecaf50b
1,007
js
JavaScript
node_modules/gulp-imagemin/node_modules/imagemin/node_modules/imagemin-pngquant/node_modules/pngquant-bin/node_modules/bin-wrapper/node_modules/bin-version-check/node_modules/bin-version/node_modules/find-versions/cli.js
chi-sea-lions-2015/house-rules-frontend2
c79aacf04af3d6800073caa721762c9bcaade6af
[ "MIT" ]
27
2015-01-14T16:23:40.000Z
2017-01-12T07:43:07.000Z
node_modules/gulp-imagemin/node_modules/imagemin/node_modules/imagemin-pngquant/node_modules/pngquant-bin/node_modules/bin-wrapper/node_modules/bin-version-check/node_modules/bin-version/node_modules/find-versions/cli.js
chi-sea-lions-2015/house-rules-frontend2
c79aacf04af3d6800073caa721762c9bcaade6af
[ "MIT" ]
22
2015-02-24T14:17:38.000Z
2015-02-25T16:39:19.000Z
node_modules/gulp-imagemin/node_modules/imagemin/node_modules/imagemin-pngquant/node_modules/pngquant-bin/node_modules/bin-wrapper/node_modules/bin-version-check/node_modules/bin-version/node_modules/find-versions/cli.js
chi-sea-lions-2015/house-rules-frontend2
c79aacf04af3d6800073caa721762c9bcaade6af
[ "MIT" ]
22
2015-02-02T01:00:42.000Z
2020-06-27T12:30:00.000Z
#!/usr/bin/env node 'use strict'; var stdin = require('get-stdin'); var argv = require('minimist')(process.argv.slice(2)); var pkg = require('./package.json'); var findVersions = require('./'); var input = argv._[0]; function help() { console.log([ '', ' ' + pkg.description, '', ' Usage', ' find-versions <string> [--first] [--loose]', ' echo <string> | find-versions', '', ' Example', ' find-versions \'unicorns v1.2.3\'', ' 1.2.3', '', ' curl --version | find-versions --first', ' 7.30.0', '', ' Options', ' --first Return the first match', ' --loose Match non-semver versions like 1.88' ].join('\n')); } function init(data) { var ret = findVersions(data, {loose: argv.loose}); console.log(argv.first ? ret[0] : ret.join('\n')); } if (argv.help) { help(); return; } if (argv.version) { console.log(pkg.version); return; } if (process.stdin.isTTY) { if (!input) { help(); return; } init(input); } else { stdin(init); }
17.982143
54
0.567031
c5eebe7f8b338cedd630ccf203085a569004d308
1,879
js
JavaScript
snippets/animated-bfs.js
portlandrisk/cytoscape
cf7cb0707416ae0e4d97b2d03a5dbb0ab85520aa
[ "MIT" ]
15
2019-05-09T13:47:12.000Z
2021-12-18T01:50:58.000Z
snippets/animated-bfs.js
portlandrisk/cytoscape
cf7cb0707416ae0e4d97b2d03a5dbb0ab85520aa
[ "MIT" ]
426
2015-04-30T14:30:39.000Z
2017-04-17T08:18:26.000Z
snippets/animated-bfs.js
portlandrisk/cytoscape
cf7cb0707416ae0e4d97b2d03a5dbb0ab85520aa
[ "MIT" ]
7
2016-01-05T13:22:28.000Z
2020-09-18T15:03:56.000Z
yourDiv.style.left = 0; yourDiv.style.top = 0; yourDiv.style.width = "100%"; yourDiv.style.height = "100%"; yourDiv.style.position = "absolute"; var cytoscape = require("cytoscape"); var cy = cytoscape({ container: yourDiv, style: cytoscape.stylesheet() .selector('node') .css({ 'content': 'data(id)' }) .selector('edge') .css({ 'target-arrow-shape': 'triangle', 'width': 4, 'line-color': '#ddd', 'target-arrow-color': '#ddd' }) .selector('.highlighted') .css({ 'background-color': '#61bffc', 'line-color': '#61bffc', 'target-arrow-color': '#61bffc', 'transition-property': 'background-color, line-color, target-arrow-color', 'transition-duration': '0.5s' }), elements: { nodes: [ { data: { id: 'a' } }, { data: { id: 'b' } }, { data: { id: 'c' } }, { data: { id: 'd' } }, { data: { id: 'e' } } ], edges: [ { data: { id: 'a"e', weight: 1, source: 'a', target: 'e' } }, { data: { id: 'ab', weight: 3, source: 'a', target: 'b' } }, { data: { id: 'be', weight: 4, source: 'b', target: 'e' } }, { data: { id: 'bc', weight: 5, source: 'b', target: 'c' } }, { data: { id: 'ce', weight: 6, source: 'c', target: 'e' } }, { data: { id: 'cd', weight: 2, source: 'c', target: 'd' } }, { data: { id: 'de', weight: 7, source: 'd', target: 'e' } } ] }, layout: { name: 'breadthfirst', directed: true, roots: '#a', padding: 10 } }); var bfs = cy.elements().bfs('#a', function(){}, true); var i = 0; var highlightNextEle = function(){ bfs.path[i].addClass('highlighted'); if( i < bfs.path.length ){ i++; setTimeout(highlightNextEle, 1000); } }; // kick off first highlight highlightNextEle();
26.842857
82
0.493348
c5eec2c7d4cbc9691d895763c38bf4f818541733
4,812
js
JavaScript
node_modules/@angular/material/esm2015/snack-bar/snack-bar-module.js
AliAyub007/ScannerRepo
8d40a2b549dc7e35558b176a1df1948325c0324f
[ "MIT" ]
1
2020-11-01T00:01:12.000Z
2020-11-01T00:01:12.000Z
node_modules/@angular/material/esm2015/snack-bar/snack-bar-module.js
AliAyub007/ScannerRepo
8d40a2b549dc7e35558b176a1df1948325c0324f
[ "MIT" ]
1
2022-03-02T08:07:32.000Z
2022-03-02T08:07:32.000Z
node_modules/@angular/material/esm2015/snack-bar/snack-bar-module.js
AliAyub007/ScannerRepo
8d40a2b549dc7e35558b176a1df1948325c0324f
[ "MIT" ]
null
null
null
/** * @fileoverview added by tsickle * Generated from: src/material/snack-bar/snack-bar-module.ts * @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc */ /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ import { OverlayModule } from '@angular/cdk/overlay'; import { PortalModule } from '@angular/cdk/portal'; import { CommonModule } from '@angular/common'; import { NgModule } from '@angular/core'; import { MatCommonModule } from '@angular/material/core'; import { MatButtonModule } from '@angular/material/button'; import { SimpleSnackBar } from './simple-snack-bar'; import { MatSnackBarContainer } from './snack-bar-container'; import * as ɵngcc0 from '@angular/core'; export class MatSnackBarModule { } MatSnackBarModule.ɵmod = ɵngcc0.ɵɵdefineNgModule({ type: MatSnackBarModule }); MatSnackBarModule.ɵinj = ɵngcc0.ɵɵdefineInjector({ factory: function MatSnackBarModule_Factory(t) { return new (t || MatSnackBarModule)(); }, imports: [[ OverlayModule, PortalModule, CommonModule, MatButtonModule, MatCommonModule, ], MatCommonModule] }); (function () { (typeof ngJitMode === "undefined" || ngJitMode) && ɵngcc0.ɵɵsetNgModuleScope(MatSnackBarModule, { declarations: function () { return [MatSnackBarContainer, SimpleSnackBar]; }, imports: function () { return [OverlayModule, PortalModule, CommonModule, MatButtonModule, MatCommonModule]; }, exports: function () { return [MatSnackBarContainer, MatCommonModule]; } }); })(); /*@__PURE__*/ (function () { ɵngcc0.ɵsetClassMetadata(MatSnackBarModule, [{ type: NgModule, args: [{ imports: [ OverlayModule, PortalModule, CommonModule, MatButtonModule, MatCommonModule, ], exports: [MatSnackBarContainer, MatCommonModule], declarations: [MatSnackBarContainer, SimpleSnackBar], entryComponents: [MatSnackBarContainer, SimpleSnackBar] }] }], null, null); })(); //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic25hY2stYmFyLW1vZHVsZS5qcyIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vc3JjL21hdGVyaWFsL3NuYWNrLWJhci9zbmFjay1iYXItbW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7Ozs7Ozs7Ozs7OztBQVFBLE9BQU8sRUFBQyxhQUFhLEVBQUMsTUFBTSxzQkFBc0IsQ0FBQztBQUNuRCxPQUFPLEVBQUMsWUFBWSxFQUFDLE1BQU0scUJBQXFCLENBQUM7QUFDakQsT0FBTyxFQUFDLFlBQVksRUFBQyxNQUFNLGlCQUFpQixDQUFDO0FBQzdDLE9BQU8sRUFBQyxRQUFRLEVBQUMsTUFBTSxlQUFlLENBQUM7QUFDdkMsT0FBTyxFQUFDLGVBQWUsRUFBQyxNQUFNLHdCQUF3QixDQUFDO0FBQ3ZELE9BQU8sRUFBQyxlQUFlLEVBQUMsTUFBTSwwQkFBMEIsQ0FBQztBQUN6RCxPQUFPLEVBQUMsY0FBYyxFQUFDLE1BQU0sb0JBQW9CLENBQUM7QUFDbEQsT0FBTyxFQUFDLG9CQUFvQixFQUFDLE1BQU0sdUJBQXVCLENBQUM7O0FBZTNELE1BQU0sT0FBTyxpQkFBaUI7Ozs7Ozs7Ozs7Q0FDOUI7a0JBYkMsUUFBUSxTQUFDLGtCQUNSLE9BQU8sRUFBRSxzQkFDUCxhQUFhLHNCQUNiLFlBQVksc0JBQ1osWUFBWSxzQkFDWixlQUFlLHNCQUNmO0VBQWUsbUJBQ2hCO2lCQUNEO0VBQU8sRUFBRSxDQUFDO0FBQW9CLEVBQUUsZUFBZSxDQUFDLGtCQUNoRCxZQUFZLEVBQUUsQ0FBQyxvQkFBb0IsRUFBRSxjQUFjLENBQUMsa0JBQ3BEO1NBQWUsRUFBRSxDQUFDLG9CQUFvQixFQUFFLGNBQWMsQ0FBQyxlQUN4RDs7Ozs7Ozs7Ozs7Ozs7MEJBQ0kiLCJzb3VyY2VzQ29udGVudCI6WyIvKipcbiAqIEBsaWNlbnNlXG4gKiBDb3B5cmlnaHQgR29vZ2xlIExMQyBBbGwgUmlnaHRzIFJlc2VydmVkLlxuICpcbiAqIFVzZSBvZiB0aGlzIHNvdXJjZSBjb2RlIGlzIGdvdmVybmVkIGJ5IGFuIE1JVC1zdHlsZSBsaWNlbnNlIHRoYXQgY2FuIGJlXG4gKiBmb3VuZCBpbiB0aGUgTElDRU5TRSBmaWxlIGF0IGh0dHBzOi8vYW5ndWxhci5pby9saWNlbnNlXG4gKi9cblxuaW1wb3J0IHtPdmVybGF5TW9kdWxlfSBmcm9tICdAYW5ndWxhci9jZGsvb3ZlcmxheSc7XG5pbXBvcnQge1BvcnRhbE1vZHVsZX0gZnJvbSAnQGFuZ3VsYXIvY2RrL3BvcnRhbCc7XG5pbXBvcnQge0NvbW1vbk1vZHVsZX0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcbmltcG9ydCB7TmdNb2R1bGV9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHtNYXRDb21tb25Nb2R1bGV9IGZyb20gJ0Bhbmd1bGFyL21hdGVyaWFsL2NvcmUnO1xuaW1wb3J0IHtNYXRCdXR0b25Nb2R1bGV9IGZyb20gJ0Bhbmd1bGFyL21hdGVyaWFsL2J1dHRvbic7XG5pbXBvcnQge1NpbXBsZVNuYWNrQmFyfSBmcm9tICcuL3NpbXBsZS1zbmFjay1iYXInO1xuaW1wb3J0IHtNYXRTbmFja0JhckNvbnRhaW5lcn0gZnJvbSAnLi9zbmFjay1iYXItY29udGFpbmVyJztcblxuXG5ATmdNb2R1bGUoe1xuICBpbXBvcnRzOiBbXG4gICAgT3ZlcmxheU1vZHVsZSxcbiAgICBQb3J0YWxNb2R1bGUsXG4gICAgQ29tbW9uTW9kdWxlLFxuICAgIE1hdEJ1dHRvbk1vZHVsZSxcbiAgICBNYXRDb21tb25Nb2R1bGUsXG4gIF0sXG4gIGV4cG9ydHM6IFtNYXRTbmFja0JhckNvbnRhaW5lciwgTWF0Q29tbW9uTW9kdWxlXSxcbiAgZGVjbGFyYXRpb25zOiBbTWF0U25hY2tCYXJDb250YWluZXIsIFNpbXBsZVNuYWNrQmFyXSxcbiAgZW50cnlDb21wb25lbnRzOiBbTWF0U25hY2tCYXJDb250YWluZXIsIFNpbXBsZVNuYWNrQmFyXSxcbn0pXG5leHBvcnQgY2xhc3MgTWF0U25hY2tCYXJNb2R1bGUge31cbiJdfQ==
89.111111
2,448
0.827722
c5ef5ed43bb3df5a6e0f872adb639c2e86aeb709
7,124
js
JavaScript
src/legacy/core_plugins/console/public/tests/src/mapping.test.js
akoloth/kibana
a753017851e05b6db641d044f4d88e5dc25239ec
[ "Apache-2.0" ]
3
2020-10-05T11:08:47.000Z
2020-10-06T10:39:39.000Z
src/legacy/core_plugins/console/public/tests/src/mapping.test.js
akoloth/kibana
a753017851e05b6db641d044f4d88e5dc25239ec
[ "Apache-2.0" ]
5
2018-08-22T19:18:14.000Z
2019-09-27T01:42:49.000Z
src/legacy/core_plugins/console/public/tests/src/mapping.test.js
akoloth/kibana
a753017851e05b6db641d044f4d88e5dc25239ec
[ "Apache-2.0" ]
1
2020-11-04T07:02:47.000Z
2020-11-04T07:02:47.000Z
/* * Licensed to Elasticsearch B.V. under one or more contributor * license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright * ownership. Elasticsearch B.V. licenses this file to you 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. */ import './setup_mocks'; import 'brace'; import 'brace/mode/javascript'; import 'brace/mode/json'; const mappings = require('../../src/mappings'); describe('Mappings', () => { beforeEach(() => { mappings.clear(); }); afterEach(() => { mappings.clear(); }); function fc(f1, f2) { if (f1.name < f2.name) { return -1; } if (f1.name > f2.name) { return 1; } return 0; } function f(name, type) { return { name: name, type: type || 'string' }; } test('Multi fields', function () { mappings.loadMappings({ index: { properties: { first_name: { type: 'multi_field', path: 'just_name', fields: { first_name: { type: 'string', index: 'analyzed' }, any_name: { type: 'string', index: 'analyzed' }, }, }, last_name: { type: 'multi_field', path: 'just_name', fields: { last_name: { type: 'string', index: 'analyzed' }, any_name: { type: 'string', index: 'analyzed' }, }, }, }, }, }); expect(mappings.getFields('index').sort(fc)).toEqual([ f('any_name', 'string'), f('first_name', 'string'), f('last_name', 'string'), ]); }); test('Multi fields 1.0 style', function () { mappings.loadMappings({ index: { properties: { first_name: { type: 'string', index: 'analyzed', path: 'just_name', fields: { any_name: { type: 'string', index: 'analyzed' }, }, }, last_name: { type: 'string', index: 'no', fields: { raw: { type: 'string', index: 'analyzed' }, }, }, }, }, }); expect(mappings.getFields('index').sort(fc)).toEqual([ f('any_name', 'string'), f('first_name', 'string'), f('last_name', 'string'), f('last_name.raw', 'string'), ]); }); test('Simple fields', function () { mappings.loadMappings({ index: { properties: { str: { type: 'string', }, number: { type: 'int', }, }, }, }); expect(mappings.getFields('index').sort(fc)).toEqual([ f('number', 'int'), f('str', 'string'), ]); }); test('Simple fields - 1.0 style', function () { mappings.loadMappings({ index: { mappings: { properties: { str: { type: 'string', }, number: { type: 'int', }, }, }, }, }); expect(mappings.getFields('index').sort(fc)).toEqual([ f('number', 'int'), f('str', 'string'), ]); }); test('Nested fields', function () { mappings.loadMappings({ index: { properties: { person: { type: 'object', properties: { name: { properties: { first_name: { type: 'string' }, last_name: { type: 'string' }, }, }, sid: { type: 'string', index: 'not_analyzed' }, }, }, message: { type: 'string' }, }, }, }); expect(mappings.getFields('index', []).sort(fc)).toEqual([ f('message'), f('person.name.first_name'), f('person.name.last_name'), f('person.sid'), ]); }); test('Enabled fields', function () { mappings.loadMappings({ index: { properties: { person: { type: 'object', properties: { name: { type: 'object', enabled: false, }, sid: { type: 'string', index: 'not_analyzed' }, }, }, message: { type: 'string' }, }, }, }); expect(mappings.getFields('index', []).sort(fc)).toEqual([ f('message'), f('person.sid'), ]); }); test('Path tests', function () { mappings.loadMappings({ index: { properties: { name1: { type: 'object', path: 'just_name', properties: { first1: { type: 'string' }, last1: { type: 'string', index_name: 'i_last_1' }, }, }, name2: { type: 'object', path: 'full', properties: { first2: { type: 'string' }, last2: { type: 'string', index_name: 'i_last_2' }, }, }, }, }, }); expect(mappings.getFields().sort(fc)).toEqual([ f('first1'), f('i_last_1'), f('name2.first2'), f('name2.i_last_2'), ]); }); test('Use index_name tests', function () { mappings.loadMappings({ index: { properties: { last1: { type: 'string', index_name: 'i_last_1' }, }, }, }); expect(mappings.getFields().sort(fc)).toEqual([f('i_last_1')]); }); test('Aliases', function () { mappings.loadAliases({ test_index1: { aliases: { alias1: {}, }, }, test_index2: { aliases: { alias2: { filter: { term: { FIELD: 'VALUE', }, }, }, alias1: {}, }, }, }); mappings.loadMappings({ test_index1: { properties: { last1: { type: 'string', index_name: 'i_last_1' }, }, }, test_index2: { properties: { last1: { type: 'string', index_name: 'i_last_1' }, }, }, }); expect(mappings.getIndices().sort()).toEqual([ '_all', 'alias1', 'alias2', 'test_index1', 'test_index2', ]); expect(mappings.getIndices(false).sort()).toEqual([ 'test_index1', 'test_index2', ]); expect(mappings.expandAliases(['alias1', 'test_index2']).sort()).toEqual([ 'test_index1', 'test_index2', ]); expect(mappings.expandAliases('alias2')).toEqual('test_index2'); }); });
23.746667
78
0.464206
c5ef96ffb4f6687a61725a95e3dff98f745b39c2
680
js
JavaScript
node_modules/@fluentui/react-icons/lib/esm/components/SplitVertical20Regular.js
paige-ingram/nwhacks2022
ea35bfaa8fb6eb8109db8ed357a097474f3bfd1d
[ "Apache-2.0" ]
null
null
null
node_modules/@fluentui/react-icons/lib/esm/components/SplitVertical20Regular.js
paige-ingram/nwhacks2022
ea35bfaa8fb6eb8109db8ed357a097474f3bfd1d
[ "Apache-2.0" ]
null
null
null
node_modules/@fluentui/react-icons/lib/esm/components/SplitVertical20Regular.js
paige-ingram/nwhacks2022
ea35bfaa8fb6eb8109db8ed357a097474f3bfd1d
[ "Apache-2.0" ]
null
null
null
import * as React from 'react'; import wrapIcon from '../utils/wrapIcon'; const rawSvg = (iconProps) => { const { className, primaryFill } = iconProps; return React.createElement("svg", { width: 20, height: 20, viewBox: "0 0 20 20", xmlns: "http://www.w3.org/2000/svg", className: className }, React.createElement("path", { d: "M10 2.5a.5.5 0 00-1 0v15a.5.5 0 001 0v-15zM4 4a2 2 0 00-2 2v8c0 1.1.9 2 2 2h4v-1H4a1 1 0 01-1-1V6a1 1 0 011-1h4V4H4zm7 0v1h4a1 1 0 011 1v8a1 1 0 01-1 1h-4v1h4a2 2 0 002-2V6a2 2 0 00-2-2h-4z", fill: primaryFill })); }; const SplitVertical20Regular = wrapIcon(rawSvg({}), 'SplitVertical20Regular'); export default SplitVertical20Regular;
68
256
0.694118
c5f0abca8317723ffff417102b95dfc7a68dcf1c
4,052
js
JavaScript
dist/js/app.js
bifot/AndronLanding
4234ce112daf5efc8472554fc05eaa2ad1fd4172
[ "MIT" ]
null
null
null
dist/js/app.js
bifot/AndronLanding
4234ce112daf5efc8472554fc05eaa2ad1fd4172
[ "MIT" ]
null
null
null
dist/js/app.js
bifot/AndronLanding
4234ce112daf5efc8472554fc05eaa2ad1fd4172
[ "MIT" ]
null
null
null
function fadeOut(e){e.style.opacity=1,function n(){(e.style.opacity-=.1)<0?e.style.display="none":requestAnimationFrame(n)}()}function fadeIn(e,n){e.style.opacity=0,e.style.display=n||"block",function n(){var t=parseFloat(e.style.opacity);(t+=.1)>1||(e.style.opacity=t,requestAnimationFrame(n))}()}function showFirstPartMenu(e){for(var n=0,t=menuList.length;n<t;n++)menuList[n].style.display="none";fadeIn(menu),fadeIn(menuList[e]),second.style.display="none",third.style.display="none"}function showSecondPartMenu(e){for(var n=0,t=previewsContainer.length;n<t;n++)previewsContainer[n].style.display="none";second.style.display="block",e.style.display="block"}function showThirdPartMenu(e,n,t){for(var o=0,i=portfolioItem.length;o<i;o++)portfolioItem[o].style.display="none";fadeIn(third),fadeIn(e),fadeIn(n[t])}var first=document.querySelector(".first"),second=document.querySelector(".second"),third=document.querySelector(".third"),menu=document.querySelector(".menu"),menuList=document.querySelectorAll(".menu__list"),menuLink=document.querySelectorAll(".menu__link"),menuLinkRandom=document.querySelector(".menu__link--random"),menuLinkLogos=document.querySelector(".menu__link--logos"),menuLinkLandings=document.querySelector(".menu__link--landings"),menuLinkIllustrations=document.querySelector(".menu__link--illustrations"),menuLinkSimhoko=document.querySelector(".menu__link--simhoko"),menuLinkNaarolman=document.querySelector(".menu__link--naarolman"),menuLinkAnimation=document.querySelector(".menu__link--animation"),menuLinkAdd=document.querySelector(".menu__link--add"),menuLinkMishanya=document.querySelector(".menu__link--mishanya"),menuLinkAndron=document.querySelector(".menu__link--andron"),menuLinkSemin=document.querySelector(".menu__link--semin"),portfolioContainer=document.querySelectorAll(".portfolio__container"),portfolioContainerIllustrations=document.querySelector(".portfolio__container--illustrations"),portfolioContainerAnimation=document.querySelector(".portfolio__container--animation"),portfolioItem=document.querySelectorAll(".portfolio__item"),portfolioItemIllustrations=document.querySelectorAll(".portfolio__item--illustrations"),portfolioItemAnimation=document.querySelectorAll(".portfolio__item--animation"),previewsLink=document.querySelectorAll(".previews__link"),previewsContainer=document.querySelectorAll(".previews__container"),previewsContainerIllustrations=document.querySelector(".previews__container--illustrations"),previewsContainerAnimation=document.querySelector(".previews__container--animation"),previewsItem=document.querySelectorAll(".previews__item"),previewsItemIllustrations=document.querySelectorAll(".previews__item--illustrations"),previewsItemAnimation=document.querySelectorAll(".previews__item--animation"),sidebar=document.querySelector(".sidebar"),icon=document.querySelector(".icon"),navbar=document.querySelector(".navbar"),navbarList=document.querySelector(".navbar__list"),navbarItem=document.querySelectorAll(".navbar__item"),link=document.querySelectorAll(".link");icon.addEventListener("click",function(){"block"==navbar.style.display?(this.style.transform="rotate(0deg)",this.style.margin="0",sidebar.style.height="95px",navbar.style.display="none",navbarList.style.display="none",menu.style.display="none",second.style.display="none",third.style.display="none"):(this.style.transform="rotate(90deg)",this.style.margin="9px 0 0 -6px",sidebar.style.height="100%",navbar.style.display="block",navbarList.style.display="block")}),$(navbarItem).on("click",function(){showFirstPartMenu($(this).index())}),$(menuLinkIllustrations).on("click",function(){showSecondPartMenu(previewsContainerIllustrations)}),$(menuLinkAnimation).on("click",function(){showSecondPartMenu(previewsContainerAnimation)}),$(previewsItemIllustrations).on("click",function(){showThirdPartMenu(portfolioContainerIllustrations,portfolioItemIllustrations,$(this).index())}),$(previewsItemAnimation).on("click",function(){showThirdPartMenu(portfolioContainerAnimation,portfolioItemAnimation,$(this).index())});
4,052
4,052
0.818608
c5f0b6241ce30cacc1834f5845637302d5c9534e
1,215
js
JavaScript
source for jar addition tags/elfinder/resource/server/elfinder_put.js
sam781109/efw3.X
442e7f11d761e62527b4f9b2973977eb4032510b
[ "Apache-2.0" ]
21
2016-09-04T12:15:41.000Z
2021-03-31T19:16:53.000Z
source for jar addition tags/elfinder/resource/server/elfinder_put.js
sam781109/efw3.X
442e7f11d761e62527b4f9b2973977eb4032510b
[ "Apache-2.0" ]
23
2017-01-06T05:44:19.000Z
2021-12-31T15:22:24.000Z
source for jar addition tags/elfinder/resource/server/elfinder_put.js
sam781109/efw3.X
442e7f11d761e62527b4f9b2973977eb4032510b
[ "Apache-2.0" ]
12
2016-08-22T09:14:47.000Z
2021-06-27T07:23:52.000Z
var elfinder_put = {}; elfinder_put.name = "elfinder_put"; elfinder_put.paramsFormat = {};// elfinder_put.fire = function(params) { var volumeId="EFW_"; var readonly=params["readonly"];//参照のみかどうか,true,false var target=params["target"]; var encoding=params["encoding"]; var content=params["content"]; var cwdFile=target.substring(volumeId.length).base64Decode(); file.writeAllLines(cwdFile, content, encoding); var cwdParentFolder=cwdFile.substring(0,cwdFile.lastIndexOf("/")); var files=new Record([file.get(cwdFile,true)]) .map({ "mime":"mineType",//function(){return "directory";}, "ts":function(data){return data.lastModified.getTime();}, "size":"length", "hash":function(data){return volumeId+(cwdFile).base64EncodeURI();}, "name":"name", "phash":function(){return volumeId+(cwdParentFolder).base64EncodeURI();}, "dirs":function(data){if(data.mineType=="directory"&&!data.isBlank){return 1;}else{return 0;}}, "read":function(){return 1;}, "write":function(){if (readonly){return 0;}else{return 1;}}, "locked":function(){if (readonly){return 1;}else{return 0;}}, }) .getArray(); return {"changed":files}; };
40.5
104
0.662551
c5f0c52d9351c1924972cc6ad3cb6c2a4bf26f3a
7,142
js
JavaScript
backend/controllers/boardControllers.js
siddharthroy12/Agrus
ca16038f1bc15d34575d6084efb5103ed774f048
[ "MIT" ]
2
2021-07-22T05:49:54.000Z
2021-08-17T18:04:58.000Z
backend/controllers/boardControllers.js
siddharthroy12/Agrus
ca16038f1bc15d34575d6084efb5103ed774f048
[ "MIT" ]
3
2021-08-12T09:25:33.000Z
2021-08-18T06:18:18.000Z
backend/controllers/boardControllers.js
siddharthroy12/Agrus
ca16038f1bc15d34575d6084efb5103ed774f048
[ "MIT" ]
null
null
null
const asyncHandler = require('express-async-handler') const Board = require('../models/Board') const Post = require('../models/Post') // @desc Create a Board // @route POST /api/board // @access Private const createBoard = asyncHandler(async (req, res) => { const { boardName, description, logo } = req.body if (boardName === undefined || description === undefined) { res.status(400) throw new Error('Provide all feilds') } if (boardName.trim() === '' || description.trim() === '') { res.status(400) throw new Error('Provide all feilds') } // Boardname must be 1 - 20 length and only contains numbers and letters if (boardName < 1 || boardName > 20) { res.status(400) throw new Error('Boardname must be 1-20 characters') } else if (/\W/.test(boardName)) { res.status(400) throw new Error('BoardName can only have numbers and letters') } if (logo === undefined) { logo = '' } const boardExist = await Board.findOne({boardName: boardName.trim()}) if (boardExist) { res.status(400) throw new Error(`Board with the name ${boardName} already exist`) } try { const newBoard = await Board.create({ author: req.user._id, boardName : boardName.trim(), description: description.trim(), logo: logo.trim() }) res.status(200) res.json(newBoard) } catch (error) { res.status(500) throw new Error(error.message) } }) // @desc Search for boards // @route GET /api/board/search/get?search= // @access Public const searchBoards = asyncHandler(async (req, res) => { if (!req.query.search) { res.status(400) throw new Error('search query is empty') } const result = await Board.find({$text: {$search: req.query.search}}) res.status(200) res.json(result) }) // @desc Update a Board (description, logo) // @route PUT /api/board/:boardName // @access Private const updateBoard = asyncHandler(async (req, res) => { const boardName = req.params.boardName // Boardname must be 1 - 20 length and only contains numbers and letters if (boardName < 1 || boardName > 20) { res.status(400) throw new Error('Boardname must be 1-20 characters') } else if (/\W/.test(boardName)) { res.status(400) throw new Error('BoardName can only have numbers and letters') } const board = await Board.findOne({boardName: req.params.boardName}) if (!board) { res.status(404) throw new Error('Board not found') } if (board.author.toString() !== req.user._id.toString() && req.user.isAdmin === false) { res.status(403) throw new Error('You do not have permission') } const { description, logo } = req.body if (description !== undefined) { if (description.trim() === '') { res.status(400) throw new Error('Description cannot be empty') } board.description = description } board.logo = logo === undefined ? board.logo : logo try { await board.save() } catch(error) { res.status(500) throw new Error('Could not update board because of internal error') } res.status(200) res.json(board) }) // @desc Delete a Board (including posts) // @route DELETE /api/board/:boardName // @access Private const deleteBoard = asyncHandler(async (req, res) => { const boardName = req.params.boardName // Boardname must be 1 - 20 length and only contains numbers and letters if (boardName < 1 || boardName > 20) { res.status(400) throw new Error('Boardname must be 1-20 characters') } else if (/\W/.test(boardName)) { res.status(400) throw new Error('BoardName can only have numbers and letters') } const board = await Board.findOne({boardName: req.params.boardName}) if (!board) { res.status(404) throw new Error('Board not found') } if (board.author.toString() !== req.user._id.toString() && req.user.isAdmin === false) { res.status(403) throw new Error('You do not have permission for this') } try { await board.delete() await Post.deleteMany({board: req.params.boardName}) } catch(error) { res.status(500) throw new Error('Could not deleted board because of internal error') } res.status(200) res.json({message: 'Board deleted successfully'}) }) // @desc Get Board Details // @route GET /api/board/:boardName // @access Public const getBoard = asyncHandler(async (req, res) => { const boardName = req.params.boardName // Boardname must be 1 - 20 length and only contains numbers and letters if (boardName < 1 || boardName > 20) { res.status(400) throw new Error('Boardname must be 1-20 characters') } else if (/\W/.test(boardName)) { res.status(400) throw new Error('BoardName can only have numbers and letters') } const board = await Board.findOne({boardName: req.params.boardName}) if (!board) { res.status(404) throw new Error('Board not found') } res.status(200) res.json(board) }) // @desc Get feed of board // @route Get /api/board/:boardname/feed?page=1&perpage=2 // @access Public const getBoardFeed = asyncHandler(async (req, res) => { const { page, perpage } = req.query const { boardname } = req.params if (page === undefined || perpage === undefined) { res.status(400) throw new Error('Provide page and perpage') } var query = await Post.find({ board: boardname }).sort({ createdAt: -1 }).skip((page-1) * perpage).limit(perpage * 1) res.status(200) res.json(query) }) // @desc Join and Leave Board // @route POST /api/board/:boardName/join // @access Private const joinBoard = asyncHandler(async (req, res) => { const boardName = req.params.boardName // Boardname must be 1 - 20 length and only contains numbers and letters if (boardName < 1 || boardName > 20) { res.status(400) throw new Error('Boardname must be 1-20 characters') } else if (/\W/.test(boardName)) { res.status(400) throw new Error('BoardName can only have numbers and letters') } const board = await Board.findOne({boardName: req.params.boardName}) if (!board) { res.status(404) throw new Error('Board Not found') } const hasAlreadyJoined = req.user.joinedBoards.filter((boardId) => { return (boardId.toString() === board._id.toString()) }).length // If already joined then leave if (hasAlreadyJoined) { // Remove the joined board req.user.joinedBoards = req.user.joinedBoards.filter((boardId) => { return (boardId.toString() !== board._id.toString()) }) await Board.updateOne({boardName: req.params.boardName}, { $inc: { members: -1 } }) await req.user.save() res.status(200) res.json({message: 'Board left successfully'}) return } req.user.joinedBoards.push(board._id) await req.user.save() await Board.updateOne({boardName: req.params.boardName}, { $inc: { members: 1 } }) res.status(200) res.json({message: 'Board joined successfully'}) }) // @desc Get All Boards // @route GET /api/board/ // @access Public/Development const getAllBoards = asyncHandler(async (req, res) => { if (process.env.NODE_ENV === 'development') { const boards = await Board.find({}) res.status(200) res.json(boards) } else { res.status(400) throw new Error('Not permitted') } }) module.exports = { createBoard, searchBoards, updateBoard, deleteBoard, getBoard, getBoardFeed, getAllBoards, joinBoard, }
24.972028
118
0.677821
c5f1016ae39e2f130e76827c1636016ecf33c92c
15,377
js
JavaScript
node_modules/@storybook/manager-webpack4/dist/esm/index.js
jeffpuzzo/jp-rosa-react-form-wizard
fa565d0dddd5310ed3eb7c31bff4abee870bf266
[ "MIT" ]
null
null
null
node_modules/@storybook/manager-webpack4/dist/esm/index.js
jeffpuzzo/jp-rosa-react-form-wizard
fa565d0dddd5310ed3eb7c31bff4abee870bf266
[ "MIT" ]
null
null
null
node_modules/@storybook/manager-webpack4/dist/esm/index.js
jeffpuzzo/jp-rosa-react-form-wizard
fa565d0dddd5310ed3eb7c31bff4abee870bf266
[ "MIT" ]
null
null
null
import "core-js/modules/es.promise.js"; import "core-js/modules/es.object.to-string.js"; import "core-js/modules/es.string.iterator.js"; import "core-js/modules/es.array.iterator.js"; import "core-js/modules/web.dom-collections.iterator.js"; import "core-js/modules/es.function.name.js"; import "core-js/modules/web.dom-collections.for-each.js"; import "core-js/modules/es.object.assign.js"; import "core-js/modules/es.symbol.js"; import "core-js/modules/es.symbol.description.js"; import "core-js/modules/es.symbol.iterator.js"; import "core-js/modules/es.array.slice.js"; import "core-js/modules/es.array.from.js"; function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); } function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); } function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; } function _iterableToArrayLimit(arr, i) { if (typeof Symbol === "undefined" || !(Symbol.iterator in Object(arr))) return; var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"] != null) _i["return"](); } finally { if (_d) throw _e; } } return _arr; } function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; } import "regenerator-runtime/runtime.js"; function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) { try { var info = gen[key](arg); var value = info.value; } catch (error) { reject(error); return; } if (info.done) { resolve(value); } else { Promise.resolve(value).then(_next, _throw); } } function _asyncToGenerator(fn) { return function () { var self = this, args = arguments; return new Promise(function (resolve, reject) { var gen = fn.apply(self, args); function _next(value) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "next", value); } function _throw(err) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "throw", err); } _next(undefined); }); }; } import webpack, { ProgressPlugin } from 'webpack'; import webpackDevMiddleware from 'webpack-dev-middleware'; import { logger } from '@storybook/node-logger'; import { useProgressReporting, checkWebpackVersion } from '@storybook/core-common'; import findUp from 'find-up'; import fs from 'fs-extra'; import express from 'express'; import { getManagerWebpackConfig } from './manager-config'; import { clearManagerCache, useManagerCache } from './utils/manager-cache'; import { getPrebuiltDir } from './utils/prebuilt-manager'; var compilation; var reject; export var WEBPACK_VERSION = '4'; export var getConfig = getManagerWebpackConfig; export var makeStatsFromError = function makeStatsFromError(err) { return { hasErrors: function hasErrors() { return true; }, hasWarnings: function hasWarnings() { return false; }, toJson: function toJson() { return { warnings: [], errors: [err] }; } }; }; export var executor = { get: function () { var _get = _asyncToGenerator( /*#__PURE__*/regeneratorRuntime.mark(function _callee(options) { var _yield$options$preset; var version, webpackInstance; return regeneratorRuntime.wrap(function _callee$(_context) { while (1) { switch (_context.prev = _context.next) { case 0: _context.next = 2; return options.presets.apply('webpackVersion'); case 2: _context.t0 = _context.sent; if (_context.t0) { _context.next = 5; break; } _context.t0 = WEBPACK_VERSION; case 5: version = _context.t0; _context.next = 8; return options.presets.apply('webpackInstance'); case 8: _context.t3 = _yield$options$preset = _context.sent; _context.t2 = _context.t3 === null; if (_context.t2) { _context.next = 12; break; } _context.t2 = _yield$options$preset === void 0; case 12: if (!_context.t2) { _context.next = 16; break; } _context.t4 = void 0; _context.next = 17; break; case 16: _context.t4 = _yield$options$preset.default; case 17: _context.t1 = _context.t4; if (_context.t1) { _context.next = 20; break; } _context.t1 = webpack; case 20: webpackInstance = _context.t1; checkWebpackVersion({ version: version }, WEBPACK_VERSION, "manager-webpack".concat(WEBPACK_VERSION)); return _context.abrupt("return", webpackInstance); case 23: case "end": return _context.stop(); } } }, _callee); })); function get(_x) { return _get.apply(this, arguments); } return get; }() }; export var start = /*#__PURE__*/function () { var _ref2 = _asyncToGenerator( /*#__PURE__*/regeneratorRuntime.mark(function _callee2(_ref) { var _config$output; var startTime, options, router, prebuiltDir, config, packageFile, _yield$fs$readJSON, storybookVersion, cacheKey, _yield$Promise$all, _yield$Promise$all2, useCache, hasOutput, webpackInstance, compiler, err, _yield$useProgressRep, handler, modulesCount, middlewareOptions, stats; return regeneratorRuntime.wrap(function _callee2$(_context2) { while (1) { switch (_context2.prev = _context2.next) { case 0: startTime = _ref.startTime, options = _ref.options, router = _ref.router; _context2.next = 3; return getPrebuiltDir(options); case 3: prebuiltDir = _context2.sent; if (!(prebuiltDir && options.managerCache && !options.smokeTest)) { _context2.next = 8; break; } logger.info('=> Using prebuilt manager'); router.use('/', express.static(prebuiltDir)); return _context2.abrupt("return"); case 8: _context2.next = 10; return getConfig(options); case 10: config = _context2.sent; if (!options.cache) { _context2.next = 42; break; } _context2.next = 14; return findUp('package.json', { cwd: __dirname }); case 14: packageFile = _context2.sent; _context2.next = 17; return fs.readJSON(packageFile); case 17: _yield$fs$readJSON = _context2.sent; storybookVersion = _yield$fs$readJSON.version; cacheKey = "managerConfig-webpack".concat(WEBPACK_VERSION, "@").concat(storybookVersion); if (!options.managerCache) { _context2.next = 34; break; } _context2.next = 23; return Promise.all([// useManagerCache sets the cache, so it must run even if outputDir doesn't exist yet, // otherwise the 2nd run won't be able to use the manager built on the 1st run. useManagerCache(cacheKey, options, config), fs.pathExists(options.outputDir)]); case 23: _yield$Promise$all = _context2.sent; _yield$Promise$all2 = _slicedToArray(_yield$Promise$all, 2); useCache = _yield$Promise$all2[0]; hasOutput = _yield$Promise$all2[1]; if (!(useCache && hasOutput && !options.smokeTest)) { _context2.next = 32; break; } logger.line(1); // force starting new line logger.info('=> Using cached manager'); router.use('/', express.static(options.outputDir)); return _context2.abrupt("return"); case 32: _context2.next = 42; break; case 34: _context2.t0 = !options.smokeTest; if (!_context2.t0) { _context2.next = 39; break; } _context2.next = 38; return clearManagerCache(cacheKey, options); case 38: _context2.t0 = _context2.sent; case 39: if (!_context2.t0) { _context2.next = 42; break; } logger.line(1); // force starting new line logger.info('=> Cleared cached manager config'); case 42: _context2.next = 44; return executor.get(options); case 44: webpackInstance = _context2.sent; compiler = webpackInstance(config); if (compiler) { _context2.next = 50; break; } err = "".concat(config.name, ": missing webpack compiler at runtime!"); logger.error(err); // eslint-disable-next-line consistent-return return _context2.abrupt("return", { bail: bail, totalTime: process.hrtime(startTime), stats: makeStatsFromError(err) }); case 50: _context2.next = 52; return useProgressReporting(router, startTime, options); case 52: _yield$useProgressRep = _context2.sent; handler = _yield$useProgressRep.handler; modulesCount = _yield$useProgressRep.modulesCount; new ProgressPlugin({ handler: handler, modulesCount: modulesCount }).apply(compiler); middlewareOptions = { publicPath: (_config$output = config.output) === null || _config$output === void 0 ? void 0 : _config$output.publicPath, writeToDisk: true, watchOptions: config.watchOptions || {} }; compilation = webpackDevMiddleware(compiler, middlewareOptions); router.use(compilation); _context2.next = 61; return new Promise(function (ready, stop) { compilation.waitUntilValid(ready); reject = stop; }); case 61: stats = _context2.sent; if (stats) { _context2.next = 64; break; } throw new Error('no stats after building preview'); case 64: return _context2.abrupt("return", { bail: bail, stats: stats, totalTime: process.hrtime(startTime) }); case 65: case "end": return _context2.stop(); } } }, _callee2); })); return function start(_x2) { return _ref2.apply(this, arguments); }; }(); export var bail = function bail(e) { if (reject) { reject(); } if (process) { try { compilation.close(); logger.warn('Force closed preview build'); } catch (err) { logger.warn('Unable to close preview build!'); } } throw e; }; export var build = /*#__PURE__*/function () { var _ref4 = _asyncToGenerator( /*#__PURE__*/regeneratorRuntime.mark(function _callee3(_ref3) { var options, startTime, webpackInstance, config, statsOptions, compiler, err; return regeneratorRuntime.wrap(function _callee3$(_context3) { while (1) { switch (_context3.prev = _context3.next) { case 0: options = _ref3.options, startTime = _ref3.startTime; logger.info('=> Compiling manager..'); _context3.next = 4; return executor.get(options); case 4: webpackInstance = _context3.sent; _context3.next = 7; return getConfig(options); case 7: config = _context3.sent; statsOptions = typeof config.stats === 'boolean' ? 'minimal' : config.stats; compiler = webpackInstance(config); if (compiler) { _context3.next = 14; break; } err = "".concat(config.name, ": missing webpack compiler at runtime!"); logger.error(err); return _context3.abrupt("return", Promise.resolve(makeStatsFromError(err))); case 14: return _context3.abrupt("return", new Promise(function (succeed, fail) { compiler.run(function (error, stats) { if (error || !stats || stats.hasErrors()) { logger.error('=> Failed to build the manager'); if (error) { logger.error(error.message); } if (stats && (stats.hasErrors() || stats.hasWarnings())) { var _stats$toJson = stats.toJson(statsOptions), warnings = _stats$toJson.warnings, errors = _stats$toJson.errors; errors.forEach(function (e) { return logger.error(e); }); warnings.forEach(function (e) { return logger.error(e); }); } process.exitCode = 1; fail(error || stats); } else { var _statsData$warnings; logger.trace({ message: '=> Manager built', time: process.hrtime(startTime) }); var statsData = stats.toJson(typeof statsOptions === 'string' ? statsOptions : Object.assign({}, statsOptions, { warnings: true })); statsData === null || statsData === void 0 ? void 0 : (_statsData$warnings = statsData.warnings) === null || _statsData$warnings === void 0 ? void 0 : _statsData$warnings.forEach(function (e) { return logger.warn(e); }); succeed(stats); } }); })); case 15: case "end": return _context3.stop(); } } }, _callee3); })); return function build(_x3) { return _ref4.apply(this, arguments); }; }(); export var corePresets = [require.resolve('./presets/manager-preset')]; export var overridePresets = [];
35.430876
489
0.55609
c5f1469de21d32e4b92e71206ac70a30975b1500
1,718
js
JavaScript
test/built-ins/Temporal/Instant/prototype/until/options-undefined.js
polsevev/test262
04cd6da021461653b2fb1076392b6e13ffb9b1d7
[ "BSD-3-Clause" ]
1,849
2015-01-15T12:42:53.000Z
2022-03-30T21:23:59.000Z
test/built-ins/Temporal/Instant/prototype/until/options-undefined.js
polsevev/test262
04cd6da021461653b2fb1076392b6e13ffb9b1d7
[ "BSD-3-Clause" ]
2,157
2015-01-06T05:01:55.000Z
2022-03-31T17:18:08.000Z
test/built-ins/Temporal/Instant/prototype/until/options-undefined.js
polsevev/test262
04cd6da021461653b2fb1076392b6e13ffb9b1d7
[ "BSD-3-Clause" ]
411
2015-01-22T01:40:04.000Z
2022-03-28T19:19:16.000Z
// Copyright (C) 2021 Igalia, S.L. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-temporal.instant.prototype.until description: Verify that undefined options are handled correctly. features: [BigInt, Temporal] ---*/ const earlier = new Temporal.Instant(957270896_987_654_321n); const later = new Temporal.Instant(959949296_987_654_322n); const explicit = earlier.until(later, undefined); assert.sameValue(explicit.years, 0, "default largest unit is seconds"); assert.sameValue(explicit.months, 0, "default largest unit is seconds"); assert.sameValue(explicit.weeks, 0, "default largest unit is seconds"); assert.sameValue(explicit.days, 0, "default largest unit is seconds"); assert.sameValue(explicit.hours, 0, "default largest unit is seconds"); assert.sameValue(explicit.minutes, 0, "default largest unit is seconds"); assert.sameValue(explicit.seconds, 2678400, "default largest unit is seconds"); assert.sameValue(explicit.nanoseconds, 1, "default smallest unit is nanoseconds and no rounding"); const implicit = earlier.until(later); assert.sameValue(implicit.years, 0, "default largest unit is seconds"); assert.sameValue(implicit.months, 0, "default largest unit is seconds"); assert.sameValue(implicit.weeks, 0, "default largest unit is seconds"); assert.sameValue(implicit.days, 0, "default largest unit is seconds"); assert.sameValue(implicit.hours, 0, "default largest unit is seconds"); assert.sameValue(implicit.minutes, 0, "default largest unit is seconds"); assert.sameValue(implicit.seconds, 2678400, "default largest unit is seconds"); assert.sameValue(implicit.nanoseconds, 1, "default smallest unit is nanoseconds and no rounding");
53.6875
98
0.781141
c5f18ffcb9aaa51d317e656e56760a0b7c725f8e
706
js
JavaScript
app/containers/HomePage/Wrappers.js
waterfallstreamair/image-watermark
fbaa3f1d7038cc5de75aed94d620c42c9ac777cb
[ "MIT" ]
null
null
null
app/containers/HomePage/Wrappers.js
waterfallstreamair/image-watermark
fbaa3f1d7038cc5de75aed94d620c42c9ac777cb
[ "MIT" ]
null
null
null
app/containers/HomePage/Wrappers.js
waterfallstreamair/image-watermark
fbaa3f1d7038cc5de75aed94d620c42c9ac777cb
[ "MIT" ]
null
null
null
import styled from 'styled-components'; export const Wrapper = styled.div` display: flex; justify-content: flex-start; flex-flow: row nowrap; align-items: flex-start; align-content: flex-start; margin-top: 2em; margin-left: 1em; padding: 0px; `; export const ItemWrapper = styled.div` position: absolute; margin: 0px; padding: 0px; cursor: pointer; `; export const ImageArea = styled.div` min-width: 1024px; min-height: 576px; background-color: #cccccc; margin: 0px; padding: 0px; `; export const CropWrapper = styled.div` display: flex; justify-content: flex-start; flex-flow: column nowrap; align-items: flex-end; align-content: center; padding: 2em; `;
19.081081
39
0.695467
c5f190940c7a0c0cb262ffac52fe6d9b53864e1c
697
js
JavaScript
index.js
GooseMod-Modules/StatusInAuthor
6fe060c93a216bb2d2f1e741ff0e7b9e489e803c
[ "MIT" ]
1
2021-08-08T00:07:19.000Z
2021-08-08T00:07:19.000Z
index.js
GooseMod-Modules/StatusInAuthor
6fe060c93a216bb2d2f1e741ff0e7b9e489e803c
[ "MIT" ]
null
null
null
index.js
GooseMod-Modules/StatusInAuthor
6fe060c93a216bb2d2f1e741ff0e7b9e489e803c
[ "MIT" ]
null
null
null
import { username } from '@goosemod/patcher'; import { findByProps } from '@goosemod/webpack'; import { React } from '@goosemod/webpack/common'; const { AnimatedStatus } = findByProps('Status', 'AnimatedStatus'); const { getStatus } = findByProps('getStatus', 'getState') let unpatch; export default { goosemodHandlers: { onImport: () => { unpatch = username.patch(({ message }) => React.createElement(AnimatedStatus, { style: { display: 'inline', marginLeft: '4px', marginRight: '2px' }, status: getStatus(message.author.id) }) ); }, onRemove: () => { unpatch(); } } };
21.78125
67
0.563845
c5f1ab83a5fdb4e0e888d17692b5f87d4657b378
193
js
JavaScript
src/containers/Detail/index.js
guanhuihui/by-react
2cb847d7baecb9b5f8c4314e90bd7d252f397dea
[ "MIT" ]
80
2018-09-14T14:46:55.000Z
2022-03-21T15:48:35.000Z
src/containers/Detail/index.js
guanhuihui/by-react
2cb847d7baecb9b5f8c4314e90bd7d252f397dea
[ "MIT" ]
41
2019-12-28T17:16:09.000Z
2022-03-08T22:53:06.000Z
src/containers/Detail/index.js
guanhuihui/by-react
2cb847d7baecb9b5f8c4314e90bd7d252f397dea
[ "MIT" ]
18
2018-09-14T14:47:25.000Z
2022-03-18T00:58:45.000Z
import React from 'react' class Detail extends React.Component { render() { return ( <p>Detail,url参数:{this.props.params.id}</p> ) } } export default Detail
17.545455
54
0.585492
c5f2142dbc1c553a1b88cdfb9d857b240b86b476
3,468
js
JavaScript
src/lib/utilsOld.js
oas-tools/oas-tools
11277d04dc4935bd69e747c963d404956f8edab6
[ "Apache-2.0" ]
7
2022-01-25T08:40:40.000Z
2022-03-24T07:22:32.000Z
src/lib/utilsOld.js
oas-tools/oas-tools
11277d04dc4935bd69e747c963d404956f8edab6
[ "Apache-2.0" ]
19
2022-01-22T21:59:47.000Z
2022-03-12T03:07:08.000Z
src/lib/utilsOld.js
oas-tools/oas-tools
11277d04dc4935bd69e747c963d404956f8edab6
[ "Apache-2.0" ]
2
2022-01-30T09:57:32.000Z
2022-03-27T09:43:33.000Z
//TODO: /* En la reunión del 25 de mayo decidimos: (ver video para concretar más) -Todo lo que no sea alfabetico o dígito se borra para nombres de archivos tanto para archivos como para variables -Despues, a lo que vaya a ser variable no se le quita nada del principio y se le añade var. Casuística: checkear esto -No operationId y no x-router-controller -Si operationId y no x-router-controller -No operationId y si x-router-controller -Sí operationId y si x-router-controller -Si operationId pero erroneo -Project name no válido en package.json */ /** * Removes parameters from the requested path and returns the base path. * @param {string} reqRoutePath - Value or req.route.path (express version). */ export function getBasePath(reqRoutePath) { var basePath = ""; var first = true; var path_array = reqRoutePath.split("/"); for (var i = 0; i < path_array.length; i++) { //if (path_array[i].charAt(0) !== ':' && first == true && path_array[i].charAt(0) !== '') { // TODO: compare to '' or ' '? if ( path_array[i].charAt(0) !== ":" && first == true && path_array[i].charAt(0) !== " " ) { basePath += path_array[i]; first = false; } else if (path_array[i].charAt(0) !== ":") { basePath += path_array[i].charAt(0).toUpperCase() + path_array[i].slice(1, path_array[i].length); } } return basePath; } /** TODO: para paths como /2.0/votos/{talkId}/ swagger crea 2_0votosTalkId que no es válido! qué debe hacer oas-tools? * Generates an operationId according to the method and path requested the same way swagger-codegen does it. * @param {string} method - Requested method. * @param {string} path - Requested path as shown in the oas doc. */ export function generateOperationId(method, path) { var output = ""; var path2 = path.split("/"); for (var i = 1; i < path2.length; i++) { var chunck = path2[i].replace(/[{}]/g, ""); output += chunck.charAt(0).toUpperCase() + chunck.slice(1, chunck.length); } output += method.toUpperCase(); return output.charAt(0).toLowerCase() + output.slice(1, output.length); } /** * The generated controller name is done using the path or the router property and these can have characters which are * allowed for variable names. As services must be required in controller files these names must be normalized. * @param {string} controllerName - Name of controller, either autogenerated or specified using router property. */ export function normalize_controllerName(controllerName) { return controllerName .replace(/^[^a-zA-Z]*/, "") .replace(/[^a-zA-Z0-9]*/g, ""); } /** * OperationId can have values which are not accepted as function names. This function generates a valid name * @param {object} operationId - OpreationId of a given path-method pair. */ export function normalize(operationId) { if (operationId == undefined) { return undefined; } var validOpId = ""; for (var i = 0; i < operationId.length; i++) { if ( operationId[i] == "-" || operationId[i] == " " || operationId[i] == "." ) { validOpId += operationId[i + 1].toUpperCase(); i += 1; } else { validOpId += operationId[i]; } } return validOpId; } /** * Converts a oas-doc type path into an epxress one. * @param {string} oasPath - Path as shown in the oas-doc. */ export function getExpressVersion(oasPath) { return oasPath.replace(/{/g, ":").replace(/}/g, ""); }
34.336634
126
0.6609
c5f2401ec2be569480918adb76a88029dea5ee64
700
js
JavaScript
assets/js/pages/components/extended/blockui.js
leofurqan/cpl_local
883847dcdd45e0c0fee7e71d2006858c3a2f231e
[ "MIT" ]
null
null
null
assets/js/pages/components/extended/blockui.js
leofurqan/cpl_local
883847dcdd45e0c0fee7e71d2006858c3a2f231e
[ "MIT" ]
null
null
null
assets/js/pages/components/extended/blockui.js
leofurqan/cpl_local
883847dcdd45e0c0fee7e71d2006858c3a2f231e
[ "MIT" ]
null
null
null
"use strict"; // Class definition var KTBlockUIDemo = function () { // portlet blocking var demo2 = function () { $('#kt_blockui_2_5').click(function() { KTApp.block('#kt_blockui_2_portlet', { overlayColor: '#000000', type: 'v2', state: 'primary', message: 'Processing...' }); setTimeout(function() { KTApp.unblock('#kt_blockui_2_portlet'); }, 2000); }); } return { // public functions init: function() { demo2(); } }; }(); jQuery(document).ready(function() { KTBlockUIDemo.init(); });
20.588235
55
0.464286
c5f2b534975df180355762427d3b582d5e3c64ad
2,386
js
JavaScript
lib-es6/common/transform.js
Antondj5/mbed-cloud-sdk-javascript
1ea74c5323e4a9d4856db845a1cc1ebe16028ba3
[ "Apache-2.0" ]
null
null
null
lib-es6/common/transform.js
Antondj5/mbed-cloud-sdk-javascript
1ea74c5323e4a9d4856db845a1cc1ebe16028ba3
[ "Apache-2.0" ]
null
null
null
lib-es6/common/transform.js
Antondj5/mbed-cloud-sdk-javascript
1ea74c5323e4a9d4856db845a1cc1ebe16028ba3
[ "Apache-2.0" ]
null
null
null
/* eslint-disable prefer-const */ import { camelToSnake } from "../legacy/common/functions"; /** @summary objectKeysToLowerCase( input, deep, filter ) * returns a new object with all own keys converted to lower case. * The copy can be shallow (default) or deep. * * Circular references is supported during deep copy and the output will have * the same structure. * * By default only objects that have Object as constructor is copied. * It can be changed with the "filter"-function. * * NOTE: If an object has multiple keys that only differs in case, * only the value of the last seen key is saved. The order is usually * in the order that the keys where created. * Exaple : input = {aa:1, aA:2, Aa:3, AA:4}, output = {aa:4}; * * NOTE: To detect circular references, the list of objects already converted * is searched for every new object. If you have too many objects, it will * be slower and slower... * * @param {object} input * The source object * @returns {object} * */ export function objectKeysToSnakeCase(input) { // tslint:disable-next-line:one-variable-per-declaration let idx, key, keys, last, output, self, value; self = objectKeysToSnakeCase; let deep = Infinity; // Check type of input, and throw if null or not an object. if (input === null || typeof input !== "object") { return {}; } keys = Object.keys(input); // Get own keys from object last = keys.length - 1; output = {}; // new object // Create special object to be used during deep copy deep = Object.seal(Object.create(self.prototype, { input: { value: [] }, output: { value: [] }, level: { value: -1, writable: true }, max: { value: deep, writable: false }, })); deep.level += 1; deep.input.push(input); deep.output.push(output); idx = last + 1; while (idx--) { key = keys[last - idx]; // Using [last - idx] to preserve order. value = input[key]; if (!Array.isArray(value) && typeof value === "object" && value && deep.level < deep.max) { if (value.constructor === Object) { value = self(value, deep); } } if (value !== null && value !== undefined) { output[camelToSnake(key)] = value; } } deep.level -= 1; return output; } //# sourceMappingURL=transform.js.map
36.707692
99
0.620704
c5f2f4e1a44fce37cd487ab32200c1ff4312bb0c
2,190
js
JavaScript
src/components/body/children/children-summary.js
luciad/typescript-documentation
6e4ec3b00d44849ebed318781e7d5eb36a4da904
[ "MIT" ]
1
2020-07-09T06:30:08.000Z
2020-07-09T06:30:08.000Z
src/components/body/children/children-summary.js
luciad/typescript-documentation
6e4ec3b00d44849ebed318781e7d5eb36a4da904
[ "MIT" ]
45
2020-07-09T06:35:16.000Z
2020-12-13T14:57:56.000Z
src/components/body/children/children-summary.js
luciad/typescript-documentation
6e4ec3b00d44849ebed318781e7d5eb36a4da904
[ "MIT" ]
null
null
null
import React from "react"; import scrollTo from "gatsby-plugin-smoothscroll" import { getEventOnNames } from "../../../util/util" /** * List of children * * Contains: * - List of all childrens icons and names * - a link to the leaf version of the child * */ export default ({ data }) => { if(!data) return null const children = data.children if(!children || children.length === 0) return null return ( <div className="children-summary"> {data.groups.map(group => ( //map functions, interfaces etc separately <div className="group" key={"key_" + group.title + "_group_div"}> <div className="subsubtitle"> {group.title} </div> <ul className="item-list"> {group.children.map(childID => { //map children within a group, clicking on its name will scroll to its body on the same page const child = children.find(child => (child.id == childID)) if(child.name === "on" && child.kindString === "Event" || child.kindString === "Method"){ const eventOns = getEventOnNames(child) if(eventOns.length > 0) return ( <> {eventOns.map(name => ( <li key={"key_" + name + "_child_summary_entry_noexport eventon"} title="Event"> <button className="clickable-text" onClick={() => scrollTo("#event_on_" + name)} onKeyDown={() => scrollTo("#event_on_" + name)}> {"on " + name} </button> </li> ))} </> ) } return ( <li key={"key_" + child.id + "_child_summary_entry_noexport"} title={child.kindString}> <button className="clickable-text" onClick={() => scrollTo("#id" + child.id)} onKeyDown={() => scrollTo("#id" + child.id)}> {child.name} </button> </li> )})} </ul> </div> ))} </div> ) }
39.107143
157
0.479909
c5f31c14ab22659e2e1a655c132e3a1755bee759
1,534
js
JavaScript
app/compiler/grammar/expressions/id.js
kornalius/simco
ef9a020782803300b1c3b572d70acfe275999cd0
[ "MIT" ]
null
null
null
app/compiler/grammar/expressions/id.js
kornalius/simco
ef9a020782803300b1c3b572d70acfe275999cd0
[ "MIT" ]
null
null
null
app/compiler/grammar/expressions/id.js
kornalius/simco
ef9a020782803300b1c3b572d70acfe275999cd0
[ "MIT" ]
null
null
null
import { error } from '../../../globals.js' import { Node } from '../../parser.js' export default Mixin(superclass => class IdExpressions extends superclass { id_expr (first = true) { if (first && !this.frames.exists(this.token.value)) { error(this, this.token, 'undeclared identifier') return null } let node = new Node(this, this.token) this.next() if (this.is('open_bracket')) { if (!node.data.fields) { node.data.fields = [] } node.data.fields.push(this.array_expr()) } if (this.is('open_paren')) { this.next() node.token._type = 'fn' if (!this.is('close_paren')) { node.data.args = this.exprs('close_paren', false) } this.expect('close_paren') } while (this.is(['id_field', 'open_bracket'])) { if (!node.data.fields) { node.data.fields = [] } node.data.fields.push(this.id_field()) this.skip('comma') } return node } id_field () { let node = new Node(this, this.token) node.data.args = [] node.token._type = 'id' node._field = true this.next() if (this.is('open_bracket')) { if (!node.data.fields) { node.data.fields = [] } node.data.fields.push(this.array_expr()) } if (this.is('open_paren')) { this.next() node.token._type = 'fn' if (!this.is('close_paren')) { node.data.args = this.exprs('close_paren', false) } this.expect('close_paren') } return node } })
25.147541
75
0.558018
c5f381cfbabdde7c5917d903c17eaa7cbb28bf33
1,007
js
JavaScript
src/renderer/router.js
oliujunk/water-fertilizer
9fcd051eb1ba52aea2223909823e8b4a717f982e
[ "MIT" ]
null
null
null
src/renderer/router.js
oliujunk/water-fertilizer
9fcd051eb1ba52aea2223909823e8b4a717f982e
[ "MIT" ]
1
2019-06-18T09:19:11.000Z
2019-06-18T09:19:11.000Z
src/renderer/router.js
oliujunk/water-fertilizer
9fcd051eb1ba52aea2223909823e8b4a717f982e
[ "MIT" ]
3
2019-05-08T10:50:23.000Z
2019-05-17T06:14:49.000Z
import Vue from 'vue'; import Router from 'vue-router'; import Login from '@/components/Login'; import NavMenu from '@/components/NavMenu'; import Home from '@/components/Home'; import AutoControl from '@/components/AutoControl'; import Setting from '@/components/Setting'; Vue.use(Router); const router = new Router({ routes: [ { path: '/', name: 'navMenu', redirect: '/home', component: NavMenu, children: [ { path: '/home', component: Home }, { path: '/autoControl', component: AutoControl }, { path: '/setting', component: Setting }, ], }, { path: '/login', name: 'login', component: Login, }, ], }); router.beforeEach((to, from, next) => { const user = sessionStorage.getItem('user'); if (to.path === '/login') { if (user) { next({ path: '/' }); } else { next(); } } else if (!user) { next({ path: '/login' }); } else { next(); } }); export default router;
20.55102
57
0.554121
c5f412fff5290146e57de72643ac477b48207655
1,906
js
JavaScript
public/panel-assets/js/offers.js
Darktroy/old_mine
7ea6cd1564a9d011314d9b86dc5cf7782a5e7d78
[ "MIT" ]
null
null
null
public/panel-assets/js/offers.js
Darktroy/old_mine
7ea6cd1564a9d011314d9b86dc5cf7782a5e7d78
[ "MIT" ]
null
null
null
public/panel-assets/js/offers.js
Darktroy/old_mine
7ea6cd1564a9d011314d9b86dc5cf7782a5e7d78
[ "MIT" ]
null
null
null
var calls = new Vue({ el: '#offer_actions', data: { status:'', activation:'', }, methods: { approveOffer: function (url) { if (!confirm('Are You Sure You Want To Approve this Offer')) { return false; } axios.get(url, {}).then(response => { alert(response.data.message); window.location.reload(); // console.log(response.data.message); }). catch(error => { console.log(error); }) }, rejectOffer: function (url) { if (!confirm('Are You Sure You Want To Reject this Offer')) { return false; } axios.get(url, {}).then(response => { alert(response.data.message); window.location.reload(); // console.log(response.data.message); }). catch(error => { console.log(error); }) }, activateOffer: function (url) { if (!confirm('Are You Sure You Want To Activate this Offer')) { return false; } axios.get(url, {}).then(response => { alert(response.data.message); window.location.reload(); // console.log(response.data.message); }). catch(error => { console.log(error); }) }, deactivateOffer: function (url) { if (!confirm('Are You Sure You Want To Deactivate this Offer')) { return false; } axios.get(url, {}).then(response => { alert(response.data.message); window.location.reload(); // console.log(response.data.message); }). catch(error => { console.log(error); }) }, } })
31.245902
77
0.450157
c5f50f3d1ef21dea36b20615005791104b26b2e4
858
js
JavaScript
mobile/src/pages/Proposals/styles.js
vassourita/ally
2fc44fa39a6a5c5d073f41b3d2040a2cfa0e30be
[ "MIT" ]
5
2020-06-03T20:35:22.000Z
2021-04-13T12:36:45.000Z
mobile/src/pages/Proposals/styles.js
vassourita/Ally
2fc44fa39a6a5c5d073f41b3d2040a2cfa0e30be
[ "MIT" ]
null
null
null
mobile/src/pages/Proposals/styles.js
vassourita/Ally
2fc44fa39a6a5c5d073f41b3d2040a2cfa0e30be
[ "MIT" ]
1
2021-06-29T21:19:13.000Z
2021-06-29T21:19:13.000Z
import styled from 'styled-components'; export const Container = styled.main``; export const List = styled.ul``; export const Card = styled.li` border: 1px solid #999; margin-bottom: 25px; padding: 20px; &:last-child { margin-bottom: 0; } h3 { font-family: 'Quicksand'; font-size: 21px; margin-bottom: 15px; } p { margin-top: 5px; strong { font-weight: 500; } } div { display: flex; align-items: center; justify-content: space-between; margin-top: 10px; padding-top: 10px; border-top: 1px solid #999; span { display: flex; align-items: center; } svg { margin-left: 5px; } } `; export const NoProposals = styled.span` display: flex; align-items: center; text-align: center; justify-content: center; height: calc(100vh - 260px); `;
17.510204
39
0.604895
c5f5251614d371362e569b07324da8fd6858fe6b
602
js
JavaScript
templarian/msvg/youtube-subscription.js
ArthurClemens/mithril-material-design-icons
4197ea980d98ebf053db0ab645af69e75a730625
[ "MIT" ]
21
2015-10-28T23:32:31.000Z
2019-08-02T23:20:20.000Z
templarian/msvg/youtube-subscription.js
ArthurClemens/mmsvg
4197ea980d98ebf053db0ab645af69e75a730625
[ "MIT" ]
null
null
null
templarian/msvg/youtube-subscription.js
ArthurClemens/mmsvg
4197ea980d98ebf053db0ab645af69e75a730625
[ "MIT" ]
null
null
null
var m = require('mithril'); module.exports = m.trust('<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" baseProfile="full" width="24" height="24" viewBox="0 0 24.00 24.00" enable-background="new 0 0 24.00 24.00" xml:space="preserve"><path fill="#000000" fill-opacity="1" stroke-width="1.33333" stroke-linejoin="miter" d="M 20,8L 4,8L 4,6L 20,6L 20,8 Z M 18,2L 6,2L 6,4L 18,4L 18,2 Z M 22,12L 22,20C 22,21.1 21.1,22 20,22L 4,22C 2.9,22 2,21.1 2,20L 2,12C 2,10.9 2.9,10 4,10L 20,10C 21.1,10 22,10.9 22,12 Z M 16,16L 10,12.73L 10,19.26L 16,16 Z "/></svg>');
200.666667
573
0.669435
c5f5b97e6446544c029690de0822b1e6dac1caad
232
js
JavaScript
Bxin/static/js/index.js
Wang-TaoTao/Bxin
ec9c48005262851eb8f2fa1727a9104c323a1730
[ "MIT" ]
null
null
null
Bxin/static/js/index.js
Wang-TaoTao/Bxin
ec9c48005262851eb8f2fa1727a9104c323a1730
[ "MIT" ]
null
null
null
Bxin/static/js/index.js
Wang-TaoTao/Bxin
ec9c48005262851eb8f2fa1727a9104c323a1730
[ "MIT" ]
null
null
null
var vm = new Vue({ el: '#app', // 修改Vue变量的读取语法,避免和django模板语法冲突 delimiters: ['[[', ']]'], data: { host, f1_tab: 1, // 1F 标签页控制 f2_tab: 1, // 2F 标签页控制 f3_tab: 1, // 3F 标签页控制 }, });
17.846154
35
0.443966
c5f5e5d7d2a3992669df7010f3e7553dd7f41b44
759
js
JavaScript
node_modules/ramda/es/median.js
felixshiftellecon/lets-go-snippetbox
657a5cd6abba902cb3188956d63a4e17c6b449e6
[ "MIT" ]
2,389
2015-06-05T05:06:05.000Z
2022-03-31T07:08:56.000Z
node_modules/ramda/es/median.js
felixshiftellecon/lets-go-snippetbox
657a5cd6abba902cb3188956d63a4e17c6b449e6
[ "MIT" ]
242
2017-08-07T08:57:02.000Z
2022-03-10T12:54:51.000Z
node_modules/ramda/es/median.js
felixshiftellecon/lets-go-snippetbox
657a5cd6abba902cb3188956d63a4e17c6b449e6
[ "MIT" ]
388
2015-10-10T12:45:24.000Z
2022-03-22T18:11:08.000Z
import _curry1 from "./internal/_curry1.js"; import mean from "./mean.js"; /** * Returns the median of the given list of numbers. * * @func * @memberOf R * @since v0.14.0 * @category Math * @sig [Number] -> Number * @param {Array} list * @return {Number} * @see R.mean * @example * * R.median([2, 9, 7]); //=> 7 * R.median([7, 2, 10, 9]); //=> 8 * R.median([]); //=> NaN */ var median = /*#__PURE__*/ _curry1(function median(list) { var len = list.length; if (len === 0) { return NaN; } var width = 2 - len % 2; var idx = (len - width) / 2; return mean(Array.prototype.slice.call(list, 0).sort(function (a, b) { return a < b ? -1 : a > b ? 1 : 0; }).slice(idx, idx + width)); }); export default median;
20.513514
72
0.552042
c5f6247fea46630bf2f5c4ee3a8d9e511d868cea
401
js
JavaScript
packages/substyle-jss/src/ProvideSheet.js
gisaklement/substyle
b19fd3473ae79a118a3f246f01bdda583b6253cd
[ "MIT" ]
1
2020-09-21T12:47:34.000Z
2020-09-21T12:47:34.000Z
packages/substyle-jss/src/ProvideSheet.js
gisaklement/substyle
b19fd3473ae79a118a3f246f01bdda583b6253cd
[ "MIT" ]
null
null
null
packages/substyle-jss/src/ProvideSheet.js
gisaklement/substyle
b19fd3473ae79a118a3f246f01bdda583b6253cd
[ "MIT" ]
1
2019-07-23T21:27:14.000Z
2019-07-23T21:27:14.000Z
import { createElement } from 'react' import { EnhancerProvider } from 'substyle' import injectSheet from 'react-jss' import createPropsDecorator from './createPropsDecorator' const ProvideSheet = ({ sheet, children }) => createElement( EnhancerProvider, { propsDecorator: createPropsDecorator(sheet) }, children ) export default injectSheet({}, { inject: ['sheet'] })(ProvideSheet)
28.642857
67
0.733167
c5f62e34902bff2ead95f212f9c1610f4003b109
451
js
JavaScript
src/components/styles/StyledStartButton.js
lucianmurmurache/tetris-react
c409df7931ee37955e61d788b42dc6d89aa68e20
[ "MIT" ]
1
2021-01-11T23:40:31.000Z
2021-01-11T23:40:31.000Z
src/components/styles/StyledStartButton.js
lucianmurmurache/tetris-react
c409df7931ee37955e61d788b42dc6d89aa68e20
[ "MIT" ]
null
null
null
src/components/styles/StyledStartButton.js
lucianmurmurache/tetris-react
c409df7931ee37955e61d788b42dc6d89aa68e20
[ "MIT" ]
null
null
null
import styled from 'styled-components'; export const StyledStartButton = styled.button` color: #999; width: 100%; padding: 20px; outline: none; font-size: 1rem; cursor: pointer; background: #111; margin: 0 0 20 0; min-height: 30px; border-radius: 20px; border: 4px solid #333; box-sizing: border-box; font-family: Pixel, Arial, Helvetica, sans-serif; transition: all 320ms ease-in-out; &:hover { color: #fff; } `;
20.5
51
0.667406
c5f6c83682978f8e1bcb9de278057e742ed62395
26
js
JavaScript
public/javascripts/app.js
Daniel-M-Ayoub/COMP229Assignment1
ade1afc6b0c429be113f5c26880cf10c642f4245
[ "MIT" ]
null
null
null
public/javascripts/app.js
Daniel-M-Ayoub/COMP229Assignment1
ade1afc6b0c429be113f5c26880cf10c642f4245
[ "MIT" ]
null
null
null
public/javascripts/app.js
Daniel-M-Ayoub/COMP229Assignment1
ade1afc6b0c429be113f5c26880cf10c642f4245
[ "MIT" ]
null
null
null
console.log('client side')
26
26
0.769231
c5f6f77260536213d983a352a0abac53f3b4e28e
1,900
js
JavaScript
sdk/servicebus/service-bus/samples/javascript/receiveMessagesLoop.js
paterasMSFT/azure-sdk-for-js
779b89d1e6918d4a2f30f29cb3e6478b6f4d4aa6
[ "MIT" ]
null
null
null
sdk/servicebus/service-bus/samples/javascript/receiveMessagesLoop.js
paterasMSFT/azure-sdk-for-js
779b89d1e6918d4a2f30f29cb3e6478b6f4d4aa6
[ "MIT" ]
null
null
null
sdk/servicebus/service-bus/samples/javascript/receiveMessagesLoop.js
paterasMSFT/azure-sdk-for-js
779b89d1e6918d4a2f30f29cb3e6478b6f4d4aa6
[ "MIT" ]
null
null
null
/* Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT Licence. **NOTE**: This sample uses the preview of the next version (v7) of the @azure/service-bus package. For samples using the current stable version (v1) of the package, please use the link below: https://github.com/Azure/azure-sdk-for-js/blob/master/sdk/servicebus/service-bus/samples-v1 This sample demonstrates how the receiveMessages() function can be used to receive Service Bus messages in a loop. Setup: Please run "sendMessages.ts" sample before running this to populate the queue/topic */ const { ServiceBusClient } = require("@azure/service-bus"); // Load the .env file if it exists require("dotenv").config(); // Define connection string and related Service Bus entity names here const connectionString = process.env.SERVICE_BUS_CONNECTION_STRING || "<connection string>"; const queueName = process.env.QUEUE_NAME || "<queue name>"; async function main() { const sbClient = new ServiceBusClient(connectionString); // If receiving from a subscription you can use the createReceiver(topicName, subscriptionName) overload // instead. const queueReceiver = sbClient.createReceiver(queueName); // To receive messages from sessions, use getSessionReceiver instead of getReceiver or look at // the sample in sessions.ts file try { for (let i = 0; i < 10; i++) { const messages = await queueReceiver.receiveMessages(1, { maxWaitTimeInMs: 5000 }); if (!messages.length) { console.log("No more messages to receive"); break; } console.log(`Received message #${i}: ${messages[0].body}`); await queueReceiver.completeMessage(messages[0]); } await queueReceiver.close(); } finally { await sbClient.close(); } } main().catch((err) => { console.log("Error occurred: ", err); process.exit(1); });
35.185185
106
0.709474
c5f7181506ff5cd672a33975d3f12531c611df32
1,443
js
JavaScript
models/permission.js
aveliz1999/coins-server
ac64dd437f8465bac59493b3cc0c71b279a2da49
[ "MIT" ]
null
null
null
models/permission.js
aveliz1999/coins-server
ac64dd437f8465bac59493b3cc0c71b279a2da49
[ "MIT" ]
null
null
null
models/permission.js
aveliz1999/coins-server
ac64dd437f8465bac59493b3cc0c71b279a2da49
[ "MIT" ]
null
null
null
'use strict'; module.exports = (sequelize, DataTypes) => { const Permission = sequelize.define('Permission', { id: { allowNull: false, autoIncrement: true, primaryKey: true, type: DataTypes.INTEGER.UNSIGNED }, coin_id: { allowNull: false, type: DataTypes.INTEGER.UNSIGNED }, permission: { allowNull: false, type: DataTypes.ENUM([ "EDIT_COIN_INFO", "DELETE_COIN", "ADD_ROLE", "EDIT_ROLES", "ASSIGN_ROLE", "ADD_ITEM", "DELETE_ITEM", "EDIT_ITEMS" ]) }, level: { allowNull: false, type: DataTypes.INTEGER.UNSIGNED }, createdAt: { allowNull: false, type: DataTypes.DATE }, updatedAt: { allowNull: false, type: DataTypes.DATE } }, { defaultScope: { attributes: { exclude: ['coin_id'], }, include: { all: true } } }); Permission.associate = function (models) { Permission.hasOne(models.User, { sourceKey: 'coin_id', foreignKey: 'id', as: 'coin' }); }; return Permission; };
24.87931
55
0.425502
c5f816845a5565272bb94a84556e7ef21b79a16e
722
js
JavaScript
re_admin/src/api/image.js
ljtnono/re
fd9814c80378369fc0e4ad8b478eb2e73bb75601
[ "MIT" ]
4
2020-01-31T04:01:13.000Z
2020-04-11T05:06:28.000Z
re_admin/src/api/image.js
ljtnono/re
fd9814c80378369fc0e4ad8b478eb2e73bb75601
[ "MIT" ]
16
2020-01-10T06:10:46.000Z
2022-02-18T22:59:31.000Z
re_admin/src/api/image.js
ljtnono/root_element
60aaf0be9e8949033a8584347e5af9b79826c070
[ "MIT" ]
1
2019-12-26T02:16:08.000Z
2019-12-26T02:16:08.000Z
import axios from "axios"; import qs from "querystring"; export const listImagePage = (page, count) => { let p = page || 1; let c = count || 10; return axios.get("/api/image/listImagePage", { params: { page: p, count: c } }); }; export const deleteImage = (index) => { return axios.delete("/api/image/" + index); }; export const search = (searchForm, pageParam) => { const data = qs.stringify({ originName: searchForm.originName, type: searchForm.type, owner: searchForm.owner, page: pageParam.page, count: pageParam.count }); return axios.post("/api/image/search", data, { headers: { "Content-Type": "application/x-www-form-urlencoded" } }); };
21.235294
57
0.616343
c5f8853160e3951111b2ea66ef9b5d91a93a7c21
8,256
js
JavaScript
src/background/modules/OmniboxSearch.js
shanirub/awesome-emoji-picker
f1b82ba4744f2804629168aad763a419b5d89da2
[ "CC-BY-4.0", "Apache-2.0", "CC0-1.0" ]
null
null
null
src/background/modules/OmniboxSearch.js
shanirub/awesome-emoji-picker
f1b82ba4744f2804629168aad763a419b5d89da2
[ "CC-BY-4.0", "Apache-2.0", "CC0-1.0" ]
null
null
null
src/background/modules/OmniboxSearch.js
shanirub/awesome-emoji-picker
f1b82ba4744f2804629168aad763a419b5d89da2
[ "CC-BY-4.0", "Apache-2.0", "CC0-1.0" ]
null
null
null
import * as AddonSettings from "/common/modules/AddonSettings/AddonSettings.js"; import * as BrowserCommunication from "/common/modules/BrowserCommunication/BrowserCommunication.js"; import * as EmojiInteraction from "/common/modules/EmojiInteraction.js"; import { COMMUNICATION_MESSAGE_TYPE } from "/common/modules/data/BrowserCommunicationTypes.js"; const CLIPBOARD_WRITE_PERMISSION = { permissions: ["clipboardWrite"] }; let emojiMartIsLoaded = false; /** * Lazy-load the emoji-mart library. * * This consumes some memory (RAM), up-to 10MB, as remount and other things are loaded. * * @private * @returns {void} */ function loadEmojiMart() { // prevent that it is loaded twice if (emojiMartIsLoaded) { return; } const emojiMartLoader = document.createElement("script"); emojiMartLoader.setAttribute("async", true); emojiMartLoader.setAttribute("src", "/common/lib/emoji-mart-embed/dist/emoji-mart.js"); document.querySelector("head").appendChild(emojiMartLoader); emojiMartIsLoaded = true; } /** * Navigates to the URL in this tab or a new tab. * * @private * @param {string} url the URL that should be opened * @param {string} disposition as per {@link https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/API/omnibox/onInputEntered} * @returns {void} */ function openTabUrl(url, disposition) { switch (disposition) { case "currentTab": browser.tabs.update({ url }); break; case "newForegroundTab": browser.tabs.create({ active: true, url: url }); break; case "newBackgroundTab": browser.tabs.create({ active: false, url: url }); break; } } /** * Trigger the evaluation for the search for emojis. * * @public * @param {string} text the string the user entered * @param {function} suggest function to call to add suggestions * @returns {void} * @see {@link https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/API/omnibox/onInputChanged} */ export function triggerOmnixboxSuggestion(text, suggest) { const searchResult = window.emojiMart.emojiIndex.search(text); // if none are found, return… if (!searchResult) { return; } const suggestions = searchResult.map((emoji) => { return { description: browser.i18n.getMessage("searchResultDescription", [ emoji.native, emoji.name, emoji.colons ]), content: emoji.native }; }); suggest(suggestions); } /** * Triggered when the search is actually executed, but the omnibox feature is disabled. * * @public * @param {string} text the string the user entered or selected * @param {string} disposition how the result should be possible * @returns {Promise} * @see {@link https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/API/omnibox/onInputEntered} */ export async function triggerOmnixboxDisabledSearch(text, disposition) { // if search API is allowed, we just fall-back to default search if (browser.search) { let tabId = undefined; switch (disposition) { case "currentTab": { const currentTab = await browser.tabs.query({ active: true, currentWindow: true }); if (currentTab.length >= 1) { tabId = currentTab[0].id; } // deliberately fall-through } default: // eslint-disable-line no-fallthrough return browser.search.search({ query: text, tabId: tabId }); } } // otherwise we just open the options page return browser.runtime.openOptionsPage(); } /** * Triggered when the search is actually executed. * * @public * @param {string} text the string the user entered or selected * @param {string} disposition how the result should be possible * @returns {void} * @see {@link https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/API/omnibox/onInputEntered} */ export async function triggerOmnixboxSearch(text, disposition) { const searchResult = window.emojiMart.emojiIndex.search(text); const emojiSearch = await AddonSettings.get("emojiSearch"); // if a single emoji is selected or searched for, detect this and return // emoji data try { const foundEmoji = window.emojiMart.getEmojiDataFromNative(text); if (foundEmoji) { searchResult.push(foundEmoji); } } catch (e) { // ignore errors, as we usually expect text strings there and these are // totally fine, too; search may find something here } // emoji itself copied or found if (searchResult.length === 1) { const emojiText = searchResult[0][emojiSearch.resultType]; if (emojiSearch.action === "copy") { // if result is only one emoji, also instantly copy it EmojiInteraction.insertOrCopy(emojiText, { insertIntoPage: false, copyOnlyOnFallback: false, copyToClipboard: true }); } else if (emojiSearch.action === "emojipedia") { const resultUrl = `https://emojipedia.org/search/?q=${emojiText}`; // navigate to URL in current or new tab openTabUrl(resultUrl, disposition); } else { throw new Error(`invalid emojiSearch.resultType setting: ${emojiSearch.resultType}`); } } else { // fallback when we have either too many or too few emoji results // otherwise open popup to show all emoji choices // does not work, because we have no permission // see https://bugzilla.mozilla.org/show_bug.cgi?id=1542358 // browser.browserAction.openPopup(); // search for result in emojipedia const resultUrl = `https://emojipedia.org/search/?q=${text}`; openTabUrl(resultUrl, disposition); } } /** * Enables or disables the search in the omnibar. * * @private * @param {boolean} toEnable * @returns {void} * @throws TypeError */ async function toggleEnabledStatus(toEnable) { // if we do not have the permission for clipboard, and need it for settings, force-disable feature if (!(await browser.permissions.contains(CLIPBOARD_WRITE_PERMISSION))) { const emojiSearch = await AddonSettings.get("emojiSearch"); if (emojiSearch.action === "copy") { toEnable = false; } } // enable it if (toEnable) { // lazy-load emoji-mart loadEmojiMart(); browser.omnibox.onInputChanged.addListener(triggerOmnixboxSuggestion); browser.omnibox.onInputEntered.addListener(triggerOmnixboxSearch); browser.omnibox.onInputEntered.removeListener(triggerOmnixboxDisabledSearch); browser.omnibox.setDefaultSuggestion({ description: browser.i18n.getMessage("searchTipDescription", [ browser.i18n.getMessage("extensionName") ]) }); } else if (!toEnable) { // disable it browser.omnibox.onInputChanged.removeListener(triggerOmnixboxSuggestion); browser.omnibox.onInputEntered.removeListener(triggerOmnixboxSearch); browser.omnibox.onInputEntered.addListener(triggerOmnixboxDisabledSearch); browser.omnibox.setDefaultSuggestion({ description: browser.i18n.getMessage("searchTipDescriptionDisabled", [ browser.i18n.getMessage("extensionName") ]) }); } else { throw new TypeError("isEnabled must be boolean!"); } } /** * Init omnibox search. * * @public * @returns {Promise} */ export async function init() { // load whether it is enabled const emojiSearch = await AddonSettings.get("emojiSearch"); toggleEnabledStatus(emojiSearch.enabled); } BrowserCommunication.addListener(COMMUNICATION_MESSAGE_TYPE.OMNIBAR_TOGGLE, async (request) => { // clear cache by reloading all options await AddonSettings.loadOptions(); return toggleEnabledStatus(request.toEnable); });
31.154717
143
0.647408
c5f88d85ce65bd554a307ae50b0b5d062f2948a2
682
js
JavaScript
package/functions/funcs/hasRole.js
enimamms/aoi.js
0b7d03546ea3b7128bd19c75da1a2a2337646115
[ "Apache-2.0" ]
1
2021-08-21T08:57:21.000Z
2021-08-21T08:57:21.000Z
package/functions/funcs/hasRole.js
enimamms/aoi.js
0b7d03546ea3b7128bd19c75da1a2a2337646115
[ "Apache-2.0" ]
2
2021-09-01T00:45:42.000Z
2022-02-14T12:56:48.000Z
package/functions/funcs/hasRole.js
enimamms/aoi.js
0b7d03546ea3b7128bd19c75da1a2a2337646115
[ "Apache-2.0" ]
1
2021-09-18T09:54:43.000Z
2021-09-18T09:54:43.000Z
module.exports = async d => { const code = d.command.code const inside = d.unpack() const err = d.inside(inside) if (err) return d.error(err) const userID = inside.splits[0] const roleID = inside.splits[1] const guildID = inside.splits[2] || d.message.guild.id const guild = d.client.guilds.cache.get(guildID) if (!guild) return d.error(`❌ Invalid guild ID in \`$hasRole${inside}\``) const member = await guild.members.cache.get(userID) if (!member) return d.error(`❌ Invalid user ID in \`$hasRole${inside}\``) return { code: code.replaceLast(`$hasRole${inside}`, member.roles.cache.has(roleID)) } }
26.230769
83
0.624633
c5f9031b5b0954deccf53917bba0ba00e9121d11
1,226
js
JavaScript
websockets/Send-binary-blob.any.js
jimmywarting/wpt
75d80fa43c763935dff59b3c6b21f4dffa9b03b7
[ "BSD-3-Clause" ]
1
2021-06-02T05:26:11.000Z
2021-06-02T05:26:11.000Z
websockets/Send-binary-blob.any.js
jimmywarting/wpt
75d80fa43c763935dff59b3c6b21f4dffa9b03b7
[ "BSD-3-Clause" ]
28
2021-08-23T05:07:43.000Z
2022-03-28T05:11:05.000Z
websockets/Send-binary-blob.any.js
almajlis/wpt
a1d4dd189a5bdca857845b374946b8002c41d199
[ "BSD-3-Clause" ]
null
null
null
// META: script=constants.sub.js // META: variant= // META: variant=?wpt_flags=h2 // META: variant=?wss var testOpen = async_test("Send binary data on a WebSocket - Blob - Connection should be opened"); var testMessage = async_test("Send binary data on a WebSocket - Blob - Message should be received"); var testClose = async_test("Send binary data on a WebSocket - Blob - Connection should be closed"); var data = ""; var datasize = 65000; var isOpenCalled = false; var wsocket = CreateWebSocket(false, false); wsocket.addEventListener('open', testOpen.step_func(function(evt) { wsocket.binaryType = "blob"; for (var i = 0; i < datasize; i++) data += String.fromCharCode(0); data = new Blob([data]); isOpenCalled = true; wsocket.send(data); testOpen.done(); }), true); wsocket.addEventListener('message', testMessage.step_func(function(evt) { assert_true(evt.data instanceof Blob); assert_equals(evt.data.size, datasize); wsocket.close(); testMessage.done(); }), true); wsocket.addEventListener('close', testClose.step_func(function(evt) { assert_true(isOpenCalled, "WebSocket connection should be open"); assert_true(evt.wasClean, "wasClean should be true"); testClose.done(); }), true);
32.263158
100
0.719413
c5f957368652e19aef6947e80d8bb0533bc7c048
7,079
js
JavaScript
public/component---src-pages-index-en-js-74a24f48efd3b47624c0.js
shunyaendoh/fasfas
4292f90a1d0f4e2481d80de848af78e2c8068f1c
[ "MIT" ]
null
null
null
public/component---src-pages-index-en-js-74a24f48efd3b47624c0.js
shunyaendoh/fasfas
4292f90a1d0f4e2481d80de848af78e2c8068f1c
[ "MIT" ]
null
null
null
public/component---src-pages-index-en-js-74a24f48efd3b47624c0.js
shunyaendoh/fasfas
4292f90a1d0f4e2481d80de848af78e2c8068f1c
[ "MIT" ]
null
null
null
(window.webpackJsonp=window.webpackJsonp||[]).push([[8],{OGtf:function(e,t,a){var l=a("XKFU"),n=a("eeVq"),r=a("vhPU"),o=/"/g,m=function(e,t,a,l){var n=String(r(e)),m="<"+t;return""!==a&&(m+=" "+a+'="'+String(l).replace(o,"&quot;")+'"'),m+">"+n+"</"+t+">"};e.exports=function(e,t){var a={};a[e]=t(m),l(l.P+l.F*n((function(){var t=""[e]('"');return t!==t.toLowerCase()||t.split('"').length>3})),"String",a)}},hcT5:function(e,t,a){"use strict";var l=a("q1tI"),n=a.n(l),r=(a("wcMv"),a("Wbzz")),o=a("JwsL"),m=a("ku9C"),c=a.n(m);var i=function(e){var t,a;function l(){return e.apply(this,arguments)||this}return a=e,(t=l).prototype=Object.create(a.prototype),t.prototype.constructor=t,t.__proto__=a,l.prototype.render=function(){return n.a.createElement("header",{id:"header"},n.a.createElement("div",{className:"inner"},n.a.createElement(r.Link,{to:"/index-en",className:"image avatar"},n.a.createElement("img",{src:c.a,alt:""})),n.a.createElement("h1",null,n.a.createElement("strong",null,"I am Shunya"),", it's my portfolio site.",n.a.createElement("br",null),"It contains my blog.",n.a.createElement("br",null)),n.a.createElement("div",{className:"mx-auto"},n.a.createElement("span",null,n.a.createElement(r.Link,{activeStyle:{display:"none"},to:"/"},"日本語へ")))),n.a.createElement(o.a,null))},l}(n.a.Component);var s=function(e){var t,a;function l(){return e.apply(this,arguments)||this}return a=e,(t=l).prototype=Object.create(a.prototype),t.prototype.constructor=t,t.__proto__=a,l.prototype.render=function(){var e=this.props.children;return n.a.createElement("div",null,n.a.createElement(i,null),e)},l}(n.a.Component);t.a=s},t4D2:function(e,t,a){"use strict";a.r(t);var l=a("q1tI"),n=a.n(l),r=a("TJpk"),o=a.n(r),m=a("Wbzz"),c=a("6xyR"),i=function(e){return n.a.createElement(c.a,{className:"col-3 pl-0 px-2 pt-2 mx-4 mb-3"},n.a.createElement("div",{className:"row"},n.a.createElement(c.a.Img,{variant:"top",src:e.image,className:"col-12",style:{height:"10rem"}}),n.a.createElement(c.a.Body,null,n.a.createElement(c.a.Title,{className:"mt-2 mx-auto",style:{height:"3rem",overflow:"scroll"}},e.title),n.a.createElement("ul",{className:"actions"},n.a.createElement("li",null,n.a.createElement(m.Link,{to:e.readMore,className:"button"},"Read More"))))))},s=a("hcT5"),u=(a("tUrg"),function(e){return n.a.createElement(c.a,{className:"col-5 pl-0 px-2 pt-2 mx-4 mb-5"},n.a.createElement("div",{className:"row"},n.a.createElement("a",{href:e.link},n.a.createElement(c.a.Img,{variant:"top",src:e.image,className:"col-12",style:{height:"10rem",width:"100%"}})),n.a.createElement(c.a.Body,null,n.a.createElement(c.a.Title,{className:"mt-2 ml-2",style:{height:"2rem"}},e.title))))});a.d(t,"query",(function(){return h}));t.default=function(e){var t=e.data;return n.a.createElement(s.a,null,n.a.createElement(o.a,null,n.a.createElement("title",null,"ShunyaEndoh - HOME"),n.a.createElement("meta",{name:"description",content:"This is Home page!"})),n.a.createElement("div",{id:"main"},n.a.createElement("section",{id:"one"},n.a.createElement("header",{className:"major"},n.a.createElement("h2",null,"Hi, There. This is Shunya Endoh.")),n.a.createElement("p",null,"I'm a 22-year-old Japanese. From Tokyo-Japan.",n.a.createElement("br",null)," My interests are mainly about programming.",n.a.createElement("br",null)," Now, I'm into Gatsby.js. That's why I created this web site.",n.a.createElement("br",null),"If you want to see the details about me, click the button below."),n.a.createElement("ul",{className:"actions"},n.a.createElement("li",null,n.a.createElement(m.Link,{to:"/about-en",className:"button"},"More Info")))),n.a.createElement("section",{id:"two"},n.a.createElement("h2",null,"Blog Posts ( Written in Japanese )"),n.a.createElement("div",{className:"row",style:{overflow:"scroll",height:"20.2rem"}},t.allMarkdownRemark.nodes.map((function(e){return n.a.createElement(i,{image:e.frontmatter.image,title:e.frontmatter.title,excerpt:e.excerpt,readMore:e.fields.slug})})))),n.a.createElement("section",{id:"three"},n.a.createElement("h2",null,"Work"),n.a.createElement("div",{className:"row",style:{overflow:"scroll",height:"15.2rem"}},n.a.createElement(u,{link:"https://vue-slack-prod-da6b0.web.app/",image:"https://miro.medium.com/max/3920/1*Vc0m5dS9SlhieEbR6n8wFg.jpeg",title:"Real time chat tool (Vue.js)"}),n.a.createElement(u,{link:"https://www.ideathon.site/",image:"https://xzxzyzyz.com/img/feature/laravel-57-released.png",title:"Matching service (Laravel)"}),n.a.createElement(u,{link:"https://shunyaendoh1215.github.io/Portfolio-vue/",image:"https://miro.medium.com/max/3920/1*Vc0m5dS9SlhieEbR6n8wFg.jpeg",title:"Portfolio (Vue.js)"}),n.a.createElement(u,{link:"https://shunyaendoh1215.github.io/Portfolio-vue/",image:"https://secure.meetupstatic.com/photos/event/5/d/4/d/600_478883885.jpeg",title:"Portfolio + Blog (Gatsby.js)"}),n.a.createElement(u,{link:"https://shunyaendoh-com.netlify.com/",image:"http://d2ln1xbi067hum.cloudfront.net/course_offerings/logos/000/003/047/original/maxresdefault.jpg?1455609464",title:"Portfolio (HTML)"}),n.a.createElement(u,{link:"https://55web-a-shunyaendoh.netlify.com/",image:"http://d2ln1xbi067hum.cloudfront.net/course_offerings/logos/000/003/047/original/maxresdefault.jpg?1455609464",title:"Seat-list+Portfolio (HTML)"}))),n.a.createElement("section",{id:"four"},n.a.createElement("h2",null,"Get In Touch"),n.a.createElement("p",null,"If you want to contact me, please feel free to send a message."),n.a.createElement("div",{className:"row"},n.a.createElement("div",{className:"8u 12u$(small)"},n.a.createElement("form",{method:"post",action:"#"},n.a.createElement("div",{className:"row uniform 50%"},n.a.createElement("div",{className:"6u 12u$(xsmall)"},n.a.createElement("input",{type:"text",name:"name",id:"name",placeholder:"Name"})),n.a.createElement("div",{className:"6u 12u$(xsmall)"},n.a.createElement("input",{type:"email",name:"email",id:"email",placeholder:"Email"})),n.a.createElement("div",{className:"12u"},n.a.createElement("textarea",{name:"message",id:"message",placeholder:"Message",rows:"4"})))),n.a.createElement("ul",{className:"actions"},n.a.createElement("li",null,n.a.createElement("input",{type:"submit",value:"Send Message"})))),n.a.createElement("div",{className:"4u 12u$(small)"},n.a.createElement("ul",{className:"labeled-icons"},n.a.createElement("li",null,n.a.createElement("h3",{className:"icon fa-home"},n.a.createElement("span",{className:"label"},"Address")),"Tokyo,Nishi-Tokyo-shi"),n.a.createElement("li",null,n.a.createElement("h3",{className:"icon fa-search"},n.a.createElement("span",{className:"label"},"Qiita")),"shunyaendoh"),n.a.createElement("li",null,n.a.createElement("h3",{className:"icon fa-envelope-o"},n.a.createElement("span",{className:"label"},"Email")),n.a.createElement("a",{href:"mailto:shunya.endoh@gmail.com"},"shunya.endoh@gmail.com"))))))))};var h="3783418864"},tUrg:function(e,t,a){"use strict";a("OGtf")("link",(function(e){return function(t){return e(this,"a","href",t)}}))}}]); //# sourceMappingURL=component---src-pages-index-en-js-74a24f48efd3b47624c0.js.map
3,539.5
6,996
0.708998
c5fa3c3d9dded7a92b8d9db6fccf1e1439dcce8f
3,679
js
JavaScript
src-docs/src/views/selectable/selectable_popover.js
nrdlab/eui
5d29a4ae35802765e7d2fdf54200a60aae38f54c
[ "Apache-2.0" ]
2
2020-06-27T13:11:53.000Z
2020-09-02T01:03:42.000Z
src-docs/src/views/selectable/selectable_popover.js
nrdlab/eui
5d29a4ae35802765e7d2fdf54200a60aae38f54c
[ "Apache-2.0" ]
null
null
null
src-docs/src/views/selectable/selectable_popover.js
nrdlab/eui
5d29a4ae35802765e7d2fdf54200a60aae38f54c
[ "Apache-2.0" ]
1
2020-09-02T01:03:43.000Z
2020-09-02T01:03:43.000Z
import React, { Fragment, useState } from 'react'; import { EuiButton, EuiCode, EuiFlyout, EuiFlyoutFooter, EuiFlyoutHeader, EuiPopover, EuiPopoverFooter, EuiPopoverTitle, EuiSelectable, EuiSpacer, EuiTitle, } from '../../../../src/components'; import { Comparators } from '../../../../src/services/sort'; import { Options } from './data'; import { createDataStore } from '../tables/data_store'; export default () => { const countriesStore = createDataStore().countries.map(country => { return { id: country.code, label: `${country.name}`, append: country.flag, }; }); const [options, setOptions] = useState(Options); const [countries, setCountries] = useState(countriesStore); const [isPopoverOpen, setIsPopoverOpen] = useState(false); const [isFlyoutVisible, setIsFlyoutVisible] = useState(false); const onButtonClick = () => { setOptions(options.slice().sort(Comparators.property('checked'))); setIsPopoverOpen(!isPopoverOpen); }; const closePopover = () => { setIsPopoverOpen(false); }; const onChange = options => { setOptions(options); }; const onFlyoutChange = options => { setCountries(options); }; const closeFlyout = () => { setIsFlyoutVisible(false); }; const showFlyout = () => { setIsFlyoutVisible(true); }; const button = ( <EuiButton iconType="arrowDown" iconSide="right" onClick={onButtonClick}> Show popover </EuiButton> ); return ( <Fragment> <EuiPopover id="popover" panelPaddingSize="none" button={button} isOpen={isPopoverOpen} closePopover={closePopover}> <EuiSelectable searchable searchProps={{ placeholder: 'Filter list', compressed: true, }} options={options} onChange={onChange}> {(list, search) => ( <div style={{ width: 240 }}> <EuiPopoverTitle>{search}</EuiPopoverTitle> {list} <EuiPopoverFooter> <EuiButton size="s" fullWidth> Manage this list </EuiButton> </EuiPopoverFooter> </div> )} </EuiSelectable> </EuiPopover> <EuiSpacer /> <EuiButton onClick={showFlyout}>Show flyout</EuiButton> {isFlyoutVisible && ( <EuiFlyout ownFocus onClose={closeFlyout} aria-labelledby="flyoutTitle"> <EuiSelectable searchable options={countries} onChange={onFlyoutChange} height="full"> {(list, search) => ( <Fragment> <EuiFlyoutHeader hasBorder> <EuiTitle size="m"> <h2 id="flyoutTitle">Be mindful of the flexbox</h2> </EuiTitle> <EuiSpacer /> {search} </EuiFlyoutHeader> <EuiSpacer size="xs" /> {list} </Fragment> )} </EuiSelectable> <EuiSpacer size="xs" /> <EuiFlyoutFooter> <EuiButton fill>Some extra action</EuiButton> </EuiFlyoutFooter> </EuiFlyout> )} <EuiSpacer /> <EuiTitle size="xxs"> <h4> Using <EuiCode language="js">listProps.bordered=true</EuiCode> </h4> </EuiTitle> <EuiSpacer /> <EuiSelectable options={options} onChange={() => {}} style={{ width: 300 }} listProps={{ bordered: true }}> {list => list} </EuiSelectable> </Fragment> ); };
25.027211
80
0.543898
c5fabbd0482cf72735be09e05d1bbcf1859b4909
2,242
js
JavaScript
node_modules/molstar/lib/mol-math/geometry/gaussian-density.js
Harry-Hopkinson/VSCoding-Sequence
0bb8a8658cb3f91d8d6dfc0467e060e415568a8a
[ "MIT" ]
30
2021-11-29T17:38:12.000Z
2022-02-11T21:59:22.000Z
node_modules/molstar/lib/mol-math/geometry/gaussian-density.js
Harry-Hopkinson/VSCoding-Sequence
0bb8a8658cb3f91d8d6dfc0467e060e415568a8a
[ "MIT" ]
7
2021-11-29T22:03:21.000Z
2022-02-15T07:51:12.000Z
node_modules/molstar/lib/mol-math/geometry/gaussian-density.js
Harry-Hopkinson/VSCoding-Sequence
0bb8a8658cb3f91d8d6dfc0467e060e415568a8a
[ "MIT" ]
3
2021-12-04T20:30:29.000Z
2022-02-11T21:59:42.000Z
/** * Copyright (c) 2018-2021 mol* contributors, licensed under MIT, See LICENSE file for more info. * * @author Alexander Rose <alexander.rose@weirdbyte.de> */ import { __awaiter, __generator } from "tslib"; import { GaussianDensityTexture2d, GaussianDensityTexture3d } from './gaussian-density/gpu'; import { Task } from '../../mol-task/task'; import { GaussianDensityCPU } from './gaussian-density/cpu'; export var DefaultGaussianDensityProps = { resolution: 1, radiusOffset: 0, smoothness: 1.5, }; export function computeGaussianDensity(position, box, radius, props) { var _this = this; return Task.create('Gaussian Density', function (ctx) { return __awaiter(_this, void 0, void 0, function () { return __generator(this, function (_a) { switch (_a.label) { case 0: return [4 /*yield*/, GaussianDensityCPU(ctx, position, box, radius, props)]; case 1: return [2 /*return*/, _a.sent()]; } }); }); }); } export function computeGaussianDensityTexture(position, box, radius, props, webgl, texture) { return _computeGaussianDensityTexture(webgl.isWebGL2 ? '3d' : '2d', position, box, radius, props, webgl, texture); } export function computeGaussianDensityTexture2d(position, box, radius, props, webgl, texture) { return _computeGaussianDensityTexture('2d', position, box, radius, props, webgl, texture); } export function computeGaussianDensityTexture3d(position, box, radius, props, webgl, texture) { return _computeGaussianDensityTexture('2d', position, box, radius, props, webgl, texture); } function _computeGaussianDensityTexture(type, position, box, radius, props, webgl, texture) { var _this = this; return Task.create('Gaussian Density', function (ctx) { return __awaiter(_this, void 0, void 0, function () { return __generator(this, function (_a) { return [2 /*return*/, type === '2d' ? GaussianDensityTexture2d(webgl, position, box, radius, false, props, texture) : GaussianDensityTexture3d(webgl, position, box, radius, props, texture)]; }); }); }); } //# sourceMappingURL=gaussian-density.js.map
49.822222
119
0.664585
c5fb08d58bd4c3d701a2a54eb9fba91432b9b481
1,484
js
JavaScript
frontend/app/components/App/WithdrawCurrency/index.js
1Blackdiamondsc/bank-project
56a997415f23dd4fcb2901c5f2c18721baf3684e
[ "MIT" ]
9
2020-09-30T16:32:11.000Z
2021-04-26T00:04:17.000Z
frontend/app/components/App/WithdrawCurrency/index.js
1Blackdiamondsc/bank-project
56a997415f23dd4fcb2901c5f2c18721baf3684e
[ "MIT" ]
null
null
null
frontend/app/components/App/WithdrawCurrency/index.js
1Blackdiamondsc/bank-project
56a997415f23dd4fcb2901c5f2c18721baf3684e
[ "MIT" ]
1
2021-02-24T11:14:40.000Z
2021-02-24T11:14:40.000Z
/** * * CurrencyToggle * */ /* * * LanguageToggle * */ import React from 'react'; import { useSelector, useDispatch } from 'react-redux'; import { createStructuredSelector } from 'reselect'; import { useInjectSaga } from 'utils/injectSaga'; import { useInjectReducer } from 'utils/injectReducer'; import saga from 'containers/WithdrawPage/saga'; import reducer from 'containers/WithdrawPage/reducer'; // Import Components import Toggle from './Toggle'; import messages from './messages'; // Import Actions import { changeWithdrawCurrencyAction } from 'containers/WithdrawPage/actions'; // Import Selectors import { makeCurrencySelector, makeCurrencyIdSelector, makeWithdrawCurrency, } from 'containers/WithdrawPage/selectors'; const stateSelector = createStructuredSelector({ currency: makeCurrencySelector(), currencyId: makeCurrencyIdSelector(), withdrawCurrency: makeWithdrawCurrency(), }); const key = 'settingsPage'; export default function CurrencyToggle() { const dispatch = useDispatch(); const onChangeCurrency = e => dispatch(changeWithdrawCurrencyAction(parseInt(e.target.value, 10), e.target.options[e.target.selectedIndex].text)); const { currency, currencyId,withdrawCurrency } = useSelector(stateSelector); useInjectReducer({ key, reducer }); useInjectSaga({ key, saga }); return ( <Toggle value={withdrawCurrency} values={currency} messages={messages} onToggle={onChangeCurrency} /> ); }
24.327869
120
0.736523
c5fb1201b8f5df6df47467e1d62ff543f7446a72
1,669
js
JavaScript
variant/get.js
dpjanes/iotdb-shopify
adf26c2565028f5f72528cdb26ffecca4ace6082
[ "Apache-2.0" ]
null
null
null
variant/get.js
dpjanes/iotdb-shopify
adf26c2565028f5f72528cdb26ffecca4ace6082
[ "Apache-2.0" ]
null
null
null
variant/get.js
dpjanes/iotdb-shopify
adf26c2565028f5f72528cdb26ffecca4ace6082
[ "Apache-2.0" ]
null
null
null
/* * product/variant/get.js * * David Janes * IOTDB.org * 2019-12-10 * * Copyright (2013-2020) David P. Janes * * 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. */ "use strict" const _ = require("iotdb-helpers") const fetch = require("iotdb-fetch") const logger = require("../logger")(__filename) const _util = require("../lib/_util") /** */ const get = _.promise((self, done) => { const shopify = require("..") _.promise(self) .validate(get) .then(shopify.variant.synthesize) .make(sd => { sd.url = `${_util.api(sd)}/variants/${sd.variant.id}.json` }) .then(fetch.get) .then(fetch.go.json) .except(_.error.otherwise(404, { json: null })) .make(sd => { sd.variant = sd.json && sd.json.variant || null }) .end(done, self, get) }) get.method = "variant.get" get.description = `Get a Variant` get.requires = { shopify: _.is.shopify, variant: _.is.shopify.flexible, } get.produces = { variant: _.is.shopify.variant, } get.params = { variant: _.p.normal, } get.p = _.p(get) /** * API */ exports.get = get
23.507042
76
0.622528
c5fb64a7e75c963fb5f3e9b6abfad62144397795
1,034
js
JavaScript
src/plugins/mobile-ui/public/js/mobile-ui.js
svvsdIC/Poseidon-raspberryPi
03186814fb4c5a56f95881c55ab7a8e688a9e0f2
[ "MIT" ]
64
2015-08-13T03:17:52.000Z
2022-01-13T11:55:03.000Z
src/plugins/mobile-ui/public/js/mobile-ui.js
svvsdIC/Poseidon-raspberryPi
03186814fb4c5a56f95881c55ab7a8e688a9e0f2
[ "MIT" ]
58
2015-08-10T21:40:30.000Z
2017-07-13T09:39:02.000Z
src/plugins/mobile-ui/public/js/mobile-ui.js
svvsdIC/Poseidon-raspberryPi
03186814fb4c5a56f95881c55ab7a8e688a9e0f2
[ "MIT" ]
115
2015-07-03T03:00:42.000Z
2022-03-25T03:05:48.000Z
( function (window, $, undefined) { 'use strict'; console.log( "Loading mobile ui..." ); if (window.openrovtheme!=='mobile-ui') return; console.log( "Loaded mobile ui." ); var plugins = namespace('plugins'); plugins.mobileUi = function mobileUi(cockpit) { var jsFileLocation = urlOfJsFile('mobile-ui.js'); this.cockpit = cockpit; this.name = 'mobile-ui'; // for the settings this.viewName = 'Mobile UI'; // for the UI }; plugins.mobileUi.prototype.listen = function listen(){ $('#t')[0]['cockpitEventEmitter'] = this.cockpit; window.cockpit_int.i18n.loadNamespace('mobile-ui', function() { }); var key_s = window.cockpit_int.i18n.options.keyseparator; var ns_s = window.cockpit_int.i18n.options.nsseparator; var prefix = 'mobile-ui'; $('#t')[0]['__']=function(str){ window.cockpit_int.i18n.options.ns.defaultNs = prefix return window.cockpit_int.__(str); }; } window.Cockpit.plugins.push(plugins.mobileUi); }(window, jQuery));
27.945946
72
0.647002
c5fbb9fdfd42e723554b386e617fa72f4c9ba155
26,191
js
JavaScript
packages/railgun_prototype/core/1.0.0/js/lazyloaded.js
drago2308/WaniKani-Classroom
fbe3521fdab510dfa8607bcaf1a167a147e562da
[ "MIT" ]
null
null
null
packages/railgun_prototype/core/1.0.0/js/lazyloaded.js
drago2308/WaniKani-Classroom
fbe3521fdab510dfa8607bcaf1a167a147e562da
[ "MIT" ]
null
null
null
packages/railgun_prototype/core/1.0.0/js/lazyloaded.js
drago2308/WaniKani-Classroom
fbe3521fdab510dfa8607bcaf1a167a147e562da
[ "MIT" ]
null
null
null
// Scroll reveal And Defaults !function(e,t){"function"==typeof define&&define.amd?define(t):"object"==typeof exports?module.exports=t(require,exports,module):e.ScrollReveal=t()}(this,function(e,t,n){return function(){"use strict";var e,t,n;this.ScrollReveal=function(){function i(n){return"undefined"==typeof this||Object.getPrototypeOf(this)!==i.prototype?new i(n):(e=this,e.tools=new t,e.isSupported()?(e.tools.extend(e.defaults,n||{}),o(e.defaults),e.store={elements:{},containers:[]},e.sequences={},e.history=[],e.uid=0,e.initialized=!1):"undefined"!=typeof console&&null!==console,e)}function o(t){var n=t.container;return n&&"string"==typeof n?t.container=window.document.querySelector(n):(n&&!e.tools.isNode(n)&&(t.container=null),null==n&&(t.container=window.document.documentElement),t.container)}function r(){return++e.uid}function s(t,n){t.config?t.config=e.tools.extendClone(t.config,n):t.config=e.tools.extendClone(e.defaults,n),"top"===t.config.origin||"bottom"===t.config.origin?t.config.axis="Y":t.config.axis="X","top"!==t.config.origin&&"left"!==t.config.origin||(t.config.distance="-"+t.config.distance)}function a(e){var t=window.getComputedStyle(e.domEl);e.styles||(e.styles={transition:{},transform:{},computed:{}},e.styles.inline=e.domEl.getAttribute("style")||"",e.styles.inline+="; visibility: visible; ",e.styles.computed.opacity=t.opacity,t.transition&&"all 0s ease 0s"!=t.transition?e.styles.computed.transition=t.transition+", ":e.styles.computed.transition=""),e.styles.transition.instant=l(e,0),e.styles.transition.delayed=l(e,e.config.delay),e.styles.transform.initial=" -webkit-transform:",e.styles.transform.target=" -webkit-transform:",c(e),e.styles.transform.initial+="transform:",e.styles.transform.target+="transform:",c(e)}function l(e,t){var n=e.config;return"-webkit-transition: "+e.styles.computed.transition+"-webkit-transform "+n.duration/1e3+"s "+n.easing+" "+t/1e3+"s, opacity "+n.duration/1e3+"s "+n.easing+" "+t/1e3+"s; transition: "+e.styles.computed.transition+"transform "+n.duration/1e3+"s "+n.easing+" "+t/1e3+"s, opacity "+n.duration/1e3+"s "+n.easing+" "+t/1e3+"s; "}function c(e){var t=e.config,n=e.styles.transform;parseInt(t.distance)&&(n.initial+=" translate"+t.axis+"("+t.distance+")",n.target+=" translate"+t.axis+"(0)"),t.scale&&(n.initial+=" scale("+t.scale+")",n.target+=" scale(1)"),t.rotate.x&&(n.initial+=" rotateX("+t.rotate.x+"deg)",n.target+=" rotateX(0)"),t.rotate.y&&(n.initial+=" rotateY("+t.rotate.y+"deg)",n.target+=" rotateY(0)"),t.rotate.z&&(n.initial+=" rotateZ("+t.rotate.z+"deg)",n.target+=" rotateZ(0)"),n.initial+="; opacity: "+t.opacity+";",n.target+="; opacity: "+e.styles.computed.opacity+";"}function f(t){var n=t.config.container;n&&-1==e.store.containers.indexOf(n)&&e.store.containers.push(t.config.container),e.store.elements[t.id]=t}function u(t,n,i){var o={selector:t,config:n,interval:i};e.history.push(o)}function d(){if(e.isSupported()){p();for(var t=0;t<e.store.containers.length;t++)e.store.containers[t].addEventListener("scroll",y),e.store.containers[t].addEventListener("resize",y);e.initialized||(window.addEventListener("scroll",y),window.addEventListener("resize",y),e.initialized=!0)}return e}function y(){n(p)}function m(){var t,n,i,o;e.tools.forOwn(e.sequences,function(r){o=e.sequences[r],t=!1;for(var s=0;s<o.elemIds.length;s++)i=o.elemIds[s],n=e.store.elements[i],O(n)&&!t&&(t=!0);o.active=t})}function p(){var t,n;m(),e.tools.forOwn(e.store.elements,function(i){n=e.store.elements[i],t=b(n),v(n)?(t?n.domEl.setAttribute("style",n.styles.inline+n.styles.transform.target+n.styles.transition.delayed):n.domEl.setAttribute("style",n.styles.inline+n.styles.transform.target+n.styles.transition.instant),w("reveal",n,t),n.revealing=!0,n.seen=!0,n.sequence&&g(n,t)):h(n)&&(n.domEl.setAttribute("style",n.styles.inline+n.styles.transform.initial+n.styles.transition.instant),w("reset",n),n.revealing=!1)})}function g(t,n){var i=0,o=0,r=e.sequences[t.sequence.id];r.blocked=!0,n&&"onload"==t.config.useDelay&&(o=t.config.delay),t.sequence.timer&&(i=Math.abs(t.sequence.timer.started-new Date),window.clearTimeout(t.sequence.timer)),t.sequence.timer={started:new Date},t.sequence.timer.clock=window.setTimeout(function(){r.blocked=!1,t.sequence.timer=null,y()},Math.abs(r.interval)+o-i)}function w(e,t,n){var i=0,o=0,r="after";switch(e){case"reveal":o=t.config.duration,n&&(o+=t.config.delay),r+="Reveal";break;case"reset":o=t.config.duration,r+="Reset"}t.timer&&(i=Math.abs(t.timer.started-new Date),window.clearTimeout(t.timer.clock)),t.timer={started:new Date},t.timer.clock=window.setTimeout(function(){t.config[r](t.domEl),t.timer=null},o-i)}function v(t){if(t.sequence){var n=e.sequences[t.sequence.id];return n.active&&!n.blocked&&!t.revealing&&!t.disabled}return O(t)&&!t.revealing&&!t.disabled}function b(t){var n=t.config.useDelay;return"always"===n||"onload"===n&&!e.initialized||"once"===n&&!t.seen}function h(t){if(t.sequence){var n=e.sequences[t.sequence.id];return!n.active&&t.config.reset&&t.revealing&&!t.disabled}return!O(t)&&t.config.reset&&t.revealing&&!t.disabled}function x(e){return{width:e.clientWidth,height:e.clientHeight}}function q(e){if(e&&e!==window.document.documentElement){var t=E(e);return{x:e.scrollLeft+t.left,y:e.scrollTop+t.top}}return{x:window.pageXOffset,y:window.pageYOffset}}function E(e){var t=0,n=0,i=e.offsetHeight,o=e.offsetWidth;do isNaN(e.offsetTop)||(t+=e.offsetTop),isNaN(e.offsetLeft)||(n+=e.offsetLeft);while(e=e.offsetParent);return{top:t,left:n,height:i,width:o}}function O(e){function t(){var t=c+a*s,n=f+l*s,i=u-a*s,y=d-l*s,m=r.y+e.config.viewOffset.top,p=r.x+e.config.viewOffset.left,g=r.y-e.config.viewOffset.bottom+o.height,w=r.x-e.config.viewOffset.right+o.width;return g>t&&i>m&&n>p&&w>y}function n(){return"fixed"===window.getComputedStyle(e.domEl).position}var i=E(e.domEl),o=x(e.config.container),r=q(e.config.container),s=e.config.viewFactor,a=i.height,l=i.width,c=i.top,f=i.left,u=c+a,d=f+l;return t()||n()}return i.prototype.defaults={origin:"bottom",distance:"20px",duration:500,delay:0,rotate:{x:0,y:0,z:0},opacity:0,scale:.9,easing:"cubic-bezier(0.6, 0.2, 0.1, 1)",container:null,mobile:!0,reset:!1,useDelay:"always",viewFactor:.2,viewOffset:{top:0,right:0,bottom:0,left:0},afterReveal:function(e){},afterReset:function(e){}},i.prototype.isSupported=function(){var e=document.documentElement.style;return"WebkitTransition"in e&&"WebkitTransform"in e||"transition"in e&&"transform"in e},i.prototype.reveal=function(t,n,i,l){var c,y,m,p,g,w;if(c=n&&n.container?o(n):e.defaults.container,y=e.tools.isNode(t)?[t]:Array.prototype.slice.call(c.querySelectorAll(t)),!y.length)return e;n&&"number"==typeof n&&(i=n,n={}),i&&"number"==typeof i&&(w=r(),g=e.sequences[w]={id:w,interval:i,elemIds:[],active:!1});for(var v=0;v<y.length;v++)p=y[v].getAttribute("data-sr-id"),p?m=e.store.elements[p]:(m={id:r(),domEl:y[v],seen:!1,revealing:!1},m.domEl.setAttribute("data-sr-id",m.id)),g&&(m.sequence={id:g.id,index:g.elemIds.length},g.elemIds.push(m.id)),s(m,n||{}),a(m),f(m),e.tools.isMobile()&&!m.config.mobile||!e.isSupported()?(m.domEl.setAttribute("style",m.styles.inline),m.disabled=!0):m.revealing||m.domEl.setAttribute("style",m.styles.inline+m.styles.transform.initial);return!l&&e.isSupported()&&(u(t,n),e.initTimeout&&window.clearTimeout(e.initTimeout),e.initTimeout=window.setTimeout(d,0)),e},i.prototype.sync=function(){if(e.history.length&&e.isSupported()){for(var t=0;t<e.history.length;t++){var n=e.history[t];e.reveal(n.selector,n.config,n.interval,!0)}d()}return e},i}(),t=function(){function e(){}return e.prototype.isObject=function(e){return null!==e&&"object"==typeof e&&e.constructor==Object},e.prototype.isNode=function(e){return"object"==typeof Node?e instanceof Node:e&&"object"==typeof e&&"number"==typeof e.nodeType&&"string"==typeof e.nodeName},e.prototype.forOwn=function(e,t){if(!this.isObject(e))throw new TypeError('Expected "object", but received "'+typeof e+'".');for(var n in e)e.hasOwnProperty(n)&&t(n)},e.prototype.extend=function(e,t){return this.forOwn(t,function(n){this.isObject(t[n])?(e[n]&&this.isObject(e[n])||(e[n]={}),this.extend(e[n],t[n])):e[n]=t[n]}.bind(this)),e},e.prototype.extendClone=function(e,t){return this.extend(this.extend({},e),t)},e.prototype.isMobile=function(){return/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent)},e}(),n=window.requestAnimationFrame||window.webkitRequestAnimationFrame||window.mozRequestAnimationFrame}.call(this),this.ScrollReveal}); $(function(){var fadeIn={delay:0,distance:"0px",easing:"ease-in-out"},fadeInDelay={delay:500,distance:"0px",easing:"ease-in-out"},fadeInDelay1s={delay:1e3,distance:"0px",easing:"ease-in-out"},fadeInDelay2s={delay:2e3,distance:"0px",easing:"ease-in-out"},fadeInLong={delay:0,distance:"0px",easing:"ease-in-out",duration:1200},fadeInLeft={delay:0,origin:"left",distance:"80px",easing:"ease-in-out"},fadeInLeftDelay={delay:500,origin:"left",distance:"80px",easing:"ease-in-out"},fadeInLeftDelay1s={delay:1e3,origin:"left",distance:"80px",easing:"ease-in-out"},fadeInLeftDelay2s={delay:2e3,origin:"left",distance:"80px",easing:"ease-in-out"},fadeInLeftLong={delay:0,origin:"left",distance:"80px",easing:"ease-in-out",duration:1200},fadeInRight={delay:0,origin:"right",distance:"80px",easing:"ease-in-out"},fadeInRightDelay={delay:500,origin:"right",distance:"80px",easing:"ease-in-out"},fadeInRightDelay1s={delay:1e3,origin:"right",distance:"80px",easing:"ease-in-out"},fadeInRightDelay2s={delay:2e3,origin:"right",distance:"80px",easing:"ease-in-out"},fadeInRightLong={delay:0,origin:"right",distance:"80px",easing:"ease-in-out",duration:1200},fadeInTop={delay:0,origin:"top",distance:"80px",easing:"ease-in-out"},fadeInTopDelay={delay:500,origin:"top",distance:"80px",easing:"ease-in-out"},fadeInTopDelay1s={delay:1e3,origin:"top",distance:"80px",easing:"ease-in-out"},fadeInTopDelay2s={delay:2e3,origin:"top",distance:"80px",easing:"ease-in-out"},fadeInTopLong={delay:0,origin:"top",distance:"80px",easing:"ease-in-out",duration:1200},fadeInBottom={delay:0,origin:"bottom",distance:"80px",easing:"ease-in-out"},fadeInBottomDelay={delay:500,origin:"bottom",distance:"80px",easing:"ease-in-out"},fadeInBottomDelay1s={delay:1e3,origin:"bottom",distance:"80px",easing:"ease-in-out"},fadeInBottomDelay2s={delay:2e3,origin:"bottom",distance:"80px",easing:"ease-in-out"},fadeInBottomLong={delay:0,origin:"bottom",distance:"80px",easing:"ease-in-out",duration:1200},zoomIn={delay:0,scale:.2,distance:"0px",easing:"ease-in-out"},zoomInDelay={delay:500,scale:.2,distance:"0px",easing:"ease-in-out"},zoomInDelay1s={delay:1e3,scale:.2,distance:"0px",easing:"ease-in-out"},zoomInDelay2s={delay:2e3,scale:.2,distance:"0px",easing:"ease-in-out"},zoomInLong={delay:0,scale:.2,distance:"0px",easing:"ease-in-out",duration:1200},zoomInLeft={delay:0,scale:.2,origin:"left",distance:"80px",easing:"ease-in-out"},zoomInLeftDelay={delay:500,scale:.2,origin:"left",distance:"80px",easing:"ease-in-out"},zoomInLeftDelay1s={delay:1e3,scale:.2,origin:"left",distance:"80px",easing:"ease-in-out"},zoomInLeftDelay2s={delay:2e3,scale:.2,origin:"left",distance:"80px",easing:"ease-in-out"},zoomInLeftLong={delay:0,scale:.2,origin:"left",distance:"80px",easing:"ease-in-out",duration:1200},zoomInRight={delay:0,scale:.2,origin:"right",distance:"80px",easing:"ease-in-out"},zoomInRightDelay={delay:500,scale:.2,origin:"right",distance:"80px",easing:"ease-in-out"},zoomInRightDelay1s={delay:1e3,scale:.2,origin:"right",distance:"80px",easing:"ease-in-out"},zoomInRightDelay2s={delay:2e3,scale:.2,origin:"right",distance:"80px",easing:"ease-in-out"},zoomInRightLong={delay:0,scale:.2,origin:"right",distance:"80px",easing:"ease-in-out",duration:1200},zoomInTop={delay:0,scale:.2,origin:"top",distance:"80px",easing:"ease-in-out"},zoomInTopDelay={delay:500,scale:.2,origin:"top",distance:"80px",easing:"ease-in-out"},zoomInTopDelay1s={delay:1e3,scale:.2,origin:"top",distance:"80px",easing:"ease-in-out"},zoomInTopDelay2s={delay:2e3,scale:.2,origin:"top",distance:"80px",easing:"ease-in-out"},zoomInTopLong={delay:0,scale:.2,origin:"top",distance:"80px",easing:"ease-in-out",duration:1200},zoomInBottom={delay:0,scale:.2,origin:"bottom",distance:"80px",easing:"ease-in-out"},zoomInBottomDelay={delay:500,scale:.2,origin:"bottom",distance:"80px",easing:"ease-in-out"},zoomInBottomDelay1s={delay:1e3,scale:.2,origin:"bottom",distance:"80px",easing:"ease-in-out"},zoomInBottomDelay2s={delay:2e3,scale:.2,origin:"bottom",distance:"80px",easing:"ease-in-out"},zoomInBottomLong={delay:0,scale:.2,origin:"bottom",distance:"80px",easing:"ease-in-out",duration:1200},bounceIn={delay:0,scale:.5,distance:"0px",easing:"cubic-bezier(.87,-.41,.19,1.60)",duration:800},bounceInAbove={delay:0,scale:1.5,distance:"0px",easing:"cubic-bezier(.87,-.41,.19,1.60)",duration:800},bounceInLeft={delay:0,scale:1,origin:"left",distance:"80px",easing:"cubic-bezier(.87,-.41,.19,1.60)",duration:800},bounceInBottom={delay:0,scale:1,origin:"bottom",distance:"80px",easing:"cubic-bezier(.87,-.41,.19,1.60)",duration:800},bounceInRight={delay:0,scale:1,origin:"right",distance:"80px",easing:"cubic-bezier(.87,-.41,.19,1.60)",duration:800},bounceInTop={delay:0,scale:1,origin:"top",distance:"80px",easing:"cubic-bezier(.87,-.41,.19,1.60)",duration:800},bounceInLeft={delay:0,scale:1,origin:"bottom",distance:"80px",easing:"cubic-bezier(.87,-.41,.19,1.60)",duration:800},flipInX={delay:0,scale:1,origin:"bottom",distance:"20px",easing:"ease-in-out",rotate:{x:90}},flipInY={delay:0,scale:1,origin:"bottom",distance:"0px",easing:"ease-in-out",rotate:{y:180}},flipInYHalf={delay:0,scale:1,origin:"bottom",distance:"0px",easing:"ease-in-out",rotate:{y:90}},flipInYHalfSlow={delay:0,scale:1,origin:"bottom",distance:"0px",easing:"ease-in-out",rotate:{y:90},duration:1200},flipInZ={delay:0,scale:1,origin:"bottom",distance:"0px",easing:"ease-in-out",rotate:{z:180}},flipInZLeft={delay:0,scale:1,origin:"left",distance:"200px",easing:"ease-in-out",rotate:{z:-180}},flipInZRight={delay:0,scale:1,origin:"right",distance:"200px",easing:"ease-in-out",rotate:{z:180}},classes=[".fadeIn",".fadeInDelay",".fadeInDelay1s",".fadeInDelay2s",".fadeInLong",".fadeInRight",".fadeInRightDelay",".fadeInRightDelay1s",".fadeInRightDelay2s",".fadeInRightLong",".fadeInLeft",".fadeInLeftDelay",".fadeInLeftDelay1s",".fadeInLeftDelay2s",".fadeInLeftLong",".fadeInTop",".fadeInTopDelay",".fadeInTopDelay1s",".fadeInTopDelay2s",".fadeInTopLong",".fadeInBottom",".fadeInBottomDelay",".fadeInBottomDelay1s",".fadeInBottomDelay2s",".fadeInBottomLong",".bounceIn",".bounceInAbove",".bounceInLeft",".bounceInRight",".bounceInTop",".bounceInBottom",".flipInX",".flipInY",".flipInYHalf",".flipInYHalfSlow",".flipInZ",".flipInZLeft",".flipInZRight",".zoomIn",".zoomInDelay",".zoomInDelay1s",".zoomInDelay2s",".zoomInLong",".zoomInRight",".zoomInRightDelay",".zoomInRightDelay1s",".zoomInRightDelay2s",".zoomInRightLong",".zoomInLeft",".zoomInLeftDelay",".zoomInLeftDelay1s",".zoomInLeftDelay2s",".zoomInLeftLong",".zoomInTop",".zoomInTopDelay",".zoomInTopDelay1s",".zoomInTopDelay2s",".zoomInTopLong",".zoomInBottom",".zoomInBottomDelay",".zoomInBottomDelay1s",".zoomInBottomDelay2s",".zoomInBottomLong"];classes.push("");var aLen=classes.length;for(i=0;i<aLen;i++)if($(classes[i])[0]){var Variable=classes[i].replace(".","");Variable=eval(Variable),window.sr=ScrollReveal().reveal(classes[i],Variable),console.log("found and linked "+classes[i]+" class with "+classes[i]+" variable")}}); // Anime JS (function(u,r){"function"===typeof define&&define.amd?define([],r):"object"===typeof module&&module.exports?module.exports=r():u.anime=r()})(this,function(){var u={duration:1E3,delay:0,loop:!1,autoplay:!0,direction:"normal",easing:"easeOutElastic",elasticity:400,round:!1,begin:void 0,update:void 0,complete:void 0},r="translateX translateY translateZ rotate rotateX rotateY rotateZ scale scaleX scaleY scaleZ skewX skewY".split(" "),y,f={arr:function(a){return Array.isArray(a)},obj:function(a){return-1< Object.prototype.toString.call(a).indexOf("Object")},svg:function(a){return a instanceof SVGElement},dom:function(a){return a.nodeType||f.svg(a)},num:function(a){return!isNaN(parseInt(a))},str:function(a){return"string"===typeof a},fnc:function(a){return"function"===typeof a},und:function(a){return"undefined"===typeof a},nul:function(a){return"null"===typeof a},hex:function(a){return/(^#[0-9A-F]{6}$)|(^#[0-9A-F]{3}$)/i.test(a)},rgb:function(a){return/^rgb/.test(a)},hsl:function(a){return/^hsl/.test(a)}, col:function(a){return f.hex(a)||f.rgb(a)||f.hsl(a)}},D=function(){var a={},b={Sine:function(a){return 1-Math.cos(a*Math.PI/2)},Circ:function(a){return 1-Math.sqrt(1-a*a)},Elastic:function(a,b){if(0===a||1===a)return a;var d=1-Math.min(b,998)/1E3,g=a/1-1;return-(Math.pow(2,10*g)*Math.sin(2*(g-d/(2*Math.PI)*Math.asin(1))*Math.PI/d))},Back:function(a){return a*a*(3*a-2)},Bounce:function(a){for(var b,d=4;a<((b=Math.pow(2,--d))-1)/11;);return 1/Math.pow(4,3-d)-7.5625*Math.pow((3*b-2)/22-a,2)}};["Quad", "Cubic","Quart","Quint","Expo"].forEach(function(a,e){b[a]=function(a){return Math.pow(a,e+2)}});Object.keys(b).forEach(function(c){var e=b[c];a["easeIn"+c]=e;a["easeOut"+c]=function(a,b){return 1-e(1-a,b)};a["easeInOut"+c]=function(a,b){return.5>a?e(2*a,b)/2:1-e(-2*a+2,b)/2};a["easeOutIn"+c]=function(a,b){return.5>a?(1-e(1-2*a,b))/2:(e(2*a-1,b)+1)/2}});a.linear=function(a){return a};return a}(),z=function(a){return f.str(a)?a:a+""},E=function(a){return a.replace(/([a-z])([A-Z])/g,"$1-$2").toLowerCase()}, F=function(a){if(f.col(a))return!1;try{return document.querySelectorAll(a)}catch(b){return!1}},A=function(a){return a.reduce(function(a,c){return a.concat(f.arr(c)?A(c):c)},[])},t=function(a){if(f.arr(a))return a;f.str(a)&&(a=F(a)||a);return a instanceof NodeList||a instanceof HTMLCollection?[].slice.call(a):[a]},G=function(a,b){return a.some(function(a){return a===b})},R=function(a,b){var c={};a.forEach(function(a){var d=JSON.stringify(b.map(function(b){return a[b]}));c[d]=c[d]||[];c[d].push(a)}); return Object.keys(c).map(function(a){return c[a]})},H=function(a){return a.filter(function(a,c,e){return e.indexOf(a)===c})},B=function(a){var b={},c;for(c in a)b[c]=a[c];return b},v=function(a,b){for(var c in b)a[c]=f.und(a[c])?b[c]:a[c];return a},S=function(a){a=a.replace(/^#?([a-f\d])([a-f\d])([a-f\d])$/i,function(a,b,c,m){return b+b+c+c+m+m});var b=/^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i.exec(a);a=parseInt(b[1],16);var c=parseInt(b[2],16),b=parseInt(b[3],16);return"rgb("+a+","+c+","+b+")"}, T=function(a){a=/hsl\((\d+),\s*([\d.]+)%,\s*([\d.]+)%\)/g.exec(a);var b=parseInt(a[1])/360,c=parseInt(a[2])/100,e=parseInt(a[3])/100;a=function(a,b,c){0>c&&(c+=1);1<c&&--c;return c<1/6?a+6*(b-a)*c:.5>c?b:c<2/3?a+(b-a)*(2/3-c)*6:a};if(0==c)c=e=b=e;else var d=.5>e?e*(1+c):e+c-e*c,g=2*e-d,c=a(g,d,b+1/3),e=a(g,d,b),b=a(g,d,b-1/3);return"rgb("+255*c+","+255*e+","+255*b+")"},p=function(a){return/([\+\-]?[0-9|auto\.]+)(%|px|pt|em|rem|in|cm|mm|ex|pc|vw|vh|deg)?/.exec(a)[2]},I=function(a,b,c){return p(b)? b:-1<a.indexOf("translate")?p(c)?b+p(c):b+"px":-1<a.indexOf("rotate")||-1<a.indexOf("skew")?b+"deg":b},w=function(a,b){if(b in a.style)return getComputedStyle(a).getPropertyValue(E(b))||"0"},U=function(a,b){var c=-1<b.indexOf("scale")?1:0,e=a.style.transform;if(!e)return c;for(var d=/(\w+)\((.+?)\)/g,g=[],m=[],f=[];g=d.exec(e);)m.push(g[1]),f.push(g[2]);e=f.filter(function(a,c){return m[c]===b});return e.length?e[0]:c},J=function(a,b){if(f.dom(a)&&G(r,b))return"transform";if(f.dom(a)&&(a.getAttribute(b)|| f.svg(a)&&a[b]))return"attribute";if(f.dom(a)&&"transform"!==b&&w(a,b))return"css";if(!f.nul(a[b])&&!f.und(a[b]))return"object"},K=function(a,b){switch(J(a,b)){case "transform":return U(a,b);case "css":return w(a,b);case "attribute":return a.getAttribute(b)}return a[b]||0},L=function(a,b,c){if(f.col(b))return b=f.rgb(b)?b:f.hex(b)?S(b):f.hsl(b)?T(b):void 0,b;if(p(b))return b;a=p(a.to)?p(a.to):p(a.from);!a&&c&&(a=p(c));return a?b+a:b},M=function(a){var b=/-?\d*\.?\d+/g;return{original:a,numbers:z(a).match(b)? z(a).match(b).map(Number):[0],strings:z(a).split(b)}},V=function(a,b,c){return b.reduce(function(b,d,g){d=d?d:c[g-1];return b+a[g-1]+d})},W=function(a){a=a?A(f.arr(a)?a.map(t):t(a)):[];return a.map(function(a,c){return{target:a,id:c}})},N=function(a,b,c,e){"transform"===c?(c=a+"("+I(a,b.from,b.to)+")",b=a+"("+I(a,b.to)+")"):(a="css"===c?w(e,a):void 0,c=L(b,b.from,a),b=L(b,b.to,a));return{from:M(c),to:M(b)}},X=function(a,b){var c=[];a.forEach(function(e,d){var g=e.target;return b.forEach(function(b){var l= J(g,b.name);if(l){var q;q=b.name;var h=b.value,h=t(f.fnc(h)?h(g,d):h);q={from:1<h.length?h[0]:K(g,q),to:1<h.length?h[1]:h[0]};h=B(b);h.animatables=e;h.type=l;h.from=N(b.name,q,h.type,g).from;h.to=N(b.name,q,h.type,g).to;h.round=f.col(q.from)||h.round?1:0;h.delay=(f.fnc(h.delay)?h.delay(g,d,a.length):h.delay)/k.speed;h.duration=(f.fnc(h.duration)?h.duration(g,d,a.length):h.duration)/k.speed;c.push(h)}})});return c},Y=function(a,b){var c=X(a,b);return R(c,["name","from","to","delay","duration"]).map(function(a){var b= B(a[0]);b.animatables=a.map(function(a){return a.animatables});b.totalDuration=b.delay+b.duration;return b})},C=function(a,b){a.tweens.forEach(function(c){var e=c.from,d=a.duration-(c.delay+c.duration);c.from=c.to;c.to=e;b&&(c.delay=d)});a.reversed=a.reversed?!1:!0},Z=function(a){if(a.length)return Math.max.apply(Math,a.map(function(a){return a.totalDuration}))},aa=function(a){if(a.length)return Math.min.apply(Math,a.map(function(a){return a.delay}))},O=function(a){var b=[],c=[];a.tweens.forEach(function(a){if("css"=== a.type||"transform"===a.type)b.push("css"===a.type?E(a.name):"transform"),a.animatables.forEach(function(a){c.push(a.target)})});return{properties:H(b).join(", "),elements:H(c)}},ba=function(a){var b=O(a);b.elements.forEach(function(a){a.style.willChange=b.properties})},ca=function(a){O(a).elements.forEach(function(a){a.style.removeProperty("will-change")})},da=function(a,b){var c=a.path,e=a.value*b,d=function(d){d=d||0;return c.getPointAtLength(1<b?a.value+d:e+d)},g=d(),f=d(-1),d=d(1);switch(a.name){case "translateX":return g.x; case "translateY":return g.y;case "rotate":return 180*Math.atan2(d.y-f.y,d.x-f.x)/Math.PI}},ea=function(a,b){var c=Math.min(Math.max(b-a.delay,0),a.duration)/a.duration,e=a.to.numbers.map(function(b,e){var f=a.from.numbers[e],l=D[a.easing](c,a.elasticity),f=a.path?da(a,l):f+l*(b-f);return f=a.round?Math.round(f*a.round)/a.round:f});return V(e,a.to.strings,a.from.strings)},P=function(a,b){var c;a.currentTime=b;a.progress=b/a.duration*100;for(var e=0;e<a.tweens.length;e++){var d=a.tweens[e];d.currentValue= ea(d,b);for(var f=d.currentValue,m=0;m<d.animatables.length;m++){var l=d.animatables[m],k=l.id,l=l.target,h=d.name;switch(d.type){case "css":l.style[h]=f;break;case "attribute":l.setAttribute(h,f);break;case "object":l[h]=f;break;case "transform":c||(c={}),c[k]||(c[k]=[]),c[k].push(f)}}}if(c)for(e in y||(y=(w(document.body,"transform")?"":"-webkit-")+"transform"),c)a.animatables[e].target.style[y]=c[e].join(" ")},Q=function(a){var b={};b.animatables=W(a.targets);b.settings=v(a,u);var c=b.settings, e=[],d;for(d in a)if(!u.hasOwnProperty(d)&&"targets"!==d){var g=f.obj(a[d])?B(a[d]):{value:a[d]};g.name=d;e.push(v(g,c))}b.properties=e;b.tweens=Y(b.animatables,b.properties);b.duration=Z(b.tweens)||a.duration;b.delay=aa(b.tweens)||a.delay;b.currentTime=0;b.progress=0;b.ended=!1;return b},n=[],x=0,fa=function(){var a=function(){x=requestAnimationFrame(b)},b=function(b){if(n.length){for(var e=0;e<n.length;e++)n[e].tick(b);a()}else cancelAnimationFrame(x),x=0};return a}(),k=function(a){var b=Q(a),c= {};b.tick=function(a){b.ended=!1;c.start||(c.start=a);c.current=Math.min(Math.max(c.last+a-c.start,0),b.duration);P(b,c.current);var d=b.settings;c.current>=b.delay&&(d.begin&&d.begin(b),d.begin=void 0,d.update&&d.update(b));c.current>=b.duration&&(d.loop?(c.start=a,"alternate"===d.direction&&C(b,!0),f.num(d.loop)&&d.loop--):(b.ended=!0,b.pause(),d.complete&&d.complete(b)),c.last=0)};b.seek=function(a){P(b,a/100*b.duration)};b.pause=function(){ca(b);var a=n.indexOf(b);-1<a&&n.splice(a,1)};b.play= function(a){b.pause();a&&(b=v(Q(v(a,b.settings)),b));c.start=0;c.last=b.ended?0:b.currentTime;a=b.settings;"reverse"===a.direction&&C(b);"alternate"!==a.direction||a.loop||(a.loop=1);ba(b);n.push(b);x||fa()};b.restart=function(){b.reversed&&C(b);b.pause();b.seek(0);b.play()};b.settings.autoplay&&b.play();return b};k.version="1.1.2";k.speed=1;k.list=n;k.remove=function(a){a=A(f.arr(a)?a.map(t):t(a));for(var b=n.length-1;0<=b;b--)for(var c=n[b],e=c.tweens,d=e.length-1;0<=d;d--)for(var g=e[d].animatables, k=g.length-1;0<=k;k--)G(a,g[k].target)&&(g.splice(k,1),g.length||e.splice(d,1),e.length||c.pause())};k.easings=D;k.getValue=K;k.path=function(a){a=f.str(a)?F(a)[0]:a;return{path:a,value:a.getTotalLength()}};k.random=function(a,b){return Math.floor(Math.random()*(b-a+1))+a};return k}); // Materal Plugins /** * Created by Kupletsky Sergey on 16.09.14. * * Hierarchical timing * Add specific delay for CSS3-animation to elements. */ !function(a){var i=2e3,s=a(".display-animation");s.each(function(){var s=a(this).children();s.each(function(){var s=a(this).offset(),t=.8*s.left+s.top,n=parseFloat(t/i).toFixed(2);a(this).css("-webkit-animation-delay",n+"s").css("-o-animation-delay",n+"s").css("animation-delay",n+"s").addClass("animated")})})}(jQuery); /** * Created by Kupletsky Sergey on 04.09.14. * * Ripple-effect animation * Tested and working in: ?IE9+, Chrome (Mobile + Desktop), ?Safari, ?Opera, ?Firefox. * JQuery plugin add .ink span in element with class .ripple-effect * Animation work on CSS3 by add/remove class .animate to .ink span */ !function(t){t(".ripple-effect").click(function(e){var i=t(this);0==i.find(".ink").length&&i.append("<span class='ink'></span>");var a=i.find(".ink");if(a.removeClass("animate"),!a.height()&&!a.width()){var n=Math.max(i.outerWidth(),i.outerHeight());a.css({height:n,width:n})}var s=e.pageX-i.offset().left-a.width()/2,h=e.pageY-i.offset().top-a.height()/2;a.css({top:h+"px",left:s+"px"}).addClass("animate")})}(jQuery);
545.645833
8,487
0.700317