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
0c3c3f8b5188bbed40d70e013ddf4d67abf9b7c6
818
js
JavaScript
newIDE/app/src/ResourcesList/ResourcePreview/GenericIconPreview.js
psydox/GDevelop
cf462f6c6eede34faa5282158c2bd6a1b784d1bc
[ "MIT" ]
2,990
2018-09-10T19:49:49.000Z
2022-03-31T05:01:42.000Z
newIDE/app/src/ResourcesList/ResourcePreview/GenericIconPreview.js
TheGemDev/GDevelop
6350b035e3f6ce6ecb985f02b1a591927dffe7e2
[ "MIT" ]
2,614
2018-09-09T21:37:47.000Z
2022-03-31T22:09:25.000Z
newIDE/app/src/ResourcesList/ResourcePreview/GenericIconPreview.js
TheGemDev/GDevelop
6350b035e3f6ce6ecb985f02b1a591927dffe7e2
[ "MIT" ]
566
2018-09-11T17:48:13.000Z
2022-03-27T07:59:48.000Z
// @flow import * as React from 'react'; import CheckeredBackground from '../CheckeredBackground'; const styles = { previewContainer: { position: 'relative', display: 'flex', width: '100%', alignItems: 'center', justifyContent: 'center', height: 200, }, iconContainer: { display: 'flex', flex: 1, height: '100%', alignItems: 'center', justifyContent: 'center', position: 'relative', }, icon: { width: 60, height: 60 }, }; type Props = {| renderIcon: ({| style: Object |}) => React.Node, |}; /** * Display a generic container to display an icon. */ export default ({ renderIcon }: Props) => ( <div style={styles.previewContainer}> <CheckeredBackground /> <div style={styles.iconContainer}>{renderIcon({ style: styles.icon })}</div> </div> );
21.526316
80
0.614914
0c3c678b5f53f04f010d249e42b21858b3b26b1f
1,442
js
JavaScript
lib/tracer.js
haozi23333/opentracing
29588c5384e3794d67103bea479de1dd8d9f358c
[ "MIT" ]
24
2018-05-23T10:02:46.000Z
2021-09-06T03:55:07.000Z
lib/tracer.js
aliyun-node/optracing
3420fd491b07e2a12bf697dbf3e2e05fd911ae33
[ "MIT" ]
1
2020-12-25T10:45:16.000Z
2020-12-25T10:45:16.000Z
lib/tracer.js
aliyun-node/optracing
3420fd491b07e2a12bf697dbf3e2e05fd911ae33
[ "MIT" ]
4
2018-12-06T02:52:55.000Z
2020-12-25T09:01:58.000Z
'use strict'; const NppSpan = require('./span'); const RemoteReporter = require('./report/remote_reporter'); const defaultOptions = require('./default_options'); const BUILD_OPTIONS = Symbol('NPP::BUILD_OPTIONS'); const EventEmitter = require('events').EventEmitter; class NppTracer extends EventEmitter { constructor(serviceName, options, reporter) { super(); if (!serviceName || typeof serviceName !== 'string') { throw new Error('service name must be string!'); } this.serviceName = serviceName; this.options = this[BUILD_OPTIONS](options); this.logger = this.options.logger; this.reporter = reporter || new RemoteReporter(this); } startSpan(spanName, options) { if (!spanName || typeof spanName !== 'string') { throw new Error('span name must be string!'); } options = options || {}; let parentSpan = options.childOf; let span = new NppSpan(this, spanName); if (parentSpan) { span.traceId = parentSpan.traceId; span.parentSpanId = parentSpan.spanId; span.rootTime = parentSpan.rootTime; } else { span.traceId = NppSpan.randomId(); span.rootTime = span.startTime; } return span; } report(span) { this.reporter.report(span); } get [BUILD_OPTIONS]() { return function (options) { options = options || {}; return Object.assign({}, defaultOptions, options); }; } } module.exports = NppTracer;
28.84
59
0.656033
0c3d3017037466a8db01a456b3f0d249eba65333
3,123
js
JavaScript
test/requests_stored_test.js
ohcibi/pretender
929977dac607c880b264a4325477da307caa4852
[ "MIT" ]
812
2015-08-04T20:31:18.000Z
2022-03-23T17:57:01.000Z
test/requests_stored_test.js
ohcibi/pretender
929977dac607c880b264a4325477da307caa4852
[ "MIT" ]
211
2015-08-04T22:21:58.000Z
2022-03-02T17:26:55.000Z
test/requests_stored_test.js
ohcibi/pretender
929977dac607c880b264a4325477da307caa4852
[ "MIT" ]
145
2015-08-04T21:33:39.000Z
2022-03-23T17:57:49.000Z
var describe = QUnit.module; var it = QUnit.test; describe('pretender', function(config) { config.beforeEach(function() { this.pretender = new Pretender({ trackRequests: false }); }); config.afterEach(function() { this.pretender.shutdown(); }); it('does not track handled requests', function(assert) { var wasCalled; this.pretender.get('/some/path', function() { wasCalled = true; }); $.ajax({ url: '/some/path' }); assert.ok(wasCalled); assert.equal(this.pretender.handledRequests.length, 0); assert.equal(this.pretender.unhandledRequests.length, 0); assert.equal(this.pretender.passthroughRequests.length, 0); }); it('does not track unhandled requests requests', function(assert) { var wasCalled; this.pretender.get('/some/path', function() { wasCalled = true; }); $.ajax({ url: '/very/good' }); assert.notOk(wasCalled); assert.equal(this.pretender.handledRequests.length, 0); assert.equal(this.pretender.unhandledRequests.length, 0); assert.equal(this.pretender.passthroughRequests.length, 0); }); it('does not track passthrough requests requests', function(assert) { var wasCalled; this.pretender.passthrough = function() { wasCalled = true; }; this.pretender.get('/some/path', this.pretender.passthrough); $.ajax({ url: '/some/path' }); assert.ok(wasCalled); assert.equal(this.pretender.handledRequests.length, 0); assert.equal(this.pretender.unhandledRequests.length, 0); assert.equal(this.pretender.passthroughRequests.length, 0); }); }); describe('pretender', function(config) { config.beforeEach(function() { this.pretender = new Pretender(); }); config.afterEach(function() { this.pretender.shutdown(); }); it('tracks handled requests', function(assert) { var wasCalled; this.pretender.get('/some/path', function() { wasCalled = true; }); $.ajax({ url: '/some/path' }); assert.ok(wasCalled); assert.equal(this.pretender.handledRequests.length, 1); assert.equal(this.pretender.unhandledRequests.length, 0); assert.equal(this.pretender.passthroughRequests.length, 0); }); it('tracks unhandled requests requests', function(assert) { var wasCalled; this.pretender.get('/some/path', function() { wasCalled = true; }); $.ajax({ url: '/very/good' }); assert.notOk(wasCalled); assert.equal(this.pretender.handledRequests.length, 0); assert.equal(this.pretender.unhandledRequests.length, 1); assert.equal(this.pretender.passthroughRequests.length, 0); }); it('tracks passthrough requests requests', function(assert) { var wasCalled; this.pretender.passthroughRequest = function() { wasCalled = true; }; this.pretender.get('/some/path', this.pretender.passthrough); $.ajax({ url: '/some/path' }); assert.ok(wasCalled); assert.equal(this.pretender.handledRequests.length, 0); assert.equal(this.pretender.unhandledRequests.length, 0); assert.equal(this.pretender.passthroughRequests.length, 1); }); });
26.692308
71
0.670189
0c3d9c7885140a57c60b2dea61ebfe25956c27ac
5,223
js
JavaScript
src/app/validators/dist/user.dev.js
samuelpauloantonio/Launchstore
745f5fe433d7401acab13a55ddfa0aa43e9be91e
[ "MIT" ]
1
2021-05-25T00:07:23.000Z
2021-05-25T00:07:23.000Z
src/app/validators/dist/user.dev.js
samuelpauloantonio/Launchstore
745f5fe433d7401acab13a55ddfa0aa43e9be91e
[ "MIT" ]
null
null
null
src/app/validators/dist/user.dev.js
samuelpauloantonio/Launchstore
745f5fe433d7401acab13a55ddfa0aa43e9be91e
[ "MIT" ]
null
null
null
"use strict"; var Users = require('../models/users'); var _require = require('bcryptjs'), compare = _require.compare; // validação de usuario por meio de middleware function checkAllFields(body) { var keys = Object.keys(body); for (var _i = 0, _keys = keys; _i < _keys.length; _i++) { var key = _keys[_i]; if (req.body[key] == "") { return { user: body, error: 'Por favor, preencha todos os campos.' }; } } } module.exports = { show: function show(req, res, next) { var id, user; return regeneratorRuntime.async(function show$(_context) { while (1) { switch (_context.prev = _context.next) { case 0: id = req.session.userId; _context.next = 3; return regeneratorRuntime.awrap(Users.findOne({ where: { id: id } })); case 3: user = _context.sent; if (user) { _context.next = 6; break; } return _context.abrupt("return", res.render('user/register', { error: "Usuário não encontrado!" })); case 6: req.user = user; next(); case 8: case "end": return _context.stop(); } } }); }, post: function post(req, res, next) { var fillAllFields, _req$body, email, cpf_cnpj, password, passwordRepeat, user; return regeneratorRuntime.async(function post$(_context2) { while (1) { switch (_context2.prev = _context2.next) { case 0: //please fill all fields fillAllFields = checkAllFields(req.body); if (!fillAllFields) { _context2.next = 3; break; } return _context2.abrupt("return", res.render('user/register', fillAllFields)); case 3: //check if email and cpfncpj existes _req$body = req.body, email = _req$body.email, cpf_cnpj = _req$body.cpf_cnpj, password = _req$body.password, passwordRepeat = _req$body.passwordRepeat; cpf_cnpj = cpf_cnpj.replace(/\D/g, ""); _context2.next = 7; return regeneratorRuntime.awrap(Users.findOne({ where: { email: email }, or: { cpf_cnpj: cpf_cnpj } })); case 7: user = _context2.sent; if (!user) { _context2.next = 10; break; } return _context2.abrupt("return", res.render('user/register', { //personalizando menssagens de erros user: req.body, error: "Usuário já Cadastrado." })); case 10: if (!(password != passwordRepeat)) { _context2.next = 12; break; } return _context2.abrupt("return", res.render('user/register', { //personalizando menssagens de erros user: req.body, error: "As Senhas não Consciden" })); case 12: //inportante chamar sempre o nex // para avançar para continuar a execução da app next(); case 13: case "end": return _context2.stop(); } } }); }, put: function put(req, res, next) { var fillAllFields, _req$body2, password, id, user, passed; return regeneratorRuntime.async(function put$(_context3) { while (1) { switch (_context3.prev = _context3.next) { case 0: //check all fields fillAllFields = checkAllFields(req.body); if (!fillAllFields) { _context3.next = 3; break; } return _context3.abrupt("return", res.render('user/index', fillAllFields)); case 3: //verificar a password e o id _req$body2 = req.body, password = _req$body2.password, id = _req$body2.id; if (password) { _context3.next = 6; break; } return _context3.abrupt("return", res.render('user/index', { user: req.body, error: "Coloque sua senha para actualizar o cadastro" })); case 6: _context3.next = 8; return regeneratorRuntime.awrap(Users.findOne({ where: id })); case 8: user = _context3.sent; _context3.next = 11; return regeneratorRuntime.awrap(compare(password, user.password)); case 11: passed = _context3.sent; if (passed) { _context3.next = 14; break; } return _context3.abrupt("return", res.render('user/index', { user: req.body, error: "Senha incorreta" })); case 14: req.user = user; next(); case 16: case "end": return _context3.stop(); } } }); } };
26.51269
163
0.485736
0c3f7834f2d932affa99ce665277ec8150db1684
2,079
js
JavaScript
idnmd/src/App.js
apollorion-test/i-dont-need-more-domains
e3aac5d2d60d289bf9f8e3bda8d0de12219d2071
[ "MIT" ]
2
2021-01-25T13:09:50.000Z
2021-01-25T15:42:38.000Z
idnmd/src/App.js
apollorion-test/i-dont-need-more-domains
e3aac5d2d60d289bf9f8e3bda8d0de12219d2071
[ "MIT" ]
14
2021-01-23T15:26:41.000Z
2022-02-20T00:47:48.000Z
idnmd/src/App.js
apollorion-test/i-dont-need-more-domains
e3aac5d2d60d289bf9f8e3bda8d0de12219d2071
[ "MIT" ]
2
2021-01-23T16:36:22.000Z
2021-01-25T14:36:36.000Z
import './App.css'; import github from "./github.png"; const domainDetails = getDomainDetails(); //TODO: this is a hacky work around because require.context is not available in jest. We should do this differently. Works for now though.... const images = process.env.ENVIRONMENT !== "test" ? importAllImages(require.context('./memes', false, /\.(png|jpe?g|svg)$/)) : {}; function App() { return ( <div className="App"> <header className="App-header"> <img src={getImage()} className="App-logo" alt="meme" /> <div> {Object.keys(images).map((image, index) => { return <span className={"link"} key={index}><a href={`http://${image}.${domainDetails.tld}`}>{image}</a> {index === Object.keys(images).length -1 ? "" : " | "} </span> })} </div> <br/> <a href={"https://github.com/Apollorion/i-dont-need-more-domains"}><img src={github} alt={"github"} /></a> </header> </div> ); } function getDomainDetails(){ const domain = window.location.host.split("."); let subdomain = "root"; if(domain.length > 2 && domain[0] !== "www" && domain[0] !== "stage"){ subdomain = domain[0]; } return { "subdomain": subdomain, "tld": process.env.REACT_APP_TLD ? process.env.REACT_APP_TLD : "i-dont-need-more-domains-dev.io:3000" }; } // Determines which image to show based off subdomain. function getImage(){ if(domainDetails.subdomain !== "root" && domainDetails.subdomain !== "www"){ // Show current subdomains image return images[domainDetails.subdomain]; } else { // Get a random image return images[Object.keys(images)[Math.floor(Math.random() * Object.keys(images).length)]]; } } // Creates an object with all the image names as their keys. function importAllImages(r) { let keys = r.keys().map(x => x.split(".")[1].substring(1)); let values = r.keys().map(r); let rv = {}; for(let i in keys){ rv[keys[i]] = values[i].default; } return rv; } export default App;
33
181
0.599808
0c3fe4844bd381dfe8a1af660b23e808eaec87de
100
js
JavaScript
src/apps/frontend/Root/Root.actions.js
botic/tenez
69df21c9ec55d60b9b9ea8c7f0658577dc03d3db
[ "Apache-2.0" ]
null
null
null
src/apps/frontend/Root/Root.actions.js
botic/tenez
69df21c9ec55d60b9b9ea8c7f0658577dc03d3db
[ "Apache-2.0" ]
null
null
null
src/apps/frontend/Root/Root.actions.js
botic/tenez
69df21c9ec55d60b9b9ea8c7f0658577dc03d3db
[ "Apache-2.0" ]
null
null
null
/** * Shows the main page. */ Root.prototype.main_action = function() { res.write("Main."); };
16.666667
41
0.6
0c401f15929309011f6cb94f707ef9729b626d4e
4,057
js
JavaScript
src/components/descriptionSection.js
caseybaggz/el-palote
d8914801946823aa0fbaff31a2b93df1dd8a90ba
[ "MIT" ]
null
null
null
src/components/descriptionSection.js
caseybaggz/el-palote
d8914801946823aa0fbaff31a2b93df1dd8a90ba
[ "MIT" ]
8
2021-03-09T02:37:22.000Z
2022-02-26T10:24:15.000Z
src/components/descriptionSection.js
caseybaggz/el-palote
d8914801946823aa0fbaff31a2b93df1dd8a90ba
[ "MIT" ]
1
2019-11-14T23:21:27.000Z
2019-11-14T23:21:27.000Z
// @flow import React from "react" import styled from "styled-components" import { useStaticQuery, graphql } from "gatsby" import Img from "gatsby-image" import IconLink from "./iconLink" import Body1 from "./typography/Body1" import H3 from "./typography/H3" import H6 from "./typography/H6" import media from "../theme/media" const Wrapper = styled.div` background-color: ${props => props.theme.white}; padding-bottom: 36px; padding-left: 20px; padding-right: 20px; padding-top: 48px; ${media.tablet} { padding-left: ${props => (props.direction === "left" ? 0 : "42px")}; padding-right: 0; padding-top: 200px; &:last-of-type { padding-bottom: 0; } } ` const Column = styled.div` display: block; width: 100%; ${media.tablet} { align-items: center; display: flex; flex-direction: ${props => props.direction === "left" ? "row-reverse" : "initial"}; justify-content: space-between; } ` const InnerColumn = styled.div` width: 100%; ${media.tablet} { width: 50%; &:first-of-type { width: ${props => (props.direction === "left" ? "35%" : "50%")}; } } ` const HeadlineWrapper = styled.div` max-width: 270px; ${media.tablet} { max-width: 500px; } ` const Headline = styled(H3)` line-height: 1; margin-bottom: 28px; text-transform: uppercase; ` const SecondaryHealdine = styled(H6)` color: ${props => props.theme.secondaryText}; text-transform: uppercase; ` const ImgWrapper = styled.div` margin-bottom: 40px; width: 100%; ${media.tablet} { display: none; } ` const ImgDesktopWrapper = styled(ImgWrapper)` display: none; ${media.tablet} { display: block; } ` const Content = styled.div` ${media.tablet} { max-width: 400px; } ` type ImageProp = { alt: string, name: string, } type Props = { children?: React.Node, direction?: string, headline: string, linkText: string, image: ImageProp, secondaryHeadline?: string, to: string, } function DescriptionSection(props: Props): React.Node { const data = useStaticQuery(graphql` query { bbqImage: file(relativePath: { eq: "bbq-sandwich.png" }) { childImageSharp { fluid(maxWidth: 720, quality: 90) { ...GatsbyImageSharpFluid } } } dessertsImage: file(relativePath: { eq: "desserts.png" }) { childImageSharp { fluid(maxWidth: 720, quality: 90) { ...GatsbyImageSharpFluid } } } } `) const { children, secondaryHeadline } = props return ( <Wrapper direction={props.direction}> <Column direction={props.direction}> <InnerColumn direction={props.direction}> <HeadlineWrapper> {secondaryHeadline && ( <SecondaryHealdine>{secondaryHeadline}</SecondaryHealdine> )} <Headline>{props.headline}</Headline> </HeadlineWrapper> <ImgWrapper> <Img alt={props.image.alt} fluid={data[`${props.image.name}Image`].childImageSharp.fluid} title={`El Palote ${props.image.alt}`} /> </ImgWrapper> <div> {children && ( <Content> <Body1>{children}</Body1> </Content> )} <IconLink to={props.to} label={props.linkText} /> </div> </InnerColumn> <InnerColumn> <ImgDesktopWrapper> <Img alt={props.image.alt} fluid={data[`${props.image.name}Image`].childImageSharp.fluid} title={`El Palote ${props.image.alt}`} /> </ImgDesktopWrapper> </InnerColumn> </Column> </Wrapper> ) } DescriptionSection.defaultProps = { direction: "", headline: "headline", linkText: "linkText", image: { alt: "bbq sandwich", name: "bbq", }, secondaryHeadline: "secondaryHeadline", to: "/", } export default React.memo(DescriptionSection)
21.579787
76
0.580725
0c4021c4929eeec1148f33a51cf18e830dabb587
2,755
js
JavaScript
website/js/worker.js
TrevorSundberg/farsearch
5748e8d00fa9f19beaf7d46c21a5a5d83c563a44
[ "MIT" ]
null
null
null
website/js/worker.js
TrevorSundberg/farsearch
5748e8d00fa9f19beaf7d46c21a5a5d83c563a44
[ "MIT" ]
null
null
null
website/js/worker.js
TrevorSundberg/farsearch
5748e8d00fa9f19beaf7d46c21a5a5d83c563a44
[ "MIT" ]
null
null
null
importScripts('tokenizer.js') importScripts('parser.js') importScripts('interpreter.js') let sections const maxDivisions = 1000 const maxResults = 100 const maxOutput = 20 String.prototype.hashCode = function () { var hash = 0, i, chr; if (this.length === 0) return hash; for (i = 0; i < this.length; i++) { chr = this.charCodeAt(i); hash = ((hash << 5) - hash) + chr; hash |= 0; // Convert to 32bit integer } return hash; } function colorDarkFromNumber(x) { var letters = '01234567' var color = '#' for (let i = 0; i < 6; ++i) { color += letters[x % 8] x = x >> 4; } return color; } function colorLightFromNumber(x) { var letters = '89ABCDEF' var color = '#' for (let i = 0; i < 6; ++i) { color += letters[x % 8] x = x >> 4; } return color; } onmessage = e => { if (e.data.sections) { sections = e.data.sections return } const results = [] let tooManyResults = false for (const section of sections) { const result = interpret(e.data.root, section) if (!result.score) { continue } result.section = section results.push(result) if (results.length == maxResults) { tooManyResults = true break } } results.sort((a, b) => { return b.score - a.score }) if (results.length > maxOutput) { results.length = maxOutput } const output = [] for (const result of results) { const section = result.section const divisions = result.divisions let index = 0 let nest = 0 output.push('<hr>') let str = '' for (let i = 0; i < maxDivisions && i < divisions.length; ++i) { const division = divisions[i] const text = section.text.substring(index, division.index).replace(/\n/g, '<br>') if (nest) { str += text } else { output.push(text) } index = division.index if (division.type == divisionType.BEGIN) { const hash = `${division.text}`.hashCode() const dark = colorDarkFromNumber(hash) const light = colorLightFromNumber(hash * 1257 + 34896) str += `<span style="color: ${dark}; background-color: ${light}">` ++nest } else { str += '</span>' --nest if (nest == 0) { output.push(str) str = '' } } } // This can only happen because we can exit the loop early. str += '</span>'.repeat(nest) if (str.length !== 0) { output.push(str) } output.push(section.text.substring(index, section.text.length).replace(/\n/g, '<br>') + '<br>') } postMessage({ output, tooManyResults }) }
22.958333
100
0.544102
0c40842e306b84aa3b88a31ee30cdd65c87e6e85
2,995
js
JavaScript
client/dist/widgets/arcgis/query/src/setting/translations/hu.js
ezw21/RecreationServicesMap
4a7581876d3892917f4ac646810d2c1259c4ff43
[ "Apache-2.0", "MIT-0", "MIT" ]
null
null
null
client/dist/widgets/arcgis/query/src/setting/translations/hu.js
ezw21/RecreationServicesMap
4a7581876d3892917f4ac646810d2c1259c4ff43
[ "Apache-2.0", "MIT-0", "MIT" ]
null
null
null
client/dist/widgets/arcgis/query/src/setting/translations/hu.js
ezw21/RecreationServicesMap
4a7581876d3892917f4ac646810d2c1259c4ff43
[ "Apache-2.0", "MIT-0", "MIT" ]
null
null
null
define({ queryItem: 'Elem lekérdezése', outputDsLabel: '{label} találat', addNewQueryAndCustomOptions: 'Adjon hozzá új lekérdezést és egyéni beállításokat.', newQuery: 'Új lekérdezés', arrangementStyle: 'Elrendezés stílusa', wrapItems: 'Elemek becsomagolása', relationship: 'Kapcsolat', spatialRelation_Intersect: 'Metszet', spatialRelation_Contain: 'Tartalmazza', spatialRelation_Cross: 'Kereszt', spatialRelation_EnvelopeIntersect: 'Befoglaló téglalapja metszi', spatialRelation_IndexIntersect: 'Index metszi', spatialRelation_Overlap: 'Átfed', spatialRelation_Touch: 'Érinti', spatialRelation_Within: 'Belül', setQuery: 'Lekérdezés beállítása', attributeFilter: 'Attribútumszűrő', addSQLExpressionsToYourQuery: 'SQL-kifejezés hozzáadása a lekérdezéséhez', pleaseAddYourSQLExpressionsFirst: 'Először az SQL-kifejezéseket adja hozzá.', spatialFilter: 'Térbeli szűrő', mapRequirement_MapNotRequired: 'A Térképwidget nem kötelező ', mapRequirement_MapIsRequired: 'Térképwidget használata kötelező', typesOfFilter: 'Szűrő típusai', spatialFilterType_CurrentMapExtent: 'Aktuális térképkiterjedés', spatialFilterType_InteractiveDrawMode: 'Interaktív rajzolási mód', spatialFilterType_SpatialRelationship: 'Térbeli kapcsolat', spatialFilterType_ReturnAllFeatures: 'Minden vektoros elem visszaadása', results: 'Eredmények', listDirection: 'Irány listázása', pagingStyle: 'Lapozás stílusa', pagingStyle_MultiPage: 'Többoldalas', pagingStyle_LazyLoad: 'Egyoldalas', field_PopupSetting: 'Előugró ablak beállításainak használata', symbolType_DefaultSymbol: 'Alapértelmezett', symbolType_CustomSymbol: 'Egyéni', allowToChangeSymbolAtRuntime: 'Szimbólumok cseréjének engedélyezése programfutás közben', options: 'Beállítási lehetőségek', allowToExport: 'Exportálás engedélyezése', enableBuffer: 'Bufferelés engedélyezése', defaultDistance: 'Alapértelmezett távolság', defaultUnit: 'Alapértelmezett mértékegység', unit_Miles: 'Mérföld', unit_Kilometers: 'Kilométer', unit_Feet: 'Láb', unit_Meters: 'Méter', unit_Yards: 'Yard', unit_NauticalMiles: 'Tengeri mérföld', interactiveDrawMode: 'Interaktív rajzolási mód', chooseSelectionTools: 'Eszközök', sketchTool_point: 'Pont', sketchTool_polyline: 'Vonal', sketchTool_polygon: 'Sokszög', sketchTool_rectangle: 'Téglalap', sketchTool_circle: 'Kör', spatialRelationship: 'Térbeli kapcsolat', chooseSpatialRelationshipRules: 'Térbeli kapcsolatok szabályai', enableSelectTool: 'Kijelölés eszköz engedélyezése', queryMessage: 'Üzenet', atLeastOneItemIsRequired: 'Legalább egy elemet meg kell adni.', configureQuery: 'Lekérdezés konfigurálása', hintQueryArgumentsSetting: 'A lekérdezés rendelkezhet attribútumszűrővel, térbeli szűrővel, vagy pedig mindkettővel.', chooseAMapWidget: 'Térképwidget választása', noQueryTip: 'Lekérdezések hozzáadásához és konfigurálásához kattintson a(z) „{newQuery}” gombra.', openTip: 'Tipp megnyitása' });
45.378788
120
0.794324
0c4250abbe031f59fb5f69eb94268f9fe75a637b
1,887
js
JavaScript
gatsby-ssr.js
akolybelnikov/bakery-static
aeac87d2b639f9ae8cdce503f8714c085e49fc2d
[ "MIT" ]
null
null
null
gatsby-ssr.js
akolybelnikov/bakery-static
aeac87d2b639f9ae8cdce503f8714c085e49fc2d
[ "MIT" ]
null
null
null
gatsby-ssr.js
akolybelnikov/bakery-static
aeac87d2b639f9ae8cdce503f8714c085e49fc2d
[ "MIT" ]
null
null
null
import React from "react" import TopLayout from "./src/config/TopLayout" import { CartProvider } from "./src/state/cart" import { UserProvider } from "./src/state/user" require("dotenv").config({ path: `.env.${process.env.NODE_ENV}`, }) const HeadComponents = [ <script key="fb-script" dangerouslySetInnerHTML={{ __html: ` !function(f,b,e,v,n,t,s) {if(f.fbq)return;n=f.fbq=function(){n.callMethod? n.callMethod.apply(n,arguments):n.queue.push(arguments)}; if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0'; n.queue=[];t=b.createElement(e);t.async=!0; t.src=v;s=b.getElementsByTagName(e)[0]; s.parentNode.insertBefore(t,s)}(window,document,'script', 'https://connect.facebook.net/en_US/fbevents.js'); fbq('init', '549514382358073'); fbq('track', 'PageView'); `, }} />, <noscript key="fb-noscript" dangerouslySetInnerHTML={{ __html: ` <img alt="facebook noscript page view" height="1" width="1" src="https://www.facebook.com/tr?id=549514382358073&ev=PageView&noscript=1" /> `, }} />, <script key="fetch-ipay" src={process.env.GATSBY_SBERBANK_URL} />, ] const BodyComponents = [ <script key="run-ipay" dangerouslySetInnerHTML={{ __html: ` var ipay = new IPAY({ api_token: "${process.env.GATSBY_SBERBANK_API}", language: "en", classNamePreloader: "payment-preloader", preloadBorderColor: "#F3922B", }); `, }} />, ] export const wrapRootElement = ({ element }) => { return ( <TopLayout> <UserProvider> <CartProvider>{element}</CartProvider> </UserProvider> </TopLayout> ) } export const onRenderBody = ( { setHeadComponents, setPostBodyComponents }, pluginOptions ) => { setHeadComponents(HeadComponents) setPostBodyComponents(BodyComponents) }
23.886076
82
0.627981
0c42cd1fbb066fd193d25742c5c4eb974d6adc2c
79
js
JavaScript
app/models/htmlblock.js
Grimels/conf-cms
dd0c78439c3c11ca73c88aa4721ffba5256eff22
[ "MIT" ]
null
null
null
app/models/htmlblock.js
Grimels/conf-cms
dd0c78439c3c11ca73c88aa4721ffba5256eff22
[ "MIT" ]
2
2020-02-04T12:22:23.000Z
2020-10-23T18:21:33.000Z
app/models/htmlblock.js
Grimels/conf-cms
dd0c78439c3c11ca73c88aa4721ffba5256eff22
[ "MIT" ]
1
2019-11-24T11:21:49.000Z
2019-11-24T11:21:49.000Z
module.exports = function (compound, Htmlblock) { // define Htmlblock here };
26.333333
49
0.721519
0c442d34f99f3065b4aefd6b85f5c872465f176f
1,907
js
JavaScript
frontend/src/Components/Auth.js
LocrianBird/BetterTube
73487e5bb6b5ecc24877ff9a765a352207370f5c
[ "MIT" ]
null
null
null
frontend/src/Components/Auth.js
LocrianBird/BetterTube
73487e5bb6b5ecc24877ff9a765a352207370f5c
[ "MIT" ]
null
null
null
frontend/src/Components/Auth.js
LocrianBird/BetterTube
73487e5bb6b5ecc24877ff9a765a352207370f5c
[ "MIT" ]
null
null
null
import React from 'react'; import Avatar from '../ComponentStyle/img/avatar.png'; import '../ComponentStyle/Header.css'; import Loader from 'react-loader-spinner'; import axios from 'axios'; class Auth extends React.Component { Type = Object.freeze({'NOT_LOGGED_IN': 0, 'LOADING': 1, 'LOGGED_IN': 2}); constructor(props){ super(props); this.state = { type: this.Type.LOADING, user: null, } } componentDidMount(){ axios.get(window.location.origin + '/get_user_data') .then(res=>{ console.log(res.data); this.setState({ user: res.data, type: this.Type.LOGGED_IN }) }) .catch(err=>{ this.setState({ type: this.Type.NOT_LOGGED_IN }) }) } onSigninClicked() { this.setState({ type: this.Type.LOADING }) axios.get(window.location.origin + '/request_authorization_url') .then(res=>{ window.location = res.data.authorization_url; }) .catch(err=>{ console.log(err); }) } renderByType(type){ switch(type) { case this.Type.LOGGED_IN: return( <div className="auth"> <img src={this.state.user.avatar} alt={this.state.user.name} className="user-avatar" /> <p className="user-name">{this.state.user.name}</p> </div> ) case this.Type.NOT_LOGGED_IN: return( <div className="auth"> <button onClick={this.onSigninClicked.bind(this)} className="auth-btn">Sign In</button> </div> ) case this.Type.LOADING: return( <div className="auth spinner"> <Loader type="Puff" color="#e2a917" height={30} width={30} /> </div> ) } } render(){ return (this.renderByType(this.state.type)); } } export default Auth;
22.702381
99
0.555847
0c4471d85bd332cf7793108b8b303311f6ddd56d
305
js
JavaScript
src/components/ImageHome/styled.js
maxassis/projeto-ecommerce-books
b6e4987f9af84d802bbc54d81a2283755cf50747
[ "MIT" ]
null
null
null
src/components/ImageHome/styled.js
maxassis/projeto-ecommerce-books
b6e4987f9af84d802bbc54d81a2283755cf50747
[ "MIT" ]
null
null
null
src/components/ImageHome/styled.js
maxassis/projeto-ecommerce-books
b6e4987f9af84d802bbc54d81a2283755cf50747
[ "MIT" ]
null
null
null
import styled from 'styled-components' export const ContainerImage = styled.div` display: flex; justify-content: center; height: 836px; ` export const Image = styled.img` width: 1120px; height: 702px; margin-bottom: 150px; margin-left: 160px; margin-right: 160px; `
14.52381
41
0.665574
0c4794dc2bdf5e66324d1ce868c57e89d1a57463
2,137
js
JavaScript
reversePolishNotation.js
JoeKarlsson/programming-problems
4100740868b6ebac6aef9c24a09e1560d95980df
[ "MIT" ]
7
2019-02-25T16:25:38.000Z
2022-01-08T02:54:53.000Z
reversePolishNotation.js
JoeKarlsson/programming-problems
4100740868b6ebac6aef9c24a09e1560d95980df
[ "MIT" ]
null
null
null
reversePolishNotation.js
JoeKarlsson/programming-problems
4100740868b6ebac6aef9c24a09e1560d95980df
[ "MIT" ]
1
2020-07-01T21:54:06.000Z
2020-07-01T21:54:06.000Z
// Evaluate Reverse Polish Notation // Source: https://leetcode.com/problems/evaluate-reverse-polish-notation/ // Evaluate the value of an arithmetic expression in Reverse Polish Notation. // // Valid operators are +, -, *, /. Each operand may be an integer or another expression. // // Note: // // Division between two integers should truncate toward zero. // The given RPN expression is always valid. That means the expression would always evaluate to a result and there won't be any divide by zero operation. // Example 1: // // Input: ["2", "1", "+", "3", "*"] // Output: 9 // Explanation: ((2 + 1) * 3) = 9 // Example 2: // Input: ["4", "13", "5", "/", "+"] // Output: 6 // Explanation: (4 + (13 / 5)) = 6 const isNumeric = x => { return parseInt(x).toString() === x.toString(); }; const evalExpression = (operand1, operand2, operator) => { switch (operator) { case "+": return operand1 + operand2; case "-": return operand1 - operand2; case "*": return operand1 * operand2; case "/": return operand1 / operand2; default: return 0; } }; /** * @param {string[]} tokens * @return {number} */ const evalRPN = tokens => { const stack = []; tokens.forEach(token => { if (isNumeric(token)) { stack.push(parseFloat(token)); } else { const operand2 = stack.pop(); const operand1 = stack.pop(); const result = evalExpression(operand1, operand2, token); stack.push(parseInt(result)); } }); if (stack.length > 1) { throw new Error("Invalid RPN expression"); } return stack.pop(); }; const testData = [ { input: ["2", "1", "+", "3", "*"], output: 9 }, { input: ["4", "13", "5", "/", "+"], output: 6 }, { input: [ "10", "6", "9", "3", "+", "-11", "*", "/", "*", "17", "+", "5", "+" ], output: 22 } ]; testData.forEach(testCase => { const result = evalRPN(testCase.input); console.log( `evalRPN([${testCase.input}]) =>`, result, "| Test Pass: ", result === testCase.output ); });
20.548077
153
0.544689
0c482ff3bbf91ddaad487b3f2799ffcf488e17f7
147
js
JavaScript
preload.js
39dotyt/cognitive-modeling
60847453d9c295d94cf5d93040ebda372d8fcd4d
[ "MIT" ]
null
null
null
preload.js
39dotyt/cognitive-modeling
60847453d9c295d94cf5d93040ebda372d8fcd4d
[ "MIT" ]
null
null
null
preload.js
39dotyt/cognitive-modeling
60847453d9c295d94cf5d93040ebda372d8fcd4d
[ "MIT" ]
null
null
null
/** * @license MIT * @author 0@39.yt (Yurij Mikhalevich) * @module preload */ require('module').globalPaths.push(__dirname + '/node_modules');
21
64
0.673469
0c484885ec286720fbebc1a5204926fdd7fa1488
1,119
js
JavaScript
routes/reviews.js
CREPIC21/businessRegistry
83d61ad7b9a4421479bca909c41c7901c345f521
[ "MIT" ]
null
null
null
routes/reviews.js
CREPIC21/businessRegistry
83d61ad7b9a4421479bca909c41c7901c345f521
[ "MIT" ]
null
null
null
routes/reviews.js
CREPIC21/businessRegistry
83d61ad7b9a4421479bca909c41c7901c345f521
[ "MIT" ]
null
null
null
const express = require('express'); const { getReviews, getReview, createReview, updateReview, deleteReview } = require('../controllers/reviews'); // added "mergeParams: true" parameter to router as we are rerouting from routes/trades.js when adding tradeId to get list of reviews for that trade const router = express.Router({ mergeParams: true }); // bringing the Trades model as we will use middelware for advanced results const Review = require('../models/Review'); // including middelware for advanced search results const advancedResults = require('../middelware/advancedResults'); // added middelware to protect routes that require authentication and authorization const { protect, authorize } = require('../middelware/auth'); router.get('/',advancedResults(Review, { path: 'trade', select: 'name description' }), getReviews); router.post('/', protect, authorize('user', 'admin'), createReview); router.get('/:id', getReview); router.put('/:id', protect, authorize('user', 'admin'), updateReview); router.delete('/:id', protect, authorize('user', 'admin'), deleteReview); module.exports = router;
41.444444
148
0.734584
0c49a6315df6c7fcf8d0ba849d73b3ae6100d195
309
js
JavaScript
lib/branch-name.js
Verlic/diff-coverage
e2eeb67b03d4fbcc915f4540e5275450fa5b854b
[ "MIT" ]
null
null
null
lib/branch-name.js
Verlic/diff-coverage
e2eeb67b03d4fbcc915f4540e5275450fa5b854b
[ "MIT" ]
null
null
null
lib/branch-name.js
Verlic/diff-coverage
e2eeb67b03d4fbcc915f4540e5275450fa5b854b
[ "MIT" ]
null
null
null
module.exports = function () { return new Promise((resolve, reject) => { var exec = require('child_process').exec; exec('git branch | grep \\*', (error, stdout) => { if (error) { return reject(error); } resolve(stdout.replace('* ', '').replace('\n', '')); }); }); }
23.769231
58
0.521036
0c4a14b53be3aaef2fe4a44abc757cc715ae7bc0
1,414
js
JavaScript
bundles/framework/userguide/resources/locale/sv.js
okauppinen/oskari
225e0064b70b4699e1483d5a6473b417ba4263ff
[ "MIT" ]
null
null
null
bundles/framework/userguide/resources/locale/sv.js
okauppinen/oskari
225e0064b70b4699e1483d5a6473b417ba4263ff
[ "MIT" ]
null
null
null
bundles/framework/userguide/resources/locale/sv.js
okauppinen/oskari
225e0064b70b4699e1483d5a6473b417ba4263ff
[ "MIT" ]
null
null
null
Oskari.registerLocalization( { "lang": "sv", "key": "userinterface.UserGuide", "value": { "title": "Hjälp", "desc": "", "flyout": { "title": "Bruksanvisningar", "loadingtxt": "<p>Laddar bruksanvisningar…</p>" }, "tile": { "title": "Bruksanvisningar" }, "error": { "title": "Fel", "generic": "Laddningen av anvisningarna misslyckades. Försök på nytt senare." }, "tabs": [ { "title": "Kartfönstret", "tags": "kartfönstret,snappguide" }, { "title": "Kartverktyg", "tags": "guide_tools" }, { "title": "Sökning", "tags": "guide_search" }, { "title": "Kartlager", "tags": "guide_maplayers" }, { "title": "Kartpublicering", "tags": "guide_publishing" }, { "title": "Temakartor", "tags": "guide_thematic" }, { "title": "Analys", "tags": "guide_analysis" } ], "help": { "tags": "kartfönstret,snappguide", "contentPart": "body" } } } );
25.709091
89
0.369873
0c4a9c2175ccbba4397eabd6a96f38b4d164797c
2,160
js
JavaScript
agavedancer/public/css/jsfb/util/base64.js
warelab/sciapps
3fecba806f35b98233022b07d8fc11cda3ea5f37
[ "Apache-2.0" ]
2
2015-06-08T16:39:14.000Z
2018-09-29T12:16:34.000Z
src/jsfb/util/base64.js
limscoder/js-file-browser
b642451248f30bc649a00015da4e85cf10052af8
[ "MIT" ]
7
2019-10-04T15:50:13.000Z
2020-04-17T19:12:52.000Z
src/jsfb/util/base64.js
limscoder/js-file-browser
b642451248f30bc649a00015da4e85cf10052af8
[ "MIT" ]
1
2020-12-23T23:31:48.000Z
2020-12-23T23:31:48.000Z
/** * Use to encode/decode base64 data. * * From: http://www.sencha.com/forum/showthread.php?35328-Ext.util.base64-(encode-decode)&p=167166 */ Ext.util.base64 = { base64s : "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/", encode: function(decStr){ if (typeof btoa === 'function') { return btoa(decStr); } var base64s = this.base64s; var bits; var dual; var i = 0; var encOut = ""; while(decStr.length >= i + 3){ bits = (decStr.charCodeAt(i++) & 0xff) <<16 | (decStr.charCodeAt(i++) & 0xff) <<8 | decStr.charCodeAt(i++) & 0xff; encOut += base64s.charAt((bits & 0x00fc0000) >>18) + base64s.charAt((bits & 0x0003f000) >>12) + base64s.charAt((bits & 0x00000fc0) >> 6) + base64s.charAt((bits & 0x0000003f)); } if(decStr.length -i > 0 && decStr.length -i < 3){ dual = Boolean(decStr.length -i -1); bits = ((decStr.charCodeAt(i++) & 0xff) <<16) | (dual ? (decStr.charCodeAt(i) & 0xff) <<8 : 0); encOut += base64s.charAt((bits & 0x00fc0000) >>18) + base64s.charAt((bits & 0x0003f000) >>12) + (dual ? base64s.charAt((bits & 0x00000fc0) >>6) : '=') + '='; } return(encOut); }, decode: function(encStr){ if (typeof atob === 'function') { return atob(encStr); } var base64s = this.base64s; var bits; var decOut = ""; var i = 0; for(; i<encStr.length; i += 4){ bits = (base64s.indexOf(encStr.charAt(i)) & 0xff) <<18 | (base64s.indexOf(encStr.charAt(i +1)) & 0xff) <<12 | (base64s.indexOf(encStr.charAt(i +2)) & 0xff) << 6 | base64s.indexOf(encStr.charAt(i +3)) & 0xff; decOut += String.fromCharCode((bits & 0xff0000) >>16, (bits & 0xff00) >>8, bits & 0xff); } if(encStr.charCodeAt(i -2) == 61){ return(decOut.substring(0, decOut.length -2)); } else if(encStr.charCodeAt(i -1) == 61){ return(decOut.substring(0, decOut.length -1)); } else { return(decOut); } } };
41.538462
219
0.535648
0c4acda1b08c2cfef2c721dc17bbb3be3c7ea956
713
js
JavaScript
packages/components-faraday/src/components/UIComponents/NotFound.js
yucigou/xpub-hindawi
356c76d54e72a25a60b5b15f04e4d4871d7410ac
[ "MIT" ]
1
2021-01-24T21:21:06.000Z
2021-01-24T21:21:06.000Z
packages/components-faraday/src/components/UIComponents/NotFound.js
yucigou/xpub-hindawi
356c76d54e72a25a60b5b15f04e4d4871d7410ac
[ "MIT" ]
null
null
null
packages/components-faraday/src/components/UIComponents/NotFound.js
yucigou/xpub-hindawi
356c76d54e72a25a60b5b15f04e4d4871d7410ac
[ "MIT" ]
1
2018-05-04T09:45:59.000Z
2018-05-04T09:45:59.000Z
import React from 'react' import { Icon, Button, th } from '@pubsweet/ui' import styled from 'styled-components' const NotFound = ({ history }) => ( <Root> <div> <Icon size={6}>cloud-off</Icon> </div> <H2>The page cannot be found</H2> <H3> The page you are looking for might have been removed, had its name changed, or is temporarily unavailable. </H3> <Button onClick={history.goBack} primary> Back </Button> </Root> ) export default NotFound const Root = styled.div` margin: 0 auto; text-align: center; width: 90vw; ` const H2 = styled.h2` font-size: ${th('fontSizeHeading2')}; ` const H3 = styled.h3` font-size: ${th('fontSizeHeading3')}; `
20.970588
72
0.633941
0c4ae51c8b89c41d02427cc37634ae17847373e6
32,712
js
JavaScript
lib/spoon/cfg.js
indutny/spoon
7f45ebeef641c711cd39f58777fa532c4033f079
[ "MIT", "Unlicense" ]
15
2015-01-27T05:13:52.000Z
2021-05-19T07:22:01.000Z
lib/spoon/cfg.js
indutny/spoon
7f45ebeef641c711cd39f58777fa532c4033f079
[ "MIT", "Unlicense" ]
null
null
null
lib/spoon/cfg.js
indutny/spoon
7f45ebeef641c711cd39f58777fa532c4033f079
[ "MIT", "Unlicense" ]
4
2016-06-01T00:20:02.000Z
2017-07-25T13:46:23.000Z
var cfg = exports, assert = require('assert'), spoon = require('../spoon'); function Cfg() { this.instructionId = 0; this.blockId = 0; this.root = null; this.exits = null; this.blocks = []; this.roots = []; this.rootQueue = []; this.current = null; this.currentRoot = null; this.asyncifyState = null; this.breakInfo = null; }; cfg.Cfg = Cfg; cfg.create = function create() { return new Cfg(); }; Cfg.prototype.toString = function toString(format) { if (format === 'graphviz') { return 'digraph {\n' + this.blocks.map(function(block) { return block.id + ';\n' + block.successors.map(function(succ) { return block.id + ' -> ' + succ.id; }).join(';\n'); }).join(';\n') + ';' + '\n}'; } var buff = '--- CFG ---\n'; this.blocks.forEach(function(block) { buff += block.toString() + '\n'; }); return buff; }; Cfg.prototype.createBlock = function createBlock() { var block = spoon.block.create(this); this.blocks.push(block); return block; }; Cfg.prototype.setCurrentBlock = function setCurrentBlock(block) { this.current = block; }; Cfg.prototype.add = function add(type, args) { return this.current.add(type, args); }; Cfg.prototype.goto = function branch(target) { return this.current.goto(target); } Cfg.prototype.branch = function branch(type, args, tblock, fblock) { return this.current.branch(type, args, tblock, fblock); }; Cfg.prototype.translate = function translate(ast) { this.rootQueue.push({ instr: null, parent: null, ast: ast }); while (this.rootQueue.length > 0) { var root = this.rootQueue.shift(), block = this.createBlock(); if (!this.root) { this.root = block; } this.currentRoot = block; block.fn = block; this.exits = block.exits = []; this.roots.push(block); this.setCurrentBlock(block); if (root.instr) root.instr.addArg(block); block.root = root; this.visit(root.ast); if (this.exits.indexOf(this.current) === -1) { this.exits.push(this.current); this.current.end(); } } }; Cfg.prototype.split = function split(at, root, asyncify, marker) { var block = at.block; // Do not split same blocks twice if (this.asyncifyState[block.id]) return this.asyncifyState[block.id]; var info = block.split(at, root, asyncify, marker); this.asyncifyState[block.id] = info; this.roots.push(info.next); this.blocks.push(info.next); info.next.exits = this.getNodes(info.next).filter(function(node) { return node.successors.length === 0; }); // Traverse blocks starting from next, split on every frontier info.next.frontier.forEach(function(block) { var info = this.split(block.instructions[0], root, false, marker); block.predecessors.forEach(function(pred) { if (pred.successors.length < 2) { pred.successors = []; // Remove goto var last = pred.instructions.pop(); pred.ended = false; } else { // Replace one of the branches var index = pred.successors[0] === block ? 0 : 1, tmp = this.createBlock(); pred.successors[index] = tmp; tmp.addPredecessor(pred); pred = tmp; } pred.add('async-goto', [ pred.add('get', [ info.fn.name ]) ]); pred.end(); }, this); block.predecessors = []; }, this); return info; }; Cfg.prototype.asyncify = function asyncify(asts, options) { this.asyncifyState = {}; this.derive(); var targets = asts.map(function(ast) { assert.equal(ast.type, 'Program'); assert.equal(ast.body.length, 1); assert.equal(ast.body[0].type, 'ExpressionStatement'); return ast.body[0].expression; }); function markerIndex(instr, marker) { if (!marker) return -1; var args; if (instr.type === 'call') { args = instr.args.slice(1); } else if (instr.type === 'method') { args = instr.args.slice(2); } if (!args) return -1; var found = -1; args.forEach(function(arg, i) { if (arg.type === 'get' && arg.args[0] === marker) { found = args.length - i; } }); return found; } // Test whether instr matches 'fn' or not function match(instr) { return targets.some(function(target) { if (target.type === 'Identifier') { if (instr.type !== 'call') return false; var name = instr.args[0]; if (name.type !== 'get' || name.args[0] !== target.name) return false; } else if (target.type === 'MemberExpression') { if (instr.type !== 'method') return false; var obj = instr.args[0], prop = instr.args[1], targetName = target.object.type === 'Identifier' ? target.object.name : target.object.type === 'ThisExpression' ? 'this' : null; if (obj.type !== 'get' || obj.args[0] !== targetName || prop.type !== 'literal' || prop.args[0] !== target.property.name) { return false; } } else { throw new TypeError('Unexpected target type:' + target.type); } return true; }); } // Replace async instruction in all blocks that either have // "enable spoon" declaration or are children of blocks with declaration. var hasDeclaration = {}, visited = {}, queue = this.roots.slice(), rootBlocks = this.blocks.length; while (queue.length > 0) { var block = queue.shift(); if (visited[block.id]) continue; visited[block.id] = true; if (!hasDeclaration[block.id]) { // Find declaration first var found = block.instructions.some(function(instr) { // No declaration? - All blocks counts if (options.declaration) { if (instr.type !== 'literal' || instr.args[0] !== options.declaration || instr.uses.length > 0) { return false; } // Remove literals instr.remove(); } if (options.marker && block.fn.root.instr) { var marker = block.fn.root.instr.params.indexOf(options.marker); if (marker < 0) return false; block.fn.root.instr.params[marker] = '__$callback'; } hasDeclaration[block.id] = block; return true; }); // Skip block if it hasn't one if (!found) continue; } block.successors.forEach(function(succ) { // Visit some blocks twice if needed if (!hasDeclaration[succ.id]) visited[succ.id] = false; // All children should be processed too hasDeclaration[succ.id] = succ; queue.push(succ); }); } for (var i = 0; i < this.blocks.length; i++) { var block = this.blocks[i]; if (i >= rootBlocks) { // Extra blocks should be counted as async blocks hasDeclaration[block.id] = block; } else if (!hasDeclaration[block.id]) { continue; } block.instructions.forEach(function(instr) { var marker = markerIndex(instr, options.marker); if (marker < 0 && !match(instr)) return; // Split graph at instruction var info = this.split(instr, instr.block.getRoot(), true, marker); // Replace all instruction uses by __$r[num] instr.uses.forEach(function(use, i) { if (i === instr.uses.length - 1) return; use.args = use.args.map(function(arg) { if (arg !== instr) return arg; var r = spoon.instruction.create(use.block, 'get', [ info.res ]), index = use.block.instructions.indexOf(use); use.block.instructions = [].concat( use.block.instructions.slice(0, index), [ r ], use.block.instructions.slice(index) ); return r; }); }); instr.uses = []; }, this); } // Every exit should invoke callback var seeds = Object.keys(hasDeclaration).map(function(id) { return hasDeclaration[id]; }); // Replace all synchronous exits in block with asynchronous ones function replaceExits(block) { if (block.successors.length !== 0) return; var last = block.instructions[block.instructions.length - 1], args; if (last) { if (last && (last.type === 'async-return' || last.type === 'async-goto' || last.type === 'async-end' || last.type === 'throw' || last.type === 'fn' && /^__\$fn/.test(last.name))) { return; } if (last.type === 'return') { block.instructions.splice(block.instructions.indexOf(last), 1); args = last.args.slice(); args.forEach(function(arg) { arg.uses.splice(arg.uses.indexOf(last), 1); }); } } else { args = []; } block.ended = false; block.add('async-return', args); block.end(); }; seeds.forEach(function(seed) { replaceExits(seed); }, this); this.derive(); }; Cfg.prototype.derive = function derive() { // For each root derive control dependencies this.roots.forEach(function(root) { var leafs = this.deriveDominator(root); this.deriveFrontier(leafs.normal); this.deriveCFrontier(leafs.control); }, this); }; Cfg.prototype.getNodes = function getNodes(root) { var nodes = [], visited = {}, queue = [root]; // Get list of all nodes first while (queue.length > 0) { var node = queue.pop(); if (visited[node.id]) continue; visited[node.id] = true; nodes.push(node); node.successors.forEach(function(succ) { queue.push(succ); }); } return nodes; }; // Derive control and normal dominanator tree Cfg.prototype.deriveDominator = function deriveDominator(root) { var nodes = this.getNodes(root); // At start each node (except exits) will think it has all nodes as children nodes.forEach(function(node) { node.parent = null; node.parents = nodes.slice(); node.children = []; node.frontier = []; node.cparent = null; node.cparents = nodes.slice(); node.cchildren = []; node.cfrontier = []; }); // But exits do not have parents root.exits.forEach(function(node) { node.cparents = [ node ]; }); // And root too root.parents = [ root ]; // Propagate set intersection until there will be no changes var changed; do { changed = false; nodes.forEach(function(node) { var parents = [ node ], cparents = [ node ], seen = {}, cseen = {}; // For normal node.predecessors.forEach(function(pred) { pred.parents.forEach(function(parent) { seen[parent.id] = (seen[parent.id] || 0) + 1; if (seen[parent.id] === node.predecessors.length && parent !== node) { parents.push(parent); } }); }); // For contorl node.successors.forEach(function(succ) { succ.cparents.forEach(function(parent) { cseen[parent.id] = (cseen[parent.id] || 0) + 1; if (cseen[parent.id] === node.successors.length && parent !== node) { cparents.push(parent); } }); }); if (node.parents.length !== parents.length || node.cparents.length !== cparents.length) { changed = true; node.parents = parents; node.cparents = cparents; } }); } while (changed); // Leave only closest on the route from exit to node (immediate) parents nodes.forEach(function(node) { // For normal var closest = node.parents.filter(function(parent) { return parent !== node; }).map(function(parent) { return { parent: parent, distance: node.distance(parent) }; }).sort(function(a, b) { return a.distance - b.distance; })[0]; if (closest) { node.parent = closest.parent; if (node.parent.children.indexOf(node) === -1) { node.parent.children.push(node); } } else { node.parent = null; } // For control var closest = node.cparents.filter(function(parent) { return parent !== node; }).map(function(parent) { return { parent: parent, distance: parent.distance(node) }; }).sort(function(a, b) { return a.distance - b.distance; })[0]; if (closest) { node.cparent = closest.parent; if (node.cparent.cchildren.indexOf(node) === -1) { node.cparent.cchildren.push(node); } } else { node.cparent = null; } }); // Return "leafs" (needed for bottom-up traversal later) return { normal: nodes.filter(function(node) { return node.children.length === 0; }), control: nodes.filter(function(node) { return node.cchildren.length === 0; }) }; }; // Derive dominance frontier of reverse CFG Cfg.prototype.deriveFrontier = function deriveFrontier(leafs) { var df = {}, visited = {}, queue = leafs.slice(); // Bottom-up traversal of reverse dominator tree while (queue.length > 0) { var node = queue.shift(); // Skip already visited nodes if (visited[node.id]) continue; // Every child should be visited before this node var reachable = node.children.every(function(child) { return visited[child.id]; }); if (!reachable) continue; visited[node.id] = true; if (!df[node.id]) df[node.id] = { node: node, map: {} }; var r = df[node.id].map; // Local node.successors.forEach(function(succ) { if (succ.parent === node) return; r[succ.id] = succ; }); // Up node.children.forEach(function(child) { if (!df[child.id]) df[child.id] = { node: child, map: {} }; var cr = df[child.id].map; Object.keys(cr).forEach(function(id) { if (cr[id].parent === node) return; r[id] = cr[id]; }); }); // Now visit parent if (node.parent) queue.push(node.parent); } Object.keys(df).forEach(function(id) { // Set sorted by distance frontier df[id].node.frontier = Object.keys(df[id].map).map(function(sid) { return this.map[sid]; }, df[id]); }); }; // Derive dominance frontier of reverse CFG Cfg.prototype.deriveCFrontier = function deriveCFrontier(leafs) { var rdf = {}, visited = {}, queue = leafs.slice(); // Bottom-up traversal of reverse dominator tree while (queue.length > 0) { var node = queue.shift(); // Skip already visited nodes if (visited[node.id]) continue; // Every child should be visited before this node var reachable = node.cchildren.every(function(child) { return visited[child.id]; }); if (!reachable) continue; visited[node.id] = true; if (!rdf[node.id]) rdf[node.id] = { node: node, map: {} }; var r = rdf[node.id].map; // Local node.predecessors.forEach(function(pred) { if (pred.cparent === node) return; r[pred.id] = pred; }); // Up node.cchildren.forEach(function(child) { if (!rdf[child.id]) rdf[child.id] = { node: child, map: {} }; var cr = rdf[child.id].map; Object.keys(cr).forEach(function(id) { if (cr[id].cparent === node) return; if (cr[id].id === node.id) return; r[id] = cr[id]; }); }); // Now visit parent if (node.cparent) queue.push(node.cparent); } Object.keys(rdf).forEach(function(id) { // Set sorted by distance frontier rdf[id].node.cfrontier = Object.keys(rdf[id].map).map(function(sid) { return rdf[id].map[sid]; }); }); }; Cfg.prototype.visit = function visit(ast) { var t = ast.type; if (t === 'Program' || t === 'BlockStatement') { return this.visitBlock(ast); } else if (t === 'ExpressionStatement') { return this.visitExpr(ast); } else if (t === 'CallExpression') { return this.visitCall(ast); } else if (t === 'VariableDeclaration') { return this.visitVar(ast); } else if (t === 'AssignmentExpression') { return this.visitAssign(ast); } else if (t === 'BinaryExpression') { return this.visitBinop(ast); } else if (t === 'LogicalExpression') { return this.visitLogical(ast); } else if (t === 'UnaryExpression') { return this.visitUnop(ast); } else if (t === 'UpdateExpression') { return this.visitUpdate(ast); } else if (t === 'Literal') { return this.visitLiteral(ast); } else if (t === 'Identifier') { return this.visitIdentifier(ast); } else if (t === 'MemberExpression') { return this.visitMember(ast); } else if (t === 'IfStatement') { return this.visitIf(ast); } else if (t === 'FunctionExpression') { return this.visitFunction(ast, true); } else if (t === 'FunctionDeclaration') { return this.visitFunction(ast, false); } else if (t === 'ReturnStatement') { return this.visitReturn(ast); } else if (t === 'WhileStatement') { return this.visitWhile(ast); } else if (t === 'DoWhileStatement') { return this.visitDoWhile(ast); } else if (t === 'ForStatement') { return this.visitFor(ast); } else if (t === 'ForInStatement') { return this.visitForIn(ast); } else if (t === 'BreakStatement') { return this.visitBreak(ast); } else if (t === 'ContinueStatement') { return this.visitContinue(ast); } else if (t === 'ConditionalExpression') { return this.visitConditional(ast); } else if (t === 'SequenceExpression') { return this.visitSequence(ast); } else if (t === 'ObjectExpression') { return this.visitObject(ast); } else if (t === 'ArrayExpression') { return this.visitArray(ast); } else if (t === 'ThisExpression') { return this.visitThis(ast); } else if (t === 'TryStatement') { return this.visitTry(ast); } else if (t === 'ThrowStatement') { return this.visitThrow(ast); } else if (t === 'NewExpression') { return this.visitNew(ast); } else if (t === 'SwitchStatement') { return this.visitSwitch(ast); } else if (t === 'EmptyStatement') { return null; } else { throw new Error('Type: ' + t + ' is not supported yet!'); } }; Cfg.prototype.visitBlock = function visitBlock(ast) { // Visit each statement ast.body.forEach(function(instr) { this.visit(instr); }, this); return null; }; Cfg.prototype.visitExpr = function visitExpr(ast) { return this.visit(ast.expression); }; Cfg.prototype.visitCall = function visitCall(ast) { if (ast.callee.type === 'MemberExpression') { return this.add('method', [ this.visit(ast.callee.object), this.visit(ast.callee.computed ? ast.callee.property : { type: 'Literal', value: ast.callee.property.name }) ].concat(ast.arguments.map(function(arg) { return this.visit(arg); }, this))); } else { return this.add('call', [ this.visit(ast.callee) ].concat(ast.arguments.map(function(arg) { return this.visit(arg); }, this))); } }; Cfg.prototype.visitVar = function visitVar(ast) { // Add var declaration to the root block (i.e. function start) this.currentRoot.prepend('var', ast.declarations.map(function(ast) { return ast.id.name; }, this)); // Put values into them ast.declarations.forEach(function(ast) { if (!ast.init) return; this.visit({ type: 'AssignmentExpression', operator: '=', left: ast.id, right: ast.init }); }, this); return null; }; Cfg.prototype.visitAssign = function visitAssign(ast) { if (ast.left.type === 'Identifier') { return this.add('set', [ast.operator, ast.left.name, this.visit(ast.right)]); } else if (ast.left.type === 'MemberExpression') { return this.add('setprop', [ast.operator, this.visit(ast.left.object), ast.left.computed ? this.visit(ast.left.property) : this.visitLiteral({ value: ast.left.property.name }), this.visit(ast.right)]); } else { throw new Error('Incorrect lhs of assignment'); } }; Cfg.prototype.visitBinop = function visitBinop(ast) { return this.add('binop', [ast.operator, this.visit(ast.left), this.visit(ast.right)]); }; Cfg.prototype.visitLogical = function visitLogical(ast) { var left = this.visit(ast.left), right, tblock = this.createBlock(), fblock = this.createBlock(), join = this.createBlock(), move1, move2; this.branch('logical', [ left ], tblock, fblock); if (ast.operator === '||') { this.setCurrentBlock(tblock); move1 = this.add('phimove', [ left ]); this.goto(join); this.setCurrentBlock(fblock); right = this.visit(ast.right); move2 = this.add('phimove', [ right ]); this.goto(join); } else { this.setCurrentBlock(tblock); right = this.visit(ast.right); move1 = this.add('phimove', [ right ]); this.goto(join); this.setCurrentBlock(fblock); move2 = this.add('phimove', [ left ]); this.goto(join); } this.setCurrentBlock(join); var phi = this.add('phi'); move1.addArg(phi); move2.addArg(phi); var afterJoin = this.createBlock(); this.goto(afterJoin); this.setCurrentBlock(afterJoin); return phi; }; Cfg.prototype.visitUnop = function visitUnop(ast) { return this.add('unop', [ast.operator, this.visit(ast.argument)]); }; Cfg.prototype.visitUpdate = function visitUpdate(ast) { return this.add('update', [ast.operator, ast.prefix, this.visit(ast.argument)]); }; Cfg.prototype.visitLiteral = function visitLiteral(ast) { return this.add('literal', [ast.value]); }; Cfg.prototype.visitIdentifier = function visitIdentifier(ast) { return this.add('get', [ast.name]); }; Cfg.prototype.visitMember = function visitMember(ast) { if (!ast.computed) { return this.add('getprop', [this.visit(ast.object), this.visit({ type: 'Literal', value: ast.property.name })]); } else { return this.add('getprop', [this.visit(ast.object), this.visit(ast.property)]); } }; Cfg.prototype.visitIf = function visitIf(ast) { var tblock = this.createBlock(), fblock = ast.alternate && this.createBlock(), join = this.createBlock(); this.branch('if', [ this.visit(ast.test) ], tblock, ast.alternate ? fblock : join); // True branch this.setCurrentBlock(tblock); this.visit(ast.consequent); this.goto(join); if (fblock) { // False branch this.setCurrentBlock(fblock); this.visit(ast.alternate); this.goto(join); var afterJoin = this.createBlock(); join.goto(afterJoin); this.setCurrentBlock(afterJoin); } else { this.setCurrentBlock(join); } return null; }; Cfg.prototype.visitFunction = function visitFunction(ast, expression) { var instr = this.add('fn'); instr.ast = ast; instr.isExpression = expression; instr.name = ast.id && ast.id.name; instr.params = ast.params.map(function(param) { return param.name; }); this.rootQueue.push({ instr: instr, ast: ast.body, parent: this.currentRoot }); return instr; }; Cfg.prototype.visitReturn = function visitReturn(ast) { this.add('return', ast.argument ? [this.visit(ast.argument)] : []); this.current.end(); this.exits.push(this.current); return null; }; Cfg.prototype.visitBreak = function visitBreak(ast) { var block = this.createBlock(); this.add(this.breakInfo.loop ? 'break' : 'sbreak'); this.current.addSuccessor(block); this.current.end(); this.breakInfo.breakBlocks.push(block); return null; }; Cfg.prototype.visitContinue = function visitContinue(ast) { var block = this.createBlock(); if (this.breakInfo.update) this.visit(this.breakInfo.update); this.add('continue'); this.current.addSuccessor(block); this.current.end(); this.breakInfo.continueBlocks.push(block); return null; }; Cfg.prototype.enterLoop = function enterLoop(cb) { var old = this.breakInfo, pre = this.createBlock(), loop = this.createBlock(), start = this.createBlock(), end = this.createBlock(); this.breakInfo = { loop: true, update: null, breakBlocks: [], continueBlocks: [] }; pre.loop = true; this.goto(pre); pre.goto(start); this.setCurrentBlock(start); var result = cb.call(this, end, loop); // Add continue blocks before looping block this.breakInfo.continueBlocks.concat(loop).reduce(function(p, b) { return p.goto(b); }, this.current); // Looping block goes to the start of loop loop.goto(pre); // Add break blocks after end var lastBrk = this.breakInfo.breakBlocks.reduce(function(p, b) { return p.goto(b); }, end); // Add one last block that will have only one parent this.setCurrentBlock(lastBrk.goto(this.createBlock())); // Restore this.breakInfo = old; return null; }; Cfg.prototype.loopTestBreak = function loopTestBreak(test) { this.visit({ type: 'IfStatement', test: { type: 'UnaryExpression', prefix: true, operator: '!', argument: test }, consequent: { type: 'BreakStatement' } }); }; Cfg.prototype.visitWhile = function visitWhile(ast) { return this.enterLoop(function(end) { var start = this.current, body = this.createBlock(); this.branch('loop', [], body, end); this.setCurrentBlock(body); this.loopTestBreak(ast.test); this.visit(ast.body); }); }; Cfg.prototype.visitDoWhile = function visitDoWhile(ast) { return this.enterLoop(function(end) { var start = this.current, body = this.createBlock(); this.branch('loop', [], body, end); this.setCurrentBlock(body); this.visit(ast.body); var cond = this.createBlock(); this.goto(cond); this.setCurrentBlock(cond); this.loopTestBreak(ast.test); }); }; Cfg.prototype.visitConditional = function visitConditional(ast) { var tblock = this.createBlock(), fblock = this.createBlock(), join = this.createBlock(); this.branch('ternary', [this.visit(ast.test), tblock, fblock], tblock, ast.alternate ? fblock : join); // True branch this.setCurrentBlock(tblock); var consequent = this.visit(ast.consequent), move1 = this.add('phimove', [consequent]); this.goto(join); // False branch this.setCurrentBlock(fblock); var alternate = this.visit(ast.alternate), move2 = this.add('phimove', [alternate]); this.goto(join); this.setCurrentBlock(join); var phi = this.add('phi'); move1.addArg(phi); move2.addArg(phi); var afterJoin = this.createBlock(); this.goto(afterJoin); this.setCurrentBlock(afterJoin); return phi; }; Cfg.prototype.visitSequence = function visitSequence(ast) { var result; ast.expressions.forEach(function(expr) { result = this.visit(expr); }, this); return result; }; Cfg.prototype.visitObject = function visitObject(ast) { var kvs = []; ast.properties.forEach(function(prop) { kvs.push(prop.key.type === 'Literal' ? prop.key.value : prop.key.name, this.visit(prop.value)); }, this); return this.add('object', kvs); }; Cfg.prototype.visitArray = function visitArray(ast) { var elements = ast.elements.map(function(elem) { return this.visit(elem); }, this); return this.add('array', elements); }; Cfg.prototype.visitThis = function visitThis(ast) { return this.add('get', ['this']); }; Cfg.prototype.visitFor = function visitFor(ast) { if (ast.init) this.visit(ast.init); return this.enterLoop(function(end, loop) { var start = this.current, body = this.createBlock(); this.breakInfo.update = ast.update; this.branch('loop', [], body, end); this.setCurrentBlock(body); this.loopTestBreak(ast.test); this.visit(ast.body); this.visit(ast.update); }); }; Cfg.prototype.visitForIn = function visitForIn(ast) { var left = ast.left, right = ast.right; if (left.type === 'VariableDeclaration') { this.visit(left); left = left.declarations[0].id; } else { // No declaration?! Create assignment this.visit({ type: 'AssignmentExpression', operator: '=', left: left, right: { type: 'Identifier', name: 'undefined' } }); } var leftName = left.name; left = this.visit(left); right = this.visit(right); right.isExternal = true; var props = this.add('getprops', [ right ]), iterator = '__$fi' + props.id; // Declare iterator this.currentRoot.prepend('var', [ iterator ]); this.add('set', [ '=', iterator, this.add('literal', [ 0 ]) ]); return this.enterLoop(function(end) { var start = this.current, body = this.createBlock(); this.breakInfo.update = { type: 'UpdateExpression', operator: '++', prefix: false, argument: { type: 'Identifier', name: iterator } }; var propCount = this.add('getprop', [ props, this.visit({ type: 'Literal', value: 'length' }) ]); var test = this.add('binop', [ '<', this.add('get', [ iterator ]), propCount ]); // Iterate through properties and set left according to current property this.branch('loop', [test], body, end); start.end(); this.setCurrentBlock(body); this.add('set', [ '=', leftName, this.add('getprop', [ props, this.add('get', [ iterator ]) ]) ]); this.visit(ast.body); this.visit(this.breakInfo.update); }); }; Cfg.prototype.visitTry = function visitTry(ast) { var body = this.createBlock(), caught = this.createBlock(), join = this.createBlock(); var instr = this.branch('try', [], body, caught); this.setCurrentBlock(body); this.visit(ast.block); this.goto(join); this.setCurrentBlock(caught); ast.handlers.forEach(function(handler) { instr.catchParam = handler.param.name; this.visit(handler.body); }, this); this.goto(join); this.setCurrentBlock(join); if (ast.finalizer) throw TypeError('Finally is not supported yet'); var afterJoin = this.createBlock(); this.goto(afterJoin); this.setCurrentBlock(afterJoin); return null; }; Cfg.prototype.visitThrow = function visitThrow(ast) { this.add('throw', ast.argument ? [ this.visit(ast.argument) ] : []); this.current.end(); return null; }; Cfg.prototype.visitNew = function visitNew(ast) { return this.add('new', [ this.visit(ast.callee) ].concat(ast.arguments.map(function(arg) { return this.visit(arg); }, this))); }; Cfg.prototype.visitSwitch = function visitSwitch(ast) { throw new TypeError('Switch is not implemented yet'); var self = this, disc = this.visit(ast.discriminant), old = this.breakInfo, lastBody, def; this.breakInfo = { loop: false, breakBlocks: [], continueBlocks: [] }; var lastBranch = ast.cases.reduce(function(prev, clause) { var body = self.createBlock(), next; if (clause.test === null) { // Do not create new blocks next = prev; def = body; var link = self.createBlock(); // Create link block if (lastBody) lastBody.goto(link); link.goto(body); def = body; } else { next = self.createBlock(); self.setCurrentBlock(prev); var test = self.add('binop', ['==', disc, self.visit(clause.test)]); prev.branch('if', [test], body, next); // Link body blocks together if (lastBody) lastBody.goto(body); } // Fill block with instructions self.setCurrentBlock(body); clause.consequent.forEach(function(ast) { this.visit(ast); }, self); lastBody = self.current; return next; }, this.current); if (def) { lastBranch.goto(def); } else { def = lastBranch; } var join = this.createBlock(); def.goto(join); lastBody.goto(join); // Add break blocks after end var lastBrk = this.breakInfo.breakBlocks.reduce(function(p, b) { return p.goto(b); }, join); this.setCurrentBlock(lastBrk); // Restore this.breakInfo = old; };
26.232558
80
0.591557
0c4b54c7b101d1ba71b793b9a1a3bf081f8999a0
484
js
JavaScript
template/src/_components/Users/index.js
jsoagger/transdev-base-reactui-template
ab273af688a0652bed18cec612d7f4a8930bb24b
[ "Apache-2.0" ]
null
null
null
template/src/_components/Users/index.js
jsoagger/transdev-base-reactui-template
ab273af688a0652bed18cec612d7f4a8930bb24b
[ "Apache-2.0" ]
null
null
null
template/src/_components/Users/index.js
jsoagger/transdev-base-reactui-template
ab273af688a0652bed18cec612d7f4a8930bb24b
[ "Apache-2.0" ]
null
null
null
import AddOrg from './AddOrg'; import AddPeople from './AddPeople'; import AddPerson from './AddPerson' import ManageContainerUsers from './ManageContainerUsers' import PeopleDetails from './PeopleDetails' import PeopleRegister from './PeopleRegister' import PeopleCard from './PeopleCard' import UserSystemSettings from './UserSystemSettings'; export { AddOrg, AddPeople, AddPerson, ManageContainerUsers, PeopleDetails, PeopleRegister, PeopleCard, UserSystemSettings }
22
57
0.791322
0c4c1d4685b2e7129c50da2f8a15111fa41802b2
40,916
js
JavaScript
hass_frontend/frontend_es5/chunk.a478493d75929791f2ed.js
algar42/ioBroker.lovelace
a3ab4eac1e83ef26006e6231b880b8f779ea7089
[ "Apache-2.0" ]
50
2019-05-16T23:36:20.000Z
2022-02-07T08:01:03.000Z
hass_frontend/frontend_es5/chunk.a478493d75929791f2ed.js
5G7K/ioBroker.lovelace
f9c43837b89d4c31b4d53d4b186a701ab71efc4e
[ "Apache-2.0" ]
238
2019-05-29T13:49:55.000Z
2022-03-20T17:24:26.000Z
hass_frontend/frontend_es5/chunk.a478493d75929791f2ed.js
algar42/ioBroker.lovelace
a3ab4eac1e83ef26006e6231b880b8f779ea7089
[ "Apache-2.0" ]
40
2019-07-14T14:00:22.000Z
2021-12-28T19:10:39.000Z
(self.webpackChunkhome_assistant_frontend=self.webpackChunkhome_assistant_frontend||[]).push([[3525],{24734:function(e,t,n){"use strict";n.d(t,{B:function(){return i}});var r=n(47181),i=function(e,t){(0,r.B)(e,"show-dialog",{dialogTag:"dialog-media-player-browse",dialogImport:function(){return Promise.all([n.e(8161),n.e(1041),n.e(3967),n.e(1657),n.e(4444),n.e(7724),n.e(2613),n.e(9799),n.e(6294),n.e(839),n.e(7909),n.e(4821),n.e(4535),n.e(5397),n.e(2809)]).then(n.bind(n,52809))},dialogParams:t})}},13525:function(e,t,n){"use strict";n.r(t),n.d(t,{HuiMediaControlCard:function(){return Ee}});n(25230);var r=n(68546),i=(n(85481),n(50424)),o=n(55358),a=n(76666),s=n(92483),c=n(62877),l=n(47181),u=n(91741),d=n(36145),f=n(40095),h=n(67794),p=n.n(h),m=n(74790),v=!1;p()._pipeline.generator.register("default",(function(e){e.sort((function(e,t){return t.population-e.population}));for(var t,n=e[0],r=new Map,i=function(e,t){return r.has(e)||r.set(e,(0,m.$)(n.rgb,t)),r.get(e)>4.5},o=1;o<e.length&&void 0===t;o++){if(i(e[o].hex,e[o].rgb)){v,t=e[o].rgb;break}var a=e[o];v;for(var s=o+1;s<e.length;s++){var c=e[s],l=Math.abs(a.rgb[0]-c.rgb[0])+Math.abs(a.rgb[1]-c.rgb[1])+Math.abs(a.rgb[2]-c.rgb[2]);if(!(l>150)&&i(c.hex,c.rgb)){v,t=c.rgb;break}}}return void 0===t&&(t=n.getYiq()<200?[255,255,255]:[0,0,0]),{foreground:new n.constructor(t,0),background:n}}));var y,g,b,k,_=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:16;return new(p())(e,{colorCount:t}).getPalette().then((function(e){var t=e.foreground;return{background:e.background,foreground:t}}))},w=n(38346),E=(n(22098),n(16509),n(10983),n(52039),n(24734)),x=n(56007),C=n(69371),P=n(15688),O=n(53658),S=n(54845);function j(e){return(j="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function z(e,t){return t||(t=e.slice(0)),Object.freeze(Object.defineProperties(e,{raw:{value:Object.freeze(t)}}))}function A(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function D(e,t){return(D=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}function I(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,r=W(e);if(t){var i=W(this).constructor;n=Reflect.construct(r,arguments,i)}else n=r.apply(this,arguments);return T(this,n)}}function T(e,t){return!t||"object"!==j(t)&&"function"!=typeof t?B(e):t}function B(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function R(){R=function(){return e};var e={elementsDefinitionOrder:[["method"],["field"]],initializeInstanceElements:function(e,t){["method","field"].forEach((function(n){t.forEach((function(t){t.kind===n&&"own"===t.placement&&this.defineClassElement(e,t)}),this)}),this)},initializeClassElements:function(e,t){var n=e.prototype;["method","field"].forEach((function(r){t.forEach((function(t){var i=t.placement;if(t.kind===r&&("static"===i||"prototype"===i)){var o="static"===i?e:n;this.defineClassElement(o,t)}}),this)}),this)},defineClassElement:function(e,t){var n=t.descriptor;if("field"===t.kind){var r=t.initializer;n={enumerable:n.enumerable,writable:n.writable,configurable:n.configurable,value:void 0===r?void 0:r.call(e)}}Object.defineProperty(e,t.key,n)},decorateClass:function(e,t){var n=[],r=[],i={static:[],prototype:[],own:[]};if(e.forEach((function(e){this.addElementPlacement(e,i)}),this),e.forEach((function(e){if(!F(e))return n.push(e);var t=this.decorateElement(e,i);n.push(t.element),n.push.apply(n,t.extras),r.push.apply(r,t.finishers)}),this),!t)return{elements:n,finishers:r};var o=this.decorateConstructor(n,t);return r.push.apply(r,o.finishers),o.finishers=r,o},addElementPlacement:function(e,t,n){var r=t[e.placement];if(!n&&-1!==r.indexOf(e.key))throw new TypeError("Duplicated element ("+e.key+")");r.push(e.key)},decorateElement:function(e,t){for(var n=[],r=[],i=e.decorators,o=i.length-1;o>=0;o--){var a=t[e.placement];a.splice(a.indexOf(e.key),1);var s=this.fromElementDescriptor(e),c=this.toElementFinisherExtras((0,i[o])(s)||s);e=c.element,this.addElementPlacement(e,t),c.finisher&&r.push(c.finisher);var l=c.extras;if(l){for(var u=0;u<l.length;u++)this.addElementPlacement(l[u],t);n.push.apply(n,l)}}return{element:e,finishers:r,extras:n}},decorateConstructor:function(e,t){for(var n=[],r=t.length-1;r>=0;r--){var i=this.fromClassDescriptor(e),o=this.toClassDescriptor((0,t[r])(i)||i);if(void 0!==o.finisher&&n.push(o.finisher),void 0!==o.elements){e=o.elements;for(var a=0;a<e.length-1;a++)for(var s=a+1;s<e.length;s++)if(e[a].key===e[s].key&&e[a].placement===e[s].placement)throw new TypeError("Duplicated element ("+e[a].key+")")}}return{elements:e,finishers:n}},fromElementDescriptor:function(e){var t={kind:e.kind,key:e.key,placement:e.placement,descriptor:e.descriptor};return Object.defineProperty(t,Symbol.toStringTag,{value:"Descriptor",configurable:!0}),"field"===e.kind&&(t.initializer=e.initializer),t},toElementDescriptors:function(e){var t;if(void 0!==e)return(t=e,function(e){if(Array.isArray(e))return e}(t)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(t)||function(e,t){if(e){if("string"==typeof e)return H(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?H(e,t):void 0}}(t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()).map((function(e){var t=this.toElementDescriptor(e);return this.disallowProperty(e,"finisher","An element descriptor"),this.disallowProperty(e,"extras","An element descriptor"),t}),this)},toElementDescriptor:function(e){var t=String(e.kind);if("method"!==t&&"field"!==t)throw new TypeError('An element descriptor\'s .kind property must be either "method" or "field", but a decorator created an element descriptor with .kind "'+t+'"');var n=V(e.key),r=String(e.placement);if("static"!==r&&"prototype"!==r&&"own"!==r)throw new TypeError('An element descriptor\'s .placement property must be one of "static", "prototype" or "own", but a decorator created an element descriptor with .placement "'+r+'"');var i=e.descriptor;this.disallowProperty(e,"elements","An element descriptor");var o={kind:t,key:n,placement:r,descriptor:Object.assign({},i)};return"field"!==t?this.disallowProperty(e,"initializer","A method descriptor"):(this.disallowProperty(i,"get","The property descriptor of a field descriptor"),this.disallowProperty(i,"set","The property descriptor of a field descriptor"),this.disallowProperty(i,"value","The property descriptor of a field descriptor"),o.initializer=e.initializer),o},toElementFinisherExtras:function(e){return{element:this.toElementDescriptor(e),finisher:N(e,"finisher"),extras:this.toElementDescriptors(e.extras)}},fromClassDescriptor:function(e){var t={kind:"class",elements:e.map(this.fromElementDescriptor,this)};return Object.defineProperty(t,Symbol.toStringTag,{value:"Descriptor",configurable:!0}),t},toClassDescriptor:function(e){var t=String(e.kind);if("class"!==t)throw new TypeError('A class descriptor\'s .kind property must be "class", but a decorator created a class descriptor with .kind "'+t+'"');this.disallowProperty(e,"key","A class descriptor"),this.disallowProperty(e,"placement","A class descriptor"),this.disallowProperty(e,"descriptor","A class descriptor"),this.disallowProperty(e,"initializer","A class descriptor"),this.disallowProperty(e,"extras","A class descriptor");var n=N(e,"finisher");return{elements:this.toElementDescriptors(e.elements),finisher:n}},runClassFinishers:function(e,t){for(var n=0;n<t.length;n++){var r=(0,t[n])(e);if(void 0!==r){if("function"!=typeof r)throw new TypeError("Finishers must return a constructor.");e=r}}return e},disallowProperty:function(e,t,n){if(void 0!==e[t])throw new TypeError(n+" can't have a ."+t+" property.")}};return e}function q(e){var t,n=V(e.key);"method"===e.kind?t={value:e.value,writable:!0,configurable:!0,enumerable:!1}:"get"===e.kind?t={get:e.value,configurable:!0,enumerable:!1}:"set"===e.kind?t={set:e.value,configurable:!0,enumerable:!1}:"field"===e.kind&&(t={configurable:!0,writable:!0,enumerable:!0});var r={kind:"field"===e.kind?"field":"method",key:n,placement:e.static?"static":"field"===e.kind?"own":"prototype",descriptor:t};return e.decorators&&(r.decorators=e.decorators),"field"===e.kind&&(r.initializer=e.value),r}function M(e,t){void 0!==e.descriptor.get?t.descriptor.get=e.descriptor.get:t.descriptor.set=e.descriptor.set}function F(e){return e.decorators&&e.decorators.length}function U(e){return void 0!==e&&!(void 0===e.value&&void 0===e.writable)}function N(e,t){var n=e[t];if(void 0!==n&&"function"!=typeof n)throw new TypeError("Expected '"+t+"' to be a function");return n}function V(e){var t=function(e,t){if("object"!==j(e)||null===e)return e;var n=e[Symbol.toPrimitive];if(void 0!==n){var r=n.call(e,t||"default");if("object"!==j(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(e,"string");return"symbol"===j(t)?t:String(t)}function H(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function L(e,t,n){return(L="undefined"!=typeof Reflect&&Reflect.get?Reflect.get:function(e,t,n){var r=function(e,t){for(;!Object.prototype.hasOwnProperty.call(e,t)&&null!==(e=W(e)););return e}(e,t);if(r){var i=Object.getOwnPropertyDescriptor(r,t);return i.get?i.get.call(n):i.value}})(e,t,n||e)}function W(e){return(W=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}!function(e,t,n,r){var i=R();if(r)for(var o=0;o<r.length;o++)i=r[o](i);var a=t((function(e){i.initializeInstanceElements(e,s.elements)}),n),s=i.decorateClass(function(e){for(var t=[],n=function(e){return"method"===e.kind&&e.key===o.key&&e.placement===o.placement},r=0;r<e.length;r++){var i,o=e[r];if("method"===o.kind&&(i=t.find(n)))if(U(o.descriptor)||U(i.descriptor)){if(F(o)||F(i))throw new ReferenceError("Duplicated methods ("+o.key+") can't be decorated.");i.descriptor=o.descriptor}else{if(F(o)){if(F(i))throw new ReferenceError("Decorators can't be placed on different accessors with for the same property ("+o.key+").");i.decorators=o.decorators}M(o,i)}else t.push(o)}return t}(a.d.map(q)),e);i.initializeClassElements(a.F,s.elements),i.runClassFinishers(a.F,s.finishers)}([(0,o.Mo)("hui-marquee")],(function(e,t){var n=function(t){!function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&D(e,t)}(r,t);var n=I(r);function r(){var t;A(this,r);for(var i=arguments.length,o=new Array(i),a=0;a<i;a++)o[a]=arguments[a];return t=n.call.apply(n,[this].concat(o)),e(B(t)),t}return r}(t);return{F:n,d:[{kind:"field",decorators:[(0,o.Cb)()],key:"text",value:void 0},{kind:"field",decorators:[(0,o.Cb)({type:Boolean})],key:"active",value:void 0},{kind:"field",decorators:[(0,o.Cb)({reflect:!0,type:Boolean,attribute:"animating"})],key:"_animating",value:function(){return!1}},{kind:"method",key:"firstUpdated",value:function(e){var t=this;L(W(n.prototype),"firstUpdated",this).call(this,e),this.addEventListener("mouseover",(function(){return t.classList.add("hovering")}),{capture:!0}),this.addEventListener("mouseout",(function(){return t.classList.remove("hovering")}))}},{kind:"method",key:"updated",value:function(e){L(W(n.prototype),"updated",this).call(this,e),e.has("text")&&this._animating&&(this._animating=!1),e.has("active")&&this.active&&this.offsetWidth<this.scrollWidth&&(this._animating=!0)}},{kind:"method",key:"render",value:function(){return this.text?(0,i.dy)(g||(g=z(['\n <div class="marquee-inner" @animationiteration=',">\n <span>","</span>\n ","\n </div>\n "])),this._onIteration,this.text,this._animating?(0,i.dy)(b||(b=z([" <span>","</span> "])),this.text):""):(0,i.dy)(y||(y=z([""])))}},{kind:"method",key:"_onIteration",value:function(){this.active||(this._animating=!1)}},{kind:"get",static:!0,key:"styles",value:function(){return(0,i.iv)(k||(k=z(["\n :host {\n display: flex;\n position: relative;\n align-items: center;\n height: 1.2em;\n contain: strict;\n }\n\n .marquee-inner {\n position: absolute;\n left: 0;\n right: 0;\n text-overflow: ellipsis;\n overflow: hidden;\n }\n\n :host(.hovering) .marquee-inner {\n text-overflow: initial;\n overflow: initial;\n }\n\n :host([animating]) .marquee-inner {\n left: initial;\n right: initial;\n animation: marquee 10s linear infinite;\n }\n\n :host([animating]) .marquee-inner span {\n padding-right: 16px;\n }\n\n @keyframes marquee {\n 0% {\n transform: translateX(0%);\n }\n 100% {\n transform: translateX(-50%);\n }\n }\n "])))}}]}}),i.oi);var $,X,G,Y,J,K,Q,Z,ee,te,ne,re=n(75502);function ie(e){return(ie="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function oe(e,t){return t||(t=e.slice(0)),Object.freeze(Object.defineProperties(e,{raw:{value:Object.freeze(t)}}))}function ae(e,t,n,r,i,o,a){try{var s=e[o](a),c=s.value}catch(l){return void n(l)}s.done?t(c):Promise.resolve(c).then(r,i)}function se(e){return function(){var t=this,n=arguments;return new Promise((function(r,i){var o=e.apply(t,n);function a(e){ae(o,r,i,a,s,"next",e)}function s(e){ae(o,r,i,a,s,"throw",e)}a(void 0)}))}}function ce(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function le(e,t){return(le=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}function ue(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,r=we(e);if(t){var i=we(this).constructor;n=Reflect.construct(r,arguments,i)}else n=r.apply(this,arguments);return de(this,n)}}function de(e,t){return!t||"object"!==ie(t)&&"function"!=typeof t?fe(e):t}function fe(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function he(){he=function(){return e};var e={elementsDefinitionOrder:[["method"],["field"]],initializeInstanceElements:function(e,t){["method","field"].forEach((function(n){t.forEach((function(t){t.kind===n&&"own"===t.placement&&this.defineClassElement(e,t)}),this)}),this)},initializeClassElements:function(e,t){var n=e.prototype;["method","field"].forEach((function(r){t.forEach((function(t){var i=t.placement;if(t.kind===r&&("static"===i||"prototype"===i)){var o="static"===i?e:n;this.defineClassElement(o,t)}}),this)}),this)},defineClassElement:function(e,t){var n=t.descriptor;if("field"===t.kind){var r=t.initializer;n={enumerable:n.enumerable,writable:n.writable,configurable:n.configurable,value:void 0===r?void 0:r.call(e)}}Object.defineProperty(e,t.key,n)},decorateClass:function(e,t){var n=[],r=[],i={static:[],prototype:[],own:[]};if(e.forEach((function(e){this.addElementPlacement(e,i)}),this),e.forEach((function(e){if(!ve(e))return n.push(e);var t=this.decorateElement(e,i);n.push(t.element),n.push.apply(n,t.extras),r.push.apply(r,t.finishers)}),this),!t)return{elements:n,finishers:r};var o=this.decorateConstructor(n,t);return r.push.apply(r,o.finishers),o.finishers=r,o},addElementPlacement:function(e,t,n){var r=t[e.placement];if(!n&&-1!==r.indexOf(e.key))throw new TypeError("Duplicated element ("+e.key+")");r.push(e.key)},decorateElement:function(e,t){for(var n=[],r=[],i=e.decorators,o=i.length-1;o>=0;o--){var a=t[e.placement];a.splice(a.indexOf(e.key),1);var s=this.fromElementDescriptor(e),c=this.toElementFinisherExtras((0,i[o])(s)||s);e=c.element,this.addElementPlacement(e,t),c.finisher&&r.push(c.finisher);var l=c.extras;if(l){for(var u=0;u<l.length;u++)this.addElementPlacement(l[u],t);n.push.apply(n,l)}}return{element:e,finishers:r,extras:n}},decorateConstructor:function(e,t){for(var n=[],r=t.length-1;r>=0;r--){var i=this.fromClassDescriptor(e),o=this.toClassDescriptor((0,t[r])(i)||i);if(void 0!==o.finisher&&n.push(o.finisher),void 0!==o.elements){e=o.elements;for(var a=0;a<e.length-1;a++)for(var s=a+1;s<e.length;s++)if(e[a].key===e[s].key&&e[a].placement===e[s].placement)throw new TypeError("Duplicated element ("+e[a].key+")")}}return{elements:e,finishers:n}},fromElementDescriptor:function(e){var t={kind:e.kind,key:e.key,placement:e.placement,descriptor:e.descriptor};return Object.defineProperty(t,Symbol.toStringTag,{value:"Descriptor",configurable:!0}),"field"===e.kind&&(t.initializer=e.initializer),t},toElementDescriptors:function(e){var t;if(void 0!==e)return(t=e,function(e){if(Array.isArray(e))return e}(t)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(t)||function(e,t){if(e){if("string"==typeof e)return ke(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?ke(e,t):void 0}}(t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()).map((function(e){var t=this.toElementDescriptor(e);return this.disallowProperty(e,"finisher","An element descriptor"),this.disallowProperty(e,"extras","An element descriptor"),t}),this)},toElementDescriptor:function(e){var t=String(e.kind);if("method"!==t&&"field"!==t)throw new TypeError('An element descriptor\'s .kind property must be either "method" or "field", but a decorator created an element descriptor with .kind "'+t+'"');var n=be(e.key),r=String(e.placement);if("static"!==r&&"prototype"!==r&&"own"!==r)throw new TypeError('An element descriptor\'s .placement property must be one of "static", "prototype" or "own", but a decorator created an element descriptor with .placement "'+r+'"');var i=e.descriptor;this.disallowProperty(e,"elements","An element descriptor");var o={kind:t,key:n,placement:r,descriptor:Object.assign({},i)};return"field"!==t?this.disallowProperty(e,"initializer","A method descriptor"):(this.disallowProperty(i,"get","The property descriptor of a field descriptor"),this.disallowProperty(i,"set","The property descriptor of a field descriptor"),this.disallowProperty(i,"value","The property descriptor of a field descriptor"),o.initializer=e.initializer),o},toElementFinisherExtras:function(e){return{element:this.toElementDescriptor(e),finisher:ge(e,"finisher"),extras:this.toElementDescriptors(e.extras)}},fromClassDescriptor:function(e){var t={kind:"class",elements:e.map(this.fromElementDescriptor,this)};return Object.defineProperty(t,Symbol.toStringTag,{value:"Descriptor",configurable:!0}),t},toClassDescriptor:function(e){var t=String(e.kind);if("class"!==t)throw new TypeError('A class descriptor\'s .kind property must be "class", but a decorator created a class descriptor with .kind "'+t+'"');this.disallowProperty(e,"key","A class descriptor"),this.disallowProperty(e,"placement","A class descriptor"),this.disallowProperty(e,"descriptor","A class descriptor"),this.disallowProperty(e,"initializer","A class descriptor"),this.disallowProperty(e,"extras","A class descriptor");var n=ge(e,"finisher");return{elements:this.toElementDescriptors(e.elements),finisher:n}},runClassFinishers:function(e,t){for(var n=0;n<t.length;n++){var r=(0,t[n])(e);if(void 0!==r){if("function"!=typeof r)throw new TypeError("Finishers must return a constructor.");e=r}}return e},disallowProperty:function(e,t,n){if(void 0!==e[t])throw new TypeError(n+" can't have a ."+t+" property.")}};return e}function pe(e){var t,n=be(e.key);"method"===e.kind?t={value:e.value,writable:!0,configurable:!0,enumerable:!1}:"get"===e.kind?t={get:e.value,configurable:!0,enumerable:!1}:"set"===e.kind?t={set:e.value,configurable:!0,enumerable:!1}:"field"===e.kind&&(t={configurable:!0,writable:!0,enumerable:!0});var r={kind:"field"===e.kind?"field":"method",key:n,placement:e.static?"static":"field"===e.kind?"own":"prototype",descriptor:t};return e.decorators&&(r.decorators=e.decorators),"field"===e.kind&&(r.initializer=e.value),r}function me(e,t){void 0!==e.descriptor.get?t.descriptor.get=e.descriptor.get:t.descriptor.set=e.descriptor.set}function ve(e){return e.decorators&&e.decorators.length}function ye(e){return void 0!==e&&!(void 0===e.value&&void 0===e.writable)}function ge(e,t){var n=e[t];if(void 0!==n&&"function"!=typeof n)throw new TypeError("Expected '"+t+"' to be a function");return n}function be(e){var t=function(e,t){if("object"!==ie(e)||null===e)return e;var n=e[Symbol.toPrimitive];if(void 0!==n){var r=n.call(e,t||"default");if("object"!==ie(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(e,"string");return"symbol"===ie(t)?t:String(t)}function ke(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function _e(e,t,n){return(_e="undefined"!=typeof Reflect&&Reflect.get?Reflect.get:function(e,t,n){var r=function(e,t){for(;!Object.prototype.hasOwnProperty.call(e,t)&&null!==(e=we(e)););return e}(e,t);if(r){var i=Object.getOwnPropertyDescriptor(r,t);return i.get?i.get.call(n):i.value}})(e,t,n||e)}function we(e){return(we=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}var Ee=function(e,t,n,r){var i=he();if(r)for(var o=0;o<r.length;o++)i=r[o](i);var a=t((function(e){i.initializeInstanceElements(e,s.elements)}),n),s=i.decorateClass(function(e){for(var t=[],n=function(e){return"method"===e.kind&&e.key===o.key&&e.placement===o.placement},r=0;r<e.length;r++){var i,o=e[r];if("method"===o.kind&&(i=t.find(n)))if(ye(o.descriptor)||ye(i.descriptor)){if(ve(o)||ve(i))throw new ReferenceError("Duplicated methods ("+o.key+") can't be decorated.");i.descriptor=o.descriptor}else{if(ve(o)){if(ve(i))throw new ReferenceError("Decorators can't be placed on different accessors with for the same property ("+o.key+").");i.decorators=o.decorators}me(o,i)}else t.push(o)}return t}(a.d.map(pe)),e);return i.initializeClassElements(a.F,s.elements),i.runClassFinishers(a.F,s.finishers)}([(0,o.Mo)("hui-media-control-card")],(function(e,t){var h,p,m,v=function(t){!function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&le(e,t)}(r,t);var n=ue(r);function r(){var t;ce(this,r);for(var i=arguments.length,o=new Array(i),a=0;a<i;a++)o[a]=arguments[a];return t=n.call.apply(n,[this].concat(o)),e(fe(t)),t}return r}(t);return{F:v,d:[{kind:"method",static:!0,key:"getConfigElement",value:(m=se(regeneratorRuntime.mark((function e(){return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,Promise.all([n.e(5009),n.e(2955),n.e(8161),n.e(1041),n.e(1657),n.e(4268),n.e(3098),n.e(129),n.e(4535),n.e(2105)]).then(n.bind(n,52105));case 2:return e.abrupt("return",document.createElement("hui-media-control-card-editor"));case 3:case"end":return e.stop()}}),e)}))),function(){return m.apply(this,arguments)})},{kind:"method",static:!0,key:"getStubConfig",value:function(e,t,n){return{type:"media-control",entity:(0,P.j)(e,1,t,n,["media_player"])[0]||""}}},{kind:"field",decorators:[(0,o.Cb)({attribute:!1})],key:"hass",value:void 0},{kind:"field",decorators:[(0,o.SB)()],key:"_config",value:void 0},{kind:"field",decorators:[(0,o.SB)()],key:"_foregroundColor",value:void 0},{kind:"field",decorators:[(0,o.SB)()],key:"_backgroundColor",value:void 0},{kind:"field",decorators:[(0,o.SB)()],key:"_narrow",value:function(){return!1}},{kind:"field",decorators:[(0,o.SB)()],key:"_veryNarrow",value:function(){return!1}},{kind:"field",decorators:[(0,o.SB)()],key:"_cardHeight",value:function(){return 0}},{kind:"field",decorators:[(0,o.IO)("paper-progress")],key:"_progressBar",value:void 0},{kind:"field",decorators:[(0,o.SB)()],key:"_marqueeActive",value:function(){return!1}},{kind:"field",key:"_progressInterval",value:void 0},{kind:"field",key:"_resizeObserver",value:void 0},{kind:"method",key:"getCardSize",value:function(){return 3}},{kind:"method",key:"setConfig",value:function(e){if(!e.entity||"media_player"!==e.entity.split(".")[0])throw new Error("Specify an entity from within the media_player domain");this._config=e}},{kind:"method",key:"connectedCallback",value:function(){var e=this;if(_e(we(v.prototype),"connectedCallback",this).call(this),this.updateComplete.then((function(){return e._attachObserver()})),this.hass&&this._config){var t=this._stateObj;t&&!this._progressInterval&&this._showProgressBar&&"playing"===t.state&&(this._progressInterval=window.setInterval((function(){return e._updateProgressBar()}),1e3))}}},{kind:"method",key:"disconnectedCallback",value:function(){this._progressInterval&&(clearInterval(this._progressInterval),this._progressInterval=void 0),this._resizeObserver&&this._resizeObserver.disconnect()}},{kind:"method",key:"render",value:function(){var e=this;if(!this.hass||!this._config)return(0,i.dy)($||($=oe([""])));var t=this._stateObj;if(!t)return(0,i.dy)(X||(X=oe(["\n <hui-warning>\n ","\n </hui-warning>\n "])),(0,re.i)(this.hass,this._config.entity));var n={"background-image":this._image?"url(".concat(this.hass.hassUrl(this._image),")"):"none",width:"".concat(this._cardHeight,"px"),"background-color":this._backgroundColor||""},o={"background-image":"linear-gradient(to right, ".concat(this._backgroundColor,", ").concat(this._backgroundColor+"00",")"),width:"".concat(this._cardHeight,"px")},c=t.state,l="off"===c,h=x.V_.includes(c)||"off"===c&&!(0,f.e)(t,C.rv),p=!this._image,m=(0,C.xt)(t),v=m&&(!this._veryNarrow||l||"idle"===c||"on"===c),y=(0,C.Mj)(t);return(0,i.dy)(G||(G=oe(['\n <ha-card>\n <div\n class="background ','"\n >\n <div\n class="color-block"\n style=','\n ></div>\n <div\n class="no-img"\n style=','\n ></div>\n <div class="image" style=',"></div>\n ",'\n </div>\n <div\n class="player ','"\n style=','\n >\n <div class="top-info">\n <div class="icon-name">\n <ha-icon class="icon" .icon=',"></ha-icon>\n <div>\n ",'\n </div>\n </div>\n <div>\n <ha-icon-button\n icon="hass:dots-vertical"\n class="more-info"\n @click=',"\n ></ha-icon-button>\n </div>\n </div>\n ","\n </div>\n </ha-card>\n "])),(0,a.$)({"no-image":p,off:l||h,unavailable:h}),(0,s.V)({"background-color":this._backgroundColor||""}),(0,s.V)({"background-color":this._backgroundColor||""}),(0,s.V)(n),p?"":(0,i.dy)(Y||(Y=oe(['\n <div\n class="color-gradient"\n style=',"\n ></div>\n "])),(0,s.V)(o)),(0,a.$)({"no-image":p,narrow:this._narrow&&!this._veryNarrow,off:l||h,"no-progress":this._veryNarrow||!this._showProgressBar,"no-controls":!v}),(0,s.V)({color:this._foregroundColor||""}),(0,d.M)(t),this._config.name||(0,u.C)(this.hass.states[this._config.entity]),this._handleMoreInfo,!h&&(y||t.attributes.media_title||v)?(0,i.dy)(J||(J=oe(['\n <div>\n <div class="title-controls">\n ',"\n ","\n </div>\n ","\n </div>\n "])),y||t.attributes.media_title?(0,i.dy)(K||(K=oe(['\n <div class="media-info">\n <hui-marquee\n .text=',"\n .active=","\n @mouseover=","\n @mouseleave=","\n ></hui-marquee>\n ","\n </div>\n "])),t.attributes.media_title||y,this._marqueeActive,this._marqueeMouseOver,this._marqueeMouseLeave,t.attributes.media_title?y:""):"",v?(0,i.dy)(Q||(Q=oe(['\n <div class="controls">\n ',"\n ","\n </div>\n "])),m.map((function(t){return(0,i.dy)(Z||(Z=oe(["\n <ha-icon-button\n .title=","\n .icon=","\n action=","\n @click=","\n ></ha-icon-button>\n "])),e.hass.localize("ui.card.media_player.".concat(t.action)),t.icon,t.action,e._handleClick)})),(0,f.e)(t,C.pu)?(0,i.dy)(ee||(ee=oe(['\n <mwc-icon-button\n class="browse-media"\n .title=',"\n @click=","\n ><ha-svg-icon\n .path=","\n ></ha-svg-icon\n ></mwc-icon-button>\n "])),this.hass.localize("ui.card.media_player.browse_media"),this._handleBrowseMedia,r.hBf):""):"",this._showProgressBar?(0,i.dy)(te||(te=oe(["\n <paper-progress\n .max=","\n style=","\n @click=","\n ></paper-progress>\n "])),t.attributes.media_duration,(0,s.V)({"--paper-progress-active-color":this._foregroundColor||"var(--accent-color)",cursor:(0,f.e)(t,C.xh)?"pointer":"initial"}),this._handleSeek):""):"")}},{kind:"method",key:"shouldUpdate",value:function(e){return(0,O.G)(this,e)}},{kind:"method",key:"firstUpdated",value:function(){this._attachObserver()}},{kind:"method",key:"willUpdate",value:function(e){var t,n;if(_e(we(v.prototype),"willUpdate",this).call(this,e),this.hasUpdated||this._measureCard(),this._config&&this.hass&&(e.has("_config")||e.has("hass"))){if(!this._stateObj)return this._progressInterval&&(clearInterval(this._progressInterval),this._progressInterval=void 0),this._foregroundColor=void 0,void(this._backgroundColor=void 0);var r=e.get("hass"),i=(null==r||null===(t=r.states[this._config.entity])||void 0===t?void 0:t.attributes.entity_picture_local)||(null==r||null===(n=r.states[this._config.entity])||void 0===n?void 0:n.attributes.entity_picture);if(!this._image)return this._foregroundColor=void 0,void(this._backgroundColor=void 0);this._image!==i&&this._setColors()}}},{kind:"method",key:"updated",value:function(e){var t=this;if(this._config&&this.hass&&this._stateObj&&(e.has("_config")||e.has("hass"))){var n=this._stateObj,r=e.get("hass"),i=e.get("_config");r&&i&&r.themes===this.hass.themes&&i.theme===this._config.theme||(0,c.R)(this,this.hass.themes,this._config.theme),this._updateProgressBar(),!this._progressInterval&&this._showProgressBar&&"playing"===n.state?this._progressInterval=window.setInterval((function(){return t._updateProgressBar()}),1e3):!this._progressInterval||this._showProgressBar&&"playing"===n.state||(clearInterval(this._progressInterval),this._progressInterval=void 0)}}},{kind:"get",key:"_image",value:function(){if(this.hass&&this._config){var e=this._stateObj;if(e)return e.attributes.entity_picture_local||e.attributes.entity_picture}}},{kind:"get",key:"_showProgressBar",value:function(){if(!this.hass||!this._config||this._narrow)return!1;var e=this._stateObj;return!!e&&(("playing"===e.state||"paused"===e.state)&&"media_duration"in e.attributes&&"media_position"in e.attributes)}},{kind:"method",key:"_measureCard",value:function(){var e=this.shadowRoot.querySelector("ha-card");e&&(this._narrow=e.offsetWidth<350,this._veryNarrow=e.offsetWidth<300,this._cardHeight=e.offsetHeight)}},{kind:"method",key:"_attachObserver",value:(p=se(regeneratorRuntime.mark((function e(){var t,n=this;return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(this._resizeObserver){e.next=4;break}return e.next=3,(0,S.P)();case 3:this._resizeObserver=new ResizeObserver((0,w.D)((function(){return n._measureCard()}),250,!1));case 4:if(t=this.shadowRoot.querySelector("ha-card")){e.next=7;break}return e.abrupt("return");case 7:this._resizeObserver.observe(t);case 8:case"end":return e.stop()}}),e,this)}))),function(){return p.apply(this,arguments)})},{kind:"method",key:"_handleMoreInfo",value:function(){(0,l.B)(this,"hass-more-info",{entityId:this._config.entity})}},{kind:"method",key:"_handleBrowseMedia",value:function(){var e=this;(0,E.B)(this,{action:"play",entityId:this._config.entity,mediaPickedCallback:function(t){return e._playMedia(t.item.media_content_id,t.item.media_content_type)}})}},{kind:"method",key:"_playMedia",value:function(e,t){this.hass.callService("media_player","play_media",{entity_id:this._config.entity,media_content_id:e,media_content_type:t})}},{kind:"method",key:"_handleClick",value:function(e){var t=e.currentTarget.getAttribute("action");this.hass.callService("media_player",t,{entity_id:this._config.entity})}},{kind:"method",key:"_updateProgressBar",value:function(){this._progressBar&&(this._progressBar.value=(0,C.rs)(this._stateObj))}},{kind:"get",key:"_stateObj",value:function(){return this.hass.states[this._config.entity]}},{kind:"method",key:"_handleSeek",value:function(e){var t=this._stateObj;if((0,f.e)(t,C.xh)){var n=this.shadowRoot.querySelector("paper-progress").offsetWidth,r=e.offsetX/n,i=e.currentTarget.max*r;this.hass.callService("media_player","media_seek",{entity_id:this._config.entity,seek_position:i})}}},{kind:"method",key:"_setColors",value:(h=se(regeneratorRuntime.mark((function e(){var t,n,r;return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(this._image){e.next=2;break}return e.abrupt("return");case 2:return e.prev=2,e.next=5,_(this._image);case 5:t=e.sent,n=t.foreground,r=t.background,this._backgroundColor=r.hex,this._foregroundColor=n.hex,e.next=17;break;case 12:e.prev=12,e.t0=e.catch(2),console.error("Error getting Image Colors",e.t0),this._foregroundColor=void 0,this._backgroundColor=void 0;case 17:case"end":return e.stop()}}),e,this,[[2,12]])}))),function(){return h.apply(this,arguments)})},{kind:"method",key:"_marqueeMouseOver",value:function(){this._marqueeActive||(this._marqueeActive=!0)}},{kind:"method",key:"_marqueeMouseLeave",value:function(){this._marqueeActive&&(this._marqueeActive=!1)}},{kind:"get",static:!0,key:"styles",value:function(){return(0,i.iv)(ne||(ne=oe(['\n ha-card {\n overflow: hidden;\n height: 100%;\n }\n\n .background {\n display: flex;\n position: absolute;\n top: 0;\n left: 0;\n height: 100%;\n width: 100%;\n transition: filter 0.8s;\n }\n\n .color-block {\n background-color: var(--primary-color);\n transition: background-color 0.8s;\n width: 100%;\n }\n\n .color-gradient {\n position: absolute;\n background-image: linear-gradient(\n to right,\n var(--primary-color),\n transparent\n );\n height: 100%;\n right: 0;\n opacity: 1;\n transition: width 0.8s, opacity 0.8s linear 0.8s;\n }\n\n .image {\n background-color: var(--primary-color);\n background-position: center;\n background-size: cover;\n background-repeat: no-repeat;\n position: absolute;\n right: 0;\n height: 100%;\n opacity: 1;\n transition: width 0.8s, background-image 0.8s, background-color 0.8s,\n background-size 0.8s, opacity 0.8s linear 0.8s;\n }\n\n .no-image .image {\n opacity: 0;\n }\n\n .no-img {\n background-color: var(--primary-color);\n background-size: initial;\n background-repeat: no-repeat;\n background-position: center center;\n padding-bottom: 0;\n position: absolute;\n right: 0;\n height: 100%;\n background-image: url("/static/images/card_media_player_bg.png");\n width: 50%;\n transition: opacity 0.8s, background-color 0.8s;\n }\n\n .off .image,\n .off .color-gradient {\n opacity: 0;\n transition: opacity 0s, width 0.8s;\n width: 0;\n }\n\n .unavailable .no-img,\n .background:not(.off):not(.no-image) .no-img {\n opacity: 0;\n }\n\n .player {\n position: relative;\n padding: 16px;\n height: 100%;\n box-sizing: border-box;\n display: flex;\n flex-direction: column;\n justify-content: space-between;\n color: var(--text-primary-color);\n transition-property: color, padding;\n transition-duration: 0.4s;\n }\n\n .controls {\n padding: 8px 8px 8px 0;\n display: flex;\n justify-content: flex-start;\n align-items: center;\n transition: padding, color;\n transition-duration: 0.4s;\n margin-left: -12px;\n }\n\n .controls > div {\n display: flex;\n align-items: center;\n }\n\n .controls ha-icon-button {\n --mdc-icon-button-size: 44px;\n --mdc-icon-size: 30px;\n }\n\n ha-icon-button[action="media_play"],\n ha-icon-button[action="media_play_pause"],\n ha-icon-button[action="media_pause"],\n ha-icon-button[action="media_stop"],\n ha-icon-button[action="turn_on"],\n ha-icon-button[action="turn_off"] {\n --mdc-icon-button-size: 56px;\n --mdc-icon-size: 40px;\n }\n\n mwc-icon-button.browse-media {\n position: absolute;\n right: 4px;\n --mdc-icon-size: 24px;\n }\n\n .top-info {\n display: flex;\n justify-content: space-between;\n }\n\n .icon-name {\n display: flex;\n height: fit-content;\n align-items: center;\n }\n\n .icon-name ha-icon {\n padding-right: 8px;\n }\n\n .more-info {\n position: absolute;\n top: 4px;\n right: 4px;\n }\n\n .media-info {\n text-overflow: ellipsis;\n white-space: nowrap;\n overflow: hidden;\n }\n\n hui-marquee {\n font-size: 1.2em;\n margin: 0px 0 4px;\n }\n\n .title-controls {\n padding-top: 16px;\n }\n\n paper-progress {\n width: 100%;\n height: var(--paper-progress-height, 4px);\n margin-top: 4px;\n border-radius: calc(var(--paper-progress-height, 4px) / 2);\n --paper-progress-container-color: rgba(200, 200, 200, 0.5);\n }\n\n .no-image .controls {\n padding: 0;\n }\n\n .off.background {\n filter: grayscale(1);\n }\n\n .narrow .controls,\n .no-progress .controls {\n padding-bottom: 0;\n }\n\n .narrow ha-icon-button {\n --mdc-icon-button-size: 40px;\n --mdc-icon-size: 28px;\n }\n\n .narrow ha-icon-button[action="media_play"],\n .narrow ha-icon-button[action="media_play_pause"],\n .narrow ha-icon-button[action="media_pause"],\n .narrow ha-icon-button[action="turn_on"] {\n --mdc-icon-button-size: 50px;\n --mdc-icon-size: 36px;\n }\n\n .narrow ha-icon-button.browse-media {\n --mdc-icon-size: 24px;\n }\n\n .no-progress.player:not(.no-controls) {\n padding-bottom: 0px;\n }\n '])))}}]}}),i.oi)}}]); //# sourceMappingURL=chunk.a478493d75929791f2ed.js.map
20,458
40,861
0.656491
0c4d7c51c69eb35ae501ad311a75e967e86501ca
935
js
JavaScript
src/services/firebase.js
Ourstress/sgrentalguide2
04eb70a00764f5a1cf7fc593861559d3001a834b
[ "MIT" ]
null
null
null
src/services/firebase.js
Ourstress/sgrentalguide2
04eb70a00764f5a1cf7fc593861559d3001a834b
[ "MIT" ]
null
null
null
src/services/firebase.js
Ourstress/sgrentalguide2
04eb70a00764f5a1cf7fc593861559d3001a834b
[ "MIT" ]
null
null
null
import React from 'react' import app from 'firebase/app' import 'firebase/auth' // import auth package from firebase const FirebaseContext = React.createContext(null) // Initialize Firebase const config = { apiKey: process.env.GATSBY_FIREBASE_APIKEY, authDomain: process.env.GATSBY_FIREBASE_AUTHDOMAIN, databaseURL: process.env.GATSBY_FIREBASE_DATABASEURL, projectId: process.env.GATSBY_FIREBASE_PROJECTID, storageBucket: process.env.GATSBY_FIREBASE_STORAGEBUCKET, messagingSenderId: process.env.GATSBY_FIREBASE_MESSAGINGSENDERID, } class Firebase { constructor() { if (typeof window !== 'undefined') { app.initializeApp(config) this.auth = app.auth() // Instantiate auth package this.uiConfig = { // configure FirebaseUI signInFlow: 'popup', signInOptions: [app.auth.GoogleAuthProvider.PROVIDER_ID], } } } } export default Firebase export { FirebaseContext }
29.21875
67
0.741176
0c4e4501bf59052e516c2acfe9ed912215764e4a
5,651
js
JavaScript
ashes/src/elastic/common.js
FoxComm/highlander
1aaf8f9e5353b94c34d574c2a92206a1c363b5be
[ "MIT" ]
10
2018-04-12T22:29:52.000Z
2021-10-18T17:07:45.000Z
ashes/src/elastic/common.js
FoxComm/highlander
1aaf8f9e5353b94c34d574c2a92206a1c363b5be
[ "MIT" ]
null
null
null
ashes/src/elastic/common.js
FoxComm/highlander
1aaf8f9e5353b94c34d574c2a92206a1c363b5be
[ "MIT" ]
1
2018-07-06T18:42:05.000Z
2018-07-06T18:42:05.000Z
import _ from 'lodash'; import { map, flow, compact } from 'lodash/fp'; import moment from 'moment'; import * as dsl from './dsl'; // https://www.elastic.co/guide/en/elasticsearch/reference/current/breaking_20_query_dsl_changes.html // https://www.elastic.co/blog/better-query-execution-coming-elasticsearch-2-0 /** * Converts search terms into a query to ElasticSearch. * @param {Object[]} filters An array of the Ashes version of a search terms. * A filter is in the following format: * { * term: 'someTerm', * operator: 'eq', * value: { * type: 'bool', * value: true * } * } * @param {Object} [options] - Additional options for build query * @param {String} [options.phrase] - Adds Phrase prefix * @param {Boolean} [options.atLeastOne=false] - if is set to true only one matched filter is enough to success query * @param {String} [options.sortBy] - sorting field, can be `-field` for desc order or `field` for asc order * @param {Boolean} [options.sortRaw] - if to sort by 'raw' subfield for proper custom analized field sorting * @returns {Object} The ElasticSearch query. */ export function toQuery(filters, options = {}) { const { phrase, atLeastOne = false, sortBy = '', sortRaw = false } = options; if (_.isEmpty(filters) && _.isEmpty(phrase) && _.isEmpty(sortBy)) { return {}; } const es = { filters: convertFilters(_.filter(filters, searchTerm => searchTerm.value.type !== 'string')), queries: convertFilters(_.filter(filters, searchTerm => searchTerm.value.type === 'string')), }; if (!_.isEmpty(phrase)) { es.queries.push(dsl.matchQuery('_all', { query: phrase, type: 'phrase', })); } const qwery = { bool: { should: atLeastOne ? [ ...es.queries, ...(_.isEmpty(es.filters) ? void 0 : es.filters) || [] ] : void 0, filter: atLeastOne || _.isEmpty(es.filters) ? void 0 : es.filters, must: atLeastOne || _.isEmpty(es.queries) ? void 0 : es.queries, } }; const sortParam = sortBy ? { sort: convertSorting(sortBy, sortRaw) } : null; return dsl.query(qwery, { ...sortParam }); } export function addNativeFilters(req, filters) { if (!req.query) { req.query = { bool: { filter: [] } }; } req.query.bool.filter = [ ...(req.query.bool.filter || []), ...filters ]; return req; } export function addShouldFilters(req, filters, minMatch = 1) { if (!req.query) { req.query = { bool: { should: [] } }; } req.query.bool.should = [ ...(req.query.bool.should || []), ...filters, ]; req.query.bool.minimum_should_match = minMatch; return req; } // add additional filters to query export function addFilters(req, filters) { return addNativeFilters(req, convertFilters(filters)); } function createFilter(filter) { const { term, operator, value: { type, value } } = filter; switch (type) { case 'bool': return dsl.termFilter(term, value); case 'bool_inverted': return dsl.termFilter(term, !value); case 'currency': case 'enum': case 'number': case 'term': return rangeToFilter(term, operator, value); case 'string': return { query_string: { analyzer: 'standard', analyze_wildcard: true, query: `*${value}*`, default_operator: 'AND', }, }; case 'phrase': return dsl.matchQuery(term, { query: value, type: 'phrase', }); case 'identifier': return rangeToFilter(term, operator, value.toUpperCase()); case 'date': return dateRangeFilter(term, operator, value); case 'exists': return dsl.existsFilter(term, operator); } } function isNestedFilter(filter) { const { term } = filter; if (!term) return false; return term.lastIndexOf('.') != -1; } function createNestedFilter(filter) { const { term } = filter; const path = term.slice(0, term.lastIndexOf('.')); const query = createFilter(filter); return dsl.nestedQuery(path, { bool: { filter: query } }); } // uses nested strategy for nested filters export function convertFilters(filters) { return flow( map(filter => isNestedFilter(filter) ? createNestedFilter(filter) : createFilter(filter)), compact )(filters); } function dateRangeFilter(field, operator, value) { const formattedDate = moment(value, 'MM/DD/YYYY').format('YYYY-MM-DDTHH:mm:ss.SSSZ'); const esDate = `${formattedDate}||/d`; switch (operator) { case 'eq': return dsl.rangeFilter(field, { 'gte': esDate, 'lte': `${esDate}+1d`, }); case 'neq': return { bool: { must_not: dateRangeFilter(field, 'eq', value) } }; case 'lt': case 'gte': return rangeToFilter(field, operator, esDate); case 'lte': case 'gt': return rangeToFilter(field, operator, `${esDate}+1d`); } } export function rangeToFilter(field, operator, value) { if (operator == 'eq') { return dsl.termFilter(field, value); } else if (_.includes(operator, '__') && _.isArray(value)) { const [op1, op2] = operator.split('__'); return dsl.rangeFilter(field, { [op1]: value[0], [op2]: value[1] }); } return dsl.rangeFilter(field, { [operator]: value }); } export function convertSorting(sortBy, sortRaw) { const field = sortBy.replace('-', ''); const [parent, child] = field.split('.'); const raw = sortRaw ? '.raw' : ''; let order = { order: sortBy.charAt(0) == '-' ? 'desc' : 'asc' }; if (child) { order = { ...order, nested_path: parent }; } return [dsl.sortByField(`${field}${raw}`, order)]; }
26.530516
117
0.616174
0c4f5abb2f562169459ccc7362b65ce3f4593964
507
js
JavaScript
src/components/MeetingList/MeetingList.js
helloroman/hello-roman-website
1e9150174fb5622ef67b35aa5a9652caa353c5bf
[ "MIT" ]
20
2018-11-01T20:13:24.000Z
2022-03-22T14:33:28.000Z
src/components/MeetingList/MeetingList.js
borbah/hello-roman-website
1e9150174fb5622ef67b35aa5a9652caa353c5bf
[ "MIT" ]
null
null
null
src/components/MeetingList/MeetingList.js
borbah/hello-roman-website
1e9150174fb5622ef67b35aa5a9652caa353c5bf
[ "MIT" ]
12
2019-02-11T23:44:20.000Z
2021-05-15T15:36:24.000Z
import React from 'react'; import styled from 'styled-components'; import MeetingInfo from 'components/MeetingInfo/MeetingInfo'; const StyledMeetingList = styled.ul` padding: 0; margin: 100px 0 30px 0; `; const MeetingList = ({meetings}) => ( <StyledMeetingList> {meetings.map(meeting => ( <MeetingInfo key={meeting.date} date={meeting.date} mentor={meeting.mentor} name={meeting.name} /> ))} </StyledMeetingList> ); export default MeetingList;
22.043478
61
0.658777
0c4fa4be4c049274d3af97e8b36b8eab7f54bb4c
557
js
JavaScript
src/logger.js
ruddenchaux/simple-tcp-server
9a974fea8721fe549a63929f4b5549a6add2c29a
[ "BSD-3-Clause" ]
null
null
null
src/logger.js
ruddenchaux/simple-tcp-server
9a974fea8721fe549a63929f4b5549a6add2c29a
[ "BSD-3-Clause" ]
null
null
null
src/logger.js
ruddenchaux/simple-tcp-server
9a974fea8721fe549a63929f4b5549a6add2c29a
[ "BSD-3-Clause" ]
null
null
null
import { sep } from 'path'; import winston from 'winston'; const { createLogger, format, transports } = winston; const logFileName = 'log'; const filename = `${process.env.LOG_FILE_PATH}${sep}${logFileName}`; const consoleTransport = new transports.Console(); export const Logger = createLogger({ level: process.env.LOG_LEVEL, format: format.combine(format.timestamp(), format.splat(), format.json()), transports: [new transports.File({ filename }), consoleTransport] }); if (process.env.NODE_ENV === 'test') { Logger.remove(consoleTransport); }
30.944444
76
0.721724
0c4fac765f3b33572b71775ac756387466846861
8,062
js
JavaScript
src/components/map/map-events.js
consindo/commuterview
c03e9721bcede66279e06059f72f7e9f1593d64d
[ "MIT" ]
7
2020-07-15T05:10:24.000Z
2021-01-31T23:40:48.000Z
src/components/map/map-events.js
consindo/commuterview
c03e9721bcede66279e06059f72f7e9f1593d64d
[ "MIT" ]
1
2022-03-27T10:44:41.000Z
2022-03-27T10:44:41.000Z
src/components/map/map-events.js
consindo/commuterview
c03e9721bcede66279e06059f72f7e9f1593d64d
[ "MIT" ]
1
2020-11-21T06:30:12.000Z
2020-11-21T06:30:12.000Z
import polylabel from 'polylabel' import Dispatcher from '../../dispatcher.js' import { getSource } from '../../sources.js' const source = getSource() export const bindMapEvents = (map) => { bindMapboxEvents(map) bindDispatcherEvents(map) } const bindMapboxEvents = (map) => { const mapTooltip = document.querySelector('#map map-tooltip') let activeBlock = null let needFrame = true let isTouch = false map.on('touchstart', 'sa2-fill', () => (isTouch = true)) map.on('mousemove', 'sa2-fill', (e) => { if (isTouch) return const meshblock = e.features[0] if (meshblock != null && activeBlock !== meshblock.id) { map.setFeatureState( { source: 'sa2', id: activeBlock, }, { hover: false, } ) activeBlock = meshblock.id map.setFeatureState( { source: 'sa2', id: meshblock.id, }, { hover: true, } ) mapTooltip.setAttribute('id', meshblock.id) mapTooltip.setAttribute('friendlyName', meshblock.properties.friendlyName) if (meshblock.properties.dose1Uptake != null) { mapTooltip.setAttribute('dose1Uptake', meshblock.properties.dose1Uptake) } if (meshblock.properties.dose2Uptake != null) { mapTooltip.setAttribute('dose2Uptake', meshblock.properties.dose2Uptake) } if (meshblock.properties.populationCount != null) { mapTooltip.setAttribute( 'populationCount', meshblock.properties.populationCount ) } mapTooltip.setAttribute('opacity', 1) } if (needFrame) { needFrame = false const { pageX, pageY } = e.originalEvent requestAnimationFrame(() => { needFrame = true mapTooltip.setAttribute('x', pageX) mapTooltip.setAttribute('y', pageY) }) } }) map.on('drag', (e) => { if (needFrame) { needFrame = false const { pageX, pageY } = e.originalEvent requestAnimationFrame(() => { needFrame = true mapTooltip.setAttribute('x', pageX) mapTooltip.setAttribute('y', pageY) }) } }) map.on('mouseleave', 'sa2-fill', (e) => { isTouch = false map.setFeatureState( { source: 'sa2', id: activeBlock, }, { hover: false, } ) activeBlock = null mapTooltip.setAttribute('opacity', 0) }) map.on('click', 'sa2-fill', (e) => { const meshblock = e.features[0] if (meshblock != null) { mapTooltip.setAttribute('loading', true) if (e.originalEvent.ctrlKey || e.originalEvent.metaKey) { Dispatcher.addRegion(meshblock.id) } else { Dispatcher.setRegions([meshblock.id]) } } }) } const bindDispatcherEvents = (map) => { const mapTooltip = document.querySelector('#map map-tooltip') let selectedAreas = [] let selectedNullState = source.enableNullState ? source.enableNullState[0] : null const setMap = (arriveData, departData, regionName, animate) => { // this basically allows the vaccine layer to render correctly... // should probably be adjusted to be more flexible in the future if (source.enableNullState) { if (regionName.length !== 0 && selectedAreas.length === 0) { sa2Data.then((data) => { data.features.forEach((feature) => { map.setFeatureState( { source: 'sa2', id: feature.properties.name, }, { nullState: false, } ) }) }) } else if ( (regionName.length === 0 && selectedAreas.length !== 0) || Dispatcher.dataDoses !== selectedNullState ) { selectedNullState = Dispatcher.dataDoses sa2Data.then((data) => { data.features.forEach((feature) => { map.setFeatureState( { source: 'sa2', id: feature.properties.name, }, { nullState: selectedNullState, } ) }) }) } } // turns off all the old areas selectedAreas.forEach((i) => { map.setFeatureState( { source: 'sa2', id: i, }, { selected: null, population: null, magnitude: null, } ) }) selectedAreas = [] // combine arrive and depart data const combinedObject = {} // add the selected regions just in case they're undefined regionName.forEach((name) => { combinedObject[name] = { x: 0, y: 0, population: 0, magnitude: 0, } }) if (animate) { // hate this const sa2Data = window.sa2Data sa2Data.then((data) => { const feature = data.features.find( (i) => i.properties.name === regionName[0] ) map.flyTo({ center: polylabel(feature.geometry.coordinates) }) }) } ;[arriveData, departData].forEach((dataset, idx) => { let sign = 1 if (dataset === arriveData) { // arriveFrom is negative sign = -1 } dataset.forEach((i) => { if (combinedObject[i.key] === undefined) { combinedObject[i.key] = { x: i.x, y: i.y, population: 0, magnitude: 0, } } combinedObject[i.key].population += i.value * sign combinedObject[i.key].magnitude += i.value }) }) Object.keys(combinedObject).forEach((i) => { selectedAreas.push(i) // should probably always stand out if it's the selected area... const isSelected = regionName.includes(i) map.setFeatureState( { source: 'sa2', id: i, }, { selected: isSelected ? 1 : null, population: combinedObject[i].population, magnitude: combinedObject[i].magnitude, } ) }) map.getSource('points').setData({ type: 'FeatureCollection', features: Object.keys(combinedObject).map((i) => ({ type: 'Feature', properties: { title: i, population: combinedObject[i].population, magnitude: combinedObject[i].magnitude, }, geometry: { type: 'Point', coordinates: [combinedObject[i].x, combinedObject[i].y], }, })), }) } Dispatcher.bind('clear-blocks', () => { document.querySelector('.map-legend').classList.add('hidden') document.querySelector('.dose-legend').classList.remove('hidden') setMap([], [], []) mapTooltip.removeAttribute('loading') mapTooltip.setAttribute( 'data', JSON.stringify({ currentRegions: [], mode: [], arriveData: [], departData: [], }) ) }) // map Dispatcher.bind( 'update-blocks', ({ regionName, direction, arriveData, departData, segment, animate }) => { document.querySelector('.dose-legend').classList.add('hidden') document.querySelector('.map-legend').classList.remove('hidden') const tooltipData = { currentRegions: regionName, arriveData, departData, mode: ['work', 'study'], } if (segment === 'workplace') { tooltipData.mode = ['work'] } else if (segment === 'education') { tooltipData.mode = ['study'] } const tooltipJSON = JSON.stringify(tooltipData) mapTooltip.setAttribute('data', tooltipJSON) mapTooltip.removeAttribute('loading') // only really want to toggle the map data for direction if (direction === 'all') { setMap(arriveData, departData, regionName, animate) } else if (direction === 'arrivals') { setMap(arriveData, [], regionName, animate) } else if (direction === 'departures') { setMap([], departData, regionName, animate) } } ) }
26.784053
80
0.546266
0c4fe1ec545892b61acae8037e29119adff9a184
1,385
js
JavaScript
lib/routes/api.js
niutech/betty
68861d7d0043ec4f696e27890b100af662e71607
[ "Apache-2.0" ]
966
2015-04-26T05:16:24.000Z
2022-03-07T13:20:10.000Z
lib/routes/api.js
mrphishxxx/betty
68861d7d0043ec4f696e27890b100af662e71607
[ "Apache-2.0" ]
20
2015-04-26T14:48:26.000Z
2017-02-21T01:42:45.000Z
lib/routes/api.js
mrphishxxx/betty
68861d7d0043ec4f696e27890b100af662e71607
[ "Apache-2.0" ]
68
2015-04-26T03:28:51.000Z
2021-06-05T06:30:03.000Z
var _ = require('lodash'); var Q = require('q'); var express = require('express'); var config = require('../config'); var middlewares = require('../middlewares'); var twilio = require('../twilio'); var team = require('../team'); module.exports = function(app) { var api = express.Router(); var start = Date.now(); function method(fn) { return function(req, res, next) { return Q() .then(function() { var args = [_.extend({}, req.query, req.body)]; if (_.size(req.params) > 0) args = [req.params].concat(args); return fn.apply(null, args); }) .then(function(data) { res.send(data); }) .fail(next); }; } // Service status api.get('/', method(twilio.account.get)); // Team api.get('/team', method(function() { return team.list(); })); api.get('/team/humans', method(function() { return team.humans(); })); // Calls API api.get('/calls', method(twilio.calls.list)); api.get('/calls/:id', method(function(params) { return twilio.calls.get(params.id); })); // SMS API api.get('/sms', method(twilio.sms.list)); // Recordings api.get('/recordings', method(twilio.recordings.list)); app.use('/api', middlewares.admin, api); };
24.732143
77
0.529242
0c5077b8e1c829960491aab417ae5f76e92fed67
186
js
JavaScript
app/auth/auth.module.js
akhellas/webviewer-material
b72ea1bcb1b213f1c65cc0a467a518a66bb1e257
[ "MIT" ]
null
null
null
app/auth/auth.module.js
akhellas/webviewer-material
b72ea1bcb1b213f1c65cc0a467a518a66bb1e257
[ "MIT" ]
null
null
null
app/auth/auth.module.js
akhellas/webviewer-material
b72ea1bcb1b213f1c65cc0a467a518a66bb1e257
[ "MIT" ]
null
null
null
import authService from './auth.service' let auth = angular.module('app.auth', []).name; angular .module('app.auth') .service('authService', authService); export default auth;
20.666667
47
0.693548
0c516c7078fb52fdb6cf90509b88fa988ecc0e2c
3,069
js
JavaScript
dist/controllers/errors.js
phillymedia/apps-modules-helpers
846ff6fe6bb53e2f9225fb739ef25f3e9e990fa7
[ "MIT" ]
null
null
null
dist/controllers/errors.js
phillymedia/apps-modules-helpers
846ff6fe6bb53e2f9225fb739ef25f3e9e990fa7
[ "MIT" ]
null
null
null
dist/controllers/errors.js
phillymedia/apps-modules-helpers
846ff6fe6bb53e2f9225fb739ef25f3e9e990fa7
[ "MIT" ]
null
null
null
"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.formatError=exports.makeError=void 0;var _mongoose=require("mongoose"),_mongoose2=_interopRequireDefault(_mongoose),_lodash=require("lodash"),_config=require("../config"),_logging=require("./logging"),_logging2=_interopRequireDefault(_logging),_transforms=require("./transforms");function _interopRequireDefault(obj){return obj&&obj.__esModule?obj:{default:obj}}function printError(err){var printableError="";_config.debug?(_logging2.default.info(err.statusCode+" Error occurred."),printableError+=err.statusCode+" Error: ",printableError+=err.stack,err.loc&&(printableError+="\nLocation: "+err.loc),err.warn?_logging2.default.error(printableError,"\nError was improperly formatted.\nOriginal error:",err.warn,"\nOriginal response: ",err.res):_logging2.default.error(printableError)):(_logging2.default.error(err.code+": "+err.message),err.warn&&_logging2.default.error("Error was improperly formatted.\nOriginal error:",err.warn,"\nOriginal response:",err.res))}function mongooseErrorHandler(err){return err instanceof _mongoose2.default.Error.ValidationError?(printError(err.errors),makeError("InvalidFields",(0,_transforms.safeStringify)(err.errors),"error > mongooseErrorHandler",1100,!0)):err}function soapErrorHandler(err){return(0,_lodash.includes)(err.message,"soap:Server")?(0,_lodash.includes)(err.message,_config.clickability.errors.badCredentials)?makeError("BadCredentials","Cannot log into API.","error > soapErrorHandler",2100,!0):(0,_lodash.includes)(err.message,_config.clickability.errors.duplicateUser)?makeError("UserExists","Cannot create new subscriber with those parameters.","error > soapErrorHandler",2200,!0):(0,_lodash.includes)(err.message,_config.clickability.errors.incomplete)||(0,_lodash.includes)(err.message,_config.clickability.errors.noResults)?makeError("NoUser","Cannot find a subscriber for those parameters.","error > soapErrorHandler",2300,!0):makeError("SoapFault","There is a problem with that request. "+err,"error > soapErrorHandler",2900,!0):err}function makeError(code,message,loc,statusCode,surfaceMessage){code&&message||(message="Couldn't create error.",code="BadError",statusCode=416);var err=new Error(message);return err.code=code,err.statusCode=statusCode?err.statusCode=statusCode:500,loc&&(err.loc=loc,(0,_lodash.isNumber)(loc)&&(err.statusCode=loc,err.loc="")),surfaceMessage&&(err.surfaceMessage=!0),err}function formatError(err,res){if(!err)err=makeError("UnknownError","Something went wrong. Refer to logs.","Error formatError",501),err.res=res;else if(!err.code||!err.statusCode){err=mongooseErrorHandler(err),err=soapErrorHandler(err);var warn=err;err.code&&"Error"!==err.code||(err.code="UnknownError"),err.message||(err.message="Something went wrong. Refer to logs."),err.loc?(0,_lodash.isNumber)(err.loc)&&(err.statusCode=err.loc,err.loc="Error formatError"):err.loc="Error formatError",err=makeError(err.code,err.message,err.loc),err.warn=warn,err.res=res}return err}exports.makeError=makeError,exports.formatError=formatError;
3,069
3,069
0.79407
0c51c40f1fa8824d531dfbeb8ec575a8312adda1
28,213
js
JavaScript
share/doc/doxygen/html/js/showcase.js
ajbaird/core
81fa9ba41efe07c3c0dacf0cad7bb4e3016a99b5
[ "Apache-2.0" ]
42
2018-05-15T18:10:15.000Z
2022-02-16T23:50:18.000Z
share/doc/doxygen/html/js/showcase.js
ajbaird/core
81fa9ba41efe07c3c0dacf0cad7bb4e3016a99b5
[ "Apache-2.0" ]
57
2018-07-17T20:25:36.000Z
2022-01-18T20:44:49.000Z
share/doc/doxygen/html/js/showcase.js
jules-bergmann/biogears-core
92e13287cd2b878a75a47190f09e694d57c16e43
[ "Apache-2.0" ]
51
2018-07-05T16:12:45.000Z
2022-02-14T20:53:30.000Z
/** * BioGears Showcase Player * showcase.js * http://www.ara.com * * Copyright 2014, Applied Research Associates * Developed under the U.S. Government BioGears research program * * Written by Anthony Hamilton * * Contact admin@biogearsengine.com if you wish to use this code on your website */ ;(function ($, undefined) { /* * showcase object. */ $.showcase = function (options, element) { this.$showcase = $(element); this._init(options); }; $.showcase.defaults = { css: '', seeMore: false }; $.showcase.prototype = { _init: function (options) { this.options = $.extend(true, {}, $.showcase.defaults, options); this.showcaseId = this.$showcase.attr("data-showcase"); this.firstLoaded = false; this.series = []; this.yaxis = []; this.timeline = []; this.yaxisRight = false; this.paused = true; this.origonalZoomMin = -1; this.origonalZoomMax = -1; this.pointMax = 2000; this.highcharts = {}; this._loadDataFile(); this._loadLogFile(); this._loadEvents(); }, _loadDataFile: function() { var _self = this; $.getJSON("/showcases/"+this.showcaseId+"/datafile.json") .done(function( json ) { _self.data = json; _self.charts = Object.keys(_self.data); _self.max = _self.data[_self.charts[0]][_self.data[_self.charts[0]].length - 1][0]; _self.min = _self.data[_self.charts[0]][0][0]; if(_self.firstLoaded){ _self._loadPlayer(); } else { _self.firstLoaded = true; } }) .fail(function( jqxhr, textStatus, error ) { var err = textStatus + ", " + error; console.log( "Request Failed: " + err ); }); }, _loadLogFile: function () { var _self = this; $.getJSON("/showcases/"+this.showcaseId+"/logfile.json") .done(function( json ) { _self.log = json; if(_self.firstLoaded){ _self._loadPlayer(); } else { _self.firstLoaded = true; } }) .fail(function( jqxhr, textStatus, error ) { var err = textStatus + ", " + error; console.log( "Request Failed: " + err ); }); }, _loadPlayer: function () { var _self = this; //Data File _self.seriesShow = true; _self.iterator = 0; $.each(_self.data, function(key, value) { if(_self.iterator > 3) _self.seriesShow = false; if(_self.yaxisRight){ _self.px = 5; _self.mx = 10; } else { _self.px = -5; _self.mx = 10; } var max = value[0][1]; var min = value[0][1]; $.each(value, function(key, coordinate) { if(coordinate[1] > max) max = coordinate[1]; if(coordinate[1] < min) min = coordinate[1]; }); _self.yaxis.push({ id: key, labels: { style: { color: Highcharts.getOptions().colors[_self.iterator] }, x: _self.px }, title: { text: key, style: { color: Highcharts.getOptions().colors[_self.iterator] }, margin: _self.mx }, events: { afterSetExtremes: function(){ this.update({ visible: false }); } }, //opposite: false, gridLineWidth: 0, opposite: _self.yaxisRight, showEmpty: false, globalDataMin: min, globalDataMax: max, pointsPerSecond: value.length / (_self.max - _self.min) }); if(_self.seriesShow) { _self.yaxis[_self.iterator].min = min; _self.yaxis[_self.iterator].max = max; } _self.series.push({ name: key, type: 'spline', yAxis: _self.iterator, data: value, visible: _self.seriesShow, marker: { enabled: false } }); _self.yaxisRight = !_self.yaxisRight; _self.iterator++; }); //Log File $.each(_self.log, function(name, type) { var data = []; $.each(type, function(second, entry) { var x = second; $.each(entry, function(title, details) { var text = ""; if(details.hasOwnProperty('data')){ $.each(details.data, function(key, datapoint) { text += "" + datapoint.label + ": " + datapoint.value + "<br>"; }); } else{ text = ""; } data.push({ x: x, title: title, text: text }); //var logtitle = '<h4 class="thin">'+title+' ('+_self._toMMSS(x)+' min)</h4>'; //var logdetails = '<p>'+text+'</p>'; //var logentry = '<li data-position="'+x+'" class="list-group-item">'+logtitle+logdetails+'</li>'; //_self.$showcase.find('[data-log="'+name+'"]').append(logentry); _self._pushToTimeLine(name, x, title, text); }); }); _self.yaxis.push({ id: name, labels: { enabled: false }, title: { text: null } }); _self.series.push({ type: 'flags', name: name, color: _self._logSeriesColor(name), data: data, yAxis: _self.iterator, shape: 'squarepin', style : {// text style fontWeight: 'normal' } }); _self.iterator++; }); if(!this.$showcase.hasClass('active')){ this.$showcase.find('#spinner' + this.showcaseId).hide(); this.$showcase.find('#tab' + this.showcaseId).removeClass('hide'); } _self._addChart(); _self._sortTimeLine(); _self._addTimeLine(); _self._showShowcase(); }, _showShowcase: function () { if(this.$showcase.hasClass('active')){ var _self = this; this.$showcase.find('#spinner' + this.showcaseId).fadeOut(function(){ _self.$showcase.find('#tab' + _self.showcaseId).hide().removeClass('hide').fadeIn(); _self.$showcase.find('.timeline-row').removeClass('active'); }); } }, _loadEvents: function () { var _self = this; this.$showcase.find("[data-player='play']").on('click', function () { _self._eventPlay($(this)); }); this.$showcase.find("[data-player='pause']").on('click', function () { _self._eventPause($(this)); }); this.$showcase.find("[data-player='forward']").on('click', function () { _self._eventForward($(this)); }); this.$showcase.find("[data-player='backward']").on('click', function () { _self._eventBackward($(this)); }); this.$showcase.find("[data-player='lock']").on('click', function () { if(!$(this).hasClass('active')) _self._eventLock(); }); this.$showcase.find("[data-player='unlock']").on('click', function () { if(!$(this).hasClass('active')) _self._eventUnlock(); }); this.$showcase.find("[data-player='lockmax']").on('click', function () { if(!$(this).hasClass('active')) _self._eventLockMax(); }); this.$showcase.on('click', '[data-position]', function(){ _self._eventCenter($(this).data('position')); _self._eventScrollToChart(); }); //called when key is pressed in textbox this.$showcase.find(".quantity").keypress(function (e) { //if the letter is not digit then display error and don't type anything if ((e.which != 46 || this.value.indexOf(".") != -1) && e.which != 8 && e.which != 0 && (e.which < 48 || e.which > 57)) { //display error message $(".errmsg").html("Digits Only").show().fadeOut("slow"); return false; } }); this.$showcase.find(".quantity").on('focus', function () { if(_self.$showcase.find('[data-player="pause"]').length) _self._eventPause(_self.$showcase.find('[data-player="pause"]')); }); // this.$showcase.find("[data-replayer]").on('click', function () { // // $(this).hide().attr("data-replayer", "no"); // _self._replay(); // // }); $('#chart' + this.showcaseId).on('click', function(){ if(_self.$showcase.find('[data-player="pause"]').length) _self._eventPause(_self.$showcase.find('[data-player="pause"]')); }); }, _eventPlay: function ($target) { var _self = this; $target.addClass('hide'); $target.siblings('[data-player="pause"]').removeClass('hide'); // if($target.siblings('[data-replayer]').attr("data-replayer") == 'no') // $target.siblings('[data-replayer]').hide().removeClass('hide').fadeIn().attr("data-replayer", "yes"); _self._setInterval(); }, _eventPause: function($target) { var _self = this; $target.addClass('hide'); $target.siblings('[data-player="play"]').removeClass('hide'); clearInterval(_self.interval); }, _eventForward: function($target) { var _self = this; var speed = parseInt($target.siblings('[data-player="speed"]').text()); if(speed >= 1 && speed < 16) speed = speed * 2; else if(speed == -1) speed = speed * -1; else if(speed < -1) speed = speed / 2; $target.siblings('[data-player="speed"]').text(speed); if($target.siblings('[data-player="play"]').hasClass('hide')) { clearInterval(_self.interval); _self._eventPlay($target.siblings('[data-player="play"]')); } }, _eventBackward: function($target) { var _self = this; var speed = parseInt($target.siblings('[data-player="speed"]').text()); if(speed > 1) speed = speed / 2; else if(speed == 1) speed = speed * -1; else if(speed <= -1 && speed > -16) speed = speed * 2; $target.siblings('[data-player="speed"]').text(speed); if($target.siblings('[data-player="play"]').hasClass('hide')) { clearInterval(_self.interval); _self._eventPlay($target.siblings('[data-player="play"]')); } }, _eventLock: function() { var _self = this; var $target = _self.$showcase.find("[data-player='lock']"); $target.addClass('active').siblings().removeClass('active'); $.each(_self.hc.yAxis, function(index, yaxis) { yaxis.setExtremes( yaxis.dataMin, yaxis.dataMax, false ); }); _self.hc.redraw(); }, _eventUnlock: function() { var _self = this; var $target = _self.$showcase.find("[data-player='unlock']"); $target.addClass('active').siblings().removeClass('active'); $.each(_self.hc.yAxis, function(index, yaxis) { yaxis.setExtremes( null, null, false ); }); _self.hc.redraw(); }, _eventLockMax: function() { var _self = this; var $target = _self.$showcase.find("[data-player='lockmax']"); $target.addClass('active').siblings().removeClass('active'); $.each(_self.hc.yAxis, function(index, yaxis) { if(yaxis.hasVisibleSeries) { yaxis.setExtremes( yaxis.options.globalDataMin, yaxis.options.globalDataMax, false ); } }); _self.hc.redraw(); }, _eventCenter: function(xpos) { var radius = (this.hc.xAxis[0].max - this.hc.xAxis[0].min)/2; var newmin = xpos - radius; var newmax = xpos + radius; if(newmin < this.hc.xAxis[0].dataMin) newmin = this.hc.xAxis[0].dataMin; if(newmax > this.hc.xAxis[0].dataMax) newmax = this.hc.xAxis[0].dataMin; this.hc.xAxis[0].setExtremes( newmin, newmax ); }, _eventScrollToChart: function() { var _self = this; $('html, body').animate({ scrollTop: _self.$showcase.find('.showcase-player').offset().top - 150 }, 1000); }, _setInterval: function() { var _self = this; var frequency = 10; var speed = parseInt(_self.$showcase.find('[data-player="speed"]').text()); clearInterval(_self.interval); _self.interval = setInterval(function(){ if((speed < 0 && _self.min < _self.hc.xAxis[0].min) || (speed > 0 && _self.max > _self.hc.xAxis[0].max)){ _self.hc.xAxis[0].setExtremes( _self.hc.xAxis[0].min + ((1 / frequency) * speed), _self.hc.xAxis[0].max + ((1 / frequency) * speed) ); } else { _self._eventPause(_self.$showcase.find('[data-player="pause"]')) } }, 1000 / frequency) }, _logSeriesColor: function(name){ switch (name) { case "Events": return "#3498db"; case "Insults": return "#e74c3c"; case "Interventions": return "#2ecc71"; } }, _seriesMax: function(index){ var max = this.series[index].data[0][1]; $.each(this.series[index].data, function(index, coordinate) { if(coordinate[1] > max) max = coordinate[1]; }); return max; }, _seriesMin: function(index){ var min = this.series[index].data[0][1]; $.each(this.series[index].data, function(index, coordinate) { if(coordinate[1] < min) min = coordinate[1]; }); return min; }, _toMMSS: function (second) { second = parseInt(second, 10); seconds = second % 60; if (seconds < 10) seconds = "0"+seconds; return Math.floor(second/60)+':'+seconds; }, _sortTimeLine: function() { this.timeline.sort(function(x, y){ if (x.time < y.time) { return -1; } if (x.time > y.time) { return 1; } return 0; }); }, _pushToTimeLine: function(type, time, title, content) { var bg = 'primary'; var fa = 'pencil'; if(type.toLowerCase() == 'events' || type.toLowerCase() == 'actions') { bg = 'primary'; fa = 'tags'; type = type.substring(0, type.length - 1); } else if(type.toLowerCase() == 'insults'){ bg = 'danger'; fa = 'exclamation'; type = type.substring(0, type.length - 1); } else if(type.toLowerCase() == 'interventions'){ bg = 'success'; fa = 'medkit'; type = type.substring(0, type.length - 1); } $entry = $('<div class="timeline-row">' + '<div class="timeline-time">' + '<small>'+type+'</small>' + this._toMMSS(time) + ' min' + '</div>' + '<div class="timeline-icon" data-position="'+time+'">' + '<div class="btn-'+bg+'">' + '<i class="fa fa-'+fa+'"></i>' + '</div>' + '</div>' + '<div class="panel timeline-content timeline-type-'+bg+'" data-position="'+time+'">' + '<div class="panel-body">' + '<h2 class="thin">' + title + '</h2>' + '<p>' + content + '</p>' + '</div>' + '</div>' + '</div>'); this.timeline.push({time: parseFloat(time), entry: $entry}); }, _pushZoomAlert: function (name) { this.$showcase.find('[data-series-alerts]').append('<div class="alert alert-warning" role="alert" data-series-alert="' + name + '">' + name + ' is not available at this zoom level. Data fidelity is too high, please zoom in to visualize it.'); }, _removeZoomAlert: function (name) { this.$showcase.find('[data-series-alert="'+name+'"]').remove(); }, _checkAxisVisibility: function (min, max){ var _self = this; var range = max-min; $.each(_self.hc.yAxis, function(index, yaxis) { if(yaxis.hasVisibleSeries && yaxis.options.pointsPerSecond * range > _self.pointMax) { yaxis.series[0].hide(); yaxis.update({title: {enabled: false}, labels: {enabled: false}}); if(!(_self.$showcase.find('[data-series-alert="'+yaxis.series[0].name+'"]').length > 0)) { _self._pushZoomAlert(yaxis.series[0].name); } } else if(!yaxis.hasVisibleSeries && yaxis.options.pointsPerSecond * range <= _self.pointMax){ if(_self.$showcase.find('[data-series-alert="'+yaxis.series[0].name+'"]').length > 0) { _self._removeZoomAlert(yaxis.series[0].name); //yaxis.series[0].show(); } } }); }, _addTimeLine: function () { var _self = this; $.each(this.timeline, function(key, value){ _self.$showcase.find('[data-timelime]').append(value.entry); }); }, _addChart: function () { var _self = this; _self.hc = new Highcharts.Chart({ chart: { height: 600, type: 'line', zoomType: 'xy', animation: false, width: _self.$showcase.width(), renderTo: 'chart' + _self.showcaseId, events: { selection: function (event) { _self.$showcase.find('[data-series-alert]').remove(); if(event.xAxis){ var $target = _self.$showcase.find("[data-player='unlock']"); _self.$showcase.find("[data-player='lock']").attr('disabled', 'disabled'); _self.$showcase.find("[data-player='lockmax']").attr('disabled', 'disabled'); $target.addClass('active').siblings().removeClass('active'); _self._checkAxisVisibility(this.xAxis[0].min, this.xAxis[0].max); if(_self.origonalZoomMin == -1 && _self.origonalZoomMax == -1){ _self.origonalZoomMin = this.xAxis[0].min; _self.origonalZoomMax = this.xAxis[0].max; } } else { _self.$showcase.find("[data-player='lock']").removeAttr('disabled'); _self.$showcase.find("[data-player='lockmax']").removeAttr('disabled'); _self._checkAxisVisibility(_self.origonalZoomMin, _self.origonalZoomMax); _self.origonalZoomMin = -1; _self.origonalZoomMax = -1; } } } }, plotOptions: { series: { events: { legendItemClick: function (event) { if(this.yAxis.options.pointsPerSecond * (this.xAxis.max - this.xAxis.min) > _self.pointMax){ event.preventDefault(); if(!(_self.$showcase.find('[data-series-alert="'+this.name+'"]').length > 0)) { _self._pushZoomAlert(this.name) } return; } if(this.yAxis.hasVisibleSeries) this.yAxis.update({title: {enabled: false}, labels: {enabled: false}}); else this.yAxis.update({title: {enabled: true}, labels: {enabled: true}}); if(_self.$showcase.find("[data-player='lockmax']").hasClass('active')) { if(!this.yAxis.hasVisibleSeries) { this.yAxis.setExtremes( this.yAxis.options.globalDataMin, this.yAxis.options.globalDataMax ); } } if(this.visible && _self.$showcase.find("[data-player='lock']").hasClass('active')) { _self._eventUnlock(); } } } } }, yAxis: _self.yaxis, xAxis: { min: 0, max: 10, labels: { formatter: function () { return _self._toMMSS(this.value); } }, events: { setExtremes: function() { _self._checkAxisVisibility(this.min, this.max); }, afterSetExtremes: function() { _self._checkAxisVisibility(this.min, this.max); } } }, navigator: { enabled: true, xAxis: { labels: { formatter: function () { return _self._toMMSS(this.value); } } } }, tooltip: { crosshairs: true, shared: false, headerFormat: '' }, credits: { enabled: false }, rangeSelector: { enabled: false }, scrollbar: { enabled: false }, title: { text: "" }, legend: { enabled: true, layout: 'horizontal', align: 'center', verticalAlign: 'bottom' }, series: _self.series }); }, _replay: function () { var _self = this; _self.hc.xAxis[0].setExtremes( _self.min, _self.min + 60 ); _self._setInterval(); } }; this.logError = function (message) { if (this.console) { console.error(message); } }; $.fn.showcase = function (options) { if (typeof options === 'string') { var args = Array.prototype.slice.call(arguments, 1); this.each(function () { var instance = $.data(this, 'showcase'); if (!instance) { logError("cannot call methods on showcase prior to initialization; " + "attempted to call method '" + options + "'"); return; } if (!$.isFunction(instance[options]) || options.charAt(0) === "_") { logError("no such method '" + options + "' for showcase instance"); return; } instance[options].apply(instance, args); }); } else { this.each(function () { var instance = $.data(this, 'showcase'); if (!instance) { $.data(this, 'showcase', new $.showcase(options, this)); } }); } return this; }; })(jQuery);
32.206621
254
0.401163
0c51fa4890f82b0f1835574f7abcaf8808cff2a2
512
js
JavaScript
src/components/router.js
Manghud/jobsity-javascript-challenge
3589a2e54b2914ef9560a9cdd72968ad7c178568
[ "MIT" ]
null
null
null
src/components/router.js
Manghud/jobsity-javascript-challenge
3589a2e54b2914ef9560a9cdd72968ad7c178568
[ "MIT" ]
null
null
null
src/components/router.js
Manghud/jobsity-javascript-challenge
3589a2e54b2914ef9560a9cdd72968ad7c178568
[ "MIT" ]
null
null
null
import { hot } from 'react-hot-loader/root'; import React, { Component } from 'react'; import { Switch, Route } from 'react-router-dom'; import config from '../config'; import { Calendar } from './routes'; export class Router extends Component { render() { return ( <Switch> <Route path="/" component={Calendar}/> </Switch> ); } } let RouterForEnv; if (config.isDevEnvironment) { RouterForEnv = hot(Router); } else { RouterForEnv = Router; } export default RouterForEnv;
18.962963
49
0.646484
0c5328dd4cc28442987eff7ac7034c10eb293de9
3,444
js
JavaScript
scripts/test-serve-documentation.js
kvchaudhari/enterprise_latest
cc0fe93abf650588305c62059bc483a4af512cf1
[ "Apache-2.0" ]
114
2018-05-02T15:55:30.000Z
2022-03-02T10:39:18.000Z
scripts/test-serve-documentation.js
kvchaudhari/enterprise_latest
cc0fe93abf650588305c62059bc483a4af512cf1
[ "Apache-2.0" ]
4,461
2018-05-07T16:48:02.000Z
2022-03-31T16:01:46.000Z
scripts/test-serve-documentation.js
kvchaudhari/enterprise_latest
cc0fe93abf650588305c62059bc483a4af512cf1
[ "Apache-2.0" ]
77
2018-05-08T02:46:06.000Z
2022-02-22T04:00:41.000Z
#!/usr/bin/env node /* eslint-disable import/no-extraneous-dependencies, function-paren-newline, no-console, no-restricted-syntax, no-continue, no-loop-func, prefer-template */ /** * @fileoverview TESTING ONLY!! * This script is used to serve a basic DocumentJS site * of all the [components/components.js] files to check for documentation * accuracy and consistency. * * @example `node ./build/test-serve-documentation.js` */ // ------------------------------------- // Node Modules/Options // ------------------------------------- const argv = require('yargs').argv; const chalk = require('chalk'); const documentation = require('documentation'); const glob = require('glob'); const { exec } = require('child_process'); // ------------------------------------- // Constants // ------------------------------------- const arrOfFiles = []; const rootPath = process.cwd(); const paths = { components: `components`, }; const stopwatch = {}; // ------------------------------------- // Main // ------------------------------------- logTaskStart('generate command'); glob(`${paths.components}/*/`, (err, componentDirs) => { for (compDir of componentDirs) { compName = deriveComponentName(compDir); arrOfFiles.push(`${compDir}${compName}.js`); } let documentationCmd = 'npx documentation serve '; documentationCmd += arrOfFiles.join(' '); documentationCmd += ' --watch --shallow --sort-order alpha'; logTaskEnd('generate command'); logTaskStart('run command'); const timer = setTimeout(() => { logTaskAction('DocumentationJS', `serving on port 4001`) logTaskEnd('run command'); }, 15000); exec(documentationCmd, (err, stdout, stderr) => { if (err) { // node couldn't execute the command clearTimeout(timer); return; } // the *entire* stdout and stderr (buffered) console.log(`stdout: ${stdout}`); console.log(`stderr: ${stderr}`); }); }); // ------------------------------------- // Functions // ------------------------------------- /** * Derive the component name from its folder path * @param {string} dirPath - the component's directory path * @return {string} - the component's name */ function deriveComponentName(dirPath) { return dirPath .replace(`${paths.components}/`, '') .slice(0, -1); } /** * Log an individual task's action * @param {string} action - the action * @param {string} desc - a brief description or more details * @param {string} [color] - one of the chalk module's color aliases */ function logTaskAction(action, desc, color = 'green') { console.log('-', action, chalk[color](desc)); } /** * Console.log a staring action and track its start time * @param {string} taskName - the unique name of the task */ function logTaskStart(taskName) { stopwatch[taskName] = Date.now(); console.log('Starting', chalk.cyan(taskName), '...'); } /** * Console.log a finished action and display its run time * @param {string} taskName - the name of the task that matches its start time */ function logTaskEnd(taskName) { console.log('Finished', chalk.cyan(taskName), `after ${chalk.magenta(timeElapsed(stopwatch[taskName]))}`); } /** * Calculate the difference in seconds * @param {number} t - a time in milliseconds elapsed since January 1, 1970 00:00:00 UTC. * @return {string} */ function timeElapsed(t) { const elapsed = ((Date.now() - t)/1000).toFixed(1); return elapsed + 's'; }
28.229508
108
0.611208
0c53508220db4e1e5bf6f42b4139e677f763d47c
9,635
js
JavaScript
hdokiejnpimakedhajhdlcegeplioahd/4.3.0.5_0/preferencesDialog.js
krishna2nd/chrome-exts
86ae40a52e2cf77348855c97ae78fee5e3a64d34
[ "MIT" ]
null
null
null
hdokiejnpimakedhajhdlcegeplioahd/4.3.0.5_0/preferencesDialog.js
krishna2nd/chrome-exts
86ae40a52e2cf77348855c97ae78fee5e3a64d34
[ "MIT" ]
null
null
null
hdokiejnpimakedhajhdlcegeplioahd/4.3.0.5_0/preferencesDialog.js
krishna2nd/chrome-exts
86ae40a52e2cf77348855c97ae78fee5e3a64d34
[ "MIT" ]
2
2020-02-19T14:58:04.000Z
2021-08-28T07:54:33.000Z
var PreferencesDialog=function(e){Dialog.call(this,e,{additionalHeaderClasses:"icon",title:Strings.translateString("Preferences"),closeButtonEnabled:!0,maximizeButtonEnabled:!0,buttonAlign:this.RIGHT_ALIGN}),this.hotkeyFields={}};PreferencesDialog.prototype=Object.create(Dialog.prototype),PreferencesDialog.prototype.constructor=PreferencesDialog,function(){var e={usepopupfill:!0,enablenamedpipes:!0,language:!0},t=function(e){var t=[];if(e.ctrlKey&&t.push("control"),e.metaKey&&t.push("meta"),e.altKey&&t.push("alt"),e.shiftKey&&t.push("shift"),t.length>e.shiftKey?1:0)switch(e.which){case 16:case 17:case 18:case 91:case 92:break;default:this.setValue(e.which,t.join(" "))}switch(e.which){case 8:case 46:this.clear();break;case 9:break;default:e.preventDefault(),e.stopPropagation()}},r=function(e,r){DialogInput.Input.apply(this,arguments),this.keyCode=0,this.mods="",function(e){e.input.bind("keydown",function(r){t.call(e,r)})}(this)};r.prototype=Object.create(DialogInput.Input.prototype),r.prototype.constructor=r,r.prototype.setValue=function(){var e=null,t=null,r=function(){return null===t&&(t={control:Strings.translateString("Ctrl"),meta:Strings.translateString("Meta"),alt:Strings.translateString("Alt"),shift:Strings.translateString("Shift")}),t},o=function(){return null===e&&(e={33:Strings.translateString("Page Up"),34:Strings.translateString("Page Down"),35:Strings.translateString("End"),36:Strings.translateString("Home"),37:Strings.translateString("Left"),38:Strings.translateString("Up"),39:Strings.translateString("Right"),40:Strings.translateString("Down"),189:"-",219:"[",220:"\\",221:"]",186:";",222:"'",188:",",187:"+",190:".",191:"/",106:"*",192:"~",124:Strings.translateString("Print Screen")}),e};return function(e,t){var n="";if(t&&e){for(var a=t.split(" "),i=r(),l=0,s=a.length;l<s;++l)a[l]=i[a[l]];var u=o();void 0!==u[e]?a.push(u[e]):a.push(String.fromCharCode(e).toUpperCase()),n=a.join("+"),this.keyCode=e,this.mods=t}else this.keyCode=0,this.mods="";DialogInput.Input.prototype.setValue.call(this,n)}}();var o=function(e,t){DialogInput.Input.apply(this,arguments),this.checkboxField=$("#"+this.input.attr("checkboxField")),function(e){var t=null;void 0===e.checkboxField.attr(Dialog.prototype.DIALOG_FIELD)&&(e.checkboxField.bind("change",function(){if(e.checkboxField.prop("checked"))if(null!==t)e.setValue(t),t=null;else switch(e.checkboxField.selector){case"#autoautoEnabled":e.setValue(25);break;case"#pollServerEnabled":e.setValue(15);break;case"#recentUsed":e.setValue(10)}else t=e.getValue(),e.setValue("")}),e.onChange(function(t){e.checkboxField.prop("checked",t>0)}))}(this)};o.prototype=Object.create(DialogInput.Input.prototype),o.prototype.constructor=o,o.prototype.enable=function(){DialogInput.Input.prototype.enable.apply(this,arguments),this.checkboxField.prop("disabled",!1)},o.prototype.disable=function(){DialogInput.Input.prototype.disable.apply(this,arguments),this.checkboxField.prop("disabled",!0)},o.prototype.buildError=function(){return this.buildErrorElement({element:this.input.parent().children()})},o.prototype.setValue=function(e){("number"!=typeof e||e>0)&&DialogInput.Input.prototype.setValue.apply(this,arguments)},o.prototype.validate=function(e,t,r){if(r){var o=parseInt(r);if(isNaN(o)||o<0)return e.addError(t,Strings.translateString("Value must be greater than or equal to %1.",0)),!1}return!0};var n=function(){for(var e=LPProxy.getFormFillModels(),t=[{value:0,label:""}],r=0,o=e.length;r<o;++r){var n=e[r];t.push({value:n.getID(),label:n.getName()})}return t},a=function(){var e=[],t=bg.get("g_langs");for(var r in t)e.push({value:r,label:t[r]});return e};PreferencesDialog.prototype.setupButtons=function(e){Dialog.prototype.setupButtons.apply(this,arguments),this.resetDefaultsButton=$(LPTools.createElement("button","nbtn btn_midi wbtn dynamicWidth leftButton")),this.resetDefaultsButton.bind("click",this.createHandler(this.resetDefaults)),this.buttonContainer.prepend(this.resetDefaultsButton)},PreferencesDialog.prototype.resetDefaults=function(){for(var e=this.currentViewElement.find("["+this.DIALOG_FIELD+"]"),t={},r=0,o=e.length;r<o;++r)t[e[r].getAttribute(this.DIALOG_FIELD)]=!0;this.populateFields(bg.Preferences.getDefault(t))},PreferencesDialog.prototype.leftMenuChange=function(e){this.resetDefaultsButton.text(Strings.translateString("Restore '%1' Defaults",e.text()))},PreferencesDialog.prototype.getHotKeyPreferenceNames=function(){var e={};for(var t in this.hotkeyFields)e[t+"KeyCode"]=!0,e[t+"Mods"]=!0;return e},PreferencesDialog.prototype.getData=function(){var e=Dialog.prototype.getData.apply(this,arguments);for(var t in this.hotkeyFields){var r=this.hotkeyFields[t];e[t+"KeyCode"]=r.keyCode,e[t+"Mods"]=r.mods}return e},PreferencesDialog.prototype.defaultFields=function(e){e.defaultData=$.extend(e.defaultData,bg.Preferences.get(DialogInput.getProperties(this.inputFields))),LPTools.setSelectOptions(this.inputFields.defaultffid.getNativeElement(),n()),LPTools.setSelectOptions(this.inputFields.language.getNativeElement(),a()),Dialog.prototype.defaultFields.apply(this,arguments);var t=bg.Preferences.get(this.getHotKeyPreferenceNames());for(var r in this.hotkeyFields){this.hotkeyFields[r].setValue(t[r+"KeyCode"],t[r+"Mods"])}var o=bg.get("g_prefoverrides");o.logoffclosebrowser>-1?(this.inputFields.logoffWhenCloseBrowser.setValue(o.logoffclosebrowser),this.inputFields.logoffWhenCloseBrowserVal.setValue(o.logoffclosebrowser),this.inputFields.logoffWhenCloseBrowserVal.disable()):this.inputFields.logoffWhenCloseBrowserVal.enable(),o.logoffidle>-1?(this.inputFields.idleLogoffVal.setValue(o.logoffidle),this.inputFields.idleLogoffVal.disable()):this.inputFields.idleLogoffVal.enable(),bg.get("g_flags").pollIntervalSetByPolicy?this.inputFields.pollServerVal.disable():this.inputFields.pollServerVal.enable()},PreferencesDialog.prototype.clearFields=function(){Dialog.prototype.clearFields.apply(this,arguments);for(var e in this.hotkeyFields)this.hotkeyFields[e].clear()};var i=function(e){return function(t){var r=e.getValue();r&&(e.clear(),LPTools.requireBinary(function(){e.setValue(r)}))}};PreferencesDialog.prototype.initialize=function(e){this.initializeInputFields(e.find("input[checkboxField]"),function(e){return new o(e,this)}),Dialog.prototype.initialize.apply(this,arguments);for(var t=e.find("input[hotkeyField]"),n=0,a=t.length;n<a;++n){var l=t[n],s=l.getAttribute("hotkeyField");this.hotkeyFields[s]=new r(l,this)}var u=LPPlatform.getUnavailablePreferences();for(var p in u)u[p]&&(e.find("input["+this.DIALOG_FIELD+"="+p+"]").closest("tr").detach(),e.find("select["+this.DIALOG_FIELD+"="+p+"]").closest("tr").detach(),e.find("input[hotkeyField="+p+"]").closest("tr").detach());var g=LPPlatform.getPreferencesRequiringBinary();for(var p in g)if(g[p]){var c=this.inputFields[p];c&&c.input.bind("change",i(c))}bg.get("LPContentScriptFeatures").is_infield_enabled||document.getElementById("infieldPopupEnabled").parentElement.parentElement.remove(),bg.get("g_hidelogoffprefs")&&$("#securityPrefs").remove(),bg.get("g_hideappearancebox")&&$("#appearancePrefs").remove(),bg.get("g_hidehelptranslate")&&$("#helpTranslateButton").remove(),bg.get("g_issafari")&&$("#iconMenuItem").LP_hide(),bg.get("LPContentScriptFeatures").ziggy?document.getElementById("toplevelmatchingsites").parentNode.parentNode.style.display="none":$("#helpTranslateButton").bind("click",function(){bg.openURL(bg.get("base_url")+"translate.php")})},PreferencesDialog.prototype.validate=function(e){var t=Dialog.prototype.validate.apply(this,arguments);return e.autoautoVal&&""!=e.autoautoVal?e.autoautoVal&&e.autoautoVal<10&&(this.addError("autoautoVal",Strings.translateString("Value must be greater than or equal to %1.",10)),t=!1):e.autoautoVal=-1,e.pollServerVal&&""!=e.pollServerVal?e.pollServerVal&&e.pollServerVal<5&&(this.addError("pollServerVal",Strings.translateString("Value must be greater than or equal to %1.",5)),t=!1):e.pollServerVal=-1,e.recentUsedCount&&""!=e.recentUsedCount||(e.recentUsedCount=-1),t},PreferencesDialog.prototype.checkForRestartOrLogoff=function(t,r){for(var o in e)if(t[o]!==this.originalData[o])return void dialogs.alert.open({title:Strings.translateString("Restart Required"),text:Strings.translateString("You must restart your browser before all of the changes will take effect."),handler:r,closeHandler:r});if((this.originalData.logoffWhenCloseBrowser&&0===this.originalData.logoffWhenCloseBrowserVal)!==(t.logoffWhenCloseBrowser&&0===t.logoffWhenCloseBrowserVal))return void dialogs.alert.open({title:Strings.translateString("Logoff Required"),text:Strings.translateString("You must restart Chrome or logoff and back in to get 'Logoff on Browser Close' changes to take effect."),handler:r,closeHandler:r});r()},PreferencesDialog.prototype.handleSubmit=function(){var e=function(e){var t=this.getChanges(e);this.checkForRestartOrLogoff(e,this.createHandler(function(){bg.Preferences.set(t),LPPlatform.handlePreferenceChanges(t),this.close(!0)}))};return function(t){(t.logoffWhenCloseBrowser||t.idleLogoffEnabled)&&(bg.Preferences.get("rememberpassword")||bg.get("g_master_password_saved"))?dialogs.confirmation.open({title:Strings.translateString("Remember Password"),text:Strings.translateString("You currently have LastPass set to remember your password. Doing so essentially makes the automatically log out options you've chosen useless. Would you like LastPass to stop remembering your password?"),handler:this.createHandler(function(){bg.Preferences.set("rememberpassword",!1),bg.deletesavedpw(bg.get("g_username")),e.call(this,t)}),closeHandler:this.createHandler(e,t)}):e.call(this,t)}}()}();
9,635
9,635
0.775298
0c5372c79fcd9f71eb7b3d79598cd90c6daf54d8
7,530
js
JavaScript
src/app.js
andresbravom/Practica4
157933f91fbc734bf41395e070af49fed5fde263
[ "MIT" ]
null
null
null
src/app.js
andresbravom/Practica4
157933f91fbc734bf41395e070af49fed5fde263
[ "MIT" ]
null
null
null
src/app.js
andresbravom/Practica4
157933f91fbc734bf41395e070af49fed5fde263
[ "MIT" ]
null
null
null
import {GraphQLServer} from 'graphql-yoga' import { MongoClient, ObjectID} from "mongodb"; import "babel-polyfill"; //import { resolve } from 'dns'; import * as uuid from 'uuid' import { resolve } from 'dns'; import { rejects } from 'assert'; const usr = "andresBM"; const pwd = "qwerty123"; const url = "cluster0-k7hro.gcp.mongodb.net/test?retryWrites=true&w=majority"; /** * Connects to MongoDB Server and returns connected client * @param {string} usr MongoDB Server user * @param {string} pwd MongoDB Server pwd * @param {string} url MongoDB Server url */ const connectToDb = async function(usr, pwd, url) { const uri = `mongodb+srv://${usr}:${pwd}@${url}`; const client = new MongoClient(uri, { useNewUrlParser: true, useUnifiedTopology: true }); await client.connect(); return client; }; /** * Starts GraphQL server, with MongoDB Client in context Object * @param {client: MongoClinet} context The context for GraphQL Server -> MongoDB Client */ const runGraphQLServer = function(context){ const typeDefs = ` type Bill{ user: User amount: Float! concept: String! date: String! _id: ID! } type User{ userName: String! password: String! bills: [Bill] _id: ID! token: ID! } type Query{ user(_id: ID!): User bill(_id: ID!): Bill getBills(userName: String, token: String): [Bill] } type Mutation{ addUser(userName: String!, password: String!): User addBill(userName: String!, token: ID!, amount: Float, concept: String, date: String): Bill login(userName: String!, password: String!): String logout(userName: String, token: String): String removeUser(userName: String token: String): String } ` const resolvers = { User:{ bills: async(parent, args, ctx, info) => { const user = ObjectID(parent._id); const{ client } = ctx; const db = client.db("API"); const collection = db.collection("Bills"); const result = await collection.find({user}).toArray(); return result; }, _id(parent, args, ctx, info){ const result = parent._id; return result; } }, Bill:{ user: async(parent, args, ctx, info) =>{ const userID = parent.user; const { client } = ctx; const db = client.db("API"); const collection = db.collection("Users"); const result = await collection.findOne({_id: ObjectID(userID)}); return result; }, _id(parent, args, ctx, info){ const result = parent._id; return result; } }, Query:{ getBills: async (parent, args, ctx, info) => { const {userName, token} = args; const {client} = ctx; const db = client.db("API"); const collectionBills = db.collection("Bills"); const collectionUsers = db.collection("Users"); const result = await collectionUsers.findOne({userName, token}); if(result){ const user = ObjectID(result._id); const object = await collectionBills.find({user}).toArray(); return object; }else{ null; } } }, Mutation:{ addUser: async(parent, args, ctx, info) => { const { userName, password } = args; const { client } = ctx; const db = client.db("API"); const collection = db.collection("Users"); const result = await collection.findOne({userName}); if (!result){ const object = await collection.insertOne({userName, password}); return object.ops[0]; }else{ return null; } }, addBill: async(parent, args, ctx, info) => { const { userName, token, amount, concept, date } = args; const { client } = ctx; const db = client.db("API"); const collection = db.collection("Bills"); const collectionUsers = db.collection("Users"); const result = await collectionUsers.findOne({token, userName}); if(result){ const user = result._id; const object = await collection.insertOne({user, amount, concept, date}); return object.ops[0]; }else{ return null; } }, login: async(parent, args, ctx, info) => { const { userName, password } = args; const { client } = ctx; const db = client.db("API"); const collection = db.collection("Users"); const result = await collection.findOne({userName, password}); if(result){ const token = uuid.v4(); await collection.updateOne({userName: userName}, {$set: {token: token}}); return token; }else{ return null; } }, logout: async(parent, args, ctx, info) =>{ const { userName, token } = args; const { client } = ctx; const newToken = null; const db = client.db("API"); const collection = db.collection("Users"); const result = await collection.findOne({userName, token}); if(result){ await collection.updateOne({userName: userName}, {$set: {token: newToken}}); return token; }else{ return null; } }, removeUser: async(parent, args, ctx, info) =>{ const { userName, token } = args; const { client } = ctx; const message = "Remove successfuly"; const db = client.db("API"); const collectionUsers = db.collection("Users"); const collectionBills = db.collection("Bills"); const result = await collectionUsers.findOne({userName, token}); if(result){ const removeBills = () => { return new Promise((resolve, reject)=> { const object = collectionBills.deleteMany({user: ObjectID(result._id)}); resolve (object); } )}; const deleteUser = () =>{ return new Promise((resolve, reject) =>{ const result = collectionUsers.deleteOne({userName}); resolve (result); } )}; (async function(){ const asyncFunctions = [ removeBills(), deleteUser() ]; await Promise.all(asyncFunctions); })(); return message; }else{ return null; } } } } const server = new GraphQLServer({typeDefs, resolvers, context}); server.start(() => console.log("Server started")); }; const runApp = async function(){ const client = await connectToDb(usr, pwd, url); console.log("Connect to Mongo DB"); runGraphQLServer({client}); }; runApp();
30.240964
98
0.508765
0c571ebab366f50077d77a3be3e5877945cf4da3
323
js
JavaScript
src/components/Header.js
a-type/redux-table
3835038ead6d2b737bc535c4c002ef671c3570fa
[ "MIT" ]
5
2017-05-13T16:29:54.000Z
2021-10-11T12:35:13.000Z
src/components/Header.js
a-type/redux-table
3835038ead6d2b737bc535c4c002ef671c3570fa
[ "MIT" ]
null
null
null
src/components/Header.js
a-type/redux-table
3835038ead6d2b737bc535c4c002ef671c3570fa
[ "MIT" ]
2
2017-04-26T16:27:25.000Z
2019-02-13T11:31:19.000Z
import React from 'react'; import SortArrow from './SortArrow'; const Header = ({ columnKey, handleClick, sortOrder, sortable }) => ( <th style={{ cursor: sortable ? 'pointer' : 'default' }} onClick={handleClick}> {columnKey} {sortable ? <SortArrow order={sortOrder} /> : null} </th> ); export default Header;
29.363636
81
0.662539
0c574ceff95bcccc15cd6a5dab2ba66cc4c9a936
661
js
JavaScript
gwt-2.8.2/samples/Showcase/war/showcase/deferredjs/6B926C5B4DD0C9B85DD780AA4981BC01/44.cache.js
hariPrasad525/Nitya_Annaccounting
7e259ea4f53ee508455f6fee487240bea2c9e97d
[ "Apache-2.0" ]
null
null
null
gwt-2.8.2/samples/Showcase/war/showcase/deferredjs/6B926C5B4DD0C9B85DD780AA4981BC01/44.cache.js
hariPrasad525/Nitya_Annaccounting
7e259ea4f53ee508455f6fee487240bea2c9e97d
[ "Apache-2.0" ]
null
null
null
gwt-2.8.2/samples/Showcase/war/showcase/deferredjs/6B926C5B4DD0C9B85DD780AA4981BC01/44.cache.js
hariPrasad525/Nitya_Annaccounting
7e259ea4f53ee508455f6fee487240bea2c9e97d
[ "Apache-2.0" ]
null
null
null
$wnd.showcase.runAsyncCallback44("function Deb(){var a,b,c,d,e;e=new lMb(5);HPb((Rvb(),e.hb),'','cwSplitLayoutPanel');e.hb.style[K8b]='3px solid #e7e7e7';qDb(e,new CCb(Ybc),50);rDb(e,new CCb(Zbc),50);gMb(e,new CCb($bc),(ODb(),IDb),100,null);gMb(e,new CCb(_bc),NDb,100,null);qDb(e,new CCb(acc),50);rDb(e,new CCb(bcc),50);c='\\u4EE5\\u4E0B\\u6587\\u5B57\\u663E\\u793A\\u4E86\\u5206\\u9694\\u6761\\u4E24\\u4FA7\\u7684\\u5185\\u5BB9\\u662F\\u5982\\u4F55\\u5E03\\u5C40\\u7684\\u3002';for(d=0;d<3;d++){c+=' '+c}a=new CCb(c);b=new aAb(a);gMb(e,b,HDb,0,null);return e}\nDX(581,1,W8b);_.Bc=function Keb(){TZ(this.a,Deb())};X5b(zl)(44);\n//# sourceURL=showcase-44.js\n")
330.5
660
0.66112
0c579c82dbfd6618b42c9e014c6c30fd5d0e4e71
1,215
js
JavaScript
war/js/fs2raw/WebFS.js
hoge1e3/tonyuedit
f58efa377e4e093b8f64748e2e4a46e5dc75e126
[ "Apache-2.0" ]
15
2015-03-01T00:29:33.000Z
2022-03-13T00:05:47.000Z
war/js/fs2raw/WebFS.js
hoge1e3/tonyuedit
f58efa377e4e093b8f64748e2e4a46e5dc75e126
[ "Apache-2.0" ]
32
2015-12-04T04:59:44.000Z
2021-11-28T15:50:41.000Z
www/js/fs2raw/WebFS.js
makkii-bcr/Tonyu2
a48a4a941f5ef8860421141a5fc542cf538b1c2e
[ "MIT" ]
3
2015-02-28T23:27:38.000Z
2016-08-03T16:51:12.000Z
define(["FS2","jquery.binarytransport","DeferredUtil","Content","PathUtil"], function (FS,j,DU,Content,P) { // FS.mount(location.protocol+"//"+location.host+"/", "web"); var WebFS=function (){}; var p=WebFS.prototype=new FS; FS.addFSType("web", function () { return new WebFS; }); p.fstype=function () {return "Web";}; p.supportsSync=function () {return false;}; p.inMyFS=function (path) { return P.isURL(path); }; FS.delegateMethods(p, { exists: function () {return true;}, getContentAsync: function (path){ var t=this; return DU.funcPromise(function (succ,err) { $.get(path,function (blob) { var reader = new FileReader(); reader.addEventListener("loadend", function() { succ(Content.bin(reader.result, t.getContentType(path))); }); reader.readAsArrayBuffer(blob); },"binary").fail(err); }); }, /*setContentAsync: function (path){ },*/ getURL: function (path) { return path; } }); return WebFS; });
31.973684
81
0.511934
0c5826b6c3c4cb9884cbecb8f040c1e92497af5e
10,704
js
JavaScript
test/eel.spec.js
networkteam/eel
5f7141414111a69c4448701db58fb684d8924f2b
[ "MIT" ]
1
2019-05-06T11:49:58.000Z
2019-05-06T11:49:58.000Z
test/eel.spec.js
networkteam/eel
5f7141414111a69c4448701db58fb684d8924f2b
[ "MIT" ]
2
2021-03-09T03:21:38.000Z
2021-05-08T17:47:08.000Z
test/eel.spec.js
networkteam/eel
5f7141414111a69c4448701db58fb684d8924f2b
[ "MIT" ]
3
2019-11-18T22:18:21.000Z
2020-10-07T18:46:58.000Z
import compile, { parse } from '../src/compile.js'; import assert from 'assert'; describe('eel', function() { describe('number literals', function() { describe('integer without sign', function() { it('should be parsed to literal value', function() { const code = parse('42'); assert.strictEqual(code, '42'); }); it('should parse and evaluate to literal value', function() { const fn = compile('42'); const ctx = {}; assert.strictEqual(fn(ctx), 42); }); }); describe('negative integer', function() { it('should be parsed to literal value', function() { const code = parse('-1'); assert.strictEqual(code, '-1'); }); it('should parse and evaluate to literal value', function() { const fn = compile('-1'); const ctx = {}; assert.strictEqual(fn(ctx), -1); }); }); }); describe('string literals', function() { describe('double quoted', function() { it('should be parsed to literal value', function() { const code = parse(`"foo"`); assert.strictEqual(code, `"foo"`); }); it('should parse and evaluate to literal value', function() { const fn = compile(`"foo"`); const ctx = {}; assert.strictEqual(fn(ctx), `foo`); }); describe('with escapes', function() { it('should parse and evaluate to literal value with escape sequences', function() { const fn = compile(`"foo\\"next'thingy'"`); const ctx = {}; assert.strictEqual(fn(ctx), `foo"next'thingy'`); }); it('should parse and evaluate newlines', function() { const fn = compile(`"multi\\nline\\ntext"`); const ctx = {}; assert.strictEqual(fn(ctx), `multi\nline\ntext`); }); }) }); describe('single quoted', function() { it('should be parsed to literal value', function() { const code = parse(`'foo'`); assert.strictEqual(code, `'foo'`); }); it('should parse and evaluate to literal value', function() { const fn = compile(`'foo'`); const ctx = {}; assert.strictEqual(fn(ctx), `foo`); }); describe('with escapes', function() { it('should parse and evaluate to literal value with escape sequences', function() { const fn = compile(`'foo\\'next"thingy"'`); const ctx = {}; assert.strictEqual(fn(ctx), `foo'next"thingy"`); }); it('should parse and evaluate newlines', function() { const fn = compile(`'multi\\nline\\ntext'`); const ctx = {}; assert.strictEqual(fn(ctx), `multi\nline\ntext`); }); }) }); }); describe('variables', function() { it('should be parsed to helper call', function() { const code = parse('myVar'); assert.strictEqual(code, `helper.val("myVar")(ctx)`); }); it('should parse and evaluate to variable in context', function() { const fn = compile('myVar'); const ctx = {myVar: 'foo'}; assert.strictEqual(fn(ctx), ctx.myVar); }); }); describe('property access', function() { it('should be parsed to helper call', function() { const code = parse('myObj.myProp'); assert.strictEqual(code, `helper.val("myProp")(helper.val("myObj")(ctx))`); }); it('should parse and evaluate to property of variable in context', function() { const fn = compile('myObj.myProp'); const ctx = {myObj: {myProp: 'foo'}}; assert.strictEqual(fn(ctx), ctx.myObj.myProp); }); it('should ignore undefined properties in path', function() { const fn = compile('myObj.noKey.otherProp'); const ctx = {myObj: {myProp: 'foo'}}; assert.strictEqual(fn(ctx), undefined); }); }); describe('offset access with string', function() { it('should be parsed to helper call', function() { const code = parse('myObj["myProp"]'); assert.strictEqual(code, `helper.val("myProp")(helper.val("myObj")(ctx))`); }); it('should parse and evaluate to property of variable in context', function() { const fn = compile('myObj["myProp"]'); const ctx = {myObj: {myProp: 'foo'}}; assert.strictEqual(fn(ctx), ctx.myObj.myProp); }); it('should ignore undefined properties in path', function() { const fn = compile('myObj["noKey"]["otherProp"]'); const ctx = {myObj: {myProp: 'foo'}}; assert.strictEqual(fn(ctx), undefined); }); }); describe('boolean operators', function() { describe('conjunction', function() { it('should be parsed to helper call', function() { const code = parse('varA &&varB'); assert.strictEqual(code, `helper.val("varA")(ctx)&&helper.val("varB")(ctx)`); }); it('should parse and short circuit evaluate to operand', function() { const fn = compile('varA &&varB'); assert.strictEqual(fn({varA: 'x', varB: 0}), 0); assert.strictEqual(fn({varA: 'x', varB: 1}), 1); assert.strictEqual(fn({varA: 0, varB: 'foo'}), 0); }); it('should support multiple conjunctions', function() { const fn = compile('varA &&varB&& varC'); assert.strictEqual(fn({varA: 'x', varB: 0, varC: 1}), 0); assert.strictEqual(fn({varA: 'x', varB: 42, varC: false}), false); assert.strictEqual(fn({varA: 'x', varB: 42, varC: true}), true); }); }); describe('disjunction', function() { it('should be parsed to helper call', function() { const code = parse('varA ||varB'); assert.strictEqual(code, `helper.val("varA")(ctx)||helper.val("varB")(ctx)`); }); it('should parse and short circuit evaluate to operand', function() { const fn = compile('varA ||varB'); assert.strictEqual(fn({varA: 'x', varB: 0}), 'x'); assert.strictEqual(fn({varA: 'x', varB: 1}), 'x'); assert.strictEqual(fn({varA: 0, varB: 'foo'}), 'foo'); }); it('should support multiple disjunctions', function() { const fn = compile('varA ||varB|| varC'); assert.strictEqual(fn({varA: 'x', varB: 0, varC: 1}), 'x'); assert.strictEqual(fn({varA: 42, varB: 42, varC: false}), 42); assert.strictEqual(fn({varA: false, varB: 42, varC: true}), 42); assert.strictEqual(fn({varA: false, varB: 0, varC: ''}), ''); }); }); describe('negation', function() { describe('with variable', function() { it('should parse and evaluate', function() { const fn = compile('!varA'); assert.strictEqual(fn({varA: 'x'}), false); }); }); describe('double negation', function() { it('should parse and evaluate', function() { const fn = compile('!!varA'); assert.strictEqual(fn({varA: 'x'}), true); }); }); }); describe('mixed boolean operators', function() { describe('with disjunction and conjunction 1', function() { it('should parse and evaluate with operator precedence', function() { const fn = compile('!varA || varB && varC'); assert.strictEqual(fn({varA: 'x', varB: 42, varC: 0}), 0); assert.strictEqual(fn({varA: 0, varB: 42, varC: false}), true); }); }); }); describe('comparison', function() { describe('equality', function() { it('should parse and evaluate', function() { const fn = compile('varA == 42'); assert.strictEqual(fn({varA: 42}), true); assert.strictEqual(fn({varA: 23}), false); }); }); describe('inequality', function() { it('should parse and evaluate', function() { const fn = compile('varA != 42'); assert.strictEqual(fn({varA: 42}), false); assert.strictEqual(fn({varA: 23}), true); }); }); }); describe('comparison and boolean operators', function() { it('should parse and evaluate', function() { const fn = compile('(varA == 42 || varA < 10) && !varB'); assert.strictEqual(fn({varA: 42, varB: 'x'}), false); assert.strictEqual(fn({varA: 42, varB: 0}), true); assert.strictEqual(fn({varA: 33, varB: 0}), false); assert.strictEqual(fn({varA: 5, varB: 0}), true); }); it('should parse and evaluate with operator precedence', function() { const fn = compile('varA == 42 || varA < 10 && !varB'); assert.strictEqual(fn({varA: 42, varB: 'x'}), true); assert.strictEqual(fn({varA: 42, varB: 0}), true); assert.strictEqual(fn({varA: 33, varB: 0}), false); assert.strictEqual(fn({varA: 5, varB: 0}), true); }); }); }); describe('function calls', function() { it('should be parsed to helper call', function() { const code = parse('myFunc(varA)'); assert.strictEqual(code, `helper.call("myFunc", [helper.val("varA")(ctx)])(ctx)`); }); it('should parse and evaluate', function() { const fn = compile('myFunc(varA)'); assert.strictEqual(fn({myFunc: x => x * 2, varA: 21}), 42); }); it('should allow whitespace after identifier', function() { const fn = compile('myFunc (varA)'); assert.strictEqual(fn({myFunc: x => x * 2, varA: 21}), 42); }); it('should support empty arguments', function() { const fn = compile('myFunc()'); assert.strictEqual(fn({myFunc: () => 42}), 42); }); it('should support multiple arguments', function() { const fn = compile('myFunc(2, 3)'); assert.strictEqual(fn({myFunc: (x, y) => x * y}), 6); }); it('should support many arguments', function() { const fn = compile('myFunc(1, 2, 3, 4)'); assert.deepEqual(fn({myFunc: (...args) => args}), [1, 2, 3, 4]); }); describe('on property access', function() { it('should be parsed to helper call', function() { const code = parse('myObj.myFunc(varA)'); assert.strictEqual(code, `helper.call("myFunc", [helper.val("varA")(ctx)])(helper.val("myObj")(ctx))`); }); }); describe('on offset access with property access', function() { it('should be parsed to helper call', function() { const code = parse('myObj["x"].myFunc(varA).foo'); assert.strictEqual(code, `helper.val("foo")(helper.call("myFunc", [helper.val("varA")(ctx)])(helper.val("x")(helper.val("myObj")(ctx))))`); }); it('should parse and evaluate', function() { const fn = compile('myObj["x"].myFunc(varA).foo'); assert.strictEqual(fn({myObj: {x: { myFunc: x => ({foo: x*2})}}, varA: 21}), 42); }); }); }); });
35.799331
147
0.55923
0c586b95323bd7ace750726b5e9b13e73b436044
3,824
js
JavaScript
in-crypt.js
i001962/sdk-nodejs
66607d7f7abe9b667b23dec976edf908b6eb3f13
[ "MIT" ]
null
null
null
in-crypt.js
i001962/sdk-nodejs
66607d7f7abe9b667b23dec976edf908b6eb3f13
[ "MIT" ]
null
null
null
in-crypt.js
i001962/sdk-nodejs
66607d7f7abe9b667b23dec976edf908b6eb3f13
[ "MIT" ]
null
null
null
const crypto = require('crypto'); const util = require('util'); const utf8 = require('utf8'); const pbkdf2 = util.promisify(crypto.pbkdf2); const IV_SIZE = 12; const KEY_SIZE = 32; const SALT_SIZE = 64; const PBKDF2_ITERATIONS_COUNT = 10000; const AUTH_TAG_SIZE = 16; const VERSION = '2'; const PT_VERSION = 'pt'; class InCrypt { constructor(secretKeyAccessor = null) { this._secretKeyAccessor = secretKeyAccessor; } async encryptAsync(text) { if (this._secretKeyAccessor === null) { return `${PT_VERSION}:${Buffer.from(text).toString('base64')}`; } const secret = await this._secretKeyAccessor.secureAccessor(); const iv = crypto.randomBytes(IV_SIZE); const salt = crypto.randomBytes(SALT_SIZE); const key = await pbkdf2(secret, salt, PBKDF2_ITERATIONS_COUNT, KEY_SIZE, 'sha512'); const cipher = crypto.createCipheriv('aes-256-gcm', key, iv); const encrypted = Buffer.concat([cipher.update(text, 'utf8'), cipher.final()]); const tag = cipher.getAuthTag(); const ciphertext = Buffer.concat([salt, iv, encrypted, tag]).toString('base64'); return `${VERSION}:${ciphertext}`; } async decryptAsync(s) { const parts = s.split(':'); let version; let encrypted; if (parts.length === 2) { [version, encrypted] = parts; } else { version = '0'; encrypted = s; } if (!this._secretKeyAccessor && version !== PT_VERSION) { throw new Error('No secretKeyAccessor provided. Cannot decrypt encrypted data'); } const decrypt = this[`decryptV${version}`].bind(this); return decrypt(encrypted); } async decryptVpt(plainTextBase64) { return Buffer.from(plainTextBase64, 'base64').toString('utf-8'); } async decryptV2(encryptedBase64) { const secret = await this._secretKeyAccessor.secureAccessor(); const bData = Buffer.from(encryptedBase64, 'base64'); const salt = bData.slice(0, SALT_SIZE); const iv = bData.slice(SALT_SIZE, SALT_SIZE + IV_SIZE); const encrypted = bData.slice(SALT_SIZE + IV_SIZE, bData.length - AUTH_TAG_SIZE); const tag = bData.slice(-AUTH_TAG_SIZE); const key = await pbkdf2(secret, salt, PBKDF2_ITERATIONS_COUNT, KEY_SIZE, 'sha512'); const decipher = crypto.createDecipheriv('aes-256-gcm', key, iv); decipher.setAuthTag(tag); return decipher.update(encrypted, 'binary', 'utf8') + decipher.final('utf8'); } async decryptV1(encryptedHex) { const secret = await this._secretKeyAccessor.secureAccessor(); const bData = Buffer.from(encryptedHex, 'hex'); const salt = bData.slice(0, SALT_SIZE); const iv = bData.slice(SALT_SIZE, SALT_SIZE + IV_SIZE); const encrypted = bData.slice(SALT_SIZE + IV_SIZE, bData.length - AUTH_TAG_SIZE); const tag = bData.slice(-AUTH_TAG_SIZE); const key = await pbkdf2(secret, salt, PBKDF2_ITERATIONS_COUNT, KEY_SIZE, 'sha512'); const decipher = crypto.createDecipheriv('aes-256-gcm', key, iv); decipher.setAuthTag(tag); return decipher.update(encrypted, 'binary', 'utf8') + decipher.final('utf8'); } async decryptV0(encryptedHex) { const secret = await this._secretKeyAccessor.secureAccessor(); const key = Buffer.allocUnsafe(16); const iv = Buffer.allocUnsafe(16); const hash = crypto.createHash('sha256'); const encodedKey = utf8.encode(secret); const ba = hash.update(encodedKey).digest('hex'); const salt = Buffer.from(ba, 'hex'); salt.copy(key, 0, 0, 16); salt.copy(iv, 0, 16, 32); const encryptedBytes = Buffer.from(encryptedHex, 'hex'); const decipher = crypto.createDecipheriv('aes-128-cbc', key, iv); let decrypted = decipher.update(encryptedBytes); decrypted = Buffer.concat([decrypted, decipher.final()]); return decrypted.toString(); } } module.exports.InCrypt = InCrypt;
32.40678
88
0.6841
0c592f0f5857521ac78cd06aec72cf636d5a5451
1,772
js
JavaScript
client/components/Footer/index.js
henri-hulski/morepath_cerebral_todomvc
568ac277c1844c4cf28bbacf484940f779fc7407
[ "BSD-3-Clause" ]
3
2016-08-20T06:02:01.000Z
2019-06-23T09:17:42.000Z
client/components/Footer/index.js
henri-hulski/morepath_cerebral_todomvc
568ac277c1844c4cf28bbacf484940f779fc7407
[ "BSD-3-Clause" ]
6
2016-07-30T12:42:29.000Z
2021-04-18T14:33:40.000Z
client/components/Footer/index.js
henri-hulski/morepath_cerebral_todomvc
568ac277c1844c4cf28bbacf484940f779fc7407
[ "BSD-3-Clause" ]
2
2020-09-10T08:07:13.000Z
2020-09-30T21:15:49.000Z
import React from 'react' import {connect} from 'cerebral-view-react' import counts from '../../computed/counts' import cn from 'classnames' export default connect({ filter: 'app.filter', counts: counts() }, { filterClicked: 'app.filterClicked', clearCompletedClicked: 'app.clearCompletedClicked' }, function Footer ({ filter, counts, filterClicked, clearCompletedClicked }) { let countLabel = 'item left' if (counts.remainingCount === 0 || counts.remainingCount > 1) { countLabel = 'items left' } return ( <footer className='footer'> <span className='todo-count'><strong>{counts.remainingCount} {countLabel}</strong></span> <ul className='filters'> <li> <a onClick={() => filterClicked({ filter: 'all' })} className={cn({ selected: filter === 'all' })} > All </a> </li> <li> <a onClick={() => filterClicked({ filter: 'active' })} className={cn({ selected: filter === 'active' })} > Active </a> </li> <li> <a onClick={() => filterClicked({ filter: 'completed' })} className={cn({ selected: filter === 'completed' })} > Completed </a> </li> </ul> { counts.completedCount ? <button className='clear-completed' onClick={() => clearCompletedClicked()}> Clear completed ({counts.completedCount}) </button> : null } </footer> ) } )
26.848485
97
0.472912
0c5972216117b880a98d5e28119a90486189cd51
970
js
JavaScript
electron-builder.js
baryon/medis
51698f2561a2499baf93065677120ac373ef1566
[ "MIT" ]
2
2021-08-29T12:15:57.000Z
2021-11-08T11:39:45.000Z
electron-builder.js
baryon/medis
51698f2561a2499baf93065677120ac373ef1566
[ "MIT" ]
null
null
null
electron-builder.js
baryon/medis
51698f2561a2499baf93065677120ac373ef1566
[ "MIT" ]
null
null
null
module.exports = { directories:{ app: '.', }, files:[ "./.webpack/**/*", "./package.json", ], appId: 'li.zihua.medis', productName: 'Medis', artifactName: '${name}-${os}-${arch}-${version}.${ext}', copyright: '© 2019, Zihua Li', // npmRebuild: 'false', // afterSign: "./appSign.js", mac: { icon: 'resources/icns/MyIcon.icns', // background: 'assets/DMGBG.png', // backgroundColor: '#6186ff', //entitlements: "sign/entitlements.plist", category: 'public.app-category.developer-tools', target: [ 'dmg', 'zip', // 'mas' ], publish: [ 'github' ], }, win: { target: 'nsis', icon: 'resources/icns/MyIcon.icns', publish: [ 'github' ] }, linux: { target: 'AppImage', icon: 'resources/icns/Icon1024.png', publish: [ 'github' ] }, nsis: { deleteAppDataOnUninstall: true, createDesktopShortcut: 'always' // include: 'nsis.nsh' }, publish: null }
22.045455
58
0.556701
0c5abe25c61d90f0ed69afe0567e95352cbefb5d
3,421
js
JavaScript
src/routes.js
nguyen-tuan-anh-3207/Petshop-admin
91e048a7a721d78f570c3470579cd012b047ea68
[ "MIT" ]
1
2022-03-01T17:10:37.000Z
2022-03-01T17:10:37.000Z
src/routes.js
nguyen-tuan-anh-3207/Petshop-admin
91e048a7a721d78f570c3470579cd012b047ea68
[ "MIT" ]
null
null
null
src/routes.js
nguyen-tuan-anh-3207/Petshop-admin
91e048a7a721d78f570c3470579cd012b047ea68
[ "MIT" ]
null
null
null
import { Navigate, Outlet, useRoutes } from 'react-router-dom'; // layouts import DashboardLayout from './layouts/dashboard'; import LogoOnlyLayout from './layouts/LogoOnlyLayout'; // import Login from './pages/Login'; import DashboardApp from './pages/DashboardApp'; import Products from './pages/product/Products'; import Blog from './pages/blog/Blog'; import User from './pages/user/User'; import NotFound from './pages/Page404'; import CreateProduct from './pages/product/Create'; import CreateBlog from './pages/blog/Create'; import EditProduct from './pages/product/Edit'; import CreateCategory from './pages/category/Create'; import { useAuth } from './hook/auth'; import Categories from './pages/category/Categories'; import EditCategory from './pages/category/Edit'; import Order from './pages/order/Order'; import DetailOrder from './pages/order/Detail'; import DetailUser from './pages/user/Detail'; import CreateUser from './pages/user/Create'; import EditUser from './pages/user/Edit'; // ---------------------------------------------------------------------- export default function Router() { const isAuth = useAuth(); return useRoutes([ { path: '/dashboard', element: isAuth ? <DashboardLayout /> : <Navigate to="/login" />, children: [ { element: <Navigate to="/dashboard/app" replace /> }, { path: 'app', element: <DashboardApp /> }, { path: 'users', element: <Outlet />, children: [ { path: '/dashboard/users', element: <User /> }, { path: '/dashboard/users/:id', element: <DetailUser /> }, { path: '/dashboard/users/create', element: <CreateUser /> }, { path: '/dashboard/users/edit/:id', element: <EditUser /> } ] }, { path: 'orders', element: <Outlet />, children: [ { path: '/dashboard/orders', element: <Order /> }, { path: '/dashboard/orders/:id', element: <DetailOrder /> } ] }, { path: 'blog', element: <Blog /> }, { path: 'blog', element: <Outlet />, children: [ { path: '/dashboard/blog', element: <Blog /> }, { path: '/dashboard/blog/create', element: <CreateBlog /> } ] }, { path: 'products', element: <Outlet />, children: [ { path: '/dashboard/products', element: <Products /> }, { path: '/dashboard/products/:id', element: <EditProduct /> }, { path: '/dashboard/products/create', element: <CreateProduct /> } ] }, { path: 'category', element: <Outlet />, children: [ { path: '/dashboard/category', element: <Categories /> }, { path: '/dashboard/category/:id', element: <EditCategory /> }, { path: '/dashboard/category/create', element: <CreateCategory /> } ] } ] }, { path: '/', element: <LogoOnlyLayout />, children: [ { path: 'login', element: isAuth ? <Navigate to="/dashboard" /> : <Login /> }, { path: '404', element: <NotFound /> }, { path: '/', element: <Navigate to="/dashboard" /> }, { path: '*', element: <Navigate to="/404" /> } ] }, { path: '*', element: <Navigate to="/404" replace /> } ]); }
35.268041
86
0.537854
0c5afbed400dac8ec4b1d2e53bf640f6a5dbc532
1,317
js
JavaScript
src/app/services/elasticsearch2/trendsTransformer.js
kulikov/kibana3
b0661aff8e039ae60116b83efd278f61512f99a8
[ "Apache-2.0" ]
null
null
null
src/app/services/elasticsearch2/trendsTransformer.js
kulikov/kibana3
b0661aff8e039ae60116b83efd278f61512f99a8
[ "Apache-2.0" ]
null
null
null
src/app/services/elasticsearch2/trendsTransformer.js
kulikov/kibana3
b0661aff8e039ae60116b83efd278f61512f99a8
[ "Apache-2.0" ]
1
2022-01-25T13:10:17.000Z
2022-01-25T13:10:17.000Z
define([ 'angular' ], function (angular) { 'use strict'; var signature = /^\{\"facets\":\{\"0\":\{\"query\":.*\"old_.*/; return { condition: function (config) { return (/\/_search$/).test(config.url) && signature.test(config.data); }, request: function (config) { var facetData = angular.fromJson(config.data); var aggregationsData = {}; aggregationsData.aggs = {}; var fLen = Object.keys(facetData["facets"]).length; for (var i = 0; i < fLen / 2; i++) { aggregationsData["aggs"][i] = {}; aggregationsData["aggs"][i]["filter"] = facetData["facets"][i]; aggregationsData["aggs"]["old_" + i] = {}; aggregationsData["aggs"]["old_" + i]["filter"] = facetData["facets"]["old_" + i]; } config.data = angular.toJson(aggregationsData); return config; }, response: function (response) { var data = response.data; data.facets = data.aggregations; var fLen = Object.keys(data["facets"]).length; for (var i = 0; i < fLen / 2; i++) { data["facets"][i]["count"] = data["facets"][i]["doc_count"]; data["facets"]["old_" + i]["count"] = data["facets"]["old_" + i]["doc_count"]; data["facets"][i]["type"] = "query"; data["facets"]["old_" + i]["type"] = "query"; } return response; } }; });
24.849057
86
0.561124
0c5d077de9f95dac45befd45a7abdfe6051e7324
1,553
js
JavaScript
js/src/render/renderer.js
fingolfin/francy
059dbafab609855d521f058e18da9af0b8576eae
[ "MIT" ]
null
null
null
js/src/render/renderer.js
fingolfin/francy
059dbafab609855d521f058e18da9af0b8576eae
[ "MIT" ]
null
null
null
js/src/render/renderer.js
fingolfin/francy
059dbafab609855d521f058e18da9af0b8576eae
[ "MIT" ]
null
null
null
import BaseRenderer from './base'; import MathJaxWrapper from './mathjax-wrapper'; /* global d3 */ export default class Renderer extends BaseRenderer { constructor({ appendTo, callbackHandler }) { super({ appendTo: appendTo, callbackHandler: callbackHandler }); if (new.target === Renderer) { throw new TypeError('Cannot instantiate [Renderer] classes directly!'); } if (this.render === undefined || typeof this.render !== 'function') { throw new TypeError('Must override [render()] method!'); } if (this.unrender === undefined) { this.logger.debug('No [unrender()] method specified...'); } this.element = undefined; this.transitionDuration = 750; //ms } _initialize() {} get HTMLParent() { return this.parent.node().tagName.toLowerCase() === 'svg' ? d3.select(this.parent.node().parentNode) : this.parent; } get SVGParent() { return this.parent.node().tagName.toLowerCase() === 'div' ? this.parent.select('svg') : this.parent; } get margin() { return { top: 50, right: 50, bottom: 50, left: 50 }; } get width() { let width = +this.parent.attr('width') || d3.select('body').node().getBoundingClientRect().width; return width - this.margin.left - this.margin.right; } get height() { let height = +this.parent.attr('height') || d3.select('body').node().getBoundingClientRect().height; return height - this.margin.top - this.margin.bottom; } get mathjax() { return new MathJaxWrapper(this.options).load(this.data); } }
29.865385
119
0.643271
0c5d373d26a83258cd12ea4f9c00e7440d8b26ff
3,390
js
JavaScript
src/Controller/StoreController.js
quoctrong1x96/cena-foodie-api
55de1060214e8379b18c52bbf6c3070c1a9fc733
[ "MIT" ]
2
2022-03-30T09:44:50.000Z
2022-03-31T00:50:11.000Z
src/Controller/StoreController.js
quoctrong1x96/cena-foodie-api
55de1060214e8379b18c52bbf6c3070c1a9fc733
[ "MIT" ]
null
null
null
src/Controller/StoreController.js
quoctrong1x96/cena-foodie-api
55de1060214e8379b18c52bbf6c3070c1a9fc733
[ "MIT" ]
null
null
null
// get-all-store-by-page import { response } from 'express'; import pool from '../Database/mysql.js'; import bcrypt from 'bcrypt'; export const getStoreNameById = async (req, res = response) => { try { const stores = await pool.query(`SELECT store_name FROM stores where id = ?`, req.params.id); res.json({ resp: true, msg : 'Store id = '+ req.params.storeId, stores_name: stores }); } catch (e) { return res.status(500).json({ resp: false, msg : e }); } } export const getStoreById = async (req, res = response) => { try { const stores = await pool.query(`SELECT * FROM stores where id = ?`, req.params.id); res.json({ resp: true, msg : 'Store id = '+ req.params.storeId, data: stores }); } catch (e) { return res.status(500).json({ resp: false, msg : e }); } } export const getStoresPerPage = async (req, res = response) => { try { let offset = req.query.offset; let limit = req.query.limit; let lng = req.query.lng; let lat = req.query.lat; if(offset == null){ offset = 0; } if(limit == null){ limit = 100; } if(lng == null || lat == null){ return res.status(404).json({ resp: false, msg : "This location not found!" }); } const stores = await pool.query(`CALL SP_GET_STORES_NEXT_LOCATION_BY_PAGE(?,?,?,?);`,[lat, lng, limit, offset]); res.json({ resp: true, msg : 'Stores near you by limit '+ limit + ', offset '+ offset, stores: stores[0] }); } catch (e) { return res.status(500).json({ resp: false, msg : e }); } } export const getAllDelivery = async ( req, res = response ) => { try { let deliveryDb = await pool.query(`CALL SP_STORES_DELIVERIES(?);`, [req.params.id]); res.json({ resp: true, msg : 'Get All Delivery', data: deliveryDb[0] }); } catch (e) { return res.status(500).json({ resp: false, msg : e }); } } export const registerDelivery = async (req, res = response) => { try { const { firstName, lastName, phone, email, password, notificationToken } = req.body; const imagePath = req.file.filename; const validatedEmail = await pool.query('SELECT email FROM users WHERE email = ?', [email]); if (validatedEmail.length > 0) { return res.status(401).json({ resp: false, msg: 'Email already exists' }); } let salt = bcrypt.genSaltSync(); const pass = bcrypt.hashSync(password, salt); pool.query(`CALL SP_USERS_REGISTER(?,?,?,?,?,?,?,?);`, [firstName, lastName, phone, imagePath, email, pass, 3, notificationToken]); res.json({ resp: true, msg: 'Delivery successfully registered', }); } catch (e) { return res.status(500).json({ resp: false, msg: e }); } }
24.214286
139
0.486431
0c5e7745ec2c74041da05569307063e10889bf59
997
js
JavaScript
doc/actor_manager_8h.js
KURUJISU/Top_P
d218656e13cbe05b01926366e114b34b8d430035
[ "MIT" ]
null
null
null
doc/actor_manager_8h.js
KURUJISU/Top_P
d218656e13cbe05b01926366e114b34b8d430035
[ "MIT" ]
null
null
null
doc/actor_manager_8h.js
KURUJISU/Top_P
d218656e13cbe05b01926366e114b34b8d430035
[ "MIT" ]
null
null
null
var actor_manager_8h = [ [ "AddActor", "actor_manager_8h.html#a12e5f88564714a2c478af874d649cd38", null ], [ "ClearActors", "actor_manager_8h.html#ae57db857a505adb20dbb340ce8333f91", null ], [ "DeleteActors", "actor_manager_8h.html#a876d4f1d18590053fe0847b24f042665", null ], [ "DeleteActors", "actor_manager_8h.html#af44ad91a8a19be9488e79588a4a101b3", null ], [ "DrawActors", "actor_manager_8h.html#a7f2e9e4d7f799e555f498c60d85c629b", null ], [ "DrawActorsGui", "actor_manager_8h.html#a2aefdd0643413ef585df528c4912b883", null ], [ "FindActor", "actor_manager_8h.html#ac2030eece6a685b8e1016db33058b973", null ], [ "FindActor", "actor_manager_8h.html#ac5a3a48f750c7d7e9f644d3eff650345", null ], [ "FindActorsList", "actor_manager_8h.html#a8dbd926330ef36d14542c6889a16df52", null ], [ "FindActorsList", "actor_manager_8h.html#acdd686b3b30c5f85a2f88506e4dc23ad", null ], [ "UpdateActors", "actor_manager_8h.html#a02b49fa55ac9bafceb861367852ac26f", null ] ];
71.214286
90
0.772317
0c5ee3dcbc5e5cff628fe73996c28b1c66fa371a
159
js
JavaScript
backend/convert/src/filter.js
Giancarl021/Tutorial-Filipe-Newsletter
42e96da7d6b084e1d53b60c1b1f126555c22142f
[ "MIT" ]
3
2021-08-25T02:52:44.000Z
2021-09-13T16:15:43.000Z
backend/convert/src/filter.js
Giancarl021/Tutorial-Filipe-Newsletter
42e96da7d6b084e1d53b60c1b1f126555c22142f
[ "MIT" ]
null
null
null
backend/convert/src/filter.js
Giancarl021/Tutorial-Filipe-Newsletter
42e96da7d6b084e1d53b60c1b1f126555c22142f
[ "MIT" ]
null
null
null
const isToday = require('./is-today'); module.exports = function (data) { return data .filter(item => isToday(item.timestamp)) .shift(); }
22.714286
48
0.603774
0c5f04cd23137b8b8853539bfa92f5438f9e8ff9
1,167
js
JavaScript
src/messages.js
ray-lee/cspace-ui-plugin-record-osteology.js
1cecc726d6f971d7166f0a6a37bae53e0120ef35
[ "ECL-2.0" ]
null
null
null
src/messages.js
ray-lee/cspace-ui-plugin-record-osteology.js
1cecc726d6f971d7166f0a6a37bae53e0120ef35
[ "ECL-2.0" ]
1
2019-12-21T05:27:34.000Z
2019-12-21T05:27:34.000Z
src/messages.js
ray-lee/cspace-ui-plugin-record-osteology.js
1cecc726d6f971d7166f0a6a37bae53e0120ef35
[ "ECL-2.0" ]
1
2019-07-25T06:37:46.000Z
2019-07-25T06:37:46.000Z
import { defineMessages } from 'react-intl'; export default { record: defineMessages({ name: { id: 'record.osteology.name', description: 'The name of the osteology record type.', defaultMessage: 'Osteology', }, collectionName: { id: 'record.osteology.collectionName', description: 'The name of a collection of records of the osteology type.', defaultMessage: 'Osteology', }, }), inputTable: defineMessages({ completeness: { id: 'inputTable.osteology.completeness', defaultMessage: 'Completeness', }, dentition: { id: 'inputTable.osteology.dentition', defaultMessage: 'Dentition', }, mortuaryTreatment: { id: 'inputTable.osteology.mortuaryTreatment', defaultMessage: 'Mortuary treatment', }, behrensmeyer: { id: 'inputTable.osteology.behrensmeyer', defaultMessage: 'Behrensmeyer stage', }, }), panel: defineMessages({ info: { id: 'panel.osteology.info', defaultMessage: 'Osteology Information', }, inventory: { id: 'panel.osteology.inventory', defaultMessage: 'Inventory', }, }), };
25.933333
80
0.62982
0c60639a35ffbe8125a66b674830ad9f9c3d8260
1,684
js
JavaScript
api/src/models/User.js
rishabhmalik-gep/sieve.ai
4e33075029f08a913a5bbc4ba1df68431f613585
[ "MIT" ]
2
2021-07-21T13:30:03.000Z
2022-01-10T08:10:43.000Z
api/src/models/User.js
rishabhmalik-gep/sieve.ai
4e33075029f08a913a5bbc4ba1df68431f613585
[ "MIT" ]
2
2022-02-18T22:40:27.000Z
2022-03-31T15:00:49.000Z
api/src/models/User.js
rishabhmalik-gep/sieve.ai
4e33075029f08a913a5bbc4ba1df68431f613585
[ "MIT" ]
2
2021-07-08T15:23:17.000Z
2021-08-15T08:23:40.000Z
import mongoose from 'mongoose'; import bcrypt from 'bcryptjs'; const UserSchema = new mongoose.Schema( { name: { type: String, required: true, trim: true, minLength: 2, maxLength: 100, }, email: { type: String, required: true, trim: true, minLength: 5, maxLength: 100, unique: true, }, password: { type: String, minLength: 6, maxLength: 100, // since hased password can be longer than our 50 length limit }, createdAt: { type: Date, default: Date.now, }, provider: { type: [String], enum: ['google', 'local'], required: true }, googleId: { type: String }, }, { timestamps: true } ); UserSchema.set('toJSON', { transform: function (_doc, ret) { ret.id = ret._id; delete ret.password; delete ret._id; delete ret.__v; }, }); UserSchema.pre('save', function (next) { if (!this.provider.includes('local')) next(); // to only hash password when user signed up or update their password if (this.isModified('password') || this.isNew) { try { // Hash Password const salt = bcrypt.genSaltSync(10); const hashedPassword = bcrypt.hashSync(this.password, salt); this.password = hashedPassword; next(); } catch (err) { next(err); } } else { return next(); } }); UserSchema.methods.isValidPassword = async function (password) { try { // Check/Compares password return await bcrypt.compare(password, this.password); } catch (err) { console.log(err); throw new Error(err); } }; const User = mongoose.model('User', UserSchema); export default User;
22.157895
84
0.597981
0c60dc738e102c36403b9a6d34ffb6e3950c91e0
283
js
JavaScript
web/components/screens/cosmos.decorator.js
rigolman1234/flatris
6044775327a16628482741a5d3bc8a24b2336c15
[ "MIT" ]
1,352
2015-02-09T08:44:26.000Z
2022-03-30T20:51:53.000Z
web/components/screens/cosmos.decorator.js
rigolman1234/flatris
6044775327a16628482741a5d3bc8a24b2336c15
[ "MIT" ]
62
2015-01-31T16:18:40.000Z
2022-02-26T10:11:26.000Z
web/components/screens/cosmos.decorator.js
rigolman1234/flatris
6044775327a16628482741a5d3bc8a24b2336c15
[ "MIT" ]
3,682
2015-02-27T01:50:52.000Z
2022-03-31T19:29:16.000Z
// @flow import React from 'react'; import { GameContainerMock } from '../../mocks/GameContainerMock'; export default ({ children }: { children: React$Node }) => ( <GameContainerMock cols={10} backgroundColor="rgba(236, 240, 241, 0.85)"> {children} </GameContainerMock> );
25.727273
75
0.671378
0c618b2016a791caeba646251893fdb3ea838a01
665
js
JavaScript
src/components/ImageCropper/utils/data2blob.js
wangyunfan418/Vuetify-Admin
ed2a99e287ab9c36625f35000f3902b71edfff83
[ "MIT" ]
1
2019-07-17T08:15:37.000Z
2019-07-17T08:15:37.000Z
src/components/ImageCropper/utils/data2blob.js
wangyunfan418/Vuetify-Admin
ed2a99e287ab9c36625f35000f3902b71edfff83
[ "MIT" ]
null
null
null
src/components/ImageCropper/utils/data2blob.js
wangyunfan418/Vuetify-Admin
ed2a99e287ab9c36625f35000f3902b71edfff83
[ "MIT" ]
null
null
null
/** * Convert database64 file format to binary * * @param {[String]} data dataURL is "data:image/png;base64,****". * comma is preceded by some descriptive text. We only need the comma after the line. * @param {[String]} mime [description] * @return {[blob]} [description] */ export default function (data, mime) { let newData = data.split(',')[1]; newData = window.atob(newData); const ia = new Uint8Array(newData.length); for (let i = 0; i < newData.length; i += 1) { ia[i] = newData.charCodeAt(i); } // default format returned by canvas.toDataURL is image/png return new Blob([ia], { type: mime }); }
31.666667
85
0.619549
0c62d15224bee1f65aee2b756b66f070c17ca9a8
14,041
js
JavaScript
doc/current/scripts/directoryView.js
vczh-libraries/vczh-libraries.github.io
85addde60cc8674213737ac3db7b802e8854c54c
[ "RSA-MD" ]
71
2015-08-13T04:51:08.000Z
2021-12-21T09:49:37.000Z
doc/current/scripts/directoryView.js
vczh-libraries/vczh-libraries.github.io
85addde60cc8674213737ac3db7b802e8854c54c
[ "RSA-MD" ]
3
2020-12-18T12:50:51.000Z
2021-07-19T18:08:29.000Z
doc/current/scripts/directoryView.js
vczh-libraries/vczh-libraries.github.io
85addde60cc8674213737ac3db7b802e8854c54c
[ "RSA-MD" ]
21
2015-08-21T15:21:32.000Z
2020-12-19T12:08:02.000Z
window["Gaclib-DirectoryView"]=function(t){var e={};function n(i){if(e[i])return e[i].exports;var s=e[i]={i:i,l:!1,exports:{}};return t[i].call(s.exports,s,s.exports,n),s.l=!0,s.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 s in t)n.d(i,s,function(e){return t[e]}.bind(null,s));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="",n(n.s=0)}([function(t,e,n){"use strict";var i=this&&this.__makeTemplateObject||function(t,e){return Object.defineProperty?Object.defineProperty(t,"raw",{value:e}):t.raw=e,t};Object.defineProperty(e,"__esModule",{value:!0}),e.viewExport=void 0;var s,r,o,a,l,d,c,u,h,p=n(1);function m(t){switch(t){case"+":return p.html(s||(s=i(["<code>+&nbsp;</code>"],["<code>+&nbsp;</code>"])));case"-":return p.html(r||(r=i(["<code>-&nbsp;</code>"],["<code>-&nbsp;</code>"])));default:return p.html(o||(o=i(["<code>&nbsp;&nbsp;</code>"],["<code>&nbsp;&nbsp;</code>"])))}}e.viewExport={renderView:function(t,e){var n=window["MVC-Resources.directoryInfo"],s=window["MVC-Resources.hrefPrefix"],r=p.html(h||(h=i(['\n<table class="DirectoryTable">\n <tr>\n <td valign="top">\n <div class="TreeView">\n <h1>Index</h1>\n ','\n </div>\n </td>\n <td valign="top">\n <div class="ContentView">\n <div id="directoryViewContainer"></div>\n </div>\n </td>\n </tr>\n</table>\n'],['\n<table class="DirectoryTable">\n <tr>\n <td valign="top">\n <div class="TreeView">\n <h1>Index</h1>\n ','\n </div>\n </td>\n <td valign="top">\n <div class="ContentView">\n <div id="directoryViewContainer"></div>\n </div>\n </td>\n </tr>\n</table>\n'])),function t(e,n,s){return p.html(u||(u=i(["",""],["",""])),s.map((function(s){var r=void 0===s.subNodes?void 0:p.html(a||(a=i(['<div class="Children">',"</div>"],['<div class="Children">',"</div>"])),t(e,n,s.subNodes));return s.selected?p.html(l||(l=i(['<div class="DirectoryNode">','<span class="Selected">',"</span></div>",""],['<div class="DirectoryNode">','<span class="Selected">',"</span></div>",""])),m(s.icon),s.name,r):void 0===s.path?p.html(d||(d=i(['<div class="DirectoryNode">',"<span>","</span></div>",""],['<div class="DirectoryNode">',"<span>","</span></div>",""])),m(s.icon),s.name,r):p.html(c||(c=i(['<div class="DirectoryNode">','<a href="',"/",'.html">',"</a></div>",""],['<div class="DirectoryNode">','<a href="',"/",'.html">',"</a></div>",""])),m(s.icon),n,s.path.join("/"),s.name,r)})))}(n,s,n.subNodes));p.render(r,e)}}},function(t,e,n){"use strict";n.r(e),n.d(e,"DefaultTemplateProcessor",(function(){return j})),n.d(e,"defaultTemplateProcessor",(function(){return I})),n.d(e,"directive",(function(){return s})),n.d(e,"isDirective",(function(){return r})),n.d(e,"removeNodes",(function(){return l})),n.d(e,"reparentNodes",(function(){return a})),n.d(e,"noChange",(function(){return d})),n.d(e,"nothing",(function(){return c})),n.d(e,"AttributeCommitter",(function(){return T})),n.d(e,"AttributePart",(function(){return E})),n.d(e,"BooleanAttributePart",(function(){return C})),n.d(e,"EventPart",(function(){return $})),n.d(e,"isIterable",(function(){return V})),n.d(e,"isPrimitive",(function(){return w})),n.d(e,"NodePart",(function(){return P})),n.d(e,"PropertyCommitter",(function(){return A})),n.d(e,"PropertyPart",(function(){return S})),n.d(e,"parts",(function(){return D})),n.d(e,"render",(function(){return H})),n.d(e,"templateCaches",(function(){return k})),n.d(e,"templateFactory",(function(){return L})),n.d(e,"TemplateInstance",(function(){return x})),n.d(e,"SVGTemplateResult",(function(){return N})),n.d(e,"TemplateResult",(function(){return b})),n.d(e,"createMarker",(function(){return _})),n.d(e,"isTemplatePartActive",(function(){return v})),n.d(e,"Template",(function(){return m})),n.d(e,"html",(function(){return B})),n.d(e,"svg",(function(){return F}));const i=new WeakMap,s=t=>(...e)=>{const n=t(...e);return i.set(n,!0),n},r=t=>"function"==typeof t&&i.has(t),o="undefined"!=typeof window&&null!=window.customElements&&void 0!==window.customElements.polyfillWrapFlushCallback,a=(t,e,n=null,i=null)=>{for(;e!==n;){const n=e.nextSibling;t.insertBefore(e,i),e=n}},l=(t,e,n=null)=>{for(;e!==n;){const n=e.nextSibling;t.removeChild(e),e=n}},d={},c={},u=`{{lit-${String(Math.random()).slice(2)}}}`,h=`\x3c!--${u}--\x3e`,p=new RegExp(`${u}|${h}`);class m{constructor(t,e){this.parts=[],this.element=e;const n=[],i=[],s=document.createTreeWalker(e.content,133,null,!1);let r=0,o=-1,a=0;const{strings:l,values:{length:d}}=t;for(;a<d;){const t=s.nextNode();if(null!==t){if(o++,1===t.nodeType){if(t.hasAttributes()){const e=t.attributes,{length:n}=e;let i=0;for(let t=0;t<n;t++)f(e[t].name,"$lit$")&&i++;for(;i-- >0;){const e=l[a],n=g.exec(e)[2],i=n.toLowerCase()+"$lit$",s=t.getAttribute(i);t.removeAttribute(i);const r=s.split(p);this.parts.push({type:"attribute",index:o,name:n,strings:r}),a+=r.length-1}}"TEMPLATE"===t.tagName&&(i.push(t),s.currentNode=t.content)}else if(3===t.nodeType){const e=t.data;if(e.indexOf(u)>=0){const i=t.parentNode,s=e.split(p),r=s.length-1;for(let e=0;e<r;e++){let n,r=s[e];if(""===r)n=_();else{const t=g.exec(r);null!==t&&f(t[2],"$lit$")&&(r=r.slice(0,t.index)+t[1]+t[2].slice(0,-"$lit$".length)+t[3]),n=document.createTextNode(r)}i.insertBefore(n,t),this.parts.push({type:"node",index:++o})}""===s[r]?(i.insertBefore(_(),t),n.push(t)):t.data=s[r],a+=r}}else if(8===t.nodeType)if(t.data===u){const e=t.parentNode;null!==t.previousSibling&&o!==r||(o++,e.insertBefore(_(),t)),r=o,this.parts.push({type:"node",index:o}),null===t.nextSibling?t.data="":(n.push(t),o--),a++}else{let e=-1;for(;-1!==(e=t.data.indexOf(u,e+1));)this.parts.push({type:"node",index:-1}),a++}}else s.currentNode=i.pop()}for(const t of n)t.parentNode.removeChild(t)}}const f=(t,e)=>{const n=t.length-e.length;return n>=0&&t.slice(n)===e},v=t=>-1!==t.index,_=()=>document.createComment(""),g=/([ \x09\x0a\x0c\x0d])([^\0-\x1F\x7F-\x9F "'>=/]+)([ \x09\x0a\x0c\x0d]*=[ \x09\x0a\x0c\x0d]*(?:[^ \x09\x0a\x0c\x0d"'`<>=]*|"[^"]*|'[^']*))$/;class x{constructor(t,e,n){this.__parts=[],this.template=t,this.processor=e,this.options=n}update(t){let e=0;for(const n of this.__parts)void 0!==n&&n.setValue(t[e]),e++;for(const t of this.__parts)void 0!==t&&t.commit()}_clone(){const t=o?this.template.element.content.cloneNode(!0):document.importNode(this.template.element.content,!0),e=[],n=this.template.parts,i=document.createTreeWalker(t,133,null,!1);let s,r=0,a=0,l=i.nextNode();for(;r<n.length;)if(s=n[r],v(s)){for(;a<s.index;)a++,"TEMPLATE"===l.nodeName&&(e.push(l),i.currentNode=l.content),null===(l=i.nextNode())&&(i.currentNode=e.pop(),l=i.nextNode());if("node"===s.type){const t=this.processor.handleTextExpression(this.options);t.insertAfterNode(l.previousSibling),this.__parts.push(t)}else this.__parts.push(...this.processor.handleAttributeExpressions(l,s.name,s.strings,this.options));r++}else this.__parts.push(void 0),r++;return o&&(document.adoptNode(t),customElements.upgrade(t)),t}}const y=` ${u} `;class b{constructor(t,e,n,i){this.strings=t,this.values=e,this.type=n,this.processor=i}getHTML(){const t=this.strings.length-1;let e="",n=!1;for(let i=0;i<t;i++){const t=this.strings[i],s=t.lastIndexOf("\x3c!--");n=(s>-1||n)&&-1===t.indexOf("--\x3e",s+1);const r=g.exec(t);e+=null===r?t+(n?y:h):t.substr(0,r.index)+r[1]+r[2]+"$lit$"+r[3]+u}return e+=this.strings[t],e}getTemplateElement(){const t=document.createElement("template");return t.innerHTML=this.getHTML(),t}}class N extends b{getHTML(){return`<svg>${super.getHTML()}</svg>`}getTemplateElement(){const t=super.getTemplateElement(),e=t.content,n=e.firstChild;return e.removeChild(n),a(e,n.firstChild),t}}const w=t=>null===t||!("object"==typeof t||"function"==typeof t),V=t=>Array.isArray(t)||!(!t||!t[Symbol.iterator]);class T{constructor(t,e,n){this.dirty=!0,this.element=t,this.name=e,this.strings=n,this.parts=[];for(let t=0;t<n.length-1;t++)this.parts[t]=this._createPart()}_createPart(){return new E(this)}_getValue(){const t=this.strings,e=t.length-1;let n="";for(let i=0;i<e;i++){n+=t[i];const e=this.parts[i];if(void 0!==e){const t=e.value;if(w(t)||!V(t))n+="string"==typeof t?t:String(t);else for(const e of t)n+="string"==typeof e?e:String(e)}}return n+=t[e],n}commit(){this.dirty&&(this.dirty=!1,this.element.setAttribute(this.name,this._getValue()))}}class E{constructor(t){this.value=void 0,this.committer=t}setValue(t){t===d||w(t)&&t===this.value||(this.value=t,r(t)||(this.committer.dirty=!0))}commit(){for(;r(this.value);){const t=this.value;this.value=d,t(this)}this.value!==d&&this.committer.commit()}}class P{constructor(t){this.value=void 0,this.__pendingValue=void 0,this.options=t}appendInto(t){this.startNode=t.appendChild(_()),this.endNode=t.appendChild(_())}insertAfterNode(t){this.startNode=t,this.endNode=t.nextSibling}appendIntoPart(t){t.__insert(this.startNode=_()),t.__insert(this.endNode=_())}insertAfterPart(t){t.__insert(this.startNode=_()),this.endNode=t.endNode,t.endNode=this.startNode}setValue(t){this.__pendingValue=t}commit(){if(null===this.startNode.parentNode)return;for(;r(this.__pendingValue);){const t=this.__pendingValue;this.__pendingValue=d,t(this)}const t=this.__pendingValue;t!==d&&(w(t)?t!==this.value&&this.__commitText(t):t instanceof b?this.__commitTemplateResult(t):t instanceof Node?this.__commitNode(t):V(t)?this.__commitIterable(t):t===c?(this.value=c,this.clear()):this.__commitText(t))}__insert(t){this.endNode.parentNode.insertBefore(t,this.endNode)}__commitNode(t){this.value!==t&&(this.clear(),this.__insert(t),this.value=t)}__commitText(t){const e=this.startNode.nextSibling,n="string"==typeof(t=null==t?"":t)?t:String(t);e===this.endNode.previousSibling&&3===e.nodeType?e.data=n:this.__commitNode(document.createTextNode(n)),this.value=t}__commitTemplateResult(t){const e=this.options.templateFactory(t);if(this.value instanceof x&&this.value.template===e)this.value.update(t.values);else{const n=new x(e,t.processor,this.options),i=n._clone();n.update(t.values),this.__commitNode(i),this.value=n}}__commitIterable(t){Array.isArray(this.value)||(this.value=[],this.clear());const e=this.value;let n,i=0;for(const s of t)n=e[i],void 0===n&&(n=new P(this.options),e.push(n),0===i?n.appendIntoPart(this):n.insertAfterPart(e[i-1])),n.setValue(s),n.commit(),i++;i<e.length&&(e.length=i,this.clear(n&&n.endNode))}clear(t=this.startNode){l(this.startNode.parentNode,t.nextSibling,this.endNode)}}class C{constructor(t,e,n){if(this.value=void 0,this.__pendingValue=void 0,2!==n.length||""!==n[0]||""!==n[1])throw new Error("Boolean attributes can only contain a single expression");this.element=t,this.name=e,this.strings=n}setValue(t){this.__pendingValue=t}commit(){for(;r(this.__pendingValue);){const t=this.__pendingValue;this.__pendingValue=d,t(this)}if(this.__pendingValue===d)return;const t=!!this.__pendingValue;this.value!==t&&(t?this.element.setAttribute(this.name,""):this.element.removeAttribute(this.name),this.value=t),this.__pendingValue=d}}class A extends T{constructor(t,e,n){super(t,e,n),this.single=2===n.length&&""===n[0]&&""===n[1]}_createPart(){return new S(this)}_getValue(){return this.single?this.parts[0].value:super._getValue()}commit(){this.dirty&&(this.dirty=!1,this.element[this.name]=this._getValue())}}class S extends E{}let M=!1;(()=>{try{const t={get capture(){return M=!0,!1}};window.addEventListener("test",t,t),window.removeEventListener("test",t,t)}catch(t){}})();class ${constructor(t,e,n){this.value=void 0,this.__pendingValue=void 0,this.element=t,this.eventName=e,this.eventContext=n,this.__boundHandleEvent=t=>this.handleEvent(t)}setValue(t){this.__pendingValue=t}commit(){for(;r(this.__pendingValue);){const t=this.__pendingValue;this.__pendingValue=d,t(this)}if(this.__pendingValue===d)return;const t=this.__pendingValue,e=this.value,n=null==t||null!=e&&(t.capture!==e.capture||t.once!==e.once||t.passive!==e.passive),i=null!=t&&(null==e||n);n&&this.element.removeEventListener(this.eventName,this.__boundHandleEvent,this.__options),i&&(this.__options=O(t),this.element.addEventListener(this.eventName,this.__boundHandleEvent,this.__options)),this.value=t,this.__pendingValue=d}handleEvent(t){"function"==typeof this.value?this.value.call(this.eventContext||this.element,t):this.value.handleEvent(t)}}const O=t=>t&&(M?{capture:t.capture,passive:t.passive,once:t.once}:t.capture);class j{handleAttributeExpressions(t,e,n,i){const s=e[0];if("."===s){return new A(t,e.slice(1),n).parts}if("@"===s)return[new $(t,e.slice(1),i.eventContext)];if("?"===s)return[new C(t,e.slice(1),n)];return new T(t,e,n).parts}handleTextExpression(t){return new P(t)}}const I=new j;function L(t){let e=k.get(t.type);void 0===e&&(e={stringsArray:new WeakMap,keyString:new Map},k.set(t.type,e));let n=e.stringsArray.get(t.strings);if(void 0!==n)return n;const i=t.strings.join(u);return n=e.keyString.get(i),void 0===n&&(n=new m(t,t.getTemplateElement()),e.keyString.set(i,n)),e.stringsArray.set(t.strings,n),n}const k=new Map,D=new WeakMap,H=(t,e,n)=>{let i=D.get(e);void 0===i&&(l(e,e.firstChild),D.set(e,i=new P(Object.assign({templateFactory:L},n))),i.appendInto(e)),i.setValue(t),i.commit()};"undefined"!=typeof window&&(window.litHtmlVersions||(window.litHtmlVersions=[])).push("1.2.1");const B=(t,...e)=>new b(t,e,"html",I),F=(t,...e)=>new N(t,e,"svg",I)}]).viewExport;
14,041
14,041
0.671106
0c63b278e2ddaddaed12971dd4174928d5905ee3
3,397
js
JavaScript
index.js
austinkelleher/pending-tasks
b5d474df7c6b0bba423e408a8eb27ca0cafdff5e
[ "MIT" ]
1
2015-09-19T05:36:26.000Z
2015-09-19T05:36:26.000Z
index.js
austinkelleher/pending-tasks
b5d474df7c6b0bba423e408a8eb27ca0cafdff5e
[ "MIT" ]
null
null
null
index.js
austinkelleher/pending-tasks
b5d474df7c6b0bba423e408a8eb27ca0cafdff5e
[ "MIT" ]
null
null
null
/** * Create a new pending tasks manager * * @param options * @param options.defaultTimeout Default timeout for a task if one is not provided. * this falls back to 1000 ms. * @param options.tasks Single object or array of objects of tasks with unique Id's */ var PendingTasks = function(options) { options = options || {}; this.tasks = {}; this.defaultTimeout = options.defaultTimeout || 1000; if (options.tasks) { this.add(options.tasks); } }; PendingTasks.prototype = { /** * Add a task or array of tasks to the pending tasks * * @param task Object or array of objects of tasks with unique Id's */ add: function(task) { if (Array.isArray(task)) { for (var i = 0; i < task.length; i++) { this.add(task[i]); } return; } else if (typeof(task) === 'object') { if (!task.id) { throw new Error('Task Id is required for each task'); } else if (typeof(task.task) !== 'function') { throw new Error('Task function is required for each task'); } else if (this.tasks[task.id]) { throw new Error('Task with Id: ' + task.id + ' already exists'); } var self = this; var timeout = task.timeout || this.defaultTimeout; // Our function will execute the desired task followed by the // deletion of the task from our persisted list this.tasks[task.id] = setTimeout(function() { task.task(); delete self.tasks[task.id]; }, timeout); } }, /** * Delete a task or array of tasks from the pending tasks * * @param taskId Unique Id of the task or array of unique tasks Id's */ delete: function(taskId) { if (Array.isArray(taskId)) { for (var i = 0; i < taskId.length; i++) { this.delete(taskId[i]); } return; } if (!this.tasks[taskId]) { throw new Error('Task with task Id ' + taskId + ' does not exist'); } clearTimeout(this.tasks[taskId]); delete this.tasks[taskId]; }, /** * @return Whether the task is still waiting to be executed or not */ isPending: function(taskId) { return typeof(this.tasks[taskId]) !== 'undefined'; }, /** * @param taskId Unique Id of the task * @return The time that the task was initialized */ getTaskCreatedTime: function(taskId) { var task = this.tasks[taskId]; return this.isPending(taskId) ? task._idleStart : null; }, /** * @param taskId Unique Id of the task * @return The time remaining in milliseconds until the task is executed */ getTimeRemaining: function(taskId) { var task = this.tasks[taskId]; return this.isPending(taskId) ? task._idleTimeout - (Date.now() - task._idleStart) : null; } }; /** * Create a new pending tasks manager * * @param options * @param options.defaultTimeout Default timeout for a task if one is not provided. * this falls back to 1000 ms. * @param options.tasks Single object or array of objects of tasks with unique Id's */ exports.create = function(options) { return new PendingTasks(options); };
30.881818
98
0.568737
058a0a95a601d63cb156fb2a76a1de24ec5f2aca
5,228
js
JavaScript
assets/js/app.js
tidepooler/D3-Challenge
4fa0dd2154c5ef6eded7f52161273fedc59042c6
[ "ADSL" ]
null
null
null
assets/js/app.js
tidepooler/D3-Challenge
4fa0dd2154c5ef6eded7f52161273fedc59042c6
[ "ADSL" ]
null
null
null
assets/js/app.js
tidepooler/D3-Challenge
4fa0dd2154c5ef6eded7f52161273fedc59042c6
[ "ADSL" ]
null
null
null
//Set up chart function setUpChart() { var svgWidth = 960; var svgHeight = 500; var margin = { top: 20, right: 40, bottom: 60, left: 100 }; var width = svgWidth - margin.left - margin.right; var height = svgHeight - margin.top - margin.bottom; // Create an SVG wrapper, append an SVG group that will hold our chart, // and shift the latter by left and top margins. var svg = d3.select("#scatter") .append("svg") .attr("width", svgWidth) .attr("height", svgHeight); // Append an SVG group var chartGroup = svg.append("g") .attr("transform", `translate(${margin.left}, ${margin.top})`); // Read in data from the CSV file and execute everything below d3.csv("assets/data/data.csv").then(function(censusData) { //Parse Data // ============================== censusData.forEach(function(data) { data.age = +data.age; data.smokes = +data.smokes; data.healthcare = +data.healthcare; data.poverty = +data.poverty; data.abbr = data.abbr; data.income = +data.income; }); // Create X & Y scale functions // ============================== var xLinearScale = d3.scaleLinear() .domain([8.5, d3.max(censusData, d => d.poverty)]) .range([0, width]); var yLinearScale = d3.scaleLinear() .domain([3.5, d3.max(censusData, d => d.healthcare)]) .range([height, 0]); // Create initial axis functions // ============================== var bottomAxis = d3.axisBottom(xLinearScale); var leftAxis = d3.axisLeft(yLinearScale); // Append X & Y Axes to the chart // ============================== chartGroup.append("g") .attr("transform", `translate(0, ${height})`) .call(bottomAxis); chartGroup.append("g") .call(leftAxis); // append initial circles // ============================== var makeCircles = chartGroup.selectAll("circle") .data(censusData) .enter() .append("circle") .attr("cx", d => xLinearScale(d.poverty)) .attr("cy", d => yLinearScale(d.healthcare)) .attr("r", "17") .attr("fill", "blue") .attr("opacity", ".5") .attr("stroke-width", "2") .attr("stroke", "black"); chartGroup.select("g") .selectAll("circle") .data(censusData) .enter() .append("text") .text(d => d.abbr) .attr("x", d => xLinearScale(d.poverty)) .attr("y", d => yLinearScale(d.healthcare)) .attr("dy",-415) .attr("text-anchor", "middle") .attr("font-size", "10px") .attr("fill", "black"); console.log(censusData); // Create axes labels chartGroup.append("text") .attr("transform", "rotate(-90)") .attr("y", 0 - margin.left + 40) .attr("x", 0 - (height / 2)) .attr("dy", "1em") .attr("class", "axisText") .text("Lacks Healthcare (%)"); chartGroup.append("text") .attr("transform", `translate(${width / 2}, ${height + margin.top + 30})`) .attr("class", "axisText") .text("In Poverty (%)"); // create tooltips, assign it a class // ======================================================= var toolTip = d3.select() .append("div") .attr("class", "tooltip") .style("background", "black") .style("color", "red") //.offset([80, -60]) .html( function(d) { return (`${d.state}<hr>Poverty: ${d.poverty}%<br>Healthcare: ${d.healthcare}%`) // }); .style("left", d3.event.pageX + "px") .style("top", d3.event.pageY + "px"); }); //tooltip in the chart. //makeCircles.call(toolTip); var makeCircles = chartGroup.selectAll("circle") .data(censusData) .enter() .append("circle") .attr("cx", d => xTimeScale(d.poverty)) .attr("cy", d => yLinearScale(d.healthcare)) .attr("r", "10") .attr("fill", "gold") .attr("stroke-width", "1") .attr("stroke", "black"); // Step 3: Add an onmouseout event to make the tooltip invisible makeCircles.on("mouseover", function(d) { toolTip.styles("display", "block"); /* d3.select(this) .transition() .duration(1000) .atr("r", 20) .attr("fill","red"); */ }) .on("click", function(censusData) { toolTip.show(data, this); }) .on("mouseout",function(censusData) { d3.select(this) .transition() .duration(1000) .attr("r", 15) .attr("fill","black") toolTip.style("display","none") }); }); } // // When the browser loads, setUpChart() is called. setUpChart();
30.045977
91
0.471117
058a30f164db7255e454afadfb0add7e1026ce25
2,571
js
JavaScript
src/components/Hero.js
DoraKar/portfolio
fa4f914f94114dd21eab5c6feb73ec8e4648cd08
[ "MIT" ]
null
null
null
src/components/Hero.js
DoraKar/portfolio
fa4f914f94114dd21eab5c6feb73ec8e4648cd08
[ "MIT" ]
null
null
null
src/components/Hero.js
DoraKar/portfolio
fa4f914f94114dd21eab5c6feb73ec8e4648cd08
[ "MIT" ]
null
null
null
import React from "react" import Image from "gatsby-image" import { graphql, useStaticQuery } from "gatsby" import SocialLinks from "../constants/socialLinks" import {Link} from 'react-scroll' // ...GatsbyImageSharpFluid function scroll(val) { //alert(document.getElementById(val)); document.getElementById(val).click() } const query = graphql` { file(relativePath: {eq: "dora-img_50.png"}) { childImageSharp { fluid { ...GatsbyImageSharpFluid } } } } ` const Hero = () => { const { file: { childImageSharp: { fluid }, }, } = useStaticQuery(query) return <header className='hero'> <div className='section-center hero-center'> <article className='hero-info'> <div> <div className='underline'> <h2>&nbsp;&nbsp;&nbsp;DORA</h2> <h2>&nbsp;KARDUM</h2> <Link to='/contact' className='btn'> Contact </Link> <br/> <h4>dora.kardum1@gmail.com</h4> <SocialLinks /> <Link to="work experience" activeClass="active" spy={true} smooth={true} className='btn'> Work Experience </Link> <Link to="education" spy={true} smooth={true} className='btn'> Education </Link> <Link to="\skills" spy={true} smooth={true} className='btn'> Skills </Link> <button to="hobbies" activeClass="active" spy={true} smooth={true} className='btn'> Hobbies </button> <Link to='/Books' className='btn'> Books </Link> <Link to='/Baking' className='btn'> Baking </Link> </div> </div> </article> <Image fluid = {fluid} className='hero-img' /> </div> <div className='hero-hello'> <br /> <h1>&nbsp;&nbsp;&nbsp;Hi!</h1> <br /> <h2>I'm Dora, master of geodesy and geoinformatics, IT enthusiast and a nerd. I am looking to change careers so I'm currently working on my tech skills in front-end development and UI/UX desing. <br/> <br/> Feel free to contact me if you've also experienced changing careers so we can share some thoughts. :) <br/> <br/> Also if you are interested in the mentorship program for web development do not hesitate to contact me! </h2> </div> </header> } export default Hero
27.645161
126
0.537923
058afa0d3feba6dc9c7a44baa413ad30d2aff87e
158
js
JavaScript
src/context/ScrollToSectionContext.js
uqlibrary/homepage-react
d35fcc9d0ac1174e0f81667459e7276df603b7b9
[ "MIT" ]
6
2017-06-30T00:58:59.000Z
2021-03-23T10:42:36.000Z
src/context/ScrollToSectionContext.js
uqlibrary/uql-homepage-frontend
45427c291738f2718a9da1620cc3442a6ba03427
[ "MIT" ]
14
2020-01-07T23:22:32.000Z
2022-03-26T07:05:41.000Z
src/context/ScrollToSectionContext.js
lifenstein/fez-frontend
b51b70ee27f6509feacbf8522a26ac00192932f4
[ "MIT" ]
4
2017-08-17T05:38:48.000Z
2020-01-17T06:14:09.000Z
import React from 'react'; export default React.createContext({ scrollToSection: false, sectionRef: null, scrollToSectionCallback: () => {}, });
19.75
38
0.683544
058b831a46bbcef4d47db33b3262f1a83c44e744
3,519
js
JavaScript
lib/quip.js
dineshkummarc/quip
7881f7b3d367de97ef1af56580e96c8424b9a4a9
[ "MIT" ]
1
2019-04-22T16:34:19.000Z
2019-04-22T16:34:19.000Z
lib/quip.js
dineshkummarc/quip
7881f7b3d367de97ef1af56580e96c8424b9a4a9
[ "MIT" ]
null
null
null
lib/quip.js
dineshkummarc/quip
7881f7b3d367de97ef1af56580e96c8424b9a4a9
[ "MIT" ]
null
null
null
// filter for use with Connect var exports = module.exports = function(){ return function(req, res, next){ exports.update(res); next(); }; }; exports.update = function(res){ ///// default response settings ///// res._quip_headers = {'Content-Type': 'text/html'}; res._quip_status = 200; ///// private helper methods ///// var withStatus = function(code){ return function(data){ return data ? res.status(code).send(data): res.status(code); }; }; var redirection = function(code, message){ return function(loc){ res._quip_headers.Location = loc; return res.status(code).send( '<html>' + '<head>' + '<title>' + code + ' ' + message + '</title>' + '</head>' + '<body>' + '<p>' + message + ': ' + '<a href="' + loc + '">' + loc + '</a>' + '</p>' + '</body>' + '</html>' ); }; } var withType = function(type){ return function(data){ res.headers({'Content-Type': type}); return data ? res.send(data): res; } }; ///// exported methods ///// res.status = function(code){ res._quip_status = code; return res; }; res.headers = function(headers){ for(var k in headers) res._quip_headers[k] = headers[k]; return res; }; // success res.ok = withStatus(200); res.created = withStatus(201); res.accepted = withStatus(202); // redirection res.moved = redirection(301, 'Moved Permanently'); res.redirect = redirection(302, 'Found'); res.found = res.redirect; res.notModified = function(){res.status(304).send();}; // client error res.badRequest = withStatus(400); res.unauthorized = withStatus(401); res.forbidden = withStatus(403); res.notFound = withStatus(404); res.notAllowed = withStatus(405); res.conflict = withStatus(409); res.gone = withStatus(410); // server error res.error = withStatus(500, 'error'); // mime types res.text = withType('text/plain'); res.plain = res.text; res.html = withType('text/html'); res.xhtml = withType('application/xhtml+xml'); res.css = withType('text/css'); res.xml = withType('text/xml'); res.atom = withType('application/atom+xml'); res.rss = withType('application/rss+xml'); res.javascript = withType('text/javascript'); res.json = withType('application/json'); // JSONP is a special case that should always respond with a 200, // there is no reliable way to reveive a JSONP result on the // client-side if the HTTP status-code is not 200! res.jsonp = function(callback, data){ if(typeof data == 'object') data = JSON.stringify(data); data = callback + '(' + data + ');'; return res.ok().javascript(data); }; // respond with given data using current header and status code res.send = function(data){ if(res._quip_headers['Content-Type'] == 'application/json'){ if(typeof data == 'object') data = JSON.stringify(data); } res.writeHead(res._quip_status, res._quip_headers); if(data) res.write(data); res.end(); return null; }; return res; };
30.6
71
0.535948
058d1c8998558faecb6f166d482b0f9a2e90c431
183
js
JavaScript
sever/utils/config.js
CodeGather/vue2-koa2-mongodb
8e0039af3528df5f192d66a128b522e410f4cadc
[ "MIT" ]
1
2018-08-31T03:07:47.000Z
2018-08-31T03:07:47.000Z
sever/utils/config.js
CodeGather/vue2-koa2-mongodb
8e0039af3528df5f192d66a128b522e410f4cadc
[ "MIT" ]
null
null
null
sever/utils/config.js
CodeGather/vue2-koa2-mongodb
8e0039af3528df5f192d66a128b522e410f4cadc
[ "MIT" ]
null
null
null
// 微信配置文件 module.exports = { port: 3000, wx: { token: 'wolongangroot', appid: 'wx8efc03924858bebf', encodingAESKey: 'xe8maBnuHJ0lOZhmLAAuWfgqgdW5RuKpMn7l8yQG3Hr' } }
20.333333
65
0.693989
058e900f2cf7b766d97a3f6085c24484b9847cab
1,224
js
JavaScript
util/gulp/test-step.js
halfmatthalfcat/functional-express
01e2b8cfc3f53644a03d16a5ed5623941cc4c3e7
[ "MIT" ]
2
2017-12-11T15:38:34.000Z
2018-02-18T15:29:11.000Z
util/gulp/test-step.js
halfmatthalfcat/functional-express
01e2b8cfc3f53644a03d16a5ed5623941cc4c3e7
[ "MIT" ]
null
null
null
util/gulp/test-step.js
halfmatthalfcat/functional-express
01e2b8cfc3f53644a03d16a5ed5623941cc4c3e7
[ "MIT" ]
null
null
null
/** * Gulp unit testing step that runs Karma/PhantomJS */ const path = require("path"); const jest = require("gulp-jest-cli").default; /** * Setup the unit test task using our gulp instance * @param {Gulp} gulp - The project gulp instance * @param {string} rootDir - The project root path */ module.exports = (gulp, rootDir) => { gulp.task("unit", [ "lint" ], function() { return gulp .src(path.join(rootDir, "/__tests__")) .pipe(jest({ config: { testEnvironment: "node", transform: { "^.+\\.ts$": path.join(rootDir, "/node_modules/ts-jest/preprocessor.js") }, testMatch: [ "**/*.spec.ts" ], moduleFileExtensions: [ "ts", "js", "json" ], coverageDirectory: path.join(rootDir, "/coverage"), collectCoverageFrom: [ "index.ts" ], coverageReporters: [ "html", "text-summary" ], testRunner: path.join(rootDir, "/node_modules/jest-jasmine2/build/index.js"), mapCoverage: true, }, coverage: true, noCache: true, verbose: true })); }); };
24
87
0.517157
058f15ffe9961e37de48d03fbf520f4ef5ea2e65
75
js
JavaScript
node_modules/carbon-icons-svelte/lib/DataClass32/index.js
seekersapp2013/new
1e393c593ad30dc1aa8642703dad69b84bad3992
[ "MIT" ]
null
null
null
node_modules/carbon-icons-svelte/lib/DataClass32/index.js
seekersapp2013/new
1e393c593ad30dc1aa8642703dad69b84bad3992
[ "MIT" ]
null
null
null
node_modules/carbon-icons-svelte/lib/DataClass32/index.js
seekersapp2013/new
1e393c593ad30dc1aa8642703dad69b84bad3992
[ "MIT" ]
null
null
null
import DataClass32 from "./DataClass32.svelte"; export default DataClass32;
37.5
47
0.826667
058f893c30d6a9eaf6cbd0dd81917a01feed7b96
2,311
js
JavaScript
server/app/routes/v1.0/routes_chefClientExecutionResponse.js
AdityaSrikanth/core
85c4e490e0fdec2edda6c6cb0877f1564cd82b81
[ "Apache-2.0" ]
8
2016-04-12T19:54:51.000Z
2018-08-23T21:32:15.000Z
server/app/routes/v1.0/routes_chefClientExecutionResponse.js
AdityaSrikanth/core
85c4e490e0fdec2edda6c6cb0877f1564cd82b81
[ "Apache-2.0" ]
166
2016-02-26T10:10:15.000Z
2021-09-29T05:17:11.000Z
server/app/routes/v1.0/routes_chefClientExecutionResponse.js
AdityaSrikanth/core
85c4e490e0fdec2edda6c6cb0877f1564cd82b81
[ "Apache-2.0" ]
59
2016-02-10T15:57:52.000Z
2021-12-13T03:25:30.000Z
/* Copyright [2016] [Relevance Lab] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ // This file act as a Controller which contains chef-client execution related all end points. var ChefClientExecution = require('_pr/model/classes/instance/chefClientExecution/chefClientExecution.js'); var errorResponses = require('./error_responses'); module.exports.setRoutes = function(app) { app.post('/chefClientExecution/:executionId', function(req, res) { ChefClientExecution.getExecutionById(req.params.executionId, function(err, chefClientExecution) { if (err) { res.status(500).send(errorResponses.db.error); return; } if (chefClientExecution) { chefClientExecution.update(req.body.message, req.body.jsonAttribute, function(err, data) { if (err) { res.status(500).send(errorResponses.db.error); return; } res.send(200, { message: "Updated" }); }); } else { res.send(404, { message: "Execution id does not exist" }); } }); }); app.get('/chefClientExecution/:executionId', function(req, res) { ChefClientExecution.getExecutionById(req.params.executionId, function(err, chefClientExecution) { if (err) { res.status(500).send(errorResponses.db.error); return; } if (chefClientExecution) { res.send(chefClientExecution); } else { res.send(404, { message: "Execution id does not exist" }); } }); }); };
34.492537
107
0.58373
05926225579ab1501def5fa1eb81c61837e1c91b
741
js
JavaScript
ztm-algos-n-ds/section-10/my-binary-tree-implementation/binary-tree.js
MatteoDelliRocioli/back-to-the-roots
6c0fc1f0ab17937d6cdcc1a7f5f875d767b2b758
[ "MIT" ]
null
null
null
ztm-algos-n-ds/section-10/my-binary-tree-implementation/binary-tree.js
MatteoDelliRocioli/back-to-the-roots
6c0fc1f0ab17937d6cdcc1a7f5f875d767b2b758
[ "MIT" ]
null
null
null
ztm-algos-n-ds/section-10/my-binary-tree-implementation/binary-tree.js
MatteoDelliRocioli/back-to-the-roots
6c0fc1f0ab17937d6cdcc1a7f5f875d767b2b758
[ "MIT" ]
null
null
null
class Node { constructor(value){ this.left = null; this.right = null; this.value = value; } } class BinarySearchTree { constructor(){ this.root = null; } insert(value){ //Code here } lookup(value){ //Code here } // remove } const tree = new BinarySearchTree(); tree.insert(9) tree.insert(4) tree.insert(6) tree.insert(20) tree.insert(170) tree.insert(15) tree.insert(1) JSON.stringify(traverse(tree.root)) // 9 // 4 20 //1 6 15 170 function traverse(node) { const tree = { value: node.value }; tree.left = node.left === null ? null : traverse(node.left); tree.right = node.right === null ? null : traverse(node.right); return tree; }
17.642857
66
0.589744
0593010b60dc0294fc7315b9c409933b989d2790
3,930
js
JavaScript
tests/parse/array_unpack.js
mattbierner/khepri-parse
29eb5787cb9b9e45a398c69492155b76efbf0626
[ "MIT" ]
1
2015-06-26T20:01:37.000Z
2015-06-26T20:01:37.000Z
tests/parse/array_unpack.js
mattbierner/khepri-parse
29eb5787cb9b9e45a398c69492155b76efbf0626
[ "MIT" ]
null
null
null
tests/parse/array_unpack.js
mattbierner/khepri-parse
29eb5787cb9b9e45a398c69492155b76efbf0626
[ "MIT" ]
null
null
null
var lexer = require('../../index').lex.lexer; var parser = require('../../index').parse.parser; var $ = require('../$'); var testParser = function(stream) { var result = parser.parseStream(lexer.lex(stream)); return result.body[0].expression.bindings[0].pattern; }; exports.single = function(test) { var result = testParser("let [a] = [] in a;"); test.equal(result.type, 'ArrayPattern'); test.equal(result.elements.length, 1); test.equal(result.checked, false); $.idPattern(test, result.elements[0], 'a'); test.done(); }; exports.empty_fails = function(test) { test.throws( testParser.bind(null, "let [] = [] in a;")); test.done(); }; exports.checked = function(test) { var result = testParser("let ?[a] = [] in a;"); test.equal(result.type, 'ArrayPattern'); test.equal(result.elements.length, 1); test.equal(result.checked, true); $.idPattern(test, result.elements[0], 'a'); test.done(); }; exports.multi = function(test) { var result = testParser("let [a b c] = [] in a;"); test.equal(result.type, 'ArrayPattern'); test.equal(result.elements.length, 3); $.idPattern(test, result.elements[0], 'a'); $.idPattern(test, result.elements[1], 'b'); $.idPattern(test, result.elements[2], 'c'); test.done(); }; exports.sink = function(test) { var result = testParser("let [a _ b _ c] = [] in a;"); test.equal(result.type, 'ArrayPattern'); test.equal(result.elements.length, 5); $.idPattern(test, result.elements[0], 'a'); test.equal(result.elements[1].type, 'SinkPattern'); $.idPattern(test, result.elements[2], 'b'); test.equal(result.elements[3].type, 'SinkPattern'); $.idPattern(test, result.elements[4], 'c'); test.done(); }; exports.sub_patterns = function(test) { var result = testParser("let [a [b]] = [] in a;"); test.equal(result.type, 'ArrayPattern'); test.equal(result.elements.length, 2); $.idPattern(test, result.elements[0], 'a'); test.equal(result.elements[1].type, 'ArrayPattern'); test.equal(result.elements[1].elements.length, 1); $.idPattern(test, result.elements[1].elements[0], 'b'); test.done(); }; exports.single_ellipsis = function(test) { var result = testParser("let [...a] = [] in a;"); test.equal(result.type, 'ArrayPattern'); test.equal(result.elements.length, 1); $.ellipsisPattern(test, result.elements[0], 'a'); test.done(); }; exports.ellipsis_with_pre = function(test) { var result = testParser("let [a b ...c] = [] in a;"); test.equal(result.type, 'ArrayPattern'); test.equal(result.elements.length, 3); $.idPattern(test, result.elements[0], 'a'); $.idPattern(test, result.elements[1], 'b'); $.ellipsisPattern(test, result.elements[2], 'c'); test.done(); }; exports.ellipsis_with_post = function(test) { var result = testParser("let [...a b c] = [] in a;"); test.equal(result.type, 'ArrayPattern'); test.equal(result.elements.length, 3); $.ellipsisPattern(test, result.elements[0], 'a'); $.idPattern(test, result.elements[1], 'b'); $.idPattern(test, result.elements[2], 'c'); test.done(); }; exports.ellipsis_with_pre_and_post = function(test) { var result = testParser("let [a b ...c d e] = [] in a;"); test.equal(result.type, 'ArrayPattern'); test.equal(result.elements.length, 5); $.idPattern(test, result.elements[0], 'a'); $.idPattern(test, result.elements[1], 'b'); $.ellipsisPattern(test, result.elements[2], 'c'); $.idPattern(test, result.elements[3], 'd') $.idPattern(test, result.elements[4], 'e'); test.done(); }; exports.many_ellipsis_throws = function(test) { test.throws( testParser.bind(null, "let [...a ...b] = [] in a;")); test.done(); };
26.917808
61
0.60229
059504a98d9146bc1b5cf8e8c2c601a975f68ae2
11,250
js
JavaScript
Client/Src/app.js
Real-Serious-Games/LogViewer
e7f132afb96a3cbbf612e44f823d517b9de6ae63
[ "MIT" ]
7
2016-04-05T23:49:37.000Z
2021-02-24T16:03:38.000Z
Client/Src/app.js
Real-Serious-Games/LogViewer
e7f132afb96a3cbbf612e44f823d517b9de6ae63
[ "MIT" ]
1
2017-01-04T19:27:53.000Z
2017-01-04T19:27:53.000Z
Client/Src/app.js
Real-Serious-Games/LogViewer
e7f132afb96a3cbbf612e44f823d517b9de6ae63
[ "MIT" ]
3
2015-03-12T03:18:49.000Z
2021-04-20T12:29:31.000Z
 // // Define the 'app' module. // angular.module('app', [ 'btford.socket-io', 'app.directives', 'ui.router' ]) .config(function ($stateProvider, $urlRouterProvider) { $stateProvider .state('modal', { views: { "modal": { templateUrl: "modal.html" } }, onEnter: ['$state', function ($state) { $(document).on("keyup", function (e) { if (e.keyCode == 27) { $(document).off('keyup'); $state.go("default"); } }); $(document).on('click', ".modal-backdrop, .modal-holder", function () { $state.go("default"); }); $(document).on('click', ".modal-box, .modal-box *", function (e) { e.stopPropagation(); }); }], abstract: true }) .state('modal.selectedlog', { views: { "modal": { templateUrl: './selectedlog.html' } } }) .state('default', {}); }) // // Application controller. // .controller('AppCtrl', function AppCtrl($scope, $http, $log, $state, socketFactory) { //running log of data received from the server var logData = []; //a subset of logData with the current filterText applied to it var queryFilteredLogs = logData; var textFilteredLogs = queryFilteredLogs; //the currently truncated subsection of filteredLogs that we are rendering, using an infinite scroll to //append more filtered logs when needed $scope.visibleLogs = textFilteredLogs; //current text filter to apply to the logData to produce the filteredLogs $scope.queryText = ""; $scope.filterText = ""; //currently selected log $scope.selectedLog = null; // The number of logs to request from the server. var requestSize = 300; // Min logs that should be on screen (to make the scrollbar appear). var minLogsToDisplay = 100; // Min logs that should be retreived after filtering. var minLogsToRetreive = 100; // The number of logs received from the server so far. var receivedLogCount = 0; $scope.isValidQuery = true; $scope.filteredLogCount = 0; $scope.query = ""; var parser = null; ///set up the query language $http.get('Src/query.pegjs') .then(function (result) { parser = PEG.buildParser(result.data); }) .then(function () { return requestLogsFromServer(0, requestSize) }) .then(function (incomingLogs) { receivedLogCount += incomingLogs.length; addMoreLogs(incomingLogs); var socket = socketFactory(); socket.on('update', function (newLog) { assert.isObject(newLog); addLogsToTop([formatLog(newLog)]); }); }) .catch(function (err) { $log.error(err && err.stack || err); }); var formatLog = function (log) { //some logs seem not to have a timestamp on them if(!log.Timestamp) { return log; } log.Timestamp = moment(log.Timestamp); log.Properties.Timestamp = log.Timestamp; return log; }; // // Apply the query filter. // var applyQueryFilter = function (logsToFilter) { assert.isArray(logsToFilter); var queryText = $scope.queryText.trim(); if (!queryText) { $scope.isValidQuery = true; return logsToFilter; } else { try { var parsedFilter = parser.parse(queryText); $scope.isValidQuery = true; return logsToFilter.filter(parsedFilter); } catch (e) { console.error(e.message); $scope.isValidQuery = false; return logsToFilter; } } }; // // Apply the text filter. // var applyTextFilter = function (logsToFilter) { assert.isArray(logsToFilter); var filterText = $scope.filterText.trim().toLowerCase(); if (!filterText) { return logsToFilter; } else { return logsToFilter.filter(function (log) { return JSON.stringify(log).toLowerCase().indexOf(filterText) !== -1; }); } }; var updateVisibleLogs = function (logs) { assert.isArray(logs); $scope.visibleLogs = logs; $scope.filteredLogCount = logs.length; console.log($scope.filteredLogCount + " logs are now visible."); }; // // Recognise a change in the filter // $scope.queryChanged = function () { queryFilteredLogs = applyQueryFilter(logData); textFilteredLogs = applyTextFilter(queryFilteredLogs); updateVisibleLogs(textFilteredLogs); if (textFilteredLogs.length < minLogsToDisplay) { var numLogsToAdd = minLogsToDisplay-textFilteredLogs.length; console.log('** Adding ' + numLogsToAdd + ' logs after filter change so we have the minimum amount.') populateMoreLogs(requestSize, numLogsToAdd) .then(function (numLogsAdded) { console.log('-- Added ' + numLogsAdded + ' logs after filter change.'); }) .catch(function (err) { console.error(err && err.stack || err); }); } }; $scope.filterChanged = function () { textFilteredLogs = applyTextFilter(queryFilteredLogs); updateVisibleLogs(textFilteredLogs); if (textFilteredLogs.length < minLogsToDisplay) { var numLogsToAdd = minLogsToDisplay-textFilteredLogs.length; console.log('** Adding ' + numLogsToAdd + ' logs after filter change so we have the minimum amount.') populateMoreLogs(requestSize, numLogsToAdd) .then(function (numLogsAdded) { console.log('-- Added ' + numLogsAdded + ' logs after filter change.'); }) .catch(function (err) { console.error(err && err.stack || err); }); } }; $scope.clearLog = function () { logData = []; queryFilteredLogs = []; textFilteredLogs = []; $scope.visibleLogs = []; $scope.filteredLogCount = 0; $scope.selectedLog = null; }; $scope.selectLog = function (data) { $scope.selectedLog = data; }; $scope.truncate = function (txt) { if (!txt) { return []; } var lines = txt.split('\n'); if (lines.length == 0) { return []; } var firstLine = lines[0]; var maxLineLen = 100; if (firstLine.length > maxLineLen) { firstLine = firstLine.substring(0, maxLineLen); } return firstLine + "..."; }; $scope.formatMomentToDate = function (momentDate) { return momentDate.toDate(); }; // // Get existing logs from the server. // var requestLogsFromServer = function (skip, limit) { assert.isNumber(skip); assert.isNumber(limit); return $http.get('logs?skip=' + skip + '&limit=' + limit) .then(function (results) { assert.isArray(results.data); return results.data; }) .then(function (incomingLogs) { console.log("Got " + incomingLogs.length + " logs from the server."); return Enumerable.from(incomingLogs) .select(formatLog) .toArray(); }); }; // // Populate more logs into the client list as it is scrolled. // var populateMoreLogs = function (requestSize, minAmountToAdd) { assert.isNumber(requestSize); assert.isNumber(minAmountToAdd); return requestLogsFromServer(receivedLogCount, requestSize) .then(function (incomingLogs) { if (incomingLogs.length === 0) { // No more logs to get. return 0; } // Got a bunch of logs. receivedLogCount += incomingLogs.length; var numAddedAfterFilter = addMoreLogs(incomingLogs); if (numAddedAfterFilter < minAmountToAdd) { // Logs were filtered out so we haven't reached our limit yet. // Recurse and get more logs. return populateMoreLogs(requestSize, minAmountToAdd - numAddedAfterFilter) .then(function (numLogsAdded) { return numAddedAfterFilter + numLogsAdded; }); } return numAddedAfterFilter; }); }; // // Infinite scroll function // $scope.requestMoreLogs = function (deferredObj) { console.log('** Adding ' + requestSize + ' more logs to the infinite scroller.'); populateMoreLogs(requestSize, minLogsToRetreive) .then(function (numLogsAdded) { console.log('-- Populated ' + numLogsAdded + " logs into the visible list."); if (deferredObj) { deferredObj.resolve(); } }) .catch(function(err) { $log.error(err); deferredObj.reject(err); }); }; // // Add logs to the bottom. // var addMoreLogs = function (logs) { assert.isArray(logs); logData = logData.concat(logs); var queryFiltered = applyQueryFilter(logs); queryFilteredLogs = queryFilteredLogs.concat(queryFiltered); // Only filter incoming logs. var textFiltered = applyTextFilter(queryFiltered); console.log("Have " + textFiltered.length + " logs after filtering."); textFilteredLogs = textFilteredLogs.concat(textFiltered); // Only filter incoming logs. updateVisibleLogs(textFilteredLogs); return textFiltered.length; // Number of logs actually added to the visible list. }; // // Add logs to the top. // var addLogsToTop = function (logs) { assert.isArray(logs); logData = logs.concat(logData); var queryFiltered = applyQueryFilter(logs); // Only filter incoming logs. queryFilteredLogs = queryFiltered.concat(queryFilteredLogs); var textFiltered = applyTextFilter(queryFiltered); console.log("Have " + textFiltered.length + " logs after filtering."); textFilteredLogs = textFiltered.concat(textFilteredLogs); // Only filter incoming logs. updateVisibleLogs(textFilteredLogs); return textFiltered.length; // Number of logs actually added to the visible list. }; });
31.337047
113
0.537067
0595665ff69acf93972f50b46f2f808046d505f7
2,154
js
JavaScript
html/DataSurfaceColors_8cc.js
yurigabrich/EnergyPlusShadow
396ca83aa82b842e6b177ba35c91b3f481dfbbf9
[ "BSD-3-Clause" ]
null
null
null
html/DataSurfaceColors_8cc.js
yurigabrich/EnergyPlusShadow
396ca83aa82b842e6b177ba35c91b3f481dfbbf9
[ "BSD-3-Clause" ]
1
2020-07-08T13:32:09.000Z
2020-07-08T13:32:09.000Z
html/DataSurfaceColors_8cc.js
yurigabrich/EnergyPlusShadow
396ca83aa82b842e6b177ba35c91b3f481dfbbf9
[ "BSD-3-Clause" ]
null
null
null
var DataSurfaceColors_8cc = [ [ "colorkeyptr", "DataSurfaceColors_8cc.html#af93249aa851c2b76ad0d66150fc8c87f", null ], [ "colorkeys", "DataSurfaceColors_8cc.html#a0d03319dbb9b994c34c3ad99b6d77944", null ], [ "ColorNo_DaylSensor1", "DataSurfaceColors_8cc.html#ae0d5fc3ccf5178b16bba74f34c79c107", null ], [ "ColorNo_DaylSensor2", "DataSurfaceColors_8cc.html#a534a66f5e32db50b570e979b564c434a", null ], [ "ColorNo_Door", "DataSurfaceColors_8cc.html#a8f71a7da9e28af08e6a57c65bfa3a36f", null ], [ "ColorNo_Floor", "DataSurfaceColors_8cc.html#aefe157c641c0c9620a4957e43c0e9fc1", null ], [ "ColorNo_GlassDoor", "DataSurfaceColors_8cc.html#aa2ac5bea5cdfa2a9f8be36cae0602ec6", null ], [ "ColorNo_PV", "DataSurfaceColors_8cc.html#ab3d9cb9e7d380fa90594835484cd0d04", null ], [ "ColorNo_Roof", "DataSurfaceColors_8cc.html#a6714733fcafa04a9ad2d46201648625f", null ], [ "ColorNo_ShdAtt", "DataSurfaceColors_8cc.html#a6adb6d7554f65e72889ee8116b02ec8e", null ], [ "ColorNo_ShdDetBldg", "DataSurfaceColors_8cc.html#a84b4564c371628f5955f9f5e09e28d62", null ], [ "ColorNo_ShdDetFix", "DataSurfaceColors_8cc.html#ad181630e1b8fd57f381459a26122c8d5", null ], [ "ColorNo_TDDDiffuser", "DataSurfaceColors_8cc.html#a73621acb43b46591d7f34257ac2030c1", null ], [ "ColorNo_TDDDome", "DataSurfaceColors_8cc.html#a41f596a96a367d88ec501e2c3e009a83", null ], [ "ColorNo_Text", "DataSurfaceColors_8cc.html#acd063bf08954a8bf256f1fd0c60571d0", null ], [ "ColorNo_Wall", "DataSurfaceColors_8cc.html#a8af91f30c67d17a3950abdaa08182ec6", null ], [ "ColorNo_Window", "DataSurfaceColors_8cc.html#abe2f13cde00e67f07fd7290ac9ddb4b5", null ], [ "defaultcolorno", "DataSurfaceColors_8cc.html#aef684199004f00d1338022c94ac5244c", null ], [ "DXFcolorno", "DataSurfaceColors_8cc.html#a80c81ff4c5b8c0ce2db20e90bfc68547", null ], [ "MatchAndSetColorTextString", "DataSurfaceColors_8cc.html#a617e43292f25827b1a5048ca569715e4", null ], [ "NumColors", "DataSurfaceColors_8cc.html#a80849daa9da03e86660486e877b87599", null ], [ "SetUpSchemeColors", "DataSurfaceColors_8cc.html#a4415f377b759c9f1828afc78703f3789", null ] ];
86.16
107
0.792479
059a07067d2b0c7a4d292dab326c13a1ca1e77df
2,502
js
JavaScript
experiments/find/findGen/test283.js
sola-da/LambdaTester
f993f9d67eab0120b14111be1a56d40b4c5ac9af
[ "MIT" ]
2
2018-11-26T09:34:28.000Z
2019-10-18T16:23:53.000Z
experiments/find/findGen/test283.js
sola-da/LambdaTester
f993f9d67eab0120b14111be1a56d40b4c5ac9af
[ "MIT" ]
null
null
null
experiments/find/findGen/test283.js
sola-da/LambdaTester
f993f9d67eab0120b14111be1a56d40b4c5ac9af
[ "MIT" ]
1
2019-10-08T16:37:48.000Z
2019-10-08T16:37:48.000Z
var callbackArguments = []; var argument1 = function callback(a,b,c) { callbackArguments.push(JSON.stringify(arguments)) argument1 = null base_0[5] = "" base_0[5] = [59,893,893,705,705,893,969,714] return a*b/c }; var argument2 = null; var argument3 = 783; var argument4 = function callback(a,b,c) { callbackArguments.push(JSON.stringify(arguments)) argument6[2] = "" base_1[1] = [403,100,460,783,595,49,-100,460,783,0] argument6[5] = false return a-b-c }; var argument5 = {"0":"9F","618":403,"627":"_pSU","W":6.898650054992507e+307,"":25,"3.6226386676019403e+307":25,"1.9748596750721438e+306":82}; var argument6 = function callback(a,b,c) { callbackArguments.push(JSON.stringify(arguments)) argument7[242] = {"595":9.139057567989832e+307,"627":"L",",!6-":"","[":"","5.595827722795552e+307":607,"1.27674565497246e+308":2.619321211313229e+307,"M[Da":"","3.4443448915200356e+307":403} argument7[0] = 1.2280905904444578e+308 return a*b/c }; var argument7 = function callback(a,b,c) { callbackArguments.push(JSON.stringify(arguments)) argument9[4] = {"213":59,"403":"","y":3.508664071842788e+305,"4.761730747971375e+307":"a","":893,"Br":1.701536779103388e+308,"(g":893,"5.217165744370757e+307":1.2385300815981474e+308} argument9[460] = {"607":100,"qazM":"Tcy?5^","l":25,"":1.0456506386145557e+307,"*d`":49} argument8[1.399309004356655e+308] = ["(Y!?J"] return a-b*c }; var argument8 = null; var base_0 = ["3","<","^","]<2F","A|","d","p","Q","q"] var r_0= undefined try { r_0 = base_0.find(argument1,argument2,argument3) } catch(e) { r_0= "Error" } var base_1 = ["3","<","^","]<2F","A|","d","p","Q","q"] var r_1= undefined try { r_1 = base_1.find(argument4,argument5) } catch(e) { r_1= "Error" } var base_2 = ["3","<","^","]<2F","A|","d","p","Q","q"] var r_2= undefined try { r_2 = base_2.find(argument6) } catch(e) { r_2= "Error" } var base_3 = ["3","<","^","]<2F","A|","d","p","Q","q"] var r_3= undefined try { r_3 = base_3.find(argument7,argument8) } catch(e) { r_3= "Error" } function serialize(array){ return array.map(function(a){ if (a === null || a == undefined) return a; var name = a.constructor.name; if (name==='Object' || name=='Boolean'|| name=='Array'||name=='Number'||name=='String') return JSON.stringify(a); return name; }); } setTimeout(function(){ require("fs").writeFileSync("./experiments/find/findGen/test283.json",JSON.stringify({"baseObjects":serialize([base_0,base_1,base_2,base_3]),"returnObjects":serialize([r_0,r_1,r_2,r_3]),"callbackArgs":callbackArguments})) },300)
30.512195
221
0.667066
059a129a64a035aea428692930862574723852b5
1,262
js
JavaScript
tests/e2e/integration/admin.settings.js
zotovY/linkup-web
674ff4ff511aaf38efa91a4c7432feefdb3920b7
[ "MIT" ]
5
2021-04-24T12:13:50.000Z
2021-12-30T17:50:45.000Z
tests/e2e/integration/admin.settings.js
zotovY/linkup-web
674ff4ff511aaf38efa91a4c7432feefdb3920b7
[ "MIT" ]
null
null
null
tests/e2e/integration/admin.settings.js
zotovY/linkup-web
674ff4ff511aaf38efa91a4c7432feefdb3920b7
[ "MIT" ]
null
null
null
import {user } from "../../data"; it("should load settings", () => { cy.intercept("GET", Cypress.env("server") + "/user/1", user).as("user-route"); cy.login(); cy.visit(Cypress.env("url") + "/admin?tab=settings"); cy.wait(["@user-route"]); cy.get("main").toMatchImageSnapshot(); }); it("should change settings", () => { const name = "Ivan"; cy.intercept("GET", Cypress.env("server") + "/user/1", user).as("user-route"); cy.intercept("PUT", Cypress.env("server") + "/user/1", { ...user, name }).as("user-route"); cy.intercept("POST", Cypress.env("server") + "/user/1/change-profile-image", "https://i1.sndcdn.com/artworks-iLMjRSS80z4MPvvj-DzR4vA-t500x500.jpg").as("user-route"); cy.login(); cy.visit(Cypress.env("url") + "/admin?tab=settings"); cy.wait(["@user-route"]); cy.fixture('test-image.jpeg').then(fileContent => { cy.get('input[type="file"]').attachFile({ fileContent: fileContent.toString(), fileName: 'test-image.jpeg', mimeType: 'image/jpeg' }); }); cy.get("input[placeholder=\"Your name\"]").focus().clear().type(name); cy.get("button[role='primary']").click(); cy.wait(300); cy.get("main").toMatchImageSnapshot(); });
35.055556
169
0.585578
059b9e2a0ca3c34809059fbffb44b86953b860fe
124,692
js
JavaScript
src/app/@core/dist/14-es5.7a68ce261d4e887bc21d.js
bpandiaraj/imcJuly2021GIT12
2ef018698ddf18a6bc2de5f93499738a73424458
[ "MIT" ]
null
null
null
src/app/@core/dist/14-es5.7a68ce261d4e887bc21d.js
bpandiaraj/imcJuly2021GIT12
2ef018698ddf18a6bc2de5f93499738a73424458
[ "MIT" ]
1
2021-08-13T21:06:05.000Z
2021-08-13T21:06:05.000Z
src/app/@core/dist/14-es5.7a68ce261d4e887bc21d.js
ashwinkey04/imcJuly2021GIT12
2f4038a3485fafa4179f05273b746ad51c93ae03
[ "MIT" ]
1
2021-07-16T09:09:37.000Z
2021-07-16T09:09:37.000Z
!function(){function t(t){return function(t){if(Array.isArray(t))return n(t)}(t)||function(t){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(t))return Array.from(t)}(t)||function(t,a){if(!t)return;if("string"==typeof t)return n(t,a);var e=Object.prototype.toString.call(t).slice(8,-1);"Object"===e&&t.constructor&&(e=t.constructor.name);if("Map"===e||"Set"===e)return Array.from(t);if("Arguments"===e||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(e))return n(t,a)}(t)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function n(t,n){(null==n||n>t.length)&&(n=t.length);for(var a=0,e=new Array(n);a<n;a++)e[a]=t[a];return e}function a(t,n){if(!(t instanceof n))throw new TypeError("Cannot call a class as a function")}function e(t,n){for(var a=0;a<n.length;a++){var e=n[a];e.enumerable=e.enumerable||!1,e.configurable=!0,"value"in e&&(e.writable=!0),Object.defineProperty(t,e.key,e)}}function o(t,n,a){return n&&e(t.prototype,n),a&&e(t,a),t}(window.webpackJsonp=window.webpackJsonp||[]).push([[14],{"z/63":function(n,e,c){"use strict";c.r(e),c.d(e,"AdvertismentModule",(function(){return gt}));var r,m=c("ofXK"),g=c("+0xr"),i=c("tyNb"),l=c("fXoL"),b=((r=function(){function t(){a(this,t)}return o(t,[{key:"ngOnInit",value:function(){}}]),t}()).\u0275fac=function(t){return new(t||r)},r.\u0275cmp=l.Ib({type:r,selectors:[["ngx-advertisments"]],decls:1,vars:0,template:function(t,n){1&t&&l.Pb(0,"router-outlet")},directives:[i.h],encapsulation:2}),r),d=c("b0e1"),p=c("aceb"),s=c("3Pt+"),C=c("kvL/");function f(t,n){1&t&&(l.Sb(0),l.Ub(1,"p",10),l.Kc(2," Title is required! "),l.Tb(),l.Rb())}function P(t,n){if(1&t&&(l.Ub(0,"nb-option",37),l.Kc(1),l.gc(2,"titlecase"),l.Tb()),2&t){var a=n.$implicit;l.lc("value",a.key),l.Cb(1),l.Mc(" ",l.hc(2,2,a.name)," ")}}function M(t,n){1&t&&(l.Sb(0),l.Ub(1,"p",10),l.Kc(2," Page is required! "),l.Tb(),l.Rb())}function O(t,n){1&t&&(l.Sb(0),l.Ub(1,"p",10),l.Kc(2," Ad Link is required! "),l.Tb(),l.Rb())}function _(t,n){1&t&&(l.Ub(0,"ngx-dropzone-label"),l.Kc(1,"Drop it, here!"),l.Tb())}function u(t,n){if(1&t){var a=l.Vb();l.Ub(0,"ngx-dropzone-image-preview",38),l.bc("removed",(function(t){return l.xc(a),l.fc().onRemove(t)})),l.Tb()}2&t&&l.lc("file",n.$implicit)("removable",!0)}function h(t,n){if(1&t&&l.Pb(0,"img",39),2&t){var a=l.fc();l.lc("src",a.imgurl,l.Ac)}}var k,x=function(t){return{activeStatus:t}},v=((k=function(){function n(t,e,o,c){a(this,n),this.http=t,this.route=e,this.httpRouter=o,this.toastrService=c,this.status=!0,this.imgurl=null,this.formdata=new FormData,this.pagename=null,this.positionname=null,this.index=0,this.changedImage=!1,this.spinner=!1,this.viewposition=[{key:100,name:"Please select the Position for the advertisment"},{key:0,name:"Top"},{key:1,name:"Top Left"},{key:2,name:"Top Right"},{key:3,name:"Center"},{key:4,name:"Center Left"},{key:5,name:"Center Right"},{key:6,name:"Bottom"},{key:7,name:"Bottom Left"},{key:8,name:"Bottom Right"},{key:9,name:"Top Right-2"},{key:10,name:"Top Right-3"}],this.viewPage=[{key:0,name:"Please select the Advertisment Screen"},{key:1,name:"Home - Center Left"},{key:2,name:"Home - Bottom"},{key:3,name:"Home - Top Right"},{key:4,name:"Dashboard - Top Right -1"},{key:5,name:"Dashboard - Top Right -2"},{key:6,name:"Dashboard - Top Right -3"},{key:7,name:"Dashboard - Bottom"},{key:8,name:"Favourite-choose - Bottom Left"},{key:9,name:"Select Contestant - Task play - Bottom Left"},{key:10,name:"Task screen - Left"},{key:11,name:"Task screen - Right"},{key:12,name:"Profile - Top Right"},{key:13,name:"Home Page PopUp"},{key:14,name:"Dashboard PopUp"},{key:15,name:"Home Page video-basic"},{key:16,name:"Dashboard video-basic"},{key:17,name:"Home Page video-youtube"},{key:18,name:"Dashboard video-youtube"},{key:19,name:"Claim After"},{key:20,name:"Claim Before"}],this.files=[]}return o(n,[{key:"ngOnInit",value:function(){var t=this;this.route.queryParams.subscribe((function(n){t.type=n.type,t.id1=n.id,t.selectedItem=100,t.selectedPageItem=0,"update"==t.type&&t.get()}))}},{key:"get",value:function(){var t=this;this.http.get("/api/v1/advertisment/info?id="+this.id1).subscribe((function(n){var a=n.json();console.log(a),t.advertismentdata=a.data,console.log(t.advertismentdata),t.name=t.advertismentdata.brandname,t.page=t.advertismentdata.page,t.adcount="1",t.position=t.advertismentdata.position,t.link=t.advertismentdata.link,t.status="active"==t.advertismentdata.status,t.imgurl=t.http.ip()+"/images"+t.advertismentdata.images,t.files=[],t.selectedItem=parseInt(t.position),t.selectedPageItem=parseInt(t.page),console.log(t.files)}))}},{key:"onChange",value:function(n){var a;console.log(n),(a=this.files).push.apply(a,t(n.addedFiles)),this.changedImage=!0,this.file1=n.addedFiles[0],console.log(this.file1)}},{key:"onRemove",value:function(t){console.log(t),this.files.splice(this.files.indexOf(t),1)}},{key:"Update",value:function(t){var n=this;if(this.spinner=!0,t.value.status=!0===t.value.status?"active":"inactive","create"==this.type){var a={name:t.value.name,position:"0",page:this.page,adcount:"1",link:t.value.link,status:t.value.status};console.log(a);var e=JSON.stringify(a);this.formdata.append("advertismentInfo",e),this.formdata.append("image",this.file1),this.http.post("/api/v1/advertisment",this.formdata).subscribe((function(t){console.log(t),n.spinner=!1,setTimeout((function(){n.spinner=!1,n.httpRouter.navigate(["/pages/advertisment/list"])}),1e3)}),(function(t){console.log(t),n.spinner=!1}))}else if("update"==this.type){console.log(this.changedImage);var o={name:t.value.name,position:this.position,page:this.page,adcount:"1",link:t.value.link,status:t.value.status,imageChanged:this.changedImage},c=JSON.stringify(o);console.log(o),this.formdata.append("advertismentInfo",c),this.formdata.append("image",this.file1),this.http.put("/api/v1/advertisment?id="+this.id1,this.formdata).subscribe((function(t){console.log(t.json()),setTimeout((function(){n.spinner=!1,n.httpRouter.navigate(["/pages/advertisment/list"])}),1e3)})),this.changedImage=!1}}},{key:"showToast",value:function(t,n){this.toastrService.show(n||"Success","SuccessFully "+this.type=="create"?"Created":"Updated",{position:t,status:n})}},{key:"selectionItem",value:function(t){console.log("Event_Id",t),this.position=t}},{key:"selectionPageItem",value:function(t){console.log("Event_Id",t),this.page=t}}]),n}()).\u0275fac=function(t){return new(t||k)(l.Ob(d.a),l.Ob(i.a),l.Ob(i.c),l.Ob(p.ob))},k.\u0275cmp=l.Ib({type:k,selectors:[["ngx-entry"]],decls:65,vars:31,consts:[[1,"flaticon-user-1"],[1,"title"],[1,"row","top-spacing"],[1,"col-8"],[2,"background-color","#f9f9f9 !important","border","none"],[3,"ngSubmit"],["UpdateForm","ngForm"],[1,"mt-3"],[1,"form-group","mt-1"],["for","NameField",1,"label","text-left"],[1,"caption","status-danger"],["type","text","name","name","nbInput","","fullWidth","","id","NameField","required","",2,"background-color","#ffffff","border","0.5px solid #e1e1e1",3,"ngModel","status","ngModelChange"],["nameRef","ngModel"],[4,"ngIf"],["for","ProfessionalFiled",1,"label","text-left"],["name","page","fullWidth","",3,"ngModel","selected","ngModelChange","selectedChange"],["pagenameRef","ngModel"],[3,"value",4,"ngFor","ngForOf"],["for","exampleInputEmail1",1,"label","text-left"],["nbInput","","fullWidth","","name","link","placeholder","Textarea","required","",2,"background-color","#ffffff","border","0.5px solid #e1e1e1","resize","none","height","100px",3,"ngModel","status","ngModelChange"],["biographRef","ngModel"],[2,"float","left"],[2,"font-size","16px","color","#616161","margin-bottom","4px"],[3,"ngClass"],["name","status","required","",3,"ngModel","ngModelChange"],["statusRef","ngModel"],[2,"float","right"],["type","submit","size","medium","nbButton","","nbSpinnerStatus","primary","nbSpinnerSize","xsmall",1,"save",3,"disabled","nbSpinner"],["nbButton","","type","reset","size","medium","routerLink","/pages/advertisment/list",1,"cancel"],[1,"col-4"],[1,"row"],[1,"col"],[1,"img-edit"],["accept","image/jpeg,image/jpg,image/png,image/gif",2,"border","none",3,"multiple","change"],["ngProjectAs","ngx-dropzone-preview","id","image-preview",5,["ngx-dropzone-preview"],3,"file","removable","removed",4,"ngFor","ngForOf"],[2,"padding","0px 13px"],["alt","","style","width: 100% !important;","class","img-responsive",3,"src",4,"ngIf"],[3,"value"],["ngProjectAs","ngx-dropzone-preview","id","image-preview",5,["ngx-dropzone-preview"],3,"file","removable","removed"],["alt","",1,"img-responsive",2,"width","100% !important",3,"src"]],template:function(t,n){if(1&t){var a=l.Vb();l.Ub(0,"div"),l.Pb(1,"span",0),l.Ub(2,"span",1),l.Kc(3),l.gc(4,"titlecase"),l.Tb(),l.Tb(),l.Ub(5,"div",2),l.Ub(6,"div",3),l.Ub(7,"nb-card",4),l.Ub(8,"form",5,6),l.bc("ngSubmit",(function(){l.xc(a);var t=l.tc(9);return n.Update(t)})),l.Ub(10,"div"),l.Ub(11,"div",7),l.Ub(12,"div",8),l.Ub(13,"label",9),l.Kc(14,"Title "),l.Ub(15,"span",10),l.Kc(16,"*"),l.Tb(),l.Tb(),l.Ub(17,"input",11,12),l.bc("ngModelChange",(function(t){return n.name=t})),l.Tb(),l.Ic(19,f,3,0,"ng-container",13),l.Tb(),l.Ub(20,"div",8),l.Ub(21,"label",14),l.Kc(22,"Page "),l.Ub(23,"span",10),l.Kc(24,"*"),l.Tb(),l.Tb(),l.Ub(25,"span"),l.Ub(26,"nb-select",15,16),l.bc("ngModelChange",(function(t){return n.pagename=t}))("selectedChange",(function(t){return n.selectedPageItem=t}))("selectedChange",(function(t){return n.selectionPageItem(t)})),l.Ic(28,P,3,4,"nb-option",17),l.Tb(),l.Tb(),l.Ic(29,M,3,0,"ng-container",13),l.Tb(),l.Ub(30,"div",8),l.Ub(31,"label",18),l.Kc(32,"Url link "),l.Ub(33,"span",10),l.Kc(34,"*"),l.Tb(),l.Tb(),l.Ub(35,"textarea",19,20),l.bc("ngModelChange",(function(t){return n.link=t})),l.Tb(),l.Ic(37,O,3,0,"ng-container",13),l.Tb(),l.Tb(),l.Ub(38,"div"),l.Ub(39,"span",21),l.Ub(40,"div",22),l.Ub(41,"span",23),l.Kc(42,"InActive"),l.Tb(),l.Kc(43,"/"),l.Ub(44,"span",23),l.Kc(45,"Active"),l.Tb(),l.Tb(),l.Ub(46,"nb-toggle",24,25),l.bc("ngModelChange",(function(t){return n.status=t})),l.Tb(),l.Tb(),l.Ub(48,"span",26),l.Ub(49,"button",27),l.Kc(50),l.gc(51,"titlecase"),l.Tb(),l.Ub(52,"button",28),l.Kc(53,"Cancel"),l.Tb(),l.Tb(),l.Tb(),l.Tb(),l.Tb(),l.Tb(),l.Tb(),l.Ub(54,"div",29),l.Ub(55,"div",30),l.Ub(56,"div",31),l.Ub(57,"div",32),l.Ub(58,"ngx-dropzone",33),l.bc("change",(function(t){return n.onChange(t)})),l.Ic(59,_,2,0,"ngx-dropzone-label",13),l.Ic(60,u,1,2,"ngx-dropzone-image-preview",34),l.Ub(61,"div",35),l.Ic(62,h,1,1,"img",36),l.Tb(),l.Tb(),l.Ub(63,"div"),l.Kc(64,"Please select block to Upload Image or drag and drop Image of "),l.Tb(),l.Tb(),l.Tb(),l.Tb(),l.Tb(),l.Tb()}if(2&t){var e=l.tc(9),o=l.tc(18),c=l.tc(27),r=l.tc(36);l.Cb(3),l.Mc("",l.hc(4,23,n.type)," Advertisments"),l.Cb(14),l.lc("ngModel",n.name)("status",o.dirty&&o.invalid&&e.submitted?"danger":""),l.Db("aria-invalid",!(!o.invalid||!o.touched)||null),l.Cb(2),l.lc("ngIf",o.invalid&&(o.dirty||e.submitted)),l.Cb(7),l.lc("ngModel",n.pagename)("selected",n.selectedPageItem),l.Cb(2),l.lc("ngForOf",n.viewPage),l.Cb(1),l.lc("ngIf",c.invalid&&(c.dirty||e.submitted)),l.Cb(6),l.lc("ngModel",n.link)("status",r.dirty&&r.invalid&&e.submitted?"danger":""),l.Db("aria-invalid",!(!r.invalid||!r.touched)||null),l.Cb(2),l.lc("ngIf",r.invalid&&(r.dirty||e.submitted)),l.Cb(4),l.lc("ngClass",l.oc(27,x,n.status)),l.Cb(3),l.lc("ngClass",l.oc(29,x,!n.status)),l.Cb(2),l.lc("ngModel",n.status),l.Cb(3),l.lc("disabled",n.spinner)("nbSpinner",n.spinner),l.Cb(1),l.Mc(" ",l.hc(51,25,n.type),""),l.Cb(8),l.lc("multiple",!1),l.Cb(1),l.lc("ngIf",0==n.files.length&&!n.imgurl),l.Cb(1),l.lc("ngForOf",n.files),l.Cb(2),l.lc("ngIf",0==n.files.length&&n.imgurl)}},directives:[p.s,s.y,s.n,s.o,p.I,s.b,s.u,s.m,s.p,m.m,p.ab,m.l,m.k,p.pb,p.o,p.fb,i.d,C.a,p.W,C.d,C.b],pipes:[m.u],styles:[".top-txt[_ngcontent-%COMP%]{font-size:25px;font-weight:600;margin-left:6px}.img-edit[_ngcontent-%COMP%]{height:170px;width:160px;border-radius:50%;background-color:#fff;margin-top:48px}.file-select[_ngcontent-%COMP%]{color:#f96368!important;margin-top:6px;font-size:18px;position:absolute;left:17%;cursor:pointer}.top-spacing[_ngcontent-%COMP%]{margin-top:24px}label[_ngcontent-%COMP%]{font-size:16px!important;color:#040404!important;font-weight:100!important}.save[_ngcontent-%COMP%]{background-color:#1d3c7f!important;font-family:Proxima;margin-right:12px}.cancel[_ngcontent-%COMP%], .save[_ngcontent-%COMP%]{display:inline-block;width:131px;height:50px;color:#fff!important;font-size:16px;padding:16px 16px 16px 44px}.cancel[_ngcontent-%COMP%]{background-color:#f96368!important}#image-preview[_ngcontent-%COMP%]{height:160px!important;width:140px!important}"]}),k),y=c("M9IT"),w=c("jhN1"),z=c("L+F7"),T=c("Xa2L");function U(t,n){if(1&t&&(l.Ub(0,"nb-option",42),l.Kc(1),l.gc(2,"titlecase"),l.Tb()),2&t){var a=n.$implicit;l.lc("value",a.name),l.Cb(1),l.Mc(" ",l.hc(2,2,a.name)," ")}}function R(t,n){1&t&&(l.Ub(0,"th",43),l.Kc(1," Image "),l.Tb())}function I(t,n){if(1&t&&(l.Ub(0,"td",44),l.Pb(1,"img",45),l.Tb()),2&t){var a=n.$implicit,e=l.fc();l.Cb(1),l.lc("src",e.ip+a.images,l.Ac)}}function H(t,n){1&t&&(l.Ub(0,"th",43),l.Kc(1," Name "),l.Tb())}function S(t,n){if(1&t&&(l.Ub(0,"td",44),l.Ub(1,"div"),l.Kc(2),l.Tb(),l.Tb()),2&t){var a=n.$implicit;l.Cb(2),l.Mc("",a.brandname," ")}}function L(t,n){1&t&&l.Pb(0,"td",44)}function N(t,n){1&t&&(l.Ub(0,"th",43),l.Kc(1," Page "),l.Tb())}function K(t,n){if(1&t&&(l.Ub(0,"td",44),l.Ub(1,"div"),l.Kc(2),l.Tb(),l.Tb()),2&t){var a=n.$implicit,e=l.fc();l.Cb(2),l.Lc(e.viewPage[a.page].name)}}function D(t,n){1&t&&(l.Ub(0,"th",43),l.Kc(1," Ad count "),l.Tb())}function A(t,n){if(1&t&&(l.Ub(0,"td",44),l.Ub(1,"div"),l.Kc(2),l.Tb(),l.Tb()),2&t){var a=n.$implicit;l.Cb(2),l.Lc(a.adcount)}}function F(t,n){1&t&&(l.Ub(0,"th",46),l.Kc(1," Link "),l.Tb())}function B(t,n){if(1&t&&(l.Ub(0,"td",44),l.Ub(1,"div"),l.Kc(2),l.Tb(),l.Tb()),2&t){var a=n.$implicit;l.Cb(2),l.Lc(a.link)}}function j(t,n){1&t&&(l.Ub(0,"th",47),l.Kc(1," Status "),l.Tb())}function q(t,n){if(1&t&&(l.Ub(0,"td",44),l.Ub(1,"span"),l.Kc(2),l.gc(3,"titlecase"),l.Tb(),l.Tb()),2&t){var a=n.$implicit;l.Cb(1),l.Eb(a.status),l.Cb(1),l.Lc("inactive"==a.status?"In Active":l.hc(3,4,a.status))}}function Y(t,n){1&t&&(l.Ub(0,"th",47),l.Kc(1," Edit "),l.Tb())}var $=function(t){return{id:t,type:"update"}};function E(t,n){if(1&t&&(l.Ub(0,"td",44),l.Ub(1,"a",48),l.Pb(2,"i",49),l.Tb(),l.Tb()),2&t){var a=n.$implicit;l.Cb(1),l.lc("queryParams",l.oc(1,$,a._id))}}function V(t,n){1&t&&l.Pb(0,"tr",50)}function W(t,n){1&t&&l.Pb(0,"tr",51)}function J(t,n){if(1&t&&(l.Ub(0,"tr"),l.Ub(1,"td"),l.Kc(2),l.Tb(),l.Ub(3,"td"),l.Kc(4),l.Tb(),l.Ub(5,"td"),l.Kc(6),l.Tb(),l.Ub(7,"td"),l.Kc(8),l.Tb(),l.Ub(9,"td"),l.Kc(10),l.Tb(),l.Ub(11,"td"),l.Kc(12),l.Tb(),l.Pb(13,"td"),l.Tb()),2&t){var a=n.$implicit;l.Cb(2),l.Lc(a.brandname),l.Cb(2),l.Lc(a.position),l.Cb(2),l.Lc(a.page),l.Cb(2),l.Lc(a.adcount),l.Cb(2),l.Lc(a.link),l.Cb(2),l.Lc(a.status)}}function X(t,n){1&t&&(l.Ub(0,"div",52),l.Pb(1,"mat-progress-spinner",53),l.Tb())}var Z,G,Q,tt=function(){return{type:"create"}},nt=function(){return[5,10,20]},at=[{path:"",component:b,children:[{path:"list",component:(Z=function(){function t(n,e,o){a(this,t),this.http=n,this.san=e,this.route=o,this.isLoading=!0,this.selectedItem="all",this.images="/images",this.viewStatus=[{key:0,name:"all"},{key:1,name:"active"},{key:2,name:"inactive"}],this.viewposition=[{key:100,name:"Please select the Position for the advertisment"},{key:0,name:"Top"},{key:1,name:"Top Left"},{key:2,name:"Top Right"},{key:3,name:"Center"},{key:4,name:"Center Left"},{key:5,name:"Center Right"},{key:6,name:"Bottom"},{key:7,name:"Bottom Left"},{key:8,name:"Bottom Right"},{key:9,name:"Top Right-2"},{key:10,name:"Top Right-3"}],this.viewPage=[{key:0,name:"Please select the Advertisment Screen"},{key:1,name:"Home - Center Left"},{key:2,name:"Home - Bottom"},{key:3,name:"Home - Top Right"},{key:4,name:"Dashboard - Top Right -1"},{key:5,name:"Dashboard - Top Right -2"},{key:6,name:"Dashboard - Top Right -3"},{key:7,name:"Dashboard - Bottom"},{key:8,name:"Favourite-choose - Bottom Left"},{key:9,name:"Select Contestant - Task play - Bottom Left"},{key:10,name:"Task screen - Left"},{key:11,name:"Task screen - Right"},{key:12,name:"Profile - Top Right"},{key:13,name:"Home Page PopUp"},{key:14,name:"Dashboard PopUp"},{key:15,name:"Home Page video-basic"},{key:16,name:"Dashboard video-basic"},{key:17,name:"Home Page video-youtube"},{key:18,name:"Dashboard video-youtube"},{key:19,name:"Claim After"},{key:20,name:"Claim Before"}],this.contestantsStatusView="all",this.search="",this.active="active",this.ip=this.http.imageip(),this.displayedColumns=["images","brandname","page","adcount","link","status","Edit"]}return o(t,[{key:"ngOnInit",value:function(){this.advertismentsList()}},{key:"selectionItem",value:function(t){console.log("event",t),this.contestantsStatusView=t,this.advertismentsList(),console.log(this.contestantsStatusView)}},{key:"advertismentsList",value:function(){var t=this;this.http.get("/api/v1/advertisment").subscribe((function(n){var a=n.json();console.log(n),t.advertismentsdata=a.eventList,console.log(t.advertismentsdata),t.dataSource=new g.k(t.advertismentsdata),console.log(t.search),t.dataSource.paginator=t.paginator,t.isLoading=!1})),this.data=this.advertismentsdata}},{key:"Search",value:function(){this.advertismentsList()}},{key:"stringChanged",value:function(){this.search.length>=3&&this.advertismentsList(),0==this.search.length&&this.advertismentsList()}},{key:"changeDate",value:function(t){}},{key:"ngAfterViewInit",value:function(){}}]),t}(),Z.\u0275fac=function(t){return new(t||Z)(l.Ob(d.a),l.Ob(w.b),l.Ob(i.c))},Z.\u0275cmp=l.Ib({type:Z,selectors:[["ngx-list"]],viewQuery:function(t,n){var a;1&t&&l.Dc(y.a,!0),2&t&&l.sc(a=l.cc())&&(n.paginator=a.first)},decls:73,vars:14,consts:[[1,"flaticon-user-1"],[1,"title"],[1,"row","top-padding"],[1,"col-4","filter-search"],["name","status","fullWidth","",3,"selected","selectedChange"],[3,"value",4,"ngFor","ngForOf"],[2,"margin-left","8px"],["type","search","nbInput","","placeholder","Search name","name","search",3,"ngModel","ngModelChange"],["nbSuffix","","nbButton","","ghost","",1,"search-box",3,"click"],["icon","search-outline","pack","eva"],[1,"col"],[1,"top1"],["src","./assets/images/Group 119.png",1,"pdf",3,"click"],["nbButton","","size","medium","routerLink","/pages/advertisment/entry",1,"create",3,"queryParams"],[1,"fas","fa-plus-circle","fa-lg"],[1,"row"],[1,"col-12","table-responsive"],["mat-table","",1,"mat-elevation-z8",3,"dataSource"],["matColumnDef","images"],["mat-header-cell","","style","color:white",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","brandname"],["mat-header-cell","","style","color:white; ",4,"matHeaderCellDef"],["matColumnDef","page"],["matColumnDef","adcount"],["matColumnDef","link"],["mat-header-cell","","style","color:white; width: 25%;",4,"matHeaderCellDef"],["matColumnDef","status"],["mat-header-cell","","style","color:white; width: 10%;",4,"matHeaderCellDef"],["matColumnDef","Edit"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"col",2,"position","absolute","left","-1000px","top","0","z-index","-10"],["paperSize","auto","margin","1cm"],["pdf",""],[1,"table","table-responsive"],[2,"color","white"],["scope","col"],[4,"ngFor","ngForOf"],[3,"pageSize","pageSizeOptions","showFirstLastButtons"],["paginator",""],["style","display: flex; justify-content: center; align-items: center; ",4,"ngIf"],[3,"value"],["mat-header-cell","",2,"color","white"],["mat-cell",""],["alt","Avatar",1,"avatar","img-response",3,"src"],["mat-header-cell","",2,"color","white","width","25%"],["mat-header-cell","",2,"color","white","width","10%"],["routerLink","/pages/advertisment/entry",2,"color","#616161",3,"queryParams"],[1,"fas","fa-pen",2,"cursor","pointer"],["mat-header-row",""],["mat-row",""],[2,"display","flex","justify-content","center","align-items","center"],["color","primary","mode","indeterminate"]],template:function(t,n){if(1&t){var a=l.Vb();l.Ub(0,"div"),l.Pb(1,"span",0),l.Ub(2,"span",1),l.Kc(3,"Advertisments"),l.Tb(),l.Tb(),l.Ub(4,"div",2),l.Ub(5,"div",3),l.Ub(6,"span"),l.Ub(7,"nb-select",4),l.bc("selectedChange",(function(t){return n.selectedItem=t}))("selectedChange",(function(t){return n.selectionItem(t)})),l.Ic(8,U,3,4,"nb-option",5),l.Tb(),l.Tb(),l.Ub(9,"span",6),l.Ub(10,"nb-form-field"),l.Ub(11,"input",7),l.bc("ngModelChange",(function(t){return n.search=t}))("ngModelChange",(function(){return n.stringChanged()})),l.Tb(),l.Ub(12,"button",8),l.bc("click",(function(){return n.Search()})),l.Pb(13,"nb-icon",9),l.Tb(),l.Tb(),l.Tb(),l.Tb(),l.Ub(14,"div",10),l.Ub(15,"div",11),l.Ub(16,"span"),l.Ub(17,"img",12),l.bc("click",(function(){return l.xc(a),l.tc(51).saveAs("advertismentsList.pdf")})),l.Tb(),l.Tb(),l.Ub(18,"button",13),l.Pb(19,"i",14),l.Ub(20,"span",6),l.Kc(21,"Create"),l.Tb(),l.Tb(),l.Tb(),l.Tb(),l.Tb(),l.Ub(22,"div",15),l.Ub(23,"div",16),l.Ub(24,"table",17),l.Sb(25,18),l.Ic(26,R,2,0,"th",19),l.Ic(27,I,2,1,"td",20),l.Rb(),l.Sb(28,21),l.Ic(29,H,2,0,"th",22),l.Ic(30,S,3,1,"td",20),l.Ic(31,L,1,0,"td",20),l.Rb(),l.Sb(32,23),l.Ic(33,N,2,0,"th",19),l.Ic(34,K,3,1,"td",20),l.Rb(),l.Sb(35,24),l.Ic(36,D,2,0,"th",19),l.Ic(37,A,3,1,"td",20),l.Rb(),l.Sb(38,25),l.Ic(39,F,2,0,"th",26),l.Ic(40,B,3,1,"td",20),l.Rb(),l.Sb(41,27),l.Ic(42,j,2,0,"th",28),l.Ic(43,q,4,6,"td",20),l.Rb(),l.Sb(44,29),l.Ic(45,Y,2,0,"th",28),l.Ic(46,E,3,3,"td",20),l.Rb(),l.Ic(47,V,1,0,"tr",30),l.Ic(48,W,1,0,"tr",31),l.Tb(),l.Tb(),l.Ub(49,"div",32),l.Ub(50,"kendo-pdf-export",33,34),l.Ub(52,"table",35),l.Ub(53,"thead"),l.Ub(54,"tr",36),l.Ub(55,"th",37),l.Kc(56,"Name"),l.Tb(),l.Ub(57,"th",37),l.Kc(58,"Position"),l.Tb(),l.Ub(59,"th",37),l.Kc(60,"Page"),l.Tb(),l.Ub(61,"th",37),l.Kc(62,"Ad count"),l.Tb(),l.Ub(63,"th",37),l.Kc(64,"Link"),l.Tb(),l.Ub(65,"th",37),l.Kc(66,"Status"),l.Tb(),l.Tb(),l.Tb(),l.Ub(67,"tbody"),l.Ic(68,J,14,6,"tr",38),l.Tb(),l.Tb(),l.Tb(),l.Tb(),l.Tb(),l.Pb(69,"mat-paginator",39,40),l.Ic(71,X,2,0,"div",41),l.Pb(72,"router-outlet")}2&t&&(l.Cb(7),l.lc("selected",n.selectedItem),l.Cb(1),l.lc("ngForOf",n.viewStatus),l.Cb(3),l.lc("ngModel",n.search),l.Cb(7),l.lc("queryParams",l.nc(12,tt)),l.Cb(6),l.lc("dataSource",n.dataSource),l.Cb(23),l.lc("matHeaderRowDef",n.displayedColumns),l.Cb(1),l.lc("matRowDefColumns",n.displayedColumns),l.Cb(20),l.lc("ngForOf",n.advertismentsdata),l.Cb(1),l.lc("pageSize",10)("pageSizeOptions",l.nc(13,nt))("showFirstLastButtons",!0),l.Cb(2),l.lc("ngIf",n.isLoading))},directives:[p.ab,m.l,p.D,p.I,s.b,s.m,s.p,p.o,p.ib,p.F,i.d,g.j,g.c,g.e,g.b,g.g,g.i,z.a,y.a,m.m,i.h,p.W,g.d,g.a,i.f,g.f,g.h,T.a],pipes:[m.u],styles:[".mat-badge-content[_ngcontent-%COMP%]{font-weight:600;font-size:12px;font-family:Roboto,Helvetica Neue,sans-serif}.mat-badge-small[_ngcontent-%COMP%] .mat-badge-content[_ngcontent-%COMP%]{font-size:9px}.mat-badge-large[_ngcontent-%COMP%] .mat-badge-content[_ngcontent-%COMP%]{font-size:24px}.mat-h1[_ngcontent-%COMP%], .mat-headline[_ngcontent-%COMP%], .mat-typography[_ngcontent-%COMP%] h1[_ngcontent-%COMP%]{font:400 24px/32px Roboto,Helvetica Neue,sans-serif;letter-spacing:normal;margin:0 0 16px}.mat-h2[_ngcontent-%COMP%], .mat-title[_ngcontent-%COMP%], .mat-typography[_ngcontent-%COMP%] h2[_ngcontent-%COMP%]{font:500 20px/32px Roboto,Helvetica Neue,sans-serif;letter-spacing:normal;margin:0 0 16px}.mat-h3[_ngcontent-%COMP%], .mat-subheading-2[_ngcontent-%COMP%], .mat-typography[_ngcontent-%COMP%] h3[_ngcontent-%COMP%]{font:400 16px/28px Roboto,Helvetica Neue,sans-serif;letter-spacing:normal;margin:0 0 16px}.mat-h4[_ngcontent-%COMP%], .mat-subheading-1[_ngcontent-%COMP%], .mat-typography[_ngcontent-%COMP%] h4[_ngcontent-%COMP%]{font:400 15px/24px Roboto,Helvetica Neue,sans-serif;letter-spacing:normal;margin:0 0 16px}.mat-h5[_ngcontent-%COMP%], .mat-typography[_ngcontent-%COMP%] h5[_ngcontent-%COMP%]{font:400 calc(14px * .83)/20px Roboto,Helvetica Neue,sans-serif;margin:0 0 12px}.mat-h6[_ngcontent-%COMP%], .mat-typography[_ngcontent-%COMP%] h6[_ngcontent-%COMP%]{font:400 calc(14px * .67)/20px Roboto,Helvetica Neue,sans-serif;margin:0 0 12px}.mat-body-2[_ngcontent-%COMP%], .mat-body-strong[_ngcontent-%COMP%]{font:500 14px/24px Roboto,Helvetica Neue,sans-serif;letter-spacing:normal}.mat-body[_ngcontent-%COMP%], .mat-body-1[_ngcontent-%COMP%], .mat-typography[_ngcontent-%COMP%]{font:400 14px/20px Roboto,Helvetica Neue,sans-serif;letter-spacing:normal}.mat-body-1[_ngcontent-%COMP%] p[_ngcontent-%COMP%], .mat-body[_ngcontent-%COMP%] p[_ngcontent-%COMP%], .mat-typography[_ngcontent-%COMP%] p[_ngcontent-%COMP%]{margin:0 0 12px}.mat-caption[_ngcontent-%COMP%], .mat-small[_ngcontent-%COMP%]{font:400 12px/20px Roboto,Helvetica Neue,sans-serif;letter-spacing:normal}.mat-display-4[_ngcontent-%COMP%], .mat-typography[_ngcontent-%COMP%] .mat-display-4[_ngcontent-%COMP%]{font:300 112px/112px Roboto,Helvetica Neue,sans-serif;letter-spacing:-.05em;margin:0 0 56px}.mat-display-3[_ngcontent-%COMP%], .mat-typography[_ngcontent-%COMP%] .mat-display-3[_ngcontent-%COMP%]{font:400 56px/56px Roboto,Helvetica Neue,sans-serif;letter-spacing:-.02em;margin:0 0 64px}.mat-display-2[_ngcontent-%COMP%], .mat-typography[_ngcontent-%COMP%] .mat-display-2[_ngcontent-%COMP%]{font:400 45px/48px Roboto,Helvetica Neue,sans-serif;letter-spacing:-.005em;margin:0 0 64px}.mat-display-1[_ngcontent-%COMP%], .mat-typography[_ngcontent-%COMP%] .mat-display-1[_ngcontent-%COMP%]{font:400 34px/40px Roboto,Helvetica Neue,sans-serif;letter-spacing:normal;margin:0 0 64px}.mat-bottom-sheet-container[_ngcontent-%COMP%]{font:400 14px/20px Roboto,Helvetica Neue,sans-serif;letter-spacing:normal}.mat-button[_ngcontent-%COMP%], .mat-fab[_ngcontent-%COMP%], .mat-flat-button[_ngcontent-%COMP%], .mat-icon-button[_ngcontent-%COMP%], .mat-mini-fab[_ngcontent-%COMP%], .mat-raised-button[_ngcontent-%COMP%], .mat-stroked-button[_ngcontent-%COMP%]{font-family:Roboto,Helvetica Neue,sans-serif;font-size:14px;font-weight:500}.mat-button-toggle[_ngcontent-%COMP%], .mat-card[_ngcontent-%COMP%]{font-family:Roboto,Helvetica Neue,sans-serif}.mat-card-title[_ngcontent-%COMP%]{font-size:24px;font-weight:500}.mat-card-header[_ngcontent-%COMP%] .mat-card-title[_ngcontent-%COMP%]{font-size:20px}.mat-card-content[_ngcontent-%COMP%], .mat-card-subtitle[_ngcontent-%COMP%]{font-size:14px}.mat-checkbox[_ngcontent-%COMP%]{font-family:Roboto,Helvetica Neue,sans-serif}.mat-checkbox-layout[_ngcontent-%COMP%] .mat-checkbox-label[_ngcontent-%COMP%]{line-height:24px}.mat-chip[_ngcontent-%COMP%]{font-size:14px;font-weight:500}.mat-chip[_ngcontent-%COMP%] .mat-chip-remove.mat-icon[_ngcontent-%COMP%], .mat-chip[_ngcontent-%COMP%] .mat-chip-trailing-icon.mat-icon[_ngcontent-%COMP%]{font-size:18px}.mat-table[_ngcontent-%COMP%]{font-family:Roboto,Helvetica Neue,sans-serif}.mat-header-cell[_ngcontent-%COMP%]{font-size:12px;font-weight:500}.mat-cell[_ngcontent-%COMP%], .mat-footer-cell[_ngcontent-%COMP%]{font-size:14px}.mat-calendar[_ngcontent-%COMP%]{font-family:Roboto,Helvetica Neue,sans-serif}.mat-calendar-body[_ngcontent-%COMP%]{font-size:13px}.mat-calendar-body-label[_ngcontent-%COMP%], .mat-calendar-period-button[_ngcontent-%COMP%]{font-size:14px;font-weight:500}.mat-calendar-table-header[_ngcontent-%COMP%] th[_ngcontent-%COMP%]{font-size:11px;font-weight:400}.mat-dialog-title[_ngcontent-%COMP%]{font:500 20px/32px Roboto,Helvetica Neue,sans-serif;letter-spacing:normal}.mat-expansion-panel-header[_ngcontent-%COMP%]{font-family:Roboto,Helvetica Neue,sans-serif;font-size:15px;font-weight:400}.mat-expansion-panel-content[_ngcontent-%COMP%]{font:400 14px/20px Roboto,Helvetica Neue,sans-serif;letter-spacing:normal}.mat-form-field[_ngcontent-%COMP%]{font-size:inherit;font-weight:400;line-height:1.125;font-family:Roboto,Helvetica Neue,sans-serif;letter-spacing:normal}.mat-form-field-wrapper[_ngcontent-%COMP%]{padding-bottom:1.34375em}.mat-form-field-prefix[_ngcontent-%COMP%] .mat-icon[_ngcontent-%COMP%], .mat-form-field-suffix[_ngcontent-%COMP%] .mat-icon[_ngcontent-%COMP%]{font-size:150%;line-height:1.125}.mat-form-field-prefix[_ngcontent-%COMP%] .mat-icon-button[_ngcontent-%COMP%], .mat-form-field-suffix[_ngcontent-%COMP%] .mat-icon-button[_ngcontent-%COMP%]{height:1.5em;width:1.5em}.mat-form-field-prefix[_ngcontent-%COMP%] .mat-icon-button[_ngcontent-%COMP%] .mat-icon[_ngcontent-%COMP%], .mat-form-field-suffix[_ngcontent-%COMP%] .mat-icon-button[_ngcontent-%COMP%] .mat-icon[_ngcontent-%COMP%]{height:1.125em;line-height:1.125}.mat-form-field-infix[_ngcontent-%COMP%]{padding:.5em 0;border-top:.84375em solid transparent}.mat-form-field-can-float.mat-form-field-should-float[_ngcontent-%COMP%] .mat-form-field-label[_ngcontent-%COMP%], .mat-form-field-can-float[_ngcontent-%COMP%] .mat-input-server[_ngcontent-%COMP%]:focus + .mat-form-field-label-wrapper[_ngcontent-%COMP%] .mat-form-field-label[_ngcontent-%COMP%]{transform:translateY(-1.34375em) scale(.75);width:133.3333333333%}.mat-form-field-can-float[_ngcontent-%COMP%] .mat-input-server[label][_ngcontent-%COMP%]:not(:label-shown) + .mat-form-field-label-wrapper[_ngcontent-%COMP%] .mat-form-field-label[_ngcontent-%COMP%]{transform:translateY(-1.34374em) scale(.75);width:133.3333433333%}.mat-form-field-label-wrapper[_ngcontent-%COMP%]{top:-.84375em;padding-top:.84375em}.mat-form-field-label[_ngcontent-%COMP%]{top:1.34375em}.mat-form-field-underline[_ngcontent-%COMP%]{bottom:1.34375em}.mat-form-field-subscript-wrapper[_ngcontent-%COMP%]{font-size:75%;margin-top:.6666666667em;top:calc(100% - 1.7916666667em)}.mat-form-field-appearance-legacy[_ngcontent-%COMP%] .mat-form-field-wrapper[_ngcontent-%COMP%]{padding-bottom:1.25em}.mat-form-field-appearance-legacy[_ngcontent-%COMP%] .mat-form-field-infix[_ngcontent-%COMP%]{padding:.4375em 0}.mat-form-field-appearance-legacy.mat-form-field-can-float.mat-form-field-should-float[_ngcontent-%COMP%] .mat-form-field-label[_ngcontent-%COMP%], .mat-form-field-appearance-legacy.mat-form-field-can-float[_ngcontent-%COMP%] .mat-input-server[_ngcontent-%COMP%]:focus + .mat-form-field-label-wrapper[_ngcontent-%COMP%] .mat-form-field-label[_ngcontent-%COMP%]{transform:translateY(-1.28125em) scale(.75) perspective(100px) translateZ(.001px);-ms-transform:translateY(-1.28125em) scale(.75);width:133.3333333333%}.mat-form-field-appearance-legacy.mat-form-field-can-float[_ngcontent-%COMP%] .mat-form-field-autofill-control[_ngcontent-%COMP%]:-webkit-autofill + .mat-form-field-label-wrapper[_ngcontent-%COMP%] .mat-form-field-label[_ngcontent-%COMP%]{transform:translateY(-1.28125em) scale(.75) perspective(100px) translateZ(.00101px);-ms-transform:translateY(-1.28124em) scale(.75);width:133.3333433333%}.mat-form-field-appearance-legacy.mat-form-field-can-float[_ngcontent-%COMP%] .mat-input-server[label][_ngcontent-%COMP%]:not(:label-shown) + .mat-form-field-label-wrapper[_ngcontent-%COMP%] .mat-form-field-label[_ngcontent-%COMP%]{transform:translateY(-1.28125em) scale(.75) perspective(100px) translateZ(.00102px);-ms-transform:translateY(-1.28123em) scale(.75);width:133.3333533333%}.mat-form-field-appearance-legacy[_ngcontent-%COMP%] .mat-form-field-label[_ngcontent-%COMP%]{top:1.28125em}.mat-form-field-appearance-legacy[_ngcontent-%COMP%] .mat-form-field-underline[_ngcontent-%COMP%]{bottom:1.25em}.mat-form-field-appearance-legacy[_ngcontent-%COMP%] .mat-form-field-subscript-wrapper[_ngcontent-%COMP%]{margin-top:.5416666667em;top:calc(100% - 1.6666666667em)}@media print{.mat-form-field-appearance-legacy.mat-form-field-can-float.mat-form-field-should-float[_ngcontent-%COMP%] .mat-form-field-label[_ngcontent-%COMP%], .mat-form-field-appearance-legacy.mat-form-field-can-float[_ngcontent-%COMP%] .mat-input-server[_ngcontent-%COMP%]:focus + .mat-form-field-label-wrapper[_ngcontent-%COMP%] .mat-form-field-label[_ngcontent-%COMP%]{transform:translateY(-1.28122em) scale(.75)}.mat-form-field-appearance-legacy.mat-form-field-can-float[_ngcontent-%COMP%] .mat-form-field-autofill-control[_ngcontent-%COMP%]:-webkit-autofill + .mat-form-field-label-wrapper[_ngcontent-%COMP%] .mat-form-field-label[_ngcontent-%COMP%]{transform:translateY(-1.28121em) scale(.75)}.mat-form-field-appearance-legacy.mat-form-field-can-float[_ngcontent-%COMP%] .mat-input-server[label][_ngcontent-%COMP%]:not(:label-shown) + .mat-form-field-label-wrapper[_ngcontent-%COMP%] .mat-form-field-label[_ngcontent-%COMP%]{transform:translateY(-1.2812em) scale(.75)}}.mat-form-field-appearance-fill[_ngcontent-%COMP%] .mat-form-field-infix[_ngcontent-%COMP%]{padding:.25em 0 .75em}.mat-form-field-appearance-fill[_ngcontent-%COMP%] .mat-form-field-label[_ngcontent-%COMP%]{top:1.09375em;margin-top:-.5em}.mat-form-field-appearance-fill.mat-form-field-can-float.mat-form-field-should-float[_ngcontent-%COMP%] .mat-form-field-label[_ngcontent-%COMP%], .mat-form-field-appearance-fill.mat-form-field-can-float[_ngcontent-%COMP%] .mat-input-server[_ngcontent-%COMP%]:focus + .mat-form-field-label-wrapper[_ngcontent-%COMP%] .mat-form-field-label[_ngcontent-%COMP%]{transform:translateY(-.59375em) scale(.75);width:133.3333333333%}.mat-form-field-appearance-fill.mat-form-field-can-float[_ngcontent-%COMP%] .mat-input-server[label][_ngcontent-%COMP%]:not(:label-shown) + .mat-form-field-label-wrapper[_ngcontent-%COMP%] .mat-form-field-label[_ngcontent-%COMP%]{transform:translateY(-.59374em) scale(.75);width:133.3333433333%}.mat-form-field-appearance-outline[_ngcontent-%COMP%] .mat-form-field-infix[_ngcontent-%COMP%]{padding:1em 0}.mat-form-field-appearance-outline[_ngcontent-%COMP%] .mat-form-field-label[_ngcontent-%COMP%]{top:1.84375em;margin-top:-.25em}.mat-form-field-appearance-outline.mat-form-field-can-float.mat-form-field-should-float[_ngcontent-%COMP%] .mat-form-field-label[_ngcontent-%COMP%], .mat-form-field-appearance-outline.mat-form-field-can-float[_ngcontent-%COMP%] .mat-input-server[_ngcontent-%COMP%]:focus + .mat-form-field-label-wrapper[_ngcontent-%COMP%] .mat-form-field-label[_ngcontent-%COMP%]{transform:translateY(-1.59375em) scale(.75);width:133.3333333333%}.mat-form-field-appearance-outline.mat-form-field-can-float[_ngcontent-%COMP%] .mat-input-server[label][_ngcontent-%COMP%]:not(:label-shown) + .mat-form-field-label-wrapper[_ngcontent-%COMP%] .mat-form-field-label[_ngcontent-%COMP%]{transform:translateY(-1.59374em) scale(.75);width:133.3333433333%}.mat-grid-tile-footer[_ngcontent-%COMP%], .mat-grid-tile-header[_ngcontent-%COMP%]{font-size:14px}.mat-grid-tile-footer[_ngcontent-%COMP%] .mat-line[_ngcontent-%COMP%], .mat-grid-tile-header[_ngcontent-%COMP%] .mat-line[_ngcontent-%COMP%]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;box-sizing:border-box}.mat-grid-tile-footer[_ngcontent-%COMP%] .mat-line[_ngcontent-%COMP%]:nth-child(n+2), .mat-grid-tile-header[_ngcontent-%COMP%] .mat-line[_ngcontent-%COMP%]:nth-child(n+2){font-size:12px}input.mat-input-element[_ngcontent-%COMP%]{margin-top:-.0625em}.mat-menu-item[_ngcontent-%COMP%]{font-family:Roboto,Helvetica Neue,sans-serif;font-size:14px;font-weight:400}.mat-paginator[_ngcontent-%COMP%], .mat-paginator-page-size[_ngcontent-%COMP%] .mat-select-trigger[_ngcontent-%COMP%]{font-family:Roboto,Helvetica Neue,sans-serif;font-size:12px}.mat-radio-button[_ngcontent-%COMP%], .mat-select[_ngcontent-%COMP%]{font-family:Roboto,Helvetica Neue,sans-serif}.mat-select-trigger[_ngcontent-%COMP%]{height:1.125em}.mat-slide-toggle-content[_ngcontent-%COMP%], .mat-slider-thumb-label-text[_ngcontent-%COMP%]{font-family:Roboto,Helvetica Neue,sans-serif}.mat-slider-thumb-label-text[_ngcontent-%COMP%]{font-size:12px;font-weight:500}.mat-stepper-horizontal[_ngcontent-%COMP%], .mat-stepper-vertical[_ngcontent-%COMP%]{font-family:Roboto,Helvetica Neue,sans-serif}.mat-step-label[_ngcontent-%COMP%]{font-size:14px;font-weight:400}.mat-step-sub-label-error[_ngcontent-%COMP%]{font-weight:400}.mat-step-label-error[_ngcontent-%COMP%]{font-size:14px}.mat-step-label-selected[_ngcontent-%COMP%]{font-size:14px;font-weight:500}.mat-tab-group[_ngcontent-%COMP%], .mat-tab-label[_ngcontent-%COMP%], .mat-tab-link[_ngcontent-%COMP%]{font-family:Roboto,Helvetica Neue,sans-serif}.mat-tab-label[_ngcontent-%COMP%], .mat-tab-link[_ngcontent-%COMP%]{font-size:14px;font-weight:500}.mat-toolbar[_ngcontent-%COMP%], .mat-toolbar[_ngcontent-%COMP%] h1[_ngcontent-%COMP%], .mat-toolbar[_ngcontent-%COMP%] h2[_ngcontent-%COMP%], .mat-toolbar[_ngcontent-%COMP%] h3[_ngcontent-%COMP%], .mat-toolbar[_ngcontent-%COMP%] h4[_ngcontent-%COMP%], .mat-toolbar[_ngcontent-%COMP%] h5[_ngcontent-%COMP%], .mat-toolbar[_ngcontent-%COMP%] h6[_ngcontent-%COMP%]{font:500 20px/32px Roboto,Helvetica Neue,sans-serif;letter-spacing:normal;margin:0}.mat-tooltip[_ngcontent-%COMP%]{font-family:Roboto,Helvetica Neue,sans-serif;font-size:10px;padding-top:6px;padding-bottom:6px}.mat-tooltip-handset[_ngcontent-%COMP%]{font-size:14px;padding-top:8px;padding-bottom:8px}.mat-list-item[_ngcontent-%COMP%], .mat-list-option[_ngcontent-%COMP%]{font-family:Roboto,Helvetica Neue,sans-serif}.mat-list-base[_ngcontent-%COMP%] .mat-list-item[_ngcontent-%COMP%]{font-size:16px}.mat-list-base[_ngcontent-%COMP%] .mat-list-item[_ngcontent-%COMP%] .mat-line[_ngcontent-%COMP%]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;box-sizing:border-box}.mat-list-base[_ngcontent-%COMP%] .mat-list-item[_ngcontent-%COMP%] .mat-line[_ngcontent-%COMP%]:nth-child(n+2){font-size:14px}.mat-list-base[_ngcontent-%COMP%] .mat-list-option[_ngcontent-%COMP%]{font-size:16px}.mat-list-base[_ngcontent-%COMP%] .mat-list-option[_ngcontent-%COMP%] .mat-line[_ngcontent-%COMP%]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;box-sizing:border-box}.mat-list-base[_ngcontent-%COMP%] .mat-list-option[_ngcontent-%COMP%] .mat-line[_ngcontent-%COMP%]:nth-child(n+2){font-size:14px}.mat-list-base[_ngcontent-%COMP%] .mat-subheader[_ngcontent-%COMP%]{font-family:Roboto,Helvetica Neue,sans-serif;font-size:14px;font-weight:500}.mat-list-base[dense][_ngcontent-%COMP%] .mat-list-item[_ngcontent-%COMP%]{font-size:12px}.mat-list-base[dense][_ngcontent-%COMP%] .mat-list-item[_ngcontent-%COMP%] .mat-line[_ngcontent-%COMP%]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;box-sizing:border-box}.mat-list-base[dense][_ngcontent-%COMP%] .mat-list-item[_ngcontent-%COMP%] .mat-line[_ngcontent-%COMP%]:nth-child(n+2), .mat-list-base[dense][_ngcontent-%COMP%] .mat-list-option[_ngcontent-%COMP%]{font-size:12px}.mat-list-base[dense][_ngcontent-%COMP%] .mat-list-option[_ngcontent-%COMP%] .mat-line[_ngcontent-%COMP%]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;box-sizing:border-box}.mat-list-base[dense][_ngcontent-%COMP%] .mat-list-option[_ngcontent-%COMP%] .mat-line[_ngcontent-%COMP%]:nth-child(n+2){font-size:12px}.mat-list-base[dense][_ngcontent-%COMP%] .mat-subheader[_ngcontent-%COMP%]{font-family:Roboto,Helvetica Neue,sans-serif;font-size:12px;font-weight:500}.mat-option[_ngcontent-%COMP%]{font-family:Roboto,Helvetica Neue,sans-serif;font-size:16px}.mat-optgroup-label[_ngcontent-%COMP%]{font:500 14px/24px Roboto,Helvetica Neue,sans-serif;letter-spacing:normal}.mat-simple-snackbar[_ngcontent-%COMP%]{font-family:Roboto,Helvetica Neue,sans-serif;font-size:14px}.mat-simple-snackbar-action[_ngcontent-%COMP%]{line-height:1;font-family:inherit;font-size:inherit;font-weight:500}.mat-tree[_ngcontent-%COMP%]{font-family:Roboto,Helvetica Neue,sans-serif}.mat-nested-tree-node[_ngcontent-%COMP%], .mat-tree-node[_ngcontent-%COMP%]{font-weight:400;font-size:14px}.mat-ripple[_ngcontent-%COMP%]{overflow:hidden;position:relative}.mat-ripple[_ngcontent-%COMP%]:not(:empty){transform:translateZ(0)}.mat-ripple.mat-ripple-unbounded[_ngcontent-%COMP%]{overflow:visible}.mat-ripple-element[_ngcontent-%COMP%]{position:absolute;border-radius:50%;pointer-events:none;transition:opacity,transform 0ms cubic-bezier(0,0,.2,1);transform:scale(0)}.cdk-high-contrast-active[_ngcontent-%COMP%] .mat-ripple-element[_ngcontent-%COMP%]{display:none}.cdk-visually-hidden[_ngcontent-%COMP%]{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;outline:0;-webkit-appearance:none;-moz-appearance:none}.cdk-global-overlay-wrapper[_ngcontent-%COMP%], .cdk-overlay-container[_ngcontent-%COMP%]{pointer-events:none;top:0;left:0;height:100%;width:100%}.cdk-overlay-container[_ngcontent-%COMP%]{position:fixed;z-index:1000}.cdk-overlay-container[_ngcontent-%COMP%]:empty{display:none}.cdk-global-overlay-wrapper[_ngcontent-%COMP%], .cdk-overlay-pane[_ngcontent-%COMP%]{display:flex;position:absolute;z-index:1000}.cdk-overlay-pane[_ngcontent-%COMP%]{pointer-events:auto;box-sizing:border-box;max-width:100%;max-height:100%}.cdk-overlay-backdrop[_ngcontent-%COMP%]{position:absolute;top:0;bottom:0;left:0;right:0;z-index:1000;pointer-events:auto;-webkit-tap-highlight-color:transparent;transition:opacity .4s cubic-bezier(.25,.8,.25,1);opacity:0}.cdk-overlay-backdrop.cdk-overlay-backdrop-showing[_ngcontent-%COMP%]{opacity:1}@media screen and (-ms-high-contrast:active){.cdk-overlay-backdrop.cdk-overlay-backdrop-showing[_ngcontent-%COMP%]{opacity:.6}}.cdk-overlay-dark-backdrop[_ngcontent-%COMP%]{background:rgba(0,0,0,.32)}.cdk-overlay-transparent-backdrop[_ngcontent-%COMP%], .cdk-overlay-transparent-backdrop.cdk-overlay-backdrop-showing[_ngcontent-%COMP%]{opacity:0}.cdk-overlay-connected-position-bounding-box[_ngcontent-%COMP%]{position:absolute;z-index:1000;display:flex;flex-direction:column;min-width:1px;min-height:1px}.cdk-global-scrollblock[_ngcontent-%COMP%]{position:fixed;width:100%;overflow-y:scroll}@-webkit-keyframes cdk-text-field-autofill-start{}@keyframes cdk-text-field-autofill-start{}@-webkit-keyframes cdk-text-field-autofill-end{}@keyframes cdk-text-field-autofill-end{}.cdk-text-field-autofill-monitored[_ngcontent-%COMP%]:-webkit-autofill{-webkit-animation:cdk-text-field-autofill-start 0s 1ms;animation:cdk-text-field-autofill-start 0s 1ms}.cdk-text-field-autofill-monitored[_ngcontent-%COMP%]:not(:-webkit-autofill){-webkit-animation:cdk-text-field-autofill-end 0s 1ms;animation:cdk-text-field-autofill-end 0s 1ms}textarea.cdk-textarea-autosize[_ngcontent-%COMP%]{resize:none}textarea.cdk-textarea-autosize-measuring[_ngcontent-%COMP%]{padding:2px 0!important;box-sizing:content-box!important;height:auto!important;overflow:hidden!important}textarea.cdk-textarea-autosize-measuring-firefox[_ngcontent-%COMP%]{padding:2px 0!important;box-sizing:content-box!important;height:0!important}.mat-focus-indicator[_ngcontent-%COMP%], .mat-mdc-focus-indicator[_ngcontent-%COMP%]{position:relative}.mat-ripple-element[_ngcontent-%COMP%]{background-color:rgba(0,0,0,.1)}.mat-option[_ngcontent-%COMP%]{color:rgba(0,0,0,.87)}.mat-option.mat-active[_ngcontent-%COMP%], .mat-option.mat-selected[_ngcontent-%COMP%]:not(.mat-option-multiple):not(.mat-option-disabled), .mat-option[_ngcontent-%COMP%]:focus:not(.mat-option-disabled), .mat-option[_ngcontent-%COMP%]:hover:not(.mat-option-disabled){background:rgba(0,0,0,.04)}.mat-option.mat-active[_ngcontent-%COMP%]{color:rgba(0,0,0,.87)}.mat-option.mat-option-disabled[_ngcontent-%COMP%]{color:rgba(0,0,0,.38)}.mat-primary[_ngcontent-%COMP%] .mat-option.mat-selected[_ngcontent-%COMP%]:not(.mat-option-disabled){color:#3f51b5}.mat-accent[_ngcontent-%COMP%] .mat-option.mat-selected[_ngcontent-%COMP%]:not(.mat-option-disabled){color:#ff4081}.mat-warn[_ngcontent-%COMP%] .mat-option.mat-selected[_ngcontent-%COMP%]:not(.mat-option-disabled){color:#f44336}.mat-optgroup-label[_ngcontent-%COMP%]{color:rgba(0,0,0,.54)}.mat-optgroup-disabled[_ngcontent-%COMP%] .mat-optgroup-label[_ngcontent-%COMP%]{color:rgba(0,0,0,.38)}.mat-pseudo-checkbox[_ngcontent-%COMP%]{color:rgba(0,0,0,.54)}.mat-pseudo-checkbox[_ngcontent-%COMP%]:after{color:#fafafa}.mat-pseudo-checkbox-disabled[_ngcontent-%COMP%]{color:#b0b0b0}.mat-primary[_ngcontent-%COMP%] .mat-pseudo-checkbox-checked[_ngcontent-%COMP%], .mat-primary[_ngcontent-%COMP%] .mat-pseudo-checkbox-indeterminate[_ngcontent-%COMP%]{background:#3f51b5}.mat-accent[_ngcontent-%COMP%] .mat-pseudo-checkbox-checked[_ngcontent-%COMP%], .mat-accent[_ngcontent-%COMP%] .mat-pseudo-checkbox-indeterminate[_ngcontent-%COMP%], .mat-pseudo-checkbox-checked[_ngcontent-%COMP%], .mat-pseudo-checkbox-indeterminate[_ngcontent-%COMP%]{background:#ff4081}.mat-warn[_ngcontent-%COMP%] .mat-pseudo-checkbox-checked[_ngcontent-%COMP%], .mat-warn[_ngcontent-%COMP%] .mat-pseudo-checkbox-indeterminate[_ngcontent-%COMP%]{background:#f44336}.mat-pseudo-checkbox-checked.mat-pseudo-checkbox-disabled[_ngcontent-%COMP%], .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-disabled[_ngcontent-%COMP%]{background:#b0b0b0}.mat-app-background[_ngcontent-%COMP%]{background-color:#fafafa;color:rgba(0,0,0,.87)}.mat-elevation-z0[_ngcontent-%COMP%]{box-shadow:0 0 0 0 rgba(0,0,0,.2),0 0 0 0 rgba(0,0,0,.14),0 0 0 0 rgba(0,0,0,.12)}.mat-elevation-z1[_ngcontent-%COMP%]{box-shadow:0 2px 1px -1px rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 1px 3px 0 rgba(0,0,0,.12)}.mat-elevation-z2[_ngcontent-%COMP%]{box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12)}.mat-elevation-z3[_ngcontent-%COMP%]{box-shadow:0 3px 3px -2px rgba(0,0,0,.2),0 3px 4px 0 rgba(0,0,0,.14),0 1px 8px 0 rgba(0,0,0,.12)}.mat-elevation-z4[_ngcontent-%COMP%]{box-shadow:0 2px 4px -1px rgba(0,0,0,.2),0 4px 5px 0 rgba(0,0,0,.14),0 1px 10px 0 rgba(0,0,0,.12)}.mat-elevation-z5[_ngcontent-%COMP%]{box-shadow:0 3px 5px -1px rgba(0,0,0,.2),0 5px 8px 0 rgba(0,0,0,.14),0 1px 14px 0 rgba(0,0,0,.12)}.mat-elevation-z6[_ngcontent-%COMP%]{box-shadow:0 3px 5px -1px rgba(0,0,0,.2),0 6px 10px 0 rgba(0,0,0,.14),0 1px 18px 0 rgba(0,0,0,.12)}.mat-elevation-z7[_ngcontent-%COMP%]{box-shadow:0 4px 5px -2px rgba(0,0,0,.2),0 7px 10px 1px rgba(0,0,0,.14),0 2px 16px 1px rgba(0,0,0,.12)}.mat-elevation-z8[_ngcontent-%COMP%]{box-shadow:0 5px 5px -3px rgba(0,0,0,.2),0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 2px rgba(0,0,0,.12)}.mat-elevation-z9[_ngcontent-%COMP%]{box-shadow:0 5px 6px -3px rgba(0,0,0,.2),0 9px 12px 1px rgba(0,0,0,.14),0 3px 16px 2px rgba(0,0,0,.12)}.mat-elevation-z10[_ngcontent-%COMP%]{box-shadow:0 6px 6px -3px rgba(0,0,0,.2),0 10px 14px 1px rgba(0,0,0,.14),0 4px 18px 3px rgba(0,0,0,.12)}.mat-elevation-z11[_ngcontent-%COMP%]{box-shadow:0 6px 7px -4px rgba(0,0,0,.2),0 11px 15px 1px rgba(0,0,0,.14),0 4px 20px 3px rgba(0,0,0,.12)}.mat-elevation-z12[_ngcontent-%COMP%]{box-shadow:0 7px 8px -4px rgba(0,0,0,.2),0 12px 17px 2px rgba(0,0,0,.14),0 5px 22px 4px rgba(0,0,0,.12)}.mat-elevation-z13[_ngcontent-%COMP%]{box-shadow:0 7px 8px -4px rgba(0,0,0,.2),0 13px 19px 2px rgba(0,0,0,.14),0 5px 24px 4px rgba(0,0,0,.12)}.mat-elevation-z14[_ngcontent-%COMP%]{box-shadow:0 7px 9px -4px rgba(0,0,0,.2),0 14px 21px 2px rgba(0,0,0,.14),0 5px 26px 4px rgba(0,0,0,.12)}.mat-elevation-z15[_ngcontent-%COMP%]{box-shadow:0 8px 9px -5px rgba(0,0,0,.2),0 15px 22px 2px rgba(0,0,0,.14),0 6px 28px 5px rgba(0,0,0,.12)}.mat-elevation-z16[_ngcontent-%COMP%]{box-shadow:0 8px 10px -5px rgba(0,0,0,.2),0 16px 24px 2px rgba(0,0,0,.14),0 6px 30px 5px rgba(0,0,0,.12)}.mat-elevation-z17[_ngcontent-%COMP%]{box-shadow:0 8px 11px -5px rgba(0,0,0,.2),0 17px 26px 2px rgba(0,0,0,.14),0 6px 32px 5px rgba(0,0,0,.12)}.mat-elevation-z18[_ngcontent-%COMP%]{box-shadow:0 9px 11px -5px rgba(0,0,0,.2),0 18px 28px 2px rgba(0,0,0,.14),0 7px 34px 6px rgba(0,0,0,.12)}.mat-elevation-z19[_ngcontent-%COMP%]{box-shadow:0 9px 12px -6px rgba(0,0,0,.2),0 19px 29px 2px rgba(0,0,0,.14),0 7px 36px 6px rgba(0,0,0,.12)}.mat-elevation-z20[_ngcontent-%COMP%]{box-shadow:0 10px 13px -6px rgba(0,0,0,.2),0 20px 31px 3px rgba(0,0,0,.14),0 8px 38px 7px rgba(0,0,0,.12)}.mat-elevation-z21[_ngcontent-%COMP%]{box-shadow:0 10px 13px -6px rgba(0,0,0,.2),0 21px 33px 3px rgba(0,0,0,.14),0 8px 40px 7px rgba(0,0,0,.12)}.mat-elevation-z22[_ngcontent-%COMP%]{box-shadow:0 10px 14px -6px rgba(0,0,0,.2),0 22px 35px 3px rgba(0,0,0,.14),0 8px 42px 7px rgba(0,0,0,.12)}.mat-elevation-z23[_ngcontent-%COMP%]{box-shadow:0 11px 14px -7px rgba(0,0,0,.2),0 23px 36px 3px rgba(0,0,0,.14),0 9px 44px 8px rgba(0,0,0,.12)}.mat-elevation-z24[_ngcontent-%COMP%]{box-shadow:0 11px 15px -7px rgba(0,0,0,.2),0 24px 38px 3px rgba(0,0,0,.14),0 9px 46px 8px rgba(0,0,0,.12)}.mat-theme-loaded-marker[_ngcontent-%COMP%]{display:none}.mat-autocomplete-panel[_ngcontent-%COMP%]{background:#fff;color:rgba(0,0,0,.87)}.mat-autocomplete-panel[_ngcontent-%COMP%]:not([class*=mat-elevation-z]){box-shadow:0 2px 4px -1px rgba(0,0,0,.2),0 4px 5px 0 rgba(0,0,0,.14),0 1px 10px 0 rgba(0,0,0,.12)}.mat-autocomplete-panel[_ngcontent-%COMP%] .mat-option.mat-selected[_ngcontent-%COMP%]:not(.mat-active):not(:hover){background:#fff}.mat-autocomplete-panel[_ngcontent-%COMP%] .mat-option.mat-selected[_ngcontent-%COMP%]:not(.mat-active):not(:hover):not(.mat-option-disabled){color:rgba(0,0,0,.87)}.mat-badge-content[_ngcontent-%COMP%]{color:#fff;background:#3f51b5}.cdk-high-contrast-active[_ngcontent-%COMP%] .mat-badge-content[_ngcontent-%COMP%]{outline:1px solid;border-radius:0}.mat-badge-accent[_ngcontent-%COMP%] .mat-badge-content[_ngcontent-%COMP%]{background:#ff4081;color:#fff}.mat-badge-warn[_ngcontent-%COMP%] .mat-badge-content[_ngcontent-%COMP%]{color:#fff;background:#f44336}.mat-badge[_ngcontent-%COMP%]{position:relative}.mat-badge-hidden[_ngcontent-%COMP%] .mat-badge-content[_ngcontent-%COMP%]{display:none}.mat-badge-disabled[_ngcontent-%COMP%] .mat-badge-content[_ngcontent-%COMP%]{background:#b9b9b9;color:rgba(0,0,0,.38)}.mat-badge-content[_ngcontent-%COMP%]{position:absolute;text-align:center;display:inline-block;border-radius:50%;transition:transform .2s ease-in-out;transform:scale(.6);overflow:hidden;white-space:nowrap;text-overflow:ellipsis;pointer-events:none}.mat-badge-content._mat-animation-noopable[_ngcontent-%COMP%], .ng-animate-disabled[_ngcontent-%COMP%] .mat-badge-content[_ngcontent-%COMP%]{transition:none}.mat-badge-content.mat-badge-active[_ngcontent-%COMP%]{transform:none}.mat-badge-small[_ngcontent-%COMP%] .mat-badge-content[_ngcontent-%COMP%]{width:16px;height:16px;line-height:16px}.mat-badge-small.mat-badge-above[_ngcontent-%COMP%] .mat-badge-content[_ngcontent-%COMP%]{top:-8px}.mat-badge-small.mat-badge-below[_ngcontent-%COMP%] .mat-badge-content[_ngcontent-%COMP%]{bottom:-8px}.mat-badge-small.mat-badge-before[_ngcontent-%COMP%] .mat-badge-content[_ngcontent-%COMP%]{left:-16px}[dir=rtl][_ngcontent-%COMP%] .mat-badge-small.mat-badge-before[_ngcontent-%COMP%] .mat-badge-content[_ngcontent-%COMP%]{left:auto;right:-16px}.mat-badge-small.mat-badge-after[_ngcontent-%COMP%] .mat-badge-content[_ngcontent-%COMP%]{right:-16px}[dir=rtl][_ngcontent-%COMP%] .mat-badge-small.mat-badge-after[_ngcontent-%COMP%] .mat-badge-content[_ngcontent-%COMP%]{right:auto;left:-16px}.mat-badge-small.mat-badge-overlap.mat-badge-before[_ngcontent-%COMP%] .mat-badge-content[_ngcontent-%COMP%]{left:-8px}[dir=rtl][_ngcontent-%COMP%] .mat-badge-small.mat-badge-overlap.mat-badge-before[_ngcontent-%COMP%] .mat-badge-content[_ngcontent-%COMP%]{left:auto;right:-8px}.mat-badge-small.mat-badge-overlap.mat-badge-after[_ngcontent-%COMP%] .mat-badge-content[_ngcontent-%COMP%]{right:-8px}[dir=rtl][_ngcontent-%COMP%] .mat-badge-small.mat-badge-overlap.mat-badge-after[_ngcontent-%COMP%] .mat-badge-content[_ngcontent-%COMP%]{right:auto;left:-8px}.mat-badge-medium[_ngcontent-%COMP%] .mat-badge-content[_ngcontent-%COMP%]{width:22px;height:22px;line-height:22px}.mat-badge-medium.mat-badge-above[_ngcontent-%COMP%] .mat-badge-content[_ngcontent-%COMP%]{top:-11px}.mat-badge-medium.mat-badge-below[_ngcontent-%COMP%] .mat-badge-content[_ngcontent-%COMP%]{bottom:-11px}.mat-badge-medium.mat-badge-before[_ngcontent-%COMP%] .mat-badge-content[_ngcontent-%COMP%]{left:-22px}[dir=rtl][_ngcontent-%COMP%] .mat-badge-medium.mat-badge-before[_ngcontent-%COMP%] .mat-badge-content[_ngcontent-%COMP%]{left:auto;right:-22px}.mat-badge-medium.mat-badge-after[_ngcontent-%COMP%] .mat-badge-content[_ngcontent-%COMP%]{right:-22px}[dir=rtl][_ngcontent-%COMP%] .mat-badge-medium.mat-badge-after[_ngcontent-%COMP%] .mat-badge-content[_ngcontent-%COMP%]{right:auto;left:-22px}.mat-badge-medium.mat-badge-overlap.mat-badge-before[_ngcontent-%COMP%] .mat-badge-content[_ngcontent-%COMP%]{left:-11px}[dir=rtl][_ngcontent-%COMP%] .mat-badge-medium.mat-badge-overlap.mat-badge-before[_ngcontent-%COMP%] .mat-badge-content[_ngcontent-%COMP%]{left:auto;right:-11px}.mat-badge-medium.mat-badge-overlap.mat-badge-after[_ngcontent-%COMP%] .mat-badge-content[_ngcontent-%COMP%]{right:-11px}[dir=rtl][_ngcontent-%COMP%] .mat-badge-medium.mat-badge-overlap.mat-badge-after[_ngcontent-%COMP%] .mat-badge-content[_ngcontent-%COMP%]{right:auto;left:-11px}.mat-badge-large[_ngcontent-%COMP%] .mat-badge-content[_ngcontent-%COMP%]{width:28px;height:28px;line-height:28px}.mat-badge-large.mat-badge-above[_ngcontent-%COMP%] .mat-badge-content[_ngcontent-%COMP%]{top:-14px}.mat-badge-large.mat-badge-below[_ngcontent-%COMP%] .mat-badge-content[_ngcontent-%COMP%]{bottom:-14px}.mat-badge-large.mat-badge-before[_ngcontent-%COMP%] .mat-badge-content[_ngcontent-%COMP%]{left:-28px}[dir=rtl][_ngcontent-%COMP%] .mat-badge-large.mat-badge-before[_ngcontent-%COMP%] .mat-badge-content[_ngcontent-%COMP%]{left:auto;right:-28px}.mat-badge-large.mat-badge-after[_ngcontent-%COMP%] .mat-badge-content[_ngcontent-%COMP%]{right:-28px}[dir=rtl][_ngcontent-%COMP%] .mat-badge-large.mat-badge-after[_ngcontent-%COMP%] .mat-badge-content[_ngcontent-%COMP%]{right:auto;left:-28px}.mat-badge-large.mat-badge-overlap.mat-badge-before[_ngcontent-%COMP%] .mat-badge-content[_ngcontent-%COMP%]{left:-14px}[dir=rtl][_ngcontent-%COMP%] .mat-badge-large.mat-badge-overlap.mat-badge-before[_ngcontent-%COMP%] .mat-badge-content[_ngcontent-%COMP%]{left:auto;right:-14px}.mat-badge-large.mat-badge-overlap.mat-badge-after[_ngcontent-%COMP%] .mat-badge-content[_ngcontent-%COMP%]{right:-14px}[dir=rtl][_ngcontent-%COMP%] .mat-badge-large.mat-badge-overlap.mat-badge-after[_ngcontent-%COMP%] .mat-badge-content[_ngcontent-%COMP%]{right:auto;left:-14px}.mat-bottom-sheet-container[_ngcontent-%COMP%]{box-shadow:0 8px 10px -5px rgba(0,0,0,.2),0 16px 24px 2px rgba(0,0,0,.14),0 6px 30px 5px rgba(0,0,0,.12);background:#fff;color:rgba(0,0,0,.87)}.mat-button[_ngcontent-%COMP%], .mat-icon-button[_ngcontent-%COMP%], .mat-stroked-button[_ngcontent-%COMP%]{color:inherit;background:transparent}.mat-button.mat-primary[_ngcontent-%COMP%], .mat-icon-button.mat-primary[_ngcontent-%COMP%], .mat-stroked-button.mat-primary[_ngcontent-%COMP%]{color:#3f51b5}.mat-button.mat-accent[_ngcontent-%COMP%], .mat-icon-button.mat-accent[_ngcontent-%COMP%], .mat-stroked-button.mat-accent[_ngcontent-%COMP%]{color:#ff4081}.mat-button.mat-warn[_ngcontent-%COMP%], .mat-icon-button.mat-warn[_ngcontent-%COMP%], .mat-stroked-button.mat-warn[_ngcontent-%COMP%]{color:#f44336}.mat-button.mat-accent.mat-button-disabled[_ngcontent-%COMP%], .mat-button.mat-button-disabled.mat-button-disabled[_ngcontent-%COMP%], .mat-button.mat-primary.mat-button-disabled[_ngcontent-%COMP%], .mat-button.mat-warn.mat-button-disabled[_ngcontent-%COMP%], .mat-icon-button.mat-accent.mat-button-disabled[_ngcontent-%COMP%], .mat-icon-button.mat-button-disabled.mat-button-disabled[_ngcontent-%COMP%], .mat-icon-button.mat-primary.mat-button-disabled[_ngcontent-%COMP%], .mat-icon-button.mat-warn.mat-button-disabled[_ngcontent-%COMP%], .mat-stroked-button.mat-accent.mat-button-disabled[_ngcontent-%COMP%], .mat-stroked-button.mat-button-disabled.mat-button-disabled[_ngcontent-%COMP%], .mat-stroked-button.mat-primary.mat-button-disabled[_ngcontent-%COMP%], .mat-stroked-button.mat-warn.mat-button-disabled[_ngcontent-%COMP%]{color:rgba(0,0,0,.26)}.mat-button.mat-primary[_ngcontent-%COMP%] .mat-button-focus-overlay[_ngcontent-%COMP%], .mat-icon-button.mat-primary[_ngcontent-%COMP%] .mat-button-focus-overlay[_ngcontent-%COMP%], .mat-stroked-button.mat-primary[_ngcontent-%COMP%] .mat-button-focus-overlay[_ngcontent-%COMP%]{background-color:#3f51b5}.mat-button.mat-accent[_ngcontent-%COMP%] .mat-button-focus-overlay[_ngcontent-%COMP%], .mat-icon-button.mat-accent[_ngcontent-%COMP%] .mat-button-focus-overlay[_ngcontent-%COMP%], .mat-stroked-button.mat-accent[_ngcontent-%COMP%] .mat-button-focus-overlay[_ngcontent-%COMP%]{background-color:#ff4081}.mat-button.mat-warn[_ngcontent-%COMP%] .mat-button-focus-overlay[_ngcontent-%COMP%], .mat-icon-button.mat-warn[_ngcontent-%COMP%] .mat-button-focus-overlay[_ngcontent-%COMP%], .mat-stroked-button.mat-warn[_ngcontent-%COMP%] .mat-button-focus-overlay[_ngcontent-%COMP%]{background-color:#f44336}.mat-button.mat-button-disabled[_ngcontent-%COMP%] .mat-button-focus-overlay[_ngcontent-%COMP%], .mat-icon-button.mat-button-disabled[_ngcontent-%COMP%] .mat-button-focus-overlay[_ngcontent-%COMP%], .mat-stroked-button.mat-button-disabled[_ngcontent-%COMP%] .mat-button-focus-overlay[_ngcontent-%COMP%]{background-color:transparent}.mat-button[_ngcontent-%COMP%] .mat-ripple-element[_ngcontent-%COMP%], .mat-icon-button[_ngcontent-%COMP%] .mat-ripple-element[_ngcontent-%COMP%], .mat-stroked-button[_ngcontent-%COMP%] .mat-ripple-element[_ngcontent-%COMP%]{opacity:.1;background-color:currentColor}.mat-button-focus-overlay[_ngcontent-%COMP%]{background:#000}.mat-stroked-button[_ngcontent-%COMP%]:not(.mat-button-disabled){border-color:rgba(0,0,0,.12)}.mat-fab[_ngcontent-%COMP%], .mat-flat-button[_ngcontent-%COMP%], .mat-mini-fab[_ngcontent-%COMP%], .mat-raised-button[_ngcontent-%COMP%]{color:rgba(0,0,0,.87);background-color:#fff}.mat-fab.mat-accent[_ngcontent-%COMP%], .mat-fab.mat-primary[_ngcontent-%COMP%], .mat-fab.mat-warn[_ngcontent-%COMP%], .mat-flat-button.mat-accent[_ngcontent-%COMP%], .mat-flat-button.mat-primary[_ngcontent-%COMP%], .mat-flat-button.mat-warn[_ngcontent-%COMP%], .mat-mini-fab.mat-accent[_ngcontent-%COMP%], .mat-mini-fab.mat-primary[_ngcontent-%COMP%], .mat-mini-fab.mat-warn[_ngcontent-%COMP%], .mat-raised-button.mat-accent[_ngcontent-%COMP%], .mat-raised-button.mat-primary[_ngcontent-%COMP%], .mat-raised-button.mat-warn[_ngcontent-%COMP%]{color:#fff}.mat-fab.mat-accent.mat-button-disabled[_ngcontent-%COMP%], .mat-fab.mat-button-disabled.mat-button-disabled[_ngcontent-%COMP%], .mat-fab.mat-primary.mat-button-disabled[_ngcontent-%COMP%], .mat-fab.mat-warn.mat-button-disabled[_ngcontent-%COMP%], .mat-flat-button.mat-accent.mat-button-disabled[_ngcontent-%COMP%], .mat-flat-button.mat-button-disabled.mat-button-disabled[_ngcontent-%COMP%], .mat-flat-button.mat-primary.mat-button-disabled[_ngcontent-%COMP%], .mat-flat-button.mat-warn.mat-button-disabled[_ngcontent-%COMP%], .mat-mini-fab.mat-accent.mat-button-disabled[_ngcontent-%COMP%], .mat-mini-fab.mat-button-disabled.mat-button-disabled[_ngcontent-%COMP%], .mat-mini-fab.mat-primary.mat-button-disabled[_ngcontent-%COMP%], .mat-mini-fab.mat-warn.mat-button-disabled[_ngcontent-%COMP%], .mat-raised-button.mat-accent.mat-button-disabled[_ngcontent-%COMP%], .mat-raised-button.mat-button-disabled.mat-button-disabled[_ngcontent-%COMP%], .mat-raised-button.mat-primary.mat-button-disabled[_ngcontent-%COMP%], .mat-raised-button.mat-warn.mat-button-disabled[_ngcontent-%COMP%]{color:rgba(0,0,0,.26)}.mat-fab.mat-primary[_ngcontent-%COMP%], .mat-flat-button.mat-primary[_ngcontent-%COMP%], .mat-mini-fab.mat-primary[_ngcontent-%COMP%], .mat-raised-button.mat-primary[_ngcontent-%COMP%]{background-color:#3f51b5}.mat-fab.mat-accent[_ngcontent-%COMP%], .mat-flat-button.mat-accent[_ngcontent-%COMP%], .mat-mini-fab.mat-accent[_ngcontent-%COMP%], .mat-raised-button.mat-accent[_ngcontent-%COMP%]{background-color:#ff4081}.mat-fab.mat-warn[_ngcontent-%COMP%], .mat-flat-button.mat-warn[_ngcontent-%COMP%], .mat-mini-fab.mat-warn[_ngcontent-%COMP%], .mat-raised-button.mat-warn[_ngcontent-%COMP%]{background-color:#f44336}.mat-fab.mat-accent.mat-button-disabled[_ngcontent-%COMP%], .mat-fab.mat-button-disabled.mat-button-disabled[_ngcontent-%COMP%], .mat-fab.mat-primary.mat-button-disabled[_ngcontent-%COMP%], .mat-fab.mat-warn.mat-button-disabled[_ngcontent-%COMP%], .mat-flat-button.mat-accent.mat-button-disabled[_ngcontent-%COMP%], .mat-flat-button.mat-button-disabled.mat-button-disabled[_ngcontent-%COMP%], .mat-flat-button.mat-primary.mat-button-disabled[_ngcontent-%COMP%], .mat-flat-button.mat-warn.mat-button-disabled[_ngcontent-%COMP%], .mat-mini-fab.mat-accent.mat-button-disabled[_ngcontent-%COMP%], .mat-mini-fab.mat-button-disabled.mat-button-disabled[_ngcontent-%COMP%], .mat-mini-fab.mat-primary.mat-button-disabled[_ngcontent-%COMP%], .mat-mini-fab.mat-warn.mat-button-disabled[_ngcontent-%COMP%], .mat-raised-button.mat-accent.mat-button-disabled[_ngcontent-%COMP%], .mat-raised-button.mat-button-disabled.mat-button-disabled[_ngcontent-%COMP%], .mat-raised-button.mat-primary.mat-button-disabled[_ngcontent-%COMP%], .mat-raised-button.mat-warn.mat-button-disabled[_ngcontent-%COMP%]{background-color:rgba(0,0,0,.12)}.mat-fab.mat-accent[_ngcontent-%COMP%] .mat-ripple-element[_ngcontent-%COMP%], .mat-fab.mat-primary[_ngcontent-%COMP%] .mat-ripple-element[_ngcontent-%COMP%], .mat-fab.mat-warn[_ngcontent-%COMP%] .mat-ripple-element[_ngcontent-%COMP%], .mat-flat-button.mat-accent[_ngcontent-%COMP%] .mat-ripple-element[_ngcontent-%COMP%], .mat-flat-button.mat-primary[_ngcontent-%COMP%] .mat-ripple-element[_ngcontent-%COMP%], .mat-flat-button.mat-warn[_ngcontent-%COMP%] .mat-ripple-element[_ngcontent-%COMP%], .mat-mini-fab.mat-accent[_ngcontent-%COMP%] .mat-ripple-element[_ngcontent-%COMP%], .mat-mini-fab.mat-primary[_ngcontent-%COMP%] .mat-ripple-element[_ngcontent-%COMP%], .mat-mini-fab.mat-warn[_ngcontent-%COMP%] .mat-ripple-element[_ngcontent-%COMP%], .mat-raised-button.mat-accent[_ngcontent-%COMP%] .mat-ripple-element[_ngcontent-%COMP%], .mat-raised-button.mat-primary[_ngcontent-%COMP%] .mat-ripple-element[_ngcontent-%COMP%], .mat-raised-button.mat-warn[_ngcontent-%COMP%] .mat-ripple-element[_ngcontent-%COMP%]{background-color:hsla(0,0%,100%,.1)}.mat-flat-button[_ngcontent-%COMP%]:not([class*=mat-elevation-z]), .mat-stroked-button[_ngcontent-%COMP%]:not([class*=mat-elevation-z]){box-shadow:0 0 0 0 rgba(0,0,0,.2),0 0 0 0 rgba(0,0,0,.14),0 0 0 0 rgba(0,0,0,.12)}.mat-raised-button[_ngcontent-%COMP%]:not([class*=mat-elevation-z]){box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12)}.mat-raised-button[_ngcontent-%COMP%]:not(.mat-button-disabled):active:not([class*=mat-elevation-z]){box-shadow:0 5px 5px -3px rgba(0,0,0,.2),0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 2px rgba(0,0,0,.12)}.mat-raised-button.mat-button-disabled[_ngcontent-%COMP%]:not([class*=mat-elevation-z]){box-shadow:0 0 0 0 rgba(0,0,0,.2),0 0 0 0 rgba(0,0,0,.14),0 0 0 0 rgba(0,0,0,.12)}.mat-fab[_ngcontent-%COMP%]:not([class*=mat-elevation-z]), .mat-mini-fab[_ngcontent-%COMP%]:not([class*=mat-elevation-z]){box-shadow:0 3px 5px -1px rgba(0,0,0,.2),0 6px 10px 0 rgba(0,0,0,.14),0 1px 18px 0 rgba(0,0,0,.12)}.mat-fab[_ngcontent-%COMP%]:not(.mat-button-disabled):active:not([class*=mat-elevation-z]), .mat-mini-fab[_ngcontent-%COMP%]:not(.mat-button-disabled):active:not([class*=mat-elevation-z]){box-shadow:0 7px 8px -4px rgba(0,0,0,.2),0 12px 17px 2px rgba(0,0,0,.14),0 5px 22px 4px rgba(0,0,0,.12)}.mat-fab.mat-button-disabled[_ngcontent-%COMP%]:not([class*=mat-elevation-z]), .mat-mini-fab.mat-button-disabled[_ngcontent-%COMP%]:not([class*=mat-elevation-z]){box-shadow:0 0 0 0 rgba(0,0,0,.2),0 0 0 0 rgba(0,0,0,.14),0 0 0 0 rgba(0,0,0,.12)}.mat-button-toggle-group[_ngcontent-%COMP%], .mat-button-toggle-standalone[_ngcontent-%COMP%]{box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12)}.mat-button-toggle-group-appearance-standard[_ngcontent-%COMP%], .mat-button-toggle-standalone.mat-button-toggle-appearance-standard[_ngcontent-%COMP%]{box-shadow:none}.mat-button-toggle[_ngcontent-%COMP%]{color:rgba(0,0,0,.38)}.mat-button-toggle[_ngcontent-%COMP%] .mat-button-toggle-focus-overlay[_ngcontent-%COMP%]{background-color:rgba(0,0,0,.12)}.mat-button-toggle-appearance-standard[_ngcontent-%COMP%]{color:rgba(0,0,0,.87);background:#fff}.mat-button-toggle-appearance-standard[_ngcontent-%COMP%] .mat-button-toggle-focus-overlay[_ngcontent-%COMP%]{background-color:#000}.mat-button-toggle-group-appearance-standard[_ngcontent-%COMP%] .mat-button-toggle[_ngcontent-%COMP%] + .mat-button-toggle[_ngcontent-%COMP%]{border-left:1px solid rgba(0,0,0,.12)}[dir=rtl][_ngcontent-%COMP%] .mat-button-toggle-group-appearance-standard[_ngcontent-%COMP%] .mat-button-toggle[_ngcontent-%COMP%] + .mat-button-toggle[_ngcontent-%COMP%]{border-left:none;border-right:1px solid rgba(0,0,0,.12)}.mat-button-toggle-group-appearance-standard.mat-button-toggle-vertical[_ngcontent-%COMP%] .mat-button-toggle[_ngcontent-%COMP%] + .mat-button-toggle[_ngcontent-%COMP%]{border-left:none;border-right:none;border-top:1px solid rgba(0,0,0,.12)}.mat-button-toggle-checked[_ngcontent-%COMP%]{background-color:#e0e0e0;color:rgba(0,0,0,.54)}.mat-button-toggle-checked.mat-button-toggle-appearance-standard[_ngcontent-%COMP%]{color:rgba(0,0,0,.87)}.mat-button-toggle-disabled[_ngcontent-%COMP%]{color:rgba(0,0,0,.26);background-color:#eee}.mat-button-toggle-disabled.mat-button-toggle-appearance-standard[_ngcontent-%COMP%]{background:#fff}.mat-button-toggle-disabled.mat-button-toggle-checked[_ngcontent-%COMP%]{background-color:#bdbdbd}.mat-button-toggle-group-appearance-standard[_ngcontent-%COMP%], .mat-button-toggle-standalone.mat-button-toggle-appearance-standard[_ngcontent-%COMP%]{border:1px solid rgba(0,0,0,.12)}.mat-button-toggle-appearance-standard[_ngcontent-%COMP%] .mat-button-toggle-label-content[_ngcontent-%COMP%]{line-height:48px}.mat-card[_ngcontent-%COMP%]{background:#fff;color:rgba(0,0,0,.87)}.mat-card[_ngcontent-%COMP%]:not([class*=mat-elevation-z]){box-shadow:0 2px 1px -1px rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 1px 3px 0 rgba(0,0,0,.12)}.mat-card.mat-card-flat[_ngcontent-%COMP%]:not([class*=mat-elevation-z]){box-shadow:0 0 0 0 rgba(0,0,0,.2),0 0 0 0 rgba(0,0,0,.14),0 0 0 0 rgba(0,0,0,.12)}.mat-card-subtitle[_ngcontent-%COMP%]{color:rgba(0,0,0,.54)}.mat-checkbox-frame[_ngcontent-%COMP%]{border-color:rgba(0,0,0,.54)}.mat-checkbox-checkmark[_ngcontent-%COMP%]{fill:#fafafa}.mat-checkbox-checkmark-path[_ngcontent-%COMP%]{stroke:#fafafa!important}.mat-checkbox-mixedmark[_ngcontent-%COMP%]{background-color:#fafafa}.mat-checkbox-checked.mat-primary[_ngcontent-%COMP%] .mat-checkbox-background[_ngcontent-%COMP%], .mat-checkbox-indeterminate.mat-primary[_ngcontent-%COMP%] .mat-checkbox-background[_ngcontent-%COMP%]{background-color:#3f51b5}.mat-checkbox-checked.mat-accent[_ngcontent-%COMP%] .mat-checkbox-background[_ngcontent-%COMP%], .mat-checkbox-indeterminate.mat-accent[_ngcontent-%COMP%] .mat-checkbox-background[_ngcontent-%COMP%]{background-color:#ff4081}.mat-checkbox-checked.mat-warn[_ngcontent-%COMP%] .mat-checkbox-background[_ngcontent-%COMP%], .mat-checkbox-indeterminate.mat-warn[_ngcontent-%COMP%] .mat-checkbox-background[_ngcontent-%COMP%]{background-color:#f44336}.mat-checkbox-disabled.mat-checkbox-checked[_ngcontent-%COMP%] .mat-checkbox-background[_ngcontent-%COMP%], .mat-checkbox-disabled.mat-checkbox-indeterminate[_ngcontent-%COMP%] .mat-checkbox-background[_ngcontent-%COMP%]{background-color:#b0b0b0}.mat-checkbox-disabled[_ngcontent-%COMP%]:not(.mat-checkbox-checked) .mat-checkbox-frame[_ngcontent-%COMP%]{border-color:#b0b0b0}.mat-checkbox-disabled[_ngcontent-%COMP%] .mat-checkbox-label[_ngcontent-%COMP%]{color:rgba(0,0,0,.54)}.mat-checkbox[_ngcontent-%COMP%] .mat-ripple-element[_ngcontent-%COMP%]{background-color:#000}.mat-checkbox-checked[_ngcontent-%COMP%]:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element[_ngcontent-%COMP%], .mat-checkbox[_ngcontent-%COMP%]:active:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element[_ngcontent-%COMP%]{background:#3f51b5}.mat-checkbox-checked[_ngcontent-%COMP%]:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element[_ngcontent-%COMP%], .mat-checkbox[_ngcontent-%COMP%]:active:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element[_ngcontent-%COMP%]{background:#ff4081}.mat-checkbox-checked[_ngcontent-%COMP%]:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element[_ngcontent-%COMP%], .mat-checkbox[_ngcontent-%COMP%]:active:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element[_ngcontent-%COMP%]{background:#f44336}.mat-chip.mat-standard-chip[_ngcontent-%COMP%]{background-color:#e0e0e0;color:rgba(0,0,0,.87)}.mat-chip.mat-standard-chip[_ngcontent-%COMP%] .mat-chip-remove[_ngcontent-%COMP%]{color:rgba(0,0,0,.87);opacity:.4}.mat-chip.mat-standard-chip[_ngcontent-%COMP%]:not(.mat-chip-disabled):active{box-shadow:0 3px 3px -2px rgba(0,0,0,.2),0 3px 4px 0 rgba(0,0,0,.14),0 1px 8px 0 rgba(0,0,0,.12)}.mat-chip.mat-standard-chip[_ngcontent-%COMP%]:not(.mat-chip-disabled) .mat-chip-remove[_ngcontent-%COMP%]:hover{opacity:.54}.mat-chip.mat-standard-chip.mat-chip-disabled[_ngcontent-%COMP%]{opacity:.4}.mat-chip.mat-standard-chip[_ngcontent-%COMP%]:after{background:#000}.mat-chip.mat-standard-chip.mat-chip-selected.mat-primary[_ngcontent-%COMP%]{background-color:#3f51b5;color:#fff}.mat-chip.mat-standard-chip.mat-chip-selected.mat-primary[_ngcontent-%COMP%] .mat-chip-remove[_ngcontent-%COMP%]{color:#fff;opacity:.4}.mat-chip.mat-standard-chip.mat-chip-selected.mat-primary[_ngcontent-%COMP%] .mat-ripple-element[_ngcontent-%COMP%]{background-color:hsla(0,0%,100%,.1)}.mat-chip.mat-standard-chip.mat-chip-selected.mat-warn[_ngcontent-%COMP%]{background-color:#f44336;color:#fff}.mat-chip.mat-standard-chip.mat-chip-selected.mat-warn[_ngcontent-%COMP%] .mat-chip-remove[_ngcontent-%COMP%]{color:#fff;opacity:.4}.mat-chip.mat-standard-chip.mat-chip-selected.mat-warn[_ngcontent-%COMP%] .mat-ripple-element[_ngcontent-%COMP%]{background-color:hsla(0,0%,100%,.1)}.mat-chip.mat-standard-chip.mat-chip-selected.mat-accent[_ngcontent-%COMP%]{background-color:#ff4081;color:#fff}.mat-chip.mat-standard-chip.mat-chip-selected.mat-accent[_ngcontent-%COMP%] .mat-chip-remove[_ngcontent-%COMP%]{color:#fff;opacity:.4}.mat-chip.mat-standard-chip.mat-chip-selected.mat-accent[_ngcontent-%COMP%] .mat-ripple-element[_ngcontent-%COMP%]{background-color:hsla(0,0%,100%,.1)}.mat-table[_ngcontent-%COMP%]{background:#fff}.mat-table-sticky[_ngcontent-%COMP%], .mat-table[_ngcontent-%COMP%] tbody[_ngcontent-%COMP%], .mat-table[_ngcontent-%COMP%] tfoot[_ngcontent-%COMP%], .mat-table[_ngcontent-%COMP%] thead[_ngcontent-%COMP%], [mat-footer-row][_ngcontent-%COMP%], [mat-header-row][_ngcontent-%COMP%], [mat-row][_ngcontent-%COMP%], mat-footer-row[_ngcontent-%COMP%], mat-header-row[_ngcontent-%COMP%], mat-row[_ngcontent-%COMP%]{background:inherit}mat-footer-row[_ngcontent-%COMP%], mat-header-row[_ngcontent-%COMP%], mat-row[_ngcontent-%COMP%], td.mat-cell[_ngcontent-%COMP%], td.mat-footer-cell[_ngcontent-%COMP%], th.mat-header-cell[_ngcontent-%COMP%]{border-bottom-color:rgba(0,0,0,.12)}.mat-header-cell[_ngcontent-%COMP%]{color:rgba(0,0,0,.54)}.mat-cell[_ngcontent-%COMP%], .mat-footer-cell[_ngcontent-%COMP%]{color:rgba(0,0,0,.87)}.mat-calendar-arrow[_ngcontent-%COMP%]{border-top-color:rgba(0,0,0,.54)}.mat-datepicker-content[_ngcontent-%COMP%] .mat-calendar-next-button[_ngcontent-%COMP%], .mat-datepicker-content[_ngcontent-%COMP%] .mat-calendar-previous-button[_ngcontent-%COMP%], .mat-datepicker-toggle[_ngcontent-%COMP%]{color:rgba(0,0,0,.54)}.mat-calendar-table-header[_ngcontent-%COMP%]{color:rgba(0,0,0,.38)}.mat-calendar-table-header-divider[_ngcontent-%COMP%]:after{background:rgba(0,0,0,.12)}.mat-calendar-body-label[_ngcontent-%COMP%]{color:rgba(0,0,0,.54)}.mat-calendar-body-cell-content[_ngcontent-%COMP%], .mat-date-range-input-separator[_ngcontent-%COMP%]{color:rgba(0,0,0,.87);border-color:transparent}.mat-calendar-body-disabled[_ngcontent-%COMP%] > .mat-calendar-body-cell-content[_ngcontent-%COMP%]:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical), .mat-form-field-disabled[_ngcontent-%COMP%] .mat-date-range-input-separator[_ngcontent-%COMP%]{color:rgba(0,0,0,.38)}.cdk-keyboard-focused[_ngcontent-%COMP%] .mat-calendar-body-active[_ngcontent-%COMP%] > .mat-calendar-body-cell-content[_ngcontent-%COMP%]:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical), .cdk-program-focused[_ngcontent-%COMP%] .mat-calendar-body-active[_ngcontent-%COMP%] > .mat-calendar-body-cell-content[_ngcontent-%COMP%]:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical), .mat-calendar-body-cell[_ngcontent-%COMP%]:not(.mat-calendar-body-disabled):hover > .mat-calendar-body-cell-content[_ngcontent-%COMP%]:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:rgba(0,0,0,.04)}.mat-calendar-body-in-preview[_ngcontent-%COMP%]{color:rgba(0,0,0,.24)}.mat-calendar-body-today[_ngcontent-%COMP%]:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){border-color:rgba(0,0,0,.38)}.mat-calendar-body-disabled[_ngcontent-%COMP%] > .mat-calendar-body-today[_ngcontent-%COMP%]:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){border-color:rgba(0,0,0,.18)}.mat-calendar-body-in-range[_ngcontent-%COMP%]:before{background:rgba(63,81,181,.2)}.mat-calendar-body-comparison-identical[_ngcontent-%COMP%], .mat-calendar-body-in-comparison-range[_ngcontent-%COMP%]:before{background:rgba(249,171,0,.2)}.mat-calendar-body-comparison-bridge-start[_ngcontent-%COMP%]:before, [dir=rtl][_ngcontent-%COMP%] .mat-calendar-body-comparison-bridge-end[_ngcontent-%COMP%]:before{background:linear-gradient(90deg,rgba(63,81,181,.2) 50%,rgba(249,171,0,.2) 0)}.mat-calendar-body-comparison-bridge-end[_ngcontent-%COMP%]:before, [dir=rtl][_ngcontent-%COMP%] .mat-calendar-body-comparison-bridge-start[_ngcontent-%COMP%]:before{background:linear-gradient(270deg,rgba(63,81,181,.2) 50%,rgba(249,171,0,.2) 0)}.mat-calendar-body-in-comparison-range.mat-calendar-body-in-range[_ngcontent-%COMP%]:after, .mat-calendar-body-in-range[_ngcontent-%COMP%] > .mat-calendar-body-comparison-identical[_ngcontent-%COMP%]{background:#a8dab5}.mat-calendar-body-comparison-identical.mat-calendar-body-selected[_ngcontent-%COMP%], .mat-calendar-body-in-comparison-range[_ngcontent-%COMP%] > .mat-calendar-body-selected[_ngcontent-%COMP%]{background:#46a35e}.mat-calendar-body-selected[_ngcontent-%COMP%]{background-color:#3f51b5;color:#fff}.mat-calendar-body-disabled[_ngcontent-%COMP%] > .mat-calendar-body-selected[_ngcontent-%COMP%]{background-color:rgba(63,81,181,.4)}.mat-calendar-body-today.mat-calendar-body-selected[_ngcontent-%COMP%]{box-shadow:inset 0 0 0 1px #fff}.mat-datepicker-content[_ngcontent-%COMP%]{box-shadow:0 2px 4px -1px rgba(0,0,0,.2),0 4px 5px 0 rgba(0,0,0,.14),0 1px 10px 0 rgba(0,0,0,.12);background-color:#fff;color:rgba(0,0,0,.87)}.mat-datepicker-content.mat-accent[_ngcontent-%COMP%] .mat-calendar-body-in-range[_ngcontent-%COMP%]:before{background:rgba(255,64,129,.2)}.mat-datepicker-content.mat-accent[_ngcontent-%COMP%] .mat-calendar-body-comparison-identical[_ngcontent-%COMP%], .mat-datepicker-content.mat-accent[_ngcontent-%COMP%] .mat-calendar-body-in-comparison-range[_ngcontent-%COMP%]:before{background:rgba(249,171,0,.2)}.mat-datepicker-content.mat-accent[_ngcontent-%COMP%] .mat-calendar-body-comparison-bridge-start[_ngcontent-%COMP%]:before, .mat-datepicker-content.mat-accent[_ngcontent-%COMP%] [dir=rtl][_ngcontent-%COMP%] .mat-calendar-body-comparison-bridge-end[_ngcontent-%COMP%]:before{background:linear-gradient(90deg,rgba(255,64,129,.2) 50%,rgba(249,171,0,.2) 0)}.mat-datepicker-content.mat-accent[_ngcontent-%COMP%] .mat-calendar-body-comparison-bridge-end[_ngcontent-%COMP%]:before, .mat-datepicker-content.mat-accent[_ngcontent-%COMP%] [dir=rtl][_ngcontent-%COMP%] .mat-calendar-body-comparison-bridge-start[_ngcontent-%COMP%]:before{background:linear-gradient(270deg,rgba(255,64,129,.2) 50%,rgba(249,171,0,.2) 0)}.mat-datepicker-content.mat-accent[_ngcontent-%COMP%] .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range[_ngcontent-%COMP%]:after, .mat-datepicker-content.mat-accent[_ngcontent-%COMP%] .mat-calendar-body-in-range[_ngcontent-%COMP%] > .mat-calendar-body-comparison-identical[_ngcontent-%COMP%]{background:#a8dab5}.mat-datepicker-content.mat-accent[_ngcontent-%COMP%] .mat-calendar-body-comparison-identical.mat-calendar-body-selected[_ngcontent-%COMP%], .mat-datepicker-content.mat-accent[_ngcontent-%COMP%] .mat-calendar-body-in-comparison-range[_ngcontent-%COMP%] > .mat-calendar-body-selected[_ngcontent-%COMP%]{background:#46a35e}.mat-datepicker-content.mat-accent[_ngcontent-%COMP%] .mat-calendar-body-selected[_ngcontent-%COMP%]{background-color:#ff4081;color:#fff}.mat-datepicker-content.mat-accent[_ngcontent-%COMP%] .mat-calendar-body-disabled[_ngcontent-%COMP%] > .mat-calendar-body-selected[_ngcontent-%COMP%]{background-color:rgba(255,64,129,.4)}.mat-datepicker-content.mat-accent[_ngcontent-%COMP%] .mat-calendar-body-today.mat-calendar-body-selected[_ngcontent-%COMP%]{box-shadow:inset 0 0 0 1px #fff}.mat-datepicker-content.mat-warn[_ngcontent-%COMP%] .mat-calendar-body-in-range[_ngcontent-%COMP%]:before{background:rgba(244,67,54,.2)}.mat-datepicker-content.mat-warn[_ngcontent-%COMP%] .mat-calendar-body-comparison-identical[_ngcontent-%COMP%], .mat-datepicker-content.mat-warn[_ngcontent-%COMP%] .mat-calendar-body-in-comparison-range[_ngcontent-%COMP%]:before{background:rgba(249,171,0,.2)}.mat-datepicker-content.mat-warn[_ngcontent-%COMP%] .mat-calendar-body-comparison-bridge-start[_ngcontent-%COMP%]:before, .mat-datepicker-content.mat-warn[_ngcontent-%COMP%] [dir=rtl][_ngcontent-%COMP%] .mat-calendar-body-comparison-bridge-end[_ngcontent-%COMP%]:before{background:linear-gradient(90deg,rgba(244,67,54,.2) 50%,rgba(249,171,0,.2) 0)}.mat-datepicker-content.mat-warn[_ngcontent-%COMP%] .mat-calendar-body-comparison-bridge-end[_ngcontent-%COMP%]:before, .mat-datepicker-content.mat-warn[_ngcontent-%COMP%] [dir=rtl][_ngcontent-%COMP%] .mat-calendar-body-comparison-bridge-start[_ngcontent-%COMP%]:before{background:linear-gradient(270deg,rgba(244,67,54,.2) 50%,rgba(249,171,0,.2) 0)}.mat-datepicker-content.mat-warn[_ngcontent-%COMP%] .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range[_ngcontent-%COMP%]:after, .mat-datepicker-content.mat-warn[_ngcontent-%COMP%] .mat-calendar-body-in-range[_ngcontent-%COMP%] > .mat-calendar-body-comparison-identical[_ngcontent-%COMP%]{background:#a8dab5}.mat-datepicker-content.mat-warn[_ngcontent-%COMP%] .mat-calendar-body-comparison-identical.mat-calendar-body-selected[_ngcontent-%COMP%], .mat-datepicker-content.mat-warn[_ngcontent-%COMP%] .mat-calendar-body-in-comparison-range[_ngcontent-%COMP%] > .mat-calendar-body-selected[_ngcontent-%COMP%]{background:#46a35e}.mat-datepicker-content.mat-warn[_ngcontent-%COMP%] .mat-calendar-body-selected[_ngcontent-%COMP%]{background-color:#f44336;color:#fff}.mat-datepicker-content.mat-warn[_ngcontent-%COMP%] .mat-calendar-body-disabled[_ngcontent-%COMP%] > .mat-calendar-body-selected[_ngcontent-%COMP%]{background-color:rgba(244,67,54,.4)}.mat-datepicker-content.mat-warn[_ngcontent-%COMP%] .mat-calendar-body-today.mat-calendar-body-selected[_ngcontent-%COMP%]{box-shadow:inset 0 0 0 1px #fff}.mat-datepicker-content-touch[_ngcontent-%COMP%]{box-shadow:0 0 0 0 rgba(0,0,0,.2),0 0 0 0 rgba(0,0,0,.14),0 0 0 0 rgba(0,0,0,.12)}.mat-datepicker-toggle-active[_ngcontent-%COMP%]{color:#3f51b5}.mat-datepicker-toggle-active.mat-accent[_ngcontent-%COMP%]{color:#ff4081}.mat-datepicker-toggle-active.mat-warn[_ngcontent-%COMP%]{color:#f44336}.mat-date-range-input-inner[disabled][_ngcontent-%COMP%]{color:rgba(0,0,0,.38)}.mat-dialog-container[_ngcontent-%COMP%]{box-shadow:0 11px 15px -7px rgba(0,0,0,.2),0 24px 38px 3px rgba(0,0,0,.14),0 9px 46px 8px rgba(0,0,0,.12);background:#fff;color:rgba(0,0,0,.87)}.mat-divider[_ngcontent-%COMP%]{border-top-color:rgba(0,0,0,.12)}.mat-divider-vertical[_ngcontent-%COMP%]{border-right-color:rgba(0,0,0,.12)}.mat-expansion-panel[_ngcontent-%COMP%]{background:#fff;color:rgba(0,0,0,.87)}.mat-expansion-panel[_ngcontent-%COMP%]:not([class*=mat-elevation-z]){box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12)}.mat-action-row[_ngcontent-%COMP%]{border-top-color:rgba(0,0,0,.12)}.mat-expansion-panel[_ngcontent-%COMP%] .mat-expansion-panel-header.cdk-keyboard-focused[_ngcontent-%COMP%]:not([aria-disabled=true]), .mat-expansion-panel[_ngcontent-%COMP%] .mat-expansion-panel-header.cdk-program-focused[_ngcontent-%COMP%]:not([aria-disabled=true]), .mat-expansion-panel[_ngcontent-%COMP%]:not(.mat-expanded) .mat-expansion-panel-header[_ngcontent-%COMP%]:hover:not([aria-disabled=true]){background:rgba(0,0,0,.04)}@media(hover:none){.mat-expansion-panel[_ngcontent-%COMP%]:not(.mat-expanded):not([aria-disabled=true]) .mat-expansion-panel-header[_ngcontent-%COMP%]:hover{background:#fff}}.mat-expansion-panel-header-title[_ngcontent-%COMP%]{color:rgba(0,0,0,.87)}.mat-expansion-indicator[_ngcontent-%COMP%]:after, .mat-expansion-panel-header-description[_ngcontent-%COMP%]{color:rgba(0,0,0,.54)}.mat-expansion-panel-header[aria-disabled=true][_ngcontent-%COMP%]{color:rgba(0,0,0,.26)}.mat-expansion-panel-header[aria-disabled=true][_ngcontent-%COMP%] .mat-expansion-panel-header-description[_ngcontent-%COMP%], .mat-expansion-panel-header[aria-disabled=true][_ngcontent-%COMP%] .mat-expansion-panel-header-title[_ngcontent-%COMP%]{color:inherit}.mat-expansion-panel-header[_ngcontent-%COMP%]{height:48px}.mat-expansion-panel-header.mat-expanded[_ngcontent-%COMP%]{height:64px}.mat-form-field-label[_ngcontent-%COMP%], .mat-hint[_ngcontent-%COMP%]{color:rgba(0,0,0,.6)}.mat-form-field.mat-focused[_ngcontent-%COMP%] .mat-form-field-label[_ngcontent-%COMP%]{color:#3f51b5}.mat-form-field.mat-focused[_ngcontent-%COMP%] .mat-form-field-label.mat-accent[_ngcontent-%COMP%]{color:#ff4081}.mat-form-field.mat-focused[_ngcontent-%COMP%] .mat-form-field-label.mat-warn[_ngcontent-%COMP%]{color:#f44336}.mat-focused[_ngcontent-%COMP%] .mat-form-field-required-marker[_ngcontent-%COMP%]{color:#ff4081}.mat-form-field-ripple[_ngcontent-%COMP%]{background-color:rgba(0,0,0,.87)}.mat-form-field.mat-focused[_ngcontent-%COMP%] .mat-form-field-ripple[_ngcontent-%COMP%]{background-color:#3f51b5}.mat-form-field.mat-focused[_ngcontent-%COMP%] .mat-form-field-ripple.mat-accent[_ngcontent-%COMP%]{background-color:#ff4081}.mat-form-field.mat-focused[_ngcontent-%COMP%] .mat-form-field-ripple.mat-warn[_ngcontent-%COMP%]{background-color:#f44336}.mat-form-field-type-mat-native-select.mat-focused[_ngcontent-%COMP%]:not(.mat-form-field-invalid) .mat-form-field-infix[_ngcontent-%COMP%]:after{color:#3f51b5}.mat-form-field-type-mat-native-select.mat-focused[_ngcontent-%COMP%]:not(.mat-form-field-invalid).mat-accent .mat-form-field-infix[_ngcontent-%COMP%]:after{color:#ff4081}.mat-form-field-type-mat-native-select.mat-focused[_ngcontent-%COMP%]:not(.mat-form-field-invalid).mat-warn .mat-form-field-infix[_ngcontent-%COMP%]:after, .mat-form-field.mat-form-field-invalid[_ngcontent-%COMP%] .mat-form-field-label[_ngcontent-%COMP%], .mat-form-field.mat-form-field-invalid[_ngcontent-%COMP%] .mat-form-field-label.mat-accent[_ngcontent-%COMP%], .mat-form-field.mat-form-field-invalid[_ngcontent-%COMP%] .mat-form-field-label[_ngcontent-%COMP%] .mat-form-field-required-marker[_ngcontent-%COMP%]{color:#f44336}.mat-form-field.mat-form-field-invalid[_ngcontent-%COMP%] .mat-form-field-ripple[_ngcontent-%COMP%], .mat-form-field.mat-form-field-invalid[_ngcontent-%COMP%] .mat-form-field-ripple.mat-accent[_ngcontent-%COMP%]{background-color:#f44336}.mat-error[_ngcontent-%COMP%]{color:#f44336}.mat-form-field-appearance-legacy[_ngcontent-%COMP%] .mat-form-field-label[_ngcontent-%COMP%], .mat-form-field-appearance-legacy[_ngcontent-%COMP%] .mat-hint[_ngcontent-%COMP%]{color:rgba(0,0,0,.54)}.mat-form-field-appearance-legacy[_ngcontent-%COMP%] .mat-form-field-underline[_ngcontent-%COMP%]{background-color:rgba(0,0,0,.42)}.mat-form-field-appearance-legacy.mat-form-field-disabled[_ngcontent-%COMP%] .mat-form-field-underline[_ngcontent-%COMP%]{background-image:linear-gradient(90deg,rgba(0,0,0,.42) 0,rgba(0,0,0,.42) 33%,transparent 0);background-size:4px 100%;background-repeat:repeat-x}.mat-form-field-appearance-standard[_ngcontent-%COMP%] .mat-form-field-underline[_ngcontent-%COMP%]{background-color:rgba(0,0,0,.42)}.mat-form-field-appearance-standard.mat-form-field-disabled[_ngcontent-%COMP%] .mat-form-field-underline[_ngcontent-%COMP%]{background-image:linear-gradient(90deg,rgba(0,0,0,.42) 0,rgba(0,0,0,.42) 33%,transparent 0);background-size:4px 100%;background-repeat:repeat-x}.mat-form-field-appearance-fill[_ngcontent-%COMP%] .mat-form-field-flex[_ngcontent-%COMP%]{background-color:rgba(0,0,0,.04)}.mat-form-field-appearance-fill.mat-form-field-disabled[_ngcontent-%COMP%] .mat-form-field-flex[_ngcontent-%COMP%]{background-color:rgba(0,0,0,.02)}.mat-form-field-appearance-fill[_ngcontent-%COMP%] .mat-form-field-underline[_ngcontent-%COMP%]:before{background-color:rgba(0,0,0,.42)}.mat-form-field-appearance-fill.mat-form-field-disabled[_ngcontent-%COMP%] .mat-form-field-label[_ngcontent-%COMP%]{color:rgba(0,0,0,.38)}.mat-form-field-appearance-fill.mat-form-field-disabled[_ngcontent-%COMP%] .mat-form-field-underline[_ngcontent-%COMP%]:before{background-color:transparent}.mat-form-field-appearance-outline[_ngcontent-%COMP%] .mat-form-field-outline[_ngcontent-%COMP%]{color:rgba(0,0,0,.12)}.mat-form-field-appearance-outline[_ngcontent-%COMP%] .mat-form-field-outline-thick[_ngcontent-%COMP%]{color:rgba(0,0,0,.87)}.mat-form-field-appearance-outline.mat-focused[_ngcontent-%COMP%] .mat-form-field-outline-thick[_ngcontent-%COMP%]{color:#3f51b5}.mat-form-field-appearance-outline.mat-focused.mat-accent[_ngcontent-%COMP%] .mat-form-field-outline-thick[_ngcontent-%COMP%]{color:#ff4081}.mat-form-field-appearance-outline.mat-focused.mat-warn[_ngcontent-%COMP%] .mat-form-field-outline-thick[_ngcontent-%COMP%], .mat-form-field-appearance-outline.mat-form-field-invalid.mat-form-field-invalid[_ngcontent-%COMP%] .mat-form-field-outline-thick[_ngcontent-%COMP%]{color:#f44336}.mat-form-field-appearance-outline.mat-form-field-disabled[_ngcontent-%COMP%] .mat-form-field-label[_ngcontent-%COMP%]{color:rgba(0,0,0,.38)}.mat-form-field-appearance-outline.mat-form-field-disabled[_ngcontent-%COMP%] .mat-form-field-outline[_ngcontent-%COMP%]{color:rgba(0,0,0,.06)}.mat-icon.mat-primary[_ngcontent-%COMP%]{color:#3f51b5}.mat-icon.mat-accent[_ngcontent-%COMP%]{color:#ff4081}.mat-icon.mat-warn[_ngcontent-%COMP%]{color:#f44336}.mat-form-field-type-mat-native-select[_ngcontent-%COMP%] .mat-form-field-infix[_ngcontent-%COMP%]:after{color:rgba(0,0,0,.54)}.mat-form-field-type-mat-native-select.mat-form-field-disabled[_ngcontent-%COMP%] .mat-form-field-infix[_ngcontent-%COMP%]:after, .mat-input-element[_ngcontent-%COMP%]:disabled{color:rgba(0,0,0,.38)}.mat-input-element[_ngcontent-%COMP%]{caret-color:#3f51b5}.mat-input-element[_ngcontent-%COMP%]::placeholder{color:rgba(0,0,0,.42)}.mat-input-element[_ngcontent-%COMP%]::-moz-placeholder{color:rgba(0,0,0,.42)}.mat-input-element[_ngcontent-%COMP%]::-webkit-input-placeholder{color:rgba(0,0,0,.42)}.mat-input-element[_ngcontent-%COMP%]:-ms-input-placeholder{color:rgba(0,0,0,.42)}.mat-form-field.mat-accent[_ngcontent-%COMP%] .mat-input-element[_ngcontent-%COMP%]{caret-color:#ff4081}.mat-form-field-invalid[_ngcontent-%COMP%] .mat-input-element[_ngcontent-%COMP%], .mat-form-field.mat-warn[_ngcontent-%COMP%] .mat-input-element[_ngcontent-%COMP%]{caret-color:#f44336}.mat-form-field-type-mat-native-select.mat-form-field-invalid[_ngcontent-%COMP%] .mat-form-field-infix[_ngcontent-%COMP%]:after{color:#f44336}.mat-list-base[_ngcontent-%COMP%] .mat-list-item[_ngcontent-%COMP%], .mat-list-base[_ngcontent-%COMP%] .mat-list-option[_ngcontent-%COMP%]{color:rgba(0,0,0,.87)}.mat-list-base[_ngcontent-%COMP%] .mat-subheader[_ngcontent-%COMP%]{color:rgba(0,0,0,.54)}.mat-list-item-disabled[_ngcontent-%COMP%]{background-color:#eee}.mat-action-list[_ngcontent-%COMP%] .mat-list-item[_ngcontent-%COMP%]:focus, .mat-action-list[_ngcontent-%COMP%] .mat-list-item[_ngcontent-%COMP%]:hover, .mat-list-option[_ngcontent-%COMP%]:focus, .mat-list-option[_ngcontent-%COMP%]:hover, .mat-nav-list[_ngcontent-%COMP%] .mat-list-item[_ngcontent-%COMP%]:focus, .mat-nav-list[_ngcontent-%COMP%] .mat-list-item[_ngcontent-%COMP%]:hover{background:rgba(0,0,0,.04)}.mat-list-single-selected-option[_ngcontent-%COMP%], .mat-list-single-selected-option[_ngcontent-%COMP%]:focus, .mat-list-single-selected-option[_ngcontent-%COMP%]:hover{background:rgba(0,0,0,.12)}.mat-menu-panel[_ngcontent-%COMP%]{background:#fff}.mat-menu-panel[_ngcontent-%COMP%]:not([class*=mat-elevation-z]){box-shadow:0 2px 4px -1px rgba(0,0,0,.2),0 4px 5px 0 rgba(0,0,0,.14),0 1px 10px 0 rgba(0,0,0,.12)}.mat-menu-item[_ngcontent-%COMP%]{background:transparent;color:rgba(0,0,0,.87)}.mat-menu-item[disabled][_ngcontent-%COMP%], .mat-menu-item[disabled][_ngcontent-%COMP%]:after{color:rgba(0,0,0,.38)}.mat-menu-item-submenu-trigger[_ngcontent-%COMP%]:after, .mat-menu-item[_ngcontent-%COMP%] .mat-icon-no-color[_ngcontent-%COMP%]{color:rgba(0,0,0,.54)}.mat-menu-item-highlighted[_ngcontent-%COMP%]:not([disabled]), .mat-menu-item.cdk-keyboard-focused[_ngcontent-%COMP%]:not([disabled]), .mat-menu-item.cdk-program-focused[_ngcontent-%COMP%]:not([disabled]), .mat-menu-item[_ngcontent-%COMP%]:hover:not([disabled]){background:rgba(0,0,0,.04)}.mat-paginator[_ngcontent-%COMP%]{background:#fff}.mat-paginator[_ngcontent-%COMP%], .mat-paginator-page-size[_ngcontent-%COMP%] .mat-select-trigger[_ngcontent-%COMP%]{color:rgba(0,0,0,.54)}.mat-paginator-decrement[_ngcontent-%COMP%], .mat-paginator-increment[_ngcontent-%COMP%]{border-top:2px solid rgba(0,0,0,.54);border-right:2px solid rgba(0,0,0,.54)}.mat-paginator-first[_ngcontent-%COMP%], .mat-paginator-last[_ngcontent-%COMP%]{border-top:2px solid rgba(0,0,0,.54)}.mat-icon-button[disabled][_ngcontent-%COMP%] .mat-paginator-decrement[_ngcontent-%COMP%], .mat-icon-button[disabled][_ngcontent-%COMP%] .mat-paginator-first[_ngcontent-%COMP%], .mat-icon-button[disabled][_ngcontent-%COMP%] .mat-paginator-increment[_ngcontent-%COMP%], .mat-icon-button[disabled][_ngcontent-%COMP%] .mat-paginator-last[_ngcontent-%COMP%]{border-color:rgba(0,0,0,.38)}.mat-paginator-container[_ngcontent-%COMP%]{min-height:56px}.mat-progress-bar-background[_ngcontent-%COMP%]{fill:#c5cae9}.mat-progress-bar-buffer[_ngcontent-%COMP%]{background-color:#c5cae9}.mat-progress-bar-fill[_ngcontent-%COMP%]:after{background-color:#3f51b5}.mat-progress-bar.mat-accent[_ngcontent-%COMP%] .mat-progress-bar-background[_ngcontent-%COMP%]{fill:#ff80ab}.mat-progress-bar.mat-accent[_ngcontent-%COMP%] .mat-progress-bar-buffer[_ngcontent-%COMP%]{background-color:#ff80ab}.mat-progress-bar.mat-accent[_ngcontent-%COMP%] .mat-progress-bar-fill[_ngcontent-%COMP%]:after{background-color:#ff4081}.mat-progress-bar.mat-warn[_ngcontent-%COMP%] .mat-progress-bar-background[_ngcontent-%COMP%]{fill:#ffcdd2}.mat-progress-bar.mat-warn[_ngcontent-%COMP%] .mat-progress-bar-buffer[_ngcontent-%COMP%]{background-color:#ffcdd2}.mat-progress-bar.mat-warn[_ngcontent-%COMP%] .mat-progress-bar-fill[_ngcontent-%COMP%]:after{background-color:#f44336}.mat-progress-spinner[_ngcontent-%COMP%] circle[_ngcontent-%COMP%], .mat-spinner[_ngcontent-%COMP%] circle[_ngcontent-%COMP%]{stroke:#3f51b5}.mat-progress-spinner.mat-accent[_ngcontent-%COMP%] circle[_ngcontent-%COMP%], .mat-spinner.mat-accent[_ngcontent-%COMP%] circle[_ngcontent-%COMP%]{stroke:#ff4081}.mat-progress-spinner.mat-warn[_ngcontent-%COMP%] circle[_ngcontent-%COMP%], .mat-spinner.mat-warn[_ngcontent-%COMP%] circle[_ngcontent-%COMP%]{stroke:#f44336}.mat-radio-outer-circle[_ngcontent-%COMP%]{border-color:rgba(0,0,0,.54)}.mat-radio-button.mat-primary.mat-radio-checked[_ngcontent-%COMP%] .mat-radio-outer-circle[_ngcontent-%COMP%]{border-color:#3f51b5}.mat-radio-button.mat-primary.mat-radio-checked[_ngcontent-%COMP%] .mat-radio-persistent-ripple[_ngcontent-%COMP%], .mat-radio-button.mat-primary[_ngcontent-%COMP%] .mat-radio-inner-circle[_ngcontent-%COMP%], .mat-radio-button.mat-primary[_ngcontent-%COMP%] .mat-radio-ripple[_ngcontent-%COMP%] .mat-ripple-element[_ngcontent-%COMP%]:not(.mat-radio-persistent-ripple), .mat-radio-button.mat-primary[_ngcontent-%COMP%]:active .mat-radio-persistent-ripple[_ngcontent-%COMP%]{background-color:#3f51b5}.mat-radio-button.mat-accent.mat-radio-checked[_ngcontent-%COMP%] .mat-radio-outer-circle[_ngcontent-%COMP%]{border-color:#ff4081}.mat-radio-button.mat-accent.mat-radio-checked[_ngcontent-%COMP%] .mat-radio-persistent-ripple[_ngcontent-%COMP%], .mat-radio-button.mat-accent[_ngcontent-%COMP%] .mat-radio-inner-circle[_ngcontent-%COMP%], .mat-radio-button.mat-accent[_ngcontent-%COMP%] .mat-radio-ripple[_ngcontent-%COMP%] .mat-ripple-element[_ngcontent-%COMP%]:not(.mat-radio-persistent-ripple), .mat-radio-button.mat-accent[_ngcontent-%COMP%]:active .mat-radio-persistent-ripple[_ngcontent-%COMP%]{background-color:#ff4081}.mat-radio-button.mat-warn.mat-radio-checked[_ngcontent-%COMP%] .mat-radio-outer-circle[_ngcontent-%COMP%]{border-color:#f44336}.mat-radio-button.mat-warn.mat-radio-checked[_ngcontent-%COMP%] .mat-radio-persistent-ripple[_ngcontent-%COMP%], .mat-radio-button.mat-warn[_ngcontent-%COMP%] .mat-radio-inner-circle[_ngcontent-%COMP%], .mat-radio-button.mat-warn[_ngcontent-%COMP%] .mat-radio-ripple[_ngcontent-%COMP%] .mat-ripple-element[_ngcontent-%COMP%]:not(.mat-radio-persistent-ripple), .mat-radio-button.mat-warn[_ngcontent-%COMP%]:active .mat-radio-persistent-ripple[_ngcontent-%COMP%]{background-color:#f44336}.mat-radio-button.mat-radio-disabled.mat-radio-checked[_ngcontent-%COMP%] .mat-radio-outer-circle[_ngcontent-%COMP%], .mat-radio-button.mat-radio-disabled[_ngcontent-%COMP%] .mat-radio-outer-circle[_ngcontent-%COMP%]{border-color:rgba(0,0,0,.38)}.mat-radio-button.mat-radio-disabled[_ngcontent-%COMP%] .mat-radio-inner-circle[_ngcontent-%COMP%], .mat-radio-button.mat-radio-disabled[_ngcontent-%COMP%] .mat-radio-ripple[_ngcontent-%COMP%] .mat-ripple-element[_ngcontent-%COMP%]{background-color:rgba(0,0,0,.38)}.mat-radio-button.mat-radio-disabled[_ngcontent-%COMP%] .mat-radio-label-content[_ngcontent-%COMP%]{color:rgba(0,0,0,.38)}.mat-radio-button[_ngcontent-%COMP%] .mat-ripple-element[_ngcontent-%COMP%]{background-color:#000}.mat-select-value[_ngcontent-%COMP%]{color:rgba(0,0,0,.87)}.mat-select-placeholder[_ngcontent-%COMP%]{color:rgba(0,0,0,.42)}.mat-select-disabled[_ngcontent-%COMP%] .mat-select-value[_ngcontent-%COMP%]{color:rgba(0,0,0,.38)}.mat-select-arrow[_ngcontent-%COMP%]{color:rgba(0,0,0,.54)}.mat-select-panel[_ngcontent-%COMP%]{background:#fff}.mat-select-panel[_ngcontent-%COMP%]:not([class*=mat-elevation-z]){box-shadow:0 2px 4px -1px rgba(0,0,0,.2),0 4px 5px 0 rgba(0,0,0,.14),0 1px 10px 0 rgba(0,0,0,.12)}.mat-select-panel[_ngcontent-%COMP%] .mat-option.mat-selected[_ngcontent-%COMP%]:not(.mat-option-multiple){background:rgba(0,0,0,.12)}.mat-form-field.mat-focused.mat-primary[_ngcontent-%COMP%] .mat-select-arrow[_ngcontent-%COMP%]{color:#3f51b5}.mat-form-field.mat-focused.mat-accent[_ngcontent-%COMP%] .mat-select-arrow[_ngcontent-%COMP%]{color:#ff4081}.mat-form-field.mat-focused.mat-warn[_ngcontent-%COMP%] .mat-select-arrow[_ngcontent-%COMP%], .mat-form-field[_ngcontent-%COMP%] .mat-select.mat-select-invalid[_ngcontent-%COMP%] .mat-select-arrow[_ngcontent-%COMP%]{color:#f44336}.mat-form-field[_ngcontent-%COMP%] .mat-select.mat-select-disabled[_ngcontent-%COMP%] .mat-select-arrow[_ngcontent-%COMP%]{color:rgba(0,0,0,.38)}.mat-drawer-container[_ngcontent-%COMP%]{background-color:#fafafa;color:rgba(0,0,0,.87)}.mat-drawer[_ngcontent-%COMP%]{color:rgba(0,0,0,.87)}.mat-drawer[_ngcontent-%COMP%], .mat-drawer.mat-drawer-push[_ngcontent-%COMP%]{background-color:#fff}.mat-drawer[_ngcontent-%COMP%]:not(.mat-drawer-side){box-shadow:0 8px 10px -5px rgba(0,0,0,.2),0 16px 24px 2px rgba(0,0,0,.14),0 6px 30px 5px rgba(0,0,0,.12)}.mat-drawer-side[_ngcontent-%COMP%]{border-right:1px solid rgba(0,0,0,.12)}.mat-drawer-side.mat-drawer-end[_ngcontent-%COMP%], [dir=rtl][_ngcontent-%COMP%] .mat-drawer-side[_ngcontent-%COMP%]{border-left:1px solid rgba(0,0,0,.12);border-right:none}[dir=rtl][_ngcontent-%COMP%] .mat-drawer-side.mat-drawer-end[_ngcontent-%COMP%]{border-left:none;border-right:1px solid rgba(0,0,0,.12)}.mat-drawer-backdrop.mat-drawer-shown[_ngcontent-%COMP%]{background-color:rgba(0,0,0,.6)}.mat-slide-toggle.mat-checked[_ngcontent-%COMP%] .mat-slide-toggle-thumb[_ngcontent-%COMP%]{background-color:#ff4081}.mat-slide-toggle.mat-checked[_ngcontent-%COMP%] .mat-slide-toggle-bar[_ngcontent-%COMP%]{background-color:rgba(255,64,129,.54)}.mat-slide-toggle.mat-checked[_ngcontent-%COMP%] .mat-ripple-element[_ngcontent-%COMP%]{background-color:#ff4081}.mat-slide-toggle.mat-primary.mat-checked[_ngcontent-%COMP%] .mat-slide-toggle-thumb[_ngcontent-%COMP%]{background-color:#3f51b5}.mat-slide-toggle.mat-primary.mat-checked[_ngcontent-%COMP%] .mat-slide-toggle-bar[_ngcontent-%COMP%]{background-color:rgba(63,81,181,.54)}.mat-slide-toggle.mat-primary.mat-checked[_ngcontent-%COMP%] .mat-ripple-element[_ngcontent-%COMP%]{background-color:#3f51b5}.mat-slide-toggle.mat-warn.mat-checked[_ngcontent-%COMP%] .mat-slide-toggle-thumb[_ngcontent-%COMP%]{background-color:#f44336}.mat-slide-toggle.mat-warn.mat-checked[_ngcontent-%COMP%] .mat-slide-toggle-bar[_ngcontent-%COMP%]{background-color:rgba(244,67,54,.54)}.mat-slide-toggle.mat-warn.mat-checked[_ngcontent-%COMP%] .mat-ripple-element[_ngcontent-%COMP%]{background-color:#f44336}.mat-slide-toggle[_ngcontent-%COMP%]:not(.mat-checked) .mat-ripple-element[_ngcontent-%COMP%]{background-color:#000}.mat-slide-toggle-thumb[_ngcontent-%COMP%]{box-shadow:0 2px 1px -1px rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 1px 3px 0 rgba(0,0,0,.12);background-color:#fafafa}.mat-slide-toggle-bar[_ngcontent-%COMP%]{background-color:rgba(0,0,0,.38)}.mat-slider-track-background[_ngcontent-%COMP%]{background-color:rgba(0,0,0,.26)}.mat-primary[_ngcontent-%COMP%] .mat-slider-thumb[_ngcontent-%COMP%], .mat-primary[_ngcontent-%COMP%] .mat-slider-thumb-label[_ngcontent-%COMP%], .mat-primary[_ngcontent-%COMP%] .mat-slider-track-fill[_ngcontent-%COMP%]{background-color:#3f51b5}.mat-primary[_ngcontent-%COMP%] .mat-slider-thumb-label-text[_ngcontent-%COMP%]{color:#fff}.mat-primary[_ngcontent-%COMP%] .mat-slider-focus-ring[_ngcontent-%COMP%]{background-color:rgba(63,81,181,.2)}.mat-accent[_ngcontent-%COMP%] .mat-slider-thumb[_ngcontent-%COMP%], .mat-accent[_ngcontent-%COMP%] .mat-slider-thumb-label[_ngcontent-%COMP%], .mat-accent[_ngcontent-%COMP%] .mat-slider-track-fill[_ngcontent-%COMP%]{background-color:#ff4081}.mat-accent[_ngcontent-%COMP%] .mat-slider-thumb-label-text[_ngcontent-%COMP%]{color:#fff}.mat-accent[_ngcontent-%COMP%] .mat-slider-focus-ring[_ngcontent-%COMP%]{background-color:rgba(255,64,129,.2)}.mat-warn[_ngcontent-%COMP%] .mat-slider-thumb[_ngcontent-%COMP%], .mat-warn[_ngcontent-%COMP%] .mat-slider-thumb-label[_ngcontent-%COMP%], .mat-warn[_ngcontent-%COMP%] .mat-slider-track-fill[_ngcontent-%COMP%]{background-color:#f44336}.mat-warn[_ngcontent-%COMP%] .mat-slider-thumb-label-text[_ngcontent-%COMP%]{color:#fff}.mat-warn[_ngcontent-%COMP%] .mat-slider-focus-ring[_ngcontent-%COMP%]{background-color:rgba(244,67,54,.2)}.cdk-focused[_ngcontent-%COMP%] .mat-slider-track-background[_ngcontent-%COMP%], .mat-slider[_ngcontent-%COMP%]:hover .mat-slider-track-background[_ngcontent-%COMP%]{background-color:rgba(0,0,0,.38)}.mat-slider-disabled[_ngcontent-%COMP%] .mat-slider-thumb[_ngcontent-%COMP%], .mat-slider-disabled[_ngcontent-%COMP%] .mat-slider-track-background[_ngcontent-%COMP%], .mat-slider-disabled[_ngcontent-%COMP%] .mat-slider-track-fill[_ngcontent-%COMP%], .mat-slider-disabled[_ngcontent-%COMP%]:hover .mat-slider-track-background[_ngcontent-%COMP%]{background-color:rgba(0,0,0,.26)}.mat-slider-min-value[_ngcontent-%COMP%] .mat-slider-focus-ring[_ngcontent-%COMP%]{background-color:rgba(0,0,0,.12)}.mat-slider-min-value.mat-slider-thumb-label-showing[_ngcontent-%COMP%] .mat-slider-thumb[_ngcontent-%COMP%], .mat-slider-min-value.mat-slider-thumb-label-showing[_ngcontent-%COMP%] .mat-slider-thumb-label[_ngcontent-%COMP%]{background-color:rgba(0,0,0,.87)}.mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused[_ngcontent-%COMP%] .mat-slider-thumb[_ngcontent-%COMP%], .mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused[_ngcontent-%COMP%] .mat-slider-thumb-label[_ngcontent-%COMP%]{background-color:rgba(0,0,0,.26)}.mat-slider-min-value[_ngcontent-%COMP%]:not(.mat-slider-thumb-label-showing) .mat-slider-thumb[_ngcontent-%COMP%]{border-color:rgba(0,0,0,.26);background-color:transparent}.mat-slider-min-value[_ngcontent-%COMP%]:not(.mat-slider-thumb-label-showing).cdk-focused .mat-slider-thumb[_ngcontent-%COMP%], .mat-slider-min-value[_ngcontent-%COMP%]:not(.mat-slider-thumb-label-showing):hover .mat-slider-thumb[_ngcontent-%COMP%]{border-color:rgba(0,0,0,.38)}.mat-slider-min-value[_ngcontent-%COMP%]:not(.mat-slider-thumb-label-showing).cdk-focused.mat-slider-disabled .mat-slider-thumb[_ngcontent-%COMP%], .mat-slider-min-value[_ngcontent-%COMP%]:not(.mat-slider-thumb-label-showing):hover.mat-slider-disabled .mat-slider-thumb[_ngcontent-%COMP%]{border-color:rgba(0,0,0,.26)}.mat-slider-has-ticks[_ngcontent-%COMP%] .mat-slider-wrapper[_ngcontent-%COMP%]:after{border-color:rgba(0,0,0,.7)}.mat-slider-horizontal[_ngcontent-%COMP%] .mat-slider-ticks[_ngcontent-%COMP%]{background-image:repeating-linear-gradient(90deg,rgba(0,0,0,.7),rgba(0,0,0,.7) 2px,transparent 0,transparent);background-image:-moz-repeating-linear-gradient(.0001deg,rgba(0,0,0,.7),rgba(0,0,0,.7) 2px,transparent 0,transparent)}.mat-slider-vertical[_ngcontent-%COMP%] .mat-slider-ticks[_ngcontent-%COMP%]{background-image:repeating-linear-gradient(180deg,rgba(0,0,0,.7),rgba(0,0,0,.7) 2px,transparent 0,transparent)}.mat-step-header.cdk-keyboard-focused[_ngcontent-%COMP%], .mat-step-header.cdk-program-focused[_ngcontent-%COMP%], .mat-step-header[_ngcontent-%COMP%]:hover{background-color:rgba(0,0,0,.04)}@media(hover:none){.mat-step-header[_ngcontent-%COMP%]:hover{background:none}}.mat-step-header[_ngcontent-%COMP%] .mat-step-label[_ngcontent-%COMP%], .mat-step-header[_ngcontent-%COMP%] .mat-step-optional[_ngcontent-%COMP%]{color:rgba(0,0,0,.54)}.mat-step-header[_ngcontent-%COMP%] .mat-step-icon[_ngcontent-%COMP%]{background-color:rgba(0,0,0,.54);color:#fff}.mat-step-header[_ngcontent-%COMP%] .mat-step-icon-selected[_ngcontent-%COMP%], .mat-step-header[_ngcontent-%COMP%] .mat-step-icon-state-done[_ngcontent-%COMP%], .mat-step-header[_ngcontent-%COMP%] .mat-step-icon-state-edit[_ngcontent-%COMP%]{background-color:#3f51b5;color:#fff}.mat-step-header[_ngcontent-%COMP%] .mat-step-icon-state-error[_ngcontent-%COMP%]{background-color:transparent;color:#f44336}.mat-step-header[_ngcontent-%COMP%] .mat-step-label.mat-step-label-active[_ngcontent-%COMP%]{color:rgba(0,0,0,.87)}.mat-step-header[_ngcontent-%COMP%] .mat-step-label.mat-step-label-error[_ngcontent-%COMP%]{color:#f44336}.mat-stepper-horizontal[_ngcontent-%COMP%], .mat-stepper-vertical[_ngcontent-%COMP%]{background-color:#fff}.mat-stepper-vertical-line[_ngcontent-%COMP%]:before{border-left-color:rgba(0,0,0,.12)}.mat-horizontal-stepper-header[_ngcontent-%COMP%]:after, .mat-horizontal-stepper-header[_ngcontent-%COMP%]:before, .mat-stepper-horizontal-line[_ngcontent-%COMP%]{border-top-color:rgba(0,0,0,.12)}.mat-horizontal-stepper-header[_ngcontent-%COMP%]{height:72px}.mat-stepper-label-position-bottom[_ngcontent-%COMP%] .mat-horizontal-stepper-header[_ngcontent-%COMP%], .mat-vertical-stepper-header[_ngcontent-%COMP%]{padding:24px}.mat-stepper-vertical-line[_ngcontent-%COMP%]:before{top:-16px;bottom:-16px}.mat-stepper-label-position-bottom[_ngcontent-%COMP%] .mat-horizontal-stepper-header[_ngcontent-%COMP%]:after, .mat-stepper-label-position-bottom[_ngcontent-%COMP%] .mat-horizontal-stepper-header[_ngcontent-%COMP%]:before, .mat-stepper-label-position-bottom[_ngcontent-%COMP%] .mat-stepper-horizontal-line[_ngcontent-%COMP%]{top:36px}.mat-sort-header-arrow[_ngcontent-%COMP%]{color:#757575}.mat-tab-header[_ngcontent-%COMP%], .mat-tab-nav-bar[_ngcontent-%COMP%]{border-bottom:1px solid rgba(0,0,0,.12)}.mat-tab-group-inverted-header[_ngcontent-%COMP%] .mat-tab-header[_ngcontent-%COMP%], .mat-tab-group-inverted-header[_ngcontent-%COMP%] .mat-tab-nav-bar[_ngcontent-%COMP%]{border-top:1px solid rgba(0,0,0,.12);border-bottom:none}.mat-tab-label[_ngcontent-%COMP%], .mat-tab-link[_ngcontent-%COMP%]{color:rgba(0,0,0,.87)}.mat-tab-label.mat-tab-disabled[_ngcontent-%COMP%], .mat-tab-link.mat-tab-disabled[_ngcontent-%COMP%]{color:rgba(0,0,0,.38)}.mat-tab-header-pagination-chevron[_ngcontent-%COMP%]{border-color:rgba(0,0,0,.87)}.mat-tab-header-pagination-disabled[_ngcontent-%COMP%] .mat-tab-header-pagination-chevron[_ngcontent-%COMP%]{border-color:rgba(0,0,0,.38)}.mat-tab-group[class*=mat-background-][_ngcontent-%COMP%] .mat-tab-header[_ngcontent-%COMP%], .mat-tab-nav-bar[class*=mat-background-][_ngcontent-%COMP%]{border-bottom:none;border-top:none}.mat-tab-group.mat-primary[_ngcontent-%COMP%] .mat-tab-label.cdk-keyboard-focused[_ngcontent-%COMP%]:not(.mat-tab-disabled), .mat-tab-group.mat-primary[_ngcontent-%COMP%] .mat-tab-label.cdk-program-focused[_ngcontent-%COMP%]:not(.mat-tab-disabled), .mat-tab-group.mat-primary[_ngcontent-%COMP%] .mat-tab-link.cdk-keyboard-focused[_ngcontent-%COMP%]:not(.mat-tab-disabled), .mat-tab-group.mat-primary[_ngcontent-%COMP%] .mat-tab-link.cdk-program-focused[_ngcontent-%COMP%]:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-primary[_ngcontent-%COMP%] .mat-tab-label.cdk-keyboard-focused[_ngcontent-%COMP%]:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-primary[_ngcontent-%COMP%] .mat-tab-label.cdk-program-focused[_ngcontent-%COMP%]:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-primary[_ngcontent-%COMP%] .mat-tab-link.cdk-keyboard-focused[_ngcontent-%COMP%]:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-primary[_ngcontent-%COMP%] .mat-tab-link.cdk-program-focused[_ngcontent-%COMP%]:not(.mat-tab-disabled){background-color:rgba(197,202,233,.3)}.mat-tab-group.mat-primary[_ngcontent-%COMP%] .mat-ink-bar[_ngcontent-%COMP%], .mat-tab-nav-bar.mat-primary[_ngcontent-%COMP%] .mat-ink-bar[_ngcontent-%COMP%]{background-color:#3f51b5}.mat-tab-group.mat-primary.mat-background-primary[_ngcontent-%COMP%] .mat-ink-bar[_ngcontent-%COMP%], .mat-tab-nav-bar.mat-primary.mat-background-primary[_ngcontent-%COMP%] .mat-ink-bar[_ngcontent-%COMP%]{background-color:#fff}.mat-tab-group.mat-accent[_ngcontent-%COMP%] .mat-tab-label.cdk-keyboard-focused[_ngcontent-%COMP%]:not(.mat-tab-disabled), .mat-tab-group.mat-accent[_ngcontent-%COMP%] .mat-tab-label.cdk-program-focused[_ngcontent-%COMP%]:not(.mat-tab-disabled), .mat-tab-group.mat-accent[_ngcontent-%COMP%] .mat-tab-link.cdk-keyboard-focused[_ngcontent-%COMP%]:not(.mat-tab-disabled), .mat-tab-group.mat-accent[_ngcontent-%COMP%] .mat-tab-link.cdk-program-focused[_ngcontent-%COMP%]:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-accent[_ngcontent-%COMP%] .mat-tab-label.cdk-keyboard-focused[_ngcontent-%COMP%]:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-accent[_ngcontent-%COMP%] .mat-tab-label.cdk-program-focused[_ngcontent-%COMP%]:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-accent[_ngcontent-%COMP%] .mat-tab-link.cdk-keyboard-focused[_ngcontent-%COMP%]:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-accent[_ngcontent-%COMP%] .mat-tab-link.cdk-program-focused[_ngcontent-%COMP%]:not(.mat-tab-disabled){background-color:rgba(255,128,171,.3)}.mat-tab-group.mat-accent[_ngcontent-%COMP%] .mat-ink-bar[_ngcontent-%COMP%], .mat-tab-nav-bar.mat-accent[_ngcontent-%COMP%] .mat-ink-bar[_ngcontent-%COMP%]{background-color:#ff4081}.mat-tab-group.mat-accent.mat-background-accent[_ngcontent-%COMP%] .mat-ink-bar[_ngcontent-%COMP%], .mat-tab-nav-bar.mat-accent.mat-background-accent[_ngcontent-%COMP%] .mat-ink-bar[_ngcontent-%COMP%]{background-color:#fff}.mat-tab-group.mat-warn[_ngcontent-%COMP%] .mat-tab-label.cdk-keyboard-focused[_ngcontent-%COMP%]:not(.mat-tab-disabled), .mat-tab-group.mat-warn[_ngcontent-%COMP%] .mat-tab-label.cdk-program-focused[_ngcontent-%COMP%]:not(.mat-tab-disabled), .mat-tab-group.mat-warn[_ngcontent-%COMP%] .mat-tab-link.cdk-keyboard-focused[_ngcontent-%COMP%]:not(.mat-tab-disabled), .mat-tab-group.mat-warn[_ngcontent-%COMP%] .mat-tab-link.cdk-program-focused[_ngcontent-%COMP%]:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-warn[_ngcontent-%COMP%] .mat-tab-label.cdk-keyboard-focused[_ngcontent-%COMP%]:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-warn[_ngcontent-%COMP%] .mat-tab-label.cdk-program-focused[_ngcontent-%COMP%]:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-warn[_ngcontent-%COMP%] .mat-tab-link.cdk-keyboard-focused[_ngcontent-%COMP%]:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-warn[_ngcontent-%COMP%] .mat-tab-link.cdk-program-focused[_ngcontent-%COMP%]:not(.mat-tab-disabled){background-color:rgba(255,205,210,.3)}.mat-tab-group.mat-warn[_ngcontent-%COMP%] .mat-ink-bar[_ngcontent-%COMP%], .mat-tab-nav-bar.mat-warn[_ngcontent-%COMP%] .mat-ink-bar[_ngcontent-%COMP%]{background-color:#f44336}.mat-tab-group.mat-warn.mat-background-warn[_ngcontent-%COMP%] .mat-ink-bar[_ngcontent-%COMP%], .mat-tab-nav-bar.mat-warn.mat-background-warn[_ngcontent-%COMP%] .mat-ink-bar[_ngcontent-%COMP%]{background-color:#fff}.mat-tab-group.mat-background-primary[_ngcontent-%COMP%] .mat-tab-label.cdk-keyboard-focused[_ngcontent-%COMP%]:not(.mat-tab-disabled), .mat-tab-group.mat-background-primary[_ngcontent-%COMP%] .mat-tab-label.cdk-program-focused[_ngcontent-%COMP%]:not(.mat-tab-disabled), .mat-tab-group.mat-background-primary[_ngcontent-%COMP%] .mat-tab-link.cdk-keyboard-focused[_ngcontent-%COMP%]:not(.mat-tab-disabled), .mat-tab-group.mat-background-primary[_ngcontent-%COMP%] .mat-tab-link.cdk-program-focused[_ngcontent-%COMP%]:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-background-primary[_ngcontent-%COMP%] .mat-tab-label.cdk-keyboard-focused[_ngcontent-%COMP%]:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-background-primary[_ngcontent-%COMP%] .mat-tab-label.cdk-program-focused[_ngcontent-%COMP%]:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-background-primary[_ngcontent-%COMP%] .mat-tab-link.cdk-keyboard-focused[_ngcontent-%COMP%]:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-background-primary[_ngcontent-%COMP%] .mat-tab-link.cdk-program-focused[_ngcontent-%COMP%]:not(.mat-tab-disabled){background-color:rgba(197,202,233,.3)}.mat-tab-group.mat-background-primary[_ngcontent-%COMP%] .mat-tab-header[_ngcontent-%COMP%], .mat-tab-group.mat-background-primary[_ngcontent-%COMP%] .mat-tab-header-pagination[_ngcontent-%COMP%], .mat-tab-group.mat-background-primary[_ngcontent-%COMP%] .mat-tab-links[_ngcontent-%COMP%], .mat-tab-nav-bar.mat-background-primary[_ngcontent-%COMP%] .mat-tab-header[_ngcontent-%COMP%], .mat-tab-nav-bar.mat-background-primary[_ngcontent-%COMP%] .mat-tab-header-pagination[_ngcontent-%COMP%], .mat-tab-nav-bar.mat-background-primary[_ngcontent-%COMP%] .mat-tab-links[_ngcontent-%COMP%]{background-color:#3f51b5}.mat-tab-group.mat-background-primary[_ngcontent-%COMP%] .mat-tab-label[_ngcontent-%COMP%], .mat-tab-group.mat-background-primary[_ngcontent-%COMP%] .mat-tab-link[_ngcontent-%COMP%], .mat-tab-nav-bar.mat-background-primary[_ngcontent-%COMP%] .mat-tab-label[_ngcontent-%COMP%], .mat-tab-nav-bar.mat-background-primary[_ngcontent-%COMP%] .mat-tab-link[_ngcontent-%COMP%]{color:#fff}.mat-tab-group.mat-background-primary[_ngcontent-%COMP%] .mat-tab-label.mat-tab-disabled[_ngcontent-%COMP%], .mat-tab-group.mat-background-primary[_ngcontent-%COMP%] .mat-tab-link.mat-tab-disabled[_ngcontent-%COMP%], .mat-tab-nav-bar.mat-background-primary[_ngcontent-%COMP%] .mat-tab-label.mat-tab-disabled[_ngcontent-%COMP%], .mat-tab-nav-bar.mat-background-primary[_ngcontent-%COMP%] .mat-tab-link.mat-tab-disabled[_ngcontent-%COMP%]{color:hsla(0,0%,100%,.4)}.mat-tab-group.mat-background-primary[_ngcontent-%COMP%] .mat-tab-header-pagination-chevron[_ngcontent-%COMP%], .mat-tab-nav-bar.mat-background-primary[_ngcontent-%COMP%] .mat-tab-header-pagination-chevron[_ngcontent-%COMP%]{border-color:#fff}.mat-tab-group.mat-background-primary[_ngcontent-%COMP%] .mat-tab-header-pagination-disabled[_ngcontent-%COMP%] .mat-tab-header-pagination-chevron[_ngcontent-%COMP%], .mat-tab-nav-bar.mat-background-primary[_ngcontent-%COMP%] .mat-tab-header-pagination-disabled[_ngcontent-%COMP%] .mat-tab-header-pagination-chevron[_ngcontent-%COMP%]{border-color:hsla(0,0%,100%,.4)}.mat-tab-group.mat-background-primary[_ngcontent-%COMP%] .mat-ripple-element[_ngcontent-%COMP%], .mat-tab-nav-bar.mat-background-primary[_ngcontent-%COMP%] .mat-ripple-element[_ngcontent-%COMP%]{background-color:hsla(0,0%,100%,.12)}.mat-tab-group.mat-background-accent[_ngcontent-%COMP%] .mat-tab-label.cdk-keyboard-focused[_ngcontent-%COMP%]:not(.mat-tab-disabled), .mat-tab-group.mat-background-accent[_ngcontent-%COMP%] .mat-tab-label.cdk-program-focused[_ngcontent-%COMP%]:not(.mat-tab-disabled), .mat-tab-group.mat-background-accent[_ngcontent-%COMP%] .mat-tab-link.cdk-keyboard-focused[_ngcontent-%COMP%]:not(.mat-tab-disabled), .mat-tab-group.mat-background-accent[_ngcontent-%COMP%] .mat-tab-link.cdk-program-focused[_ngcontent-%COMP%]:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-background-accent[_ngcontent-%COMP%] .mat-tab-label.cdk-keyboard-focused[_ngcontent-%COMP%]:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-background-accent[_ngcontent-%COMP%] .mat-tab-label.cdk-program-focused[_ngcontent-%COMP%]:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-background-accent[_ngcontent-%COMP%] .mat-tab-link.cdk-keyboard-focused[_ngcontent-%COMP%]:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-background-accent[_ngcontent-%COMP%] .mat-tab-link.cdk-program-focused[_ngcontent-%COMP%]:not(.mat-tab-disabled){background-color:rgba(255,128,171,.3)}.mat-tab-group.mat-background-accent[_ngcontent-%COMP%] .mat-tab-header[_ngcontent-%COMP%], .mat-tab-group.mat-background-accent[_ngcontent-%COMP%] .mat-tab-header-pagination[_ngcontent-%COMP%], .mat-tab-group.mat-background-accent[_ngcontent-%COMP%] .mat-tab-links[_ngcontent-%COMP%], .mat-tab-nav-bar.mat-background-accent[_ngcontent-%COMP%] .mat-tab-header[_ngcontent-%COMP%], .mat-tab-nav-bar.mat-background-accent[_ngcontent-%COMP%] .mat-tab-header-pagination[_ngcontent-%COMP%], .mat-tab-nav-bar.mat-background-accent[_ngcontent-%COMP%] .mat-tab-links[_ngcontent-%COMP%]{background-color:#ff4081}.mat-tab-group.mat-background-accent[_ngcontent-%COMP%] .mat-tab-label[_ngcontent-%COMP%], .mat-tab-group.mat-background-accent[_ngcontent-%COMP%] .mat-tab-link[_ngcontent-%COMP%], .mat-tab-nav-bar.mat-background-accent[_ngcontent-%COMP%] .mat-tab-label[_ngcontent-%COMP%], .mat-tab-nav-bar.mat-background-accent[_ngcontent-%COMP%] .mat-tab-link[_ngcontent-%COMP%]{color:#fff}.mat-tab-group.mat-background-accent[_ngcontent-%COMP%] .mat-tab-label.mat-tab-disabled[_ngcontent-%COMP%], .mat-tab-group.mat-background-accent[_ngcontent-%COMP%] .mat-tab-link.mat-tab-disabled[_ngcontent-%COMP%], .mat-tab-nav-bar.mat-background-accent[_ngcontent-%COMP%] .mat-tab-label.mat-tab-disabled[_ngcontent-%COMP%], .mat-tab-nav-bar.mat-background-accent[_ngcontent-%COMP%] .mat-tab-link.mat-tab-disabled[_ngcontent-%COMP%]{color:hsla(0,0%,100%,.4)}.mat-tab-group.mat-background-accent[_ngcontent-%COMP%] .mat-tab-header-pagination-chevron[_ngcontent-%COMP%], .mat-tab-nav-bar.mat-background-accent[_ngcontent-%COMP%] .mat-tab-header-pagination-chevron[_ngcontent-%COMP%]{border-color:#fff}.mat-tab-group.mat-background-accent[_ngcontent-%COMP%] .mat-tab-header-pagination-disabled[_ngcontent-%COMP%] .mat-tab-header-pagination-chevron[_ngcontent-%COMP%], .mat-tab-nav-bar.mat-background-accent[_ngcontent-%COMP%] .mat-tab-header-pagination-disabled[_ngcontent-%COMP%] .mat-tab-header-pagination-chevron[_ngcontent-%COMP%]{border-color:hsla(0,0%,100%,.4)}.mat-tab-group.mat-background-accent[_ngcontent-%COMP%] .mat-ripple-element[_ngcontent-%COMP%], .mat-tab-nav-bar.mat-background-accent[_ngcontent-%COMP%] .mat-ripple-element[_ngcontent-%COMP%]{background-color:hsla(0,0%,100%,.12)}.mat-tab-group.mat-background-warn[_ngcontent-%COMP%] .mat-tab-label.cdk-keyboard-focused[_ngcontent-%COMP%]:not(.mat-tab-disabled), .mat-tab-group.mat-background-warn[_ngcontent-%COMP%] .mat-tab-label.cdk-program-focused[_ngcontent-%COMP%]:not(.mat-tab-disabled), .mat-tab-group.mat-background-warn[_ngcontent-%COMP%] .mat-tab-link.cdk-keyboard-focused[_ngcontent-%COMP%]:not(.mat-tab-disabled), .mat-tab-group.mat-background-warn[_ngcontent-%COMP%] .mat-tab-link.cdk-program-focused[_ngcontent-%COMP%]:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-background-warn[_ngcontent-%COMP%] .mat-tab-label.cdk-keyboard-focused[_ngcontent-%COMP%]:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-background-warn[_ngcontent-%COMP%] .mat-tab-label.cdk-program-focused[_ngcontent-%COMP%]:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-background-warn[_ngcontent-%COMP%] .mat-tab-link.cdk-keyboard-focused[_ngcontent-%COMP%]:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-background-warn[_ngcontent-%COMP%] .mat-tab-link.cdk-program-focused[_ngcontent-%COMP%]:not(.mat-tab-disabled){background-color:rgba(255,205,210,.3)}.mat-tab-group.mat-background-warn[_ngcontent-%COMP%] .mat-tab-header[_ngcontent-%COMP%], .mat-tab-group.mat-background-warn[_ngcontent-%COMP%] .mat-tab-header-pagination[_ngcontent-%COMP%], .mat-tab-group.mat-background-warn[_ngcontent-%COMP%] .mat-tab-links[_ngcontent-%COMP%], .mat-tab-nav-bar.mat-background-warn[_ngcontent-%COMP%] .mat-tab-header[_ngcontent-%COMP%], .mat-tab-nav-bar.mat-background-warn[_ngcontent-%COMP%] .mat-tab-header-pagination[_ngcontent-%COMP%], .mat-tab-nav-bar.mat-background-warn[_ngcontent-%COMP%] .mat-tab-links[_ngcontent-%COMP%]{background-color:#f44336}.mat-tab-group.mat-background-warn[_ngcontent-%COMP%] .mat-tab-label[_ngcontent-%COMP%], .mat-tab-group.mat-background-warn[_ngcontent-%COMP%] .mat-tab-link[_ngcontent-%COMP%], .mat-tab-nav-bar.mat-background-warn[_ngcontent-%COMP%] .mat-tab-label[_ngcontent-%COMP%], .mat-tab-nav-bar.mat-background-warn[_ngcontent-%COMP%] .mat-tab-link[_ngcontent-%COMP%]{color:#fff}.mat-tab-group.mat-background-warn[_ngcontent-%COMP%] .mat-tab-label.mat-tab-disabled[_ngcontent-%COMP%], .mat-tab-group.mat-background-warn[_ngcontent-%COMP%] .mat-tab-link.mat-tab-disabled[_ngcontent-%COMP%], .mat-tab-nav-bar.mat-background-warn[_ngcontent-%COMP%] .mat-tab-label.mat-tab-disabled[_ngcontent-%COMP%], .mat-tab-nav-bar.mat-background-warn[_ngcontent-%COMP%] .mat-tab-link.mat-tab-disabled[_ngcontent-%COMP%]{color:hsla(0,0%,100%,.4)}.mat-tab-group.mat-background-warn[_ngcontent-%COMP%] .mat-tab-header-pagination-chevron[_ngcontent-%COMP%], .mat-tab-nav-bar.mat-background-warn[_ngcontent-%COMP%] .mat-tab-header-pagination-chevron[_ngcontent-%COMP%]{border-color:#fff}.mat-tab-group.mat-background-warn[_ngcontent-%COMP%] .mat-tab-header-pagination-disabled[_ngcontent-%COMP%] .mat-tab-header-pagination-chevron[_ngcontent-%COMP%], .mat-tab-nav-bar.mat-background-warn[_ngcontent-%COMP%] .mat-tab-header-pagination-disabled[_ngcontent-%COMP%] .mat-tab-header-pagination-chevron[_ngcontent-%COMP%]{border-color:hsla(0,0%,100%,.4)}.mat-tab-group.mat-background-warn[_ngcontent-%COMP%] .mat-ripple-element[_ngcontent-%COMP%], .mat-tab-nav-bar.mat-background-warn[_ngcontent-%COMP%] .mat-ripple-element[_ngcontent-%COMP%]{background-color:hsla(0,0%,100%,.12)}.mat-toolbar[_ngcontent-%COMP%]{background:#f5f5f5;color:rgba(0,0,0,.87)}.mat-toolbar.mat-primary[_ngcontent-%COMP%]{background:#3f51b5;color:#fff}.mat-toolbar.mat-accent[_ngcontent-%COMP%]{background:#ff4081;color:#fff}.mat-toolbar.mat-warn[_ngcontent-%COMP%]{background:#f44336;color:#fff}.mat-toolbar[_ngcontent-%COMP%] .mat-focused[_ngcontent-%COMP%] .mat-form-field-ripple[_ngcontent-%COMP%], .mat-toolbar[_ngcontent-%COMP%] .mat-form-field-ripple[_ngcontent-%COMP%], .mat-toolbar[_ngcontent-%COMP%] .mat-form-field-underline[_ngcontent-%COMP%]{background-color:currentColor}.mat-toolbar[_ngcontent-%COMP%] .mat-focused[_ngcontent-%COMP%] .mat-form-field-label[_ngcontent-%COMP%], .mat-toolbar[_ngcontent-%COMP%] .mat-form-field-label[_ngcontent-%COMP%], .mat-toolbar[_ngcontent-%COMP%] .mat-form-field.mat-focused[_ngcontent-%COMP%] .mat-select-arrow[_ngcontent-%COMP%], .mat-toolbar[_ngcontent-%COMP%] .mat-select-arrow[_ngcontent-%COMP%], .mat-toolbar[_ngcontent-%COMP%] .mat-select-value[_ngcontent-%COMP%]{color:inherit}.mat-toolbar[_ngcontent-%COMP%] .mat-input-element[_ngcontent-%COMP%]{caret-color:currentColor}.mat-toolbar-multiple-rows[_ngcontent-%COMP%]{min-height:64px}.mat-toolbar-row[_ngcontent-%COMP%], .mat-toolbar-single-row[_ngcontent-%COMP%]{height:64px}@media(max-width:599px){.mat-toolbar-multiple-rows[_ngcontent-%COMP%]{min-height:56px}.mat-toolbar-row[_ngcontent-%COMP%], .mat-toolbar-single-row[_ngcontent-%COMP%]{height:56px}}.mat-tooltip[_ngcontent-%COMP%]{background:rgba(97,97,97,.9)}.mat-tree[_ngcontent-%COMP%]{background:#fff}.mat-nested-tree-node[_ngcontent-%COMP%], .mat-tree-node[_ngcontent-%COMP%]{color:rgba(0,0,0,.87)}.mat-tree-node[_ngcontent-%COMP%]{min-height:48px}.mat-snack-bar-container[_ngcontent-%COMP%]{color:hsla(0,0%,100%,.7);background:#323232;box-shadow:0 3px 5px -1px rgba(0,0,0,.2),0 6px 10px 0 rgba(0,0,0,.14),0 1px 18px 0 rgba(0,0,0,.12)}.mat-simple-snackbar-action[_ngcontent-%COMP%]{color:#ff4081}.top-txt[_ngcontent-%COMP%]{font-size:26px;font-weight:600;margin-left:6px}table[_ngcontent-%COMP%]{width:100%;margin-top:8px}th[_ngcontent-%COMP%]{background-color:#1d3c7f}.color[_ngcontent-%COMP%]{color:green}.active[_ngcontent-%COMP%]{color:#14c242}.inactive[_ngcontent-%COMP%]{color:red}td[_ngcontent-%COMP%]{font-size:14px!important}th[_ngcontent-%COMP%]{font-size:16px!important}.button[_ngcontent-%COMP%]{background-color:#1d3c7f;color:#fff;height:50px;width:131px;border:none;font-size:16px;font-family:Proxima Nova}.top1[_ngcontent-%COMP%]{float:right}.pdf[_ngcontent-%COMP%]{cursor:pointer;margin-right:8px}.top-padding[_ngcontent-%COMP%]{margin-top:24px}.avatar[_ngcontent-%COMP%]{width:40px;height:40px;border-radius:50px;overflow:hidden}.create[_ngcontent-%COMP%]{background-color:#1d3c7f!important;color:#fff!important;height:48px;width:107px;font-size:16px;font-family:Proxima;padding:16px 16px 16px 44px;margin-right:12px;margin-left:8px}tr[_ngcontent-%COMP%]{height:70px!important}.filter-search[_ngcontent-%COMP%]{display:flex;flex-direction:row}.search-box[_ngcontent-%COMP%]{padding-top:-2px}"]}),Z)},{path:"entry",component:v},{path:"",redirectTo:"list",pathMatch:"full"},{path:"**",redirectTo:"list"}]}],et=((G=function t(){a(this,t)}).\u0275mod=l.Mb({type:G}),G.\u0275inj=l.Lb({factory:function(t){return new(t||G)},imports:[[i.g.forChild(at)],i.g]}),G),ot=c("tk/3"),ct=c("qlzE"),rt=c("eW8b"),mt=c("vTDv"),gt=((Q=function t(){a(this,t)}).\u0275mod=l.Mb({type:Q}),Q.\u0275inj=l.Lb({factory:function(t){return new(t||Q)},imports:[[m.c,et,g.l,i.g,p.U,p.j,p.p,p.u,p.w,p.A,p.H,p.J,p.X,p.bb,p.sb,s.g,p.qb,p.E,p.q,rt.a,ot.b,ct.c,p.gb,C.c,p.nb.forRoot(),z.b,T.b,y.b,mt.a]]}),Q)}}])}();
124,692
124,692
0.734947
059cd0c9a26edf842a03285c7dc3cdf78bfc3054
2,394
js
JavaScript
src/Texture.js
surma/SurmEngine
e8032509dff65fac0757dbde292c8108d27fb61b
[ "Apache-2.0" ]
3
2017-04-03T06:32:24.000Z
2017-12-07T23:13:10.000Z
src/Texture.js
surma/SurmEngine
e8032509dff65fac0757dbde292c8108d27fb61b
[ "Apache-2.0" ]
8
2017-04-14T11:16:45.000Z
2017-05-13T13:25:11.000Z
src/Texture.js
surma/SurmEngine
e8032509dff65fac0757dbde292c8108d27fb61b
[ "Apache-2.0" ]
null
null
null
export class Texture { constructor(gl) { this._gl = gl; this._texture = this._gl.createTexture(); this._type = this._gl.TEXTURE_2D; this._internalFormat = this._gl.RGBA; this._textureID = 0; this._maxMipmapLevel = 1000; this._magFilter = this._gl.LINEAR; this._wrapMode = gl.REPEAT; this._minFilter = this._gl.NEAREST_MIPMAP_LINEAR; } get raw() { return this._texture; } get type() { return this._type; } setType(val) { this._type = val; return this; } get internalFormat() { return this._internalFormat; } setInternalFormat(val) { this._internalFormat = val; return this; } get textureID() { return this._textureID; } setTextureID(val) { this._textureID = val; return this; } get wrapMode() { return this._wrapMode; } setWrapMode(val) { this._wrapMode = val; return this; } get maxMipmapLevel() { return this._maxMipmapLevel; } setMaxMipmapLevel(val) { this._maxMipmapLevel = val; return this; } get magFilter() { return this._magFilter; } setMagFilter(val) { this._magFilter = val; return this; } get minFilter() { return this._minFilter; } setMinFilter(val) { this._minFilter = val; return this; } activate() { this._gl.activeTexture(this._gl[`TEXTURE${this._textureID}`]); return this; } bind() { this._gl.bindTexture(this._type, this._texture); return this; } setParameters() { this._gl.texParameteri(this._type, this._gl.TEXTURE_MAX_LEVEL, this._maxMipmapLevel); this._gl.texParameteri(this._type, this._gl.TEXTURE_MAG_FILTER, this._magFilter); this._gl.texParameteri(this._type, this._gl.TEXTURE_MIN_FILTER, this._minFilter); this._gl.texParameteri(this._type, this._gl.TEXTURE_WRAP_S, this._wrapMode); this._gl.texParameteri(this._type, this._gl.TEXTURE_WRAP_T, this._wrapMode); return this; } uploadImage2D(level, img) { this._gl.texImage2D(this._type, level, this._internalFormat, this._gl.RGBA, this._gl.UNSIGNED_BYTE, img); return this; } allocate(level, width, height) { this._gl.texImage2D(this._type, level, this._internalFormat, width, height, 0, this._gl.RGBA, this._gl.UNSIGNED_BYTE, null); return this; } generateMipmap() { this._gl.generateMipmap(this._type); return this; } }
20.817391
128
0.66416
059ddfb41e9757f3d3128deb348d102d829ea255
377
js
JavaScript
scripts/page2.js
EduardoAz26/catalogo
eb763e9e8d7a313fc5b2c0d6446b47344e186dcb
[ "MIT" ]
null
null
null
scripts/page2.js
EduardoAz26/catalogo
eb763e9e8d7a313fc5b2c0d6446b47344e186dcb
[ "MIT" ]
null
null
null
scripts/page2.js
EduardoAz26/catalogo
eb763e9e8d7a313fc5b2c0d6446b47344e186dcb
[ "MIT" ]
null
null
null
var app = new Vue({ el: '#app', data: { variavelX: 'Outro texto', intNumber: 0 }, methods: { add() { this.intNumber++; } }, mounted() { console.log('Esse metodo é chamado quando o componente/pagina termina de carregar, ideal para carregar dados de uma api por exemplo para preencher a tela') } })
23.5625
163
0.546419
059eae5aabdd75a1af51159ff2a4fd116d378cba
1,403
js
JavaScript
api/middleware/authMiddleware.js
Lambda-School-Labs/Labs25-Bridges_to_Prosperity_TeamA-be
a207c8a96cddc5c4695515086b159a1bad3c665e
[ "MIT" ]
null
null
null
api/middleware/authMiddleware.js
Lambda-School-Labs/Labs25-Bridges_to_Prosperity_TeamA-be
a207c8a96cddc5c4695515086b159a1bad3c665e
[ "MIT" ]
24
2020-08-12T15:42:30.000Z
2020-09-25T04:05:50.000Z
api/middleware/authMiddleware.js
Lambda-School-Labs/Labs25-Bridges_to_Prosperity_TeamA-be
a207c8a96cddc5c4695515086b159a1bad3c665e
[ "MIT" ]
2
2020-09-28T13:29:17.000Z
2020-10-26T16:47:53.000Z
const Bridge = require('../bridges/bridgeModal'); module.exports = { validateId, validateValues, validateFilterValues, }; // middleware to check if id is valid function validateId(req, res, next) { const { id } = req.params; if (!id) { res.status(400).json({ message: 'Please provide ID' }); } else { Bridge.findById(id) .then((bridge) => { if (bridge) { next(); } else { res.status(404).json({ message: 'Please provide valid ID.' }); } }) .catch((err) => { res.status(500).json({ message: err.message }); }); } } //middleware to check if values are not empty/NUll function validateValues(req, res, next) { const { name, type, stage, sub_stage, individuals_directly_served, span, latitude, longitude, } = req.body; if ( !name || !type || !stage || !sub_stage || !typeof individuals_directly_served === 'number' || !typeof span === 'number' || !latitude || !longitude ) { res.status(400).json({ message: 'Please fill in all fields' }); } else { next(); } } // middleware to validate filter values function validateFilterValues(req, res, next) { const body = req.body; if (Object.keys(body).length === 0) { res.status(500).json({ errorMessage: 'Please provide value to filter' }); } else { next(); } }
20.940299
77
0.577334
059f51a881a7234c90efd6c4bc6274e6a6ec1642
1,207
js
JavaScript
app/assets/javascripts/tts.js
enwords/enwords
3cf1776e8ed78fec508d13c85dbe8459540a3255
[ "MIT" ]
4
2017-05-28T09:46:00.000Z
2021-09-11T07:21:39.000Z
app/assets/javascripts/tts.js
enwords/enwords
3cf1776e8ed78fec508d13c85dbe8459540a3255
[ "MIT" ]
13
2017-05-14T17:17:42.000Z
2022-03-30T21:56:40.000Z
app/assets/javascripts/tts.js
enwords/enwords
3cf1776e8ed78fec508d13c85dbe8459540a3255
[ "MIT" ]
null
null
null
var voiceByLang = { "eng": "Daniel", "ita": "Luca", "fra": "Thomas", "deu": "Anna", "rus": "Yuri", "spa": "Juan", "pol": "Zosia", "nld": "Xander", "fin": "Satu", "zho": "Ting-Ting", "por": "Joana", "ara": "Maged", "heb": "Carmit", "swe": "Alva", "ind": "Damayanti", "rom": "Ioana", "hun": "Mariska", "jap": "Kyoko", "dan": "Sara", "tha": "Kanya", "gre": "Melina", "kor": "Yuna", "ces": "Zuzana", "tur": "Yelda", "nob": "Nora", "hin": "Lekha", "slo": "Laura", } function tts(text, lang) { var synth = window.speechSynthesis; getVoice(voiceByLang[lang], synth).then(function(voice) { var utterThis = new SpeechSynthesisUtterance(text); utterThis.voice = voice; synth.speak(utterThis); }) } function getVoice(voiceName, synth) { return new Promise(function(resolve, reject) { synth.onvoiceschanged = function () { findVoice(voiceName, synth, resolve) } findVoice(voiceName, synth, resolve) synth.getVoices(); }); } function findVoice(voiceName, synth, resolve) { var voices = synth.getVoices(); for (var i = 0; i < voices.length; i++) { if(voices[i].name === voiceName) { resolve(voices[i]); } } }
21.175439
80
0.578293
059f6016c9f6acac79af423d25ad0675654a9bc8
13,343
js
JavaScript
test/fixtures/profile/zotero/zotero/translators/CABI - CAB Abstracts.js
theworldisnotflat/zotero-better-bibtex
93eccea835a73349432eaa3f7b95ef51ba71288a
[ "MIT" ]
1
2022-03-25T03:21:34.000Z
2022-03-25T03:21:34.000Z
test/fixtures/profile/zotero/zotero/translators/CABI - CAB Abstracts.js
theworldisnotflat/zotero-better-bibtex
93eccea835a73349432eaa3f7b95ef51ba71288a
[ "MIT" ]
null
null
null
test/fixtures/profile/zotero/zotero/translators/CABI - CAB Abstracts.js
theworldisnotflat/zotero-better-bibtex
93eccea835a73349432eaa3f7b95ef51ba71288a
[ "MIT" ]
null
null
null
{ "translatorID": "a29d22b3-c2e4-4cc0-ace4-6c2326144332", "label": "CABI - CAB Abstracts", "creator": "Sebastian Karcher", "target": "^https?://(www\\.)?cabidirect\\.org/cabdirect", "minVersion": "3.0.4", "maxVersion": "", "priority": 100, "inRepository": true, "translatorType": 4, "browserSupport": "gcsibv", "lastUpdated": "2017-06-14 03:41:30" } /* ***** BEGIN LICENSE BLOCK ***** Copyright © 2017 Sebastian Karcher This file is part of Zotero. Zotero is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. Zotero 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 Affero General Public License for more details. You should have received a copy of the GNU Affero General Public License along with Zotero. If not, see <http://www.gnu.org/licenses/>. ***** END LICENSE BLOCK ***** */ function detectWeb(doc, url) { if (url.indexOf('cabdirect/abstract/')>-1 || url.indexOf('cabdirect/FullTextPDF/')>-1) { //this isn't always right, but getting the item type from the page involves so much guessing as to be meaningless return "journalArticle"; } else if (url.indexOf("cabdirect/search") != -1 && getSearchResults(doc, true)) { return "multiple"; } } function getSearchResults(doc, checkOnly) { var items = {}; var found = false; var rows = ZU.xpath(doc, '//div[@class="list-content"]/h2/a[contains(@href, "/abstract/")]'); for (var i=0; i<rows.length; i++) { var href = rows[i].href; var title = ZU.trimInternal(rows[i].textContent); if (!href || !title) continue; if (checkOnly) return true; found = true; items[href] = title; } return found ? items : false; } function doWeb(doc, url) { if (detectWeb(doc, url) == "multiple") { Zotero.selectItems(getSearchResults(doc, false), function (items) { if (!items) { return true; } var articles = []; for (var i in items) { articles.push(i); } ZU.processDocuments(articles, scrape); }); } else { //Code to get from PDF view to abstract view if (url.search(/\.pdf$/) != -1) { //get from the PDF to the item display; var itemid = url.match(/\/([^\/]+)\.pdf/); var itemurl = "/cabdirect/abstract/" + itemid[1]; //Z.debug(itemurl) ZU.processDocuments(itemurl, scrape); } else scrape(doc, url); } } function scrape(doc, url) { var pdfurl = ZU.xpathText(doc, '//p[@class="btnabstract"]/a[contains(@href, ".pdf")]/@href'); var abstract = ZU.xpathText(doc, '//div[@class="abstract"]'); var editors = ZU.xpath(doc, '//p[contains(@id, "ulEditors")]/a'); var itemid = url.match(/\/([^\/]+)$/); //Z.debug (itemid) var post = "methodData= %7B%22method%22%3A%22downloadRecords%22%2C%22items%22%3A%5B%7B%22type%22%3A%22AbstractMarkLogic%22%2C%22itemUrls%22%3A%5B%22%2Fcabdirect%2Fabstract%2F" + itemid[1] + "%22%5D%7D%5D%2C%22recordSource%22%3A%22SelectedRecords%22%2C%22pageSource%22%3A%22unknown%22%2C%22numberRange%22%3A%22%22%2C%22pageUrl%22%3A%22https%3A%2F%2Fwww.cabdirect.org%2Fcabdirect%2Fabstract%2F" + itemid[1] + "%22%7D&userPrefs=%7B%22format%22%3A%22RIS%22%2C%22downloadTarget%22%3A%22DownloadFile%22%2C%22portions%22%3A%22CitationAndAbstract%22%2C%22destination%22%3A%22EmailBodyText%22%2C%22exportEmail%22%3A%22%22%2C%22SavedRecordsPageSize%22%3A50%7D"; var posturl = "/cabdirect/utility/cd4mycabiajaxhandler/"; ZU.doPost(posturl, post, function (text) { //Z.debug(text) var translator = Zotero.loadTranslator("import"); translator.setTranslator("32d59d2d-b65a-4da4-b0a3-bdd3cfb979e7"); translator.setString(text); translator.setHandler("itemDone", function(obj, item) { if (pdfurl) { item.attachments.push({ url: pdfurl.href, title: "Full Text PDF", mimeType: "application/pdf" }); } if (editors.length) { for (var i = 0; i<editors.length; i++ ) { item.creators.push(ZU.cleanAuthor(editors[i].textContent, "editor", true)); } } if (item.notes.length) { //combine all notes into one var allNotes = []; for (var i = 0; i<item.notes.length; i++) { allNotes.push(item.notes[i]["note"]); } item.notes = [{"note": allNotes.join("")}]; } if (item.itemType == "book" || item.itemType == "bookSection") { if (item.issue) { item.edition = item.issue; item.issue = ""; } } item.url = url; //we want CAB in the library catalog field, not in archive item.archive = ""; item.attachments.push({ title: "Snapshot", document: doc }); item.complete(); }); translator.translate(); }); }/** BEGIN TEST CASES **/ var testCases = [ { "type": "web", "url": "https://www.cabdirect.org/cabdirect/search/?q=testing", "items": "multiple" }, { "type": "web", "url": "https://www.cabdirect.org/cabdirect/abstract/20173015649", "items": [ { "itemType": "journalArticle", "title": "Promoting partner testing and couples testing through secondary distribution of HIV self-tests: a randomized clinical trial.", "creators": [ { "lastName": "Masters", "firstName": "S. H.", "creatorType": "author" }, { "lastName": "Agot", "firstName": "K.", "creatorType": "author" }, { "lastName": "Obonyo", "firstName": "B.", "creatorType": "author" }, { "lastName": "Mavedzenge", "firstName": "S. N.", "creatorType": "author" }, { "lastName": "Maman", "firstName": "S.", "creatorType": "author" }, { "lastName": "Thirumurthy", "firstName": "H.", "creatorType": "author" } ], "date": "2016", "ISSN": "1549-1277", "abstractNote": "Background: Achieving higher rates of partner HIV testing and couples testing among pregnant and postpartum women in sub-Saharan Africa is essential for the success of combination HIV prevention, including the prevention of mother-to-child transmission. We aimed to determine whether providing multiple HIV self-tests to pregnant and postpartum women for secondary distribution is more effective at promoting partner testing and couples testing than conventional strategies based on invitations to clinic-based testing. Methods and Findings: We conducted a randomized trial in Kisumu, Kenya, between June 11, 2015, and January 15, 2016. Six hundred antenatal and postpartum women aged 18-39 y were randomized to an HIV self-testing (HIVST) group or a comparison group. Participants in the HIVST group were given two oral-fluid-based HIV test kits, instructed on how to use them, and encouraged to distribute a test kit to their male partner or use both kits for testing as a couple. Participants in the comparison group were given an invitation card for clinic-based HIV testing and encouraged to distribute the card to their male partner, a routine practice in many health clinics. The primary outcome was partner testing within 3 mo of enrollment. Among 570 participants analyzed, partner HIV testing was more likely in the HIVST group (90.8%, 258/284) than the comparison group (51.7%, 148/286; difference=39.1%, 95% CI 32.4% to 45.8%, p&lt;0.001). Couples testing was also more likely in the HIVST group than the comparison group (75.4% versus 33.2%, difference=42.1%, 95% CI 34.7% to 49.6%, p&lt;0.001). No participants reported intimate partner violence due to HIV testing. This study was limited by self-reported outcomes, a common limitation in many studies involving HIVST due to the private manner in which self-tests are meant to be used. Conclusions: Provision of multiple HIV self-tests to women seeking antenatal and postpartum care was successful in promoting partner testing and couples testing. This approach warrants further consideration as countries develop HIVST policies and seek new ways to increase awareness of HIV status among men and promote couples testing.", "issue": "11", "journalAbbreviation": "PLoS Medicine", "language": "English", "libraryCatalog": "CABI - CAB Abstracts", "pages": "e1002166", "publicationTitle": "PLoS Medicine", "shortTitle": "Promoting partner testing and couples testing through secondary distribution of HIV self-tests", "url": "https://www.cabdirect.org/cabdirect/abstract/20173015649", "volume": "13", "attachments": [ { "title": "Snapshot" } ], "tags": [], "notes": [ { "note": "<p>Author Affiliation: Department of Health Policy and Management, Gillings School of Global Public Health, University of North Carolina at Chapel Hill, Chapel Hill, North Carolina, USA.</p><p>Author Email: harsha@unc.edu</p>" } ], "seeAlso": [] } ] }, { "type": "web", "url": "https://www.cabdirect.org/cabdirect/FullTextPDF/2016/20163134586.pdf", "items": [ { "itemType": "journalArticle", "title": "Exploring factors associated with recent HIV testing among heterosexuals at high risk for HIV infection recruited with venue-based sampling.", "creators": [ { "lastName": "Gwadz", "firstName": "M.", "creatorType": "author" }, { "lastName": "Cleland", "firstName": "C. M.", "creatorType": "author" }, { "lastName": "Jenness", "firstName": "S. M.", "creatorType": "author" }, { "lastName": "Silverman", "firstName": "E.", "creatorType": "author" }, { "lastName": "Hagan", "firstName": "H.", "creatorType": "author" }, { "lastName": "Ritchie", "firstName": "A. S.", "creatorType": "author" }, { "lastName": "Leonard", "firstName": "N. R.", "creatorType": "author" }, { "lastName": "McCright-Gill", "firstName": "T.", "creatorType": "author" }, { "lastName": "Martinez", "firstName": "B.", "creatorType": "author" }, { "lastName": "Swain", "firstName": "Q.", "creatorType": "author" }, { "lastName": "Kutnick", "firstName": "A.", "creatorType": "author" }, { "lastName": "Sherpa", "firstName": "D.", "creatorType": "author" } ], "date": "2016", "ISSN": "2155-6113", "abstractNote": "Annual HIV testing is recommended for high-risk populations in the United States, to identify HIV infections early and provide timely linkage to treatment. However, heterosexuals at high risk for HIV, due to their residence in urban areas of high poverty and elevated HIV prevalence, test for HIV less frequently than other risk groups, and late diagnosis of HIV is common. Yet the factors impeding HIV testing in this group, which is predominantly African American/Black and Latino/Hispanic, are poorly understood. The present study addresses this gap. Using a systematic community-based sampling method, venue-based sampling (VBS), we estimate rates of lifetime and recent (past year) HIV testing among high-risk heterosexuals (HRH), and explore a set of putative multi-level barriers to and facilitators of recent testing, by gender. Participants were 338 HRH African American/Black and Latino/Hispanic adults recruited using VBS, who completed a computerized structured assessment battery guided by the Theory of Triadic Influence, comprised of reliable/valid measures on socio-demographic characteristics, HIV testing history, and multi-level barriers to HIV testing. Logistic regression analysis was used to identify factors associated with HIV testing within the past year. Most HRH had tested at least once (94%), and more than half had tested within the past year (58%), but only 37% tested annually. In both men and women, the odds of recent testing were similar and associated with structural factors (better access to testing) and sexually transmitted infection (STI) testing and diagnosis. Thus VBS identified serious gaps in rates of annual HIV testing among HRH. Improvements in access to high-quality HIV testing and leveraging of STI testing are needed to increase the proportion of HRH testing annually for HIV. Such improvements could increase early detection of HIV, improve the long-term health of individuals, and reduce HIV transmission by increasing rates of viral suppression.", "issue": "2", "journalAbbreviation": "Journal of AIDS and Clinical Research", "language": "English", "libraryCatalog": "CABI - CAB Abstracts", "pages": "544", "publicationTitle": "Journal of AIDS and Clinical Research", "url": "https://www.cabdirect.org/cabdirect/abstract/20163134586", "volume": "7", "attachments": [ { "title": "Full Text PDF", "mimeType": "application/pdf" }, { "title": "Snapshot" } ], "tags": [], "notes": [ { "note": "<p>Author Affiliation: Center for Drug Use and HIV Research (CDUHR), New York University College of Nursing, 433 First Avenue, Room 748, New York, NY 10010, USA.</p><p>Author Email: mg2890@nyu.edu</p>" } ], "seeAlso": [] } ] } ] /** END TEST CASES **/
41.959119
2,208
0.66889
05a02cb2d32e2cfb9417ce88aebf44d1773e9bed
272
js
JavaScript
random js problems/testReadFromConsole.js
willystyle7/JS-fundamentals
6e9e58e302c9573bf0bb7e9e3e71581463245e59
[ "MIT" ]
null
null
null
random js problems/testReadFromConsole.js
willystyle7/JS-fundamentals
6e9e58e302c9573bf0bb7e9e3e71581463245e59
[ "MIT" ]
null
null
null
random js problems/testReadFromConsole.js
willystyle7/JS-fundamentals
6e9e58e302c9573bf0bb7e9e3e71581463245e59
[ "MIT" ]
null
null
null
function rectangleArea() { let stdin = process.openStdin(); stdin.addListener('data', function(d) { console.log('d: ', d); let [a, b] = d.toString().split(/[,\s]+/g); let area = a * b; console.log(area); }); } rectangleArea();
22.666667
51
0.525735
05a09af63d942dc37e9845baf37b4d8d3c3dd2a8
1,935
js
JavaScript
public/javascripts/general.js
savinkhadka/kapelner-clone
671fd6335e391b2f55ab01e8451e36a563f0bf12
[ "MIT" ]
1
2019-01-30T01:16:22.000Z
2019-01-30T01:16:22.000Z
public/javascripts/general.js
kapelner/breaking_monotony
8d7e9fd2807978bb5b4a364d35185e279d6e6689
[ "MIT" ]
1
2019-01-30T21:59:23.000Z
2019-01-30T22:49:21.000Z
public/javascripts/general.js
savinkhadka/kapelner-clone
671fd6335e391b2f55ab01e8451e36a563f0bf12
[ "MIT" ]
null
null
null
var SimmonsGeneral = { login : function(){ //verify integrity and appropriateness of data var login = $('user_login_login').value; if (login === ''){ alert('You must provide an email.'); return false; } else if (this.InvalidEmail(login)){ alert('The email you provided is not valid.'); return false; } var pw = $('user_password_login').value; if (pw.length < 3){ alert('You must provide a password longer than three characters.'); return false; } return true; }, signup : function(){ //verify integrity and appropriateness of data var login = $('user_login_signup').value; if (login === ''){ alert('You must provide an email.', {'type' : 'error'}); return false; } else if (this.InvalidEmail(login)){ DsqdAdvAlert.okay_message('The email you provided is not valid.', {'type' : 'error'}); return false; } var first_name = $('user_first_name_signup').value; if (first_name === ''){ alert('You must provide a first name.'); return false; } var last_name = $('user_last_name_signup').value; if (last_name.length < 3){ alert('You must provide a legal last name.'); return false; } if ($('user_institution_signup').value === ''){ alert('You must provide an insitution.'); return false; } if ($('user_application_signup').length < 20){ alert('You must describe, in a few words, a bit about what you are going to use DistirbuteEyes for.'); return false; } var pw = $('user_password_signup').value; if (pw.length < 3){ alert('You must provide a password longer than three characters.'); return false; } return true; }, InvalidEmail : function(email){ return /^([A-Za-z0-9_\-\.])+\@([A-Za-z0-9_\-\.])+\.([A-Za-z]{2,4})$/.test(email) ? false : true; } };
31.209677
108
0.58553
05a22f2750180a89103bdc2e4b837bf9070720db
236
js
JavaScript
src/redux/modules/dashboardData.js
seestats/dashboard
84184227ff8aac06abfb5e3dc49227100540c552
[ "Apache-2.0" ]
null
null
null
src/redux/modules/dashboardData.js
seestats/dashboard
84184227ff8aac06abfb5e3dc49227100540c552
[ "Apache-2.0" ]
null
null
null
src/redux/modules/dashboardData.js
seestats/dashboard
84184227ff8aac06abfb5e3dc49227100540c552
[ "Apache-2.0" ]
null
null
null
import axios from 'axios' const DASHBOARD_DATA_LOADED = 'DASHBOARD_DATA_LOADED' export const initialState = { }; export default function (state = initialState, action) { switch (action.type) { default: return state } }
16.857143
56
0.711864
05a39af7a7ca26dfda3d0402707b0d996ecc6463
203
js
JavaScript
server/models/authors.model.js
ramsingh83/ws-graph-react-node
10ee2ae6b393cccf8229d24cd3e674328cdbe94b
[ "Unlicense" ]
null
null
null
server/models/authors.model.js
ramsingh83/ws-graph-react-node
10ee2ae6b393cccf8229d24cd3e674328cdbe94b
[ "Unlicense" ]
null
null
null
server/models/authors.model.js
ramsingh83/ws-graph-react-node
10ee2ae6b393cccf8229d24cd3e674328cdbe94b
[ "Unlicense" ]
null
null
null
const mongoose = require('mongoose'); const Schema = mongoose.Schema; const authorSchema = new Schema({ name: String, location: String }); module.export = mongoose.model('Book', authorSchema);
22.555556
53
0.70936
05a3cbbd93383716a568e6b11112025947ac3028
4,012
js
JavaScript
src/api/analytics.test.js
dgoldstein1/links
6d6430b7ae992c86cd2392f384177cb866b3b110
[ "MIT" ]
null
null
null
src/api/analytics.test.js
dgoldstein1/links
6d6430b7ae992c86cd2392f384177cb866b3b110
[ "MIT" ]
15
2019-09-16T04:04:59.000Z
2020-01-29T23:08:16.000Z
src/api/analytics.test.js
dgoldstein1/links
6d6430b7ae992c86cd2392f384177cb866b3b110
[ "MIT" ]
null
null
null
import moxios from "moxios"; import { store } from "../reducers"; import sinon from "sinon"; import axios from "axios"; import { _formatDataToAnalyticsBackend, postUserVisit } from "./analytics"; describe("analytics", () => { describe("_formatDataToAnalyticsBackend", () => { let testTable = [ { name: "normal response", res: { data: { ip: "96.72.50.249", location: { country: "US", region: "Minnesota", city: "Hastings", lat: 44.7443, lng: -92.8514, postalCode: "55033", timezone: "-06:00", geonameId: 5029500, }, as: { asn: 7922, name: "Comcast", route: "96.64.0.0/11", domain: "https://corporate.comcast.com/", type: "Cable/DSL/ISP", }, isp: "Comcast Cable Communications, LLC", }, }, }, ]; testTable.forEach((t) => { it(t.name, () => { expect(_formatDataToAnalyticsBackend(t.res)).toMatchSnapshot(); }); }); }); describe("postUserVisits", () => { beforeEach(() => { moxios.install(); }); afterEach(() => { moxios.uninstall(); }); let testTable = [ { name: "normal IP", geoIpUrl: `/analytics/api/geoIpServer/v1?apiKey=at_Mb3nWUvk1iAL4W97H5Fs1LxAXjRCn&ipAddress=8.8.8.8`, analyticsServerUrl: "/analytics/server/visits", analyticsServerResponse: { ip: "205.153.92.177", city: "Sterling", country_code: "US", country_name: "United States", latitude: 38.952701568603516, longitude: -77.44322967529297, metro_code: 0, region_code: "VA", time_zone: "", zip_code: "20166", visit_date: "2019-11-27T01:01:23.504356771Z", }, responseCode: 200, geoIpResponse: { ip: "205.153.92.177", location: { country: "US", region: "Sterling", city: "Hastings", lat: 38.952701568603516, lng: -77.44322967529297, postalCode: "20166", timezone: "-06:00", geonameId: 5029500, }, as: { asn: 7922, name: "Comcast", route: "96.64.0.0/11", domain: "https://corporate.comcast.com/", type: "Cable/DSL/ISP", }, isp: "Comcast Cable Communications, LLC", }, }, { name: "bad geoIpRequest", geoIpUrl: `/analytics/api/geoIpServer/v1?apiKey=at_Mb3nWUvk1iAL4W97H5Fs1LxAXjRCn&ipAddress=8.8.8.8`, analyticsServerUrl: "/analytics/server/visits", analyticsServerResponse: { ip: "205.153.92.177", city: "Sterling", country_code: "US", country_name: "United States", latitude: 38.952701568603516, longitude: -77.44322967529297, metro_code: 0, region_code: "VA", time_zone: "", zip_code: "20166", visit_date: "2019-11-27T01:01:23.504356771Z", }, responseCode: 500, geoIpResponse: {}, }, ]; testTable.forEach((t) => { it(t.name, (done) => { let onFulfilled = sinon.spy(); // geoIpCheck moxios.stubRequest(t.geoIpUrl, { status: t.responseCode, response: t.geoIpResponse, }); // analytics server "/visits" post moxios.stubRequest(t.analyticsServerUrl, { status: 200, response: t.analyticsServerResponse, }); moxios.stubRequest("/myip", { status: 200, response: { ip: "8.8.8.8:2356", }, }); postUserVisit().then((r) => { expect(r).toMatchSnapshot(); done(); }); }); }); }); });
28.453901
108
0.488036
05a3e3e6276957cff079283b08138ced5621bc27
751
js
JavaScript
src/Components/Bookshelf.js
raphaelmro/reactnd-project-myreads-starter
e9c47c16c91c11170fe0a4c543efc40c72dd47ab
[ "Unlicense" ]
null
null
null
src/Components/Bookshelf.js
raphaelmro/reactnd-project-myreads-starter
e9c47c16c91c11170fe0a4c543efc40c72dd47ab
[ "Unlicense" ]
null
null
null
src/Components/Bookshelf.js
raphaelmro/reactnd-project-myreads-starter
e9c47c16c91c11170fe0a4c543efc40c72dd47ab
[ "Unlicense" ]
null
null
null
import React, { Component } from "react"; import ListBooks from "./ListBooks"; import { func, string } from "prop-types"; class Bookshelf extends Component { static propTypes = { onUpdateBookShelf: func.isRequired, shelf: string }; onUpdateBookShelf = (book, bookshelf) => { this.props.onUpdateBookShelf(book, bookshelf); }; render() { return ( <div> <div className="bookshelf"> <h2 className="bookshelf-title">{this.props.shelf}</h2> <div className="bookshelf-books"> <ListBooks books={this.props.books} onUpdateBookShelf={this.onUpdateBookShelf} /> </div> </div> </div> ); } } export default Bookshelf;
22.757576
65
0.588549
05a5ab5c14add955d0476a2c60115e81512a7646
557
js
JavaScript
src/utils/choke.js
freemountain/fux
01b39adfe40d8d039621199578b23f7bfa97f195
[ "MIT" ]
9
2016-03-11T12:11:59.000Z
2016-03-11T16:44:46.000Z
src/utils/choke.js
freemountain/fux
01b39adfe40d8d039621199578b23f7bfa97f195
[ "MIT" ]
1
2016-03-11T12:34:07.000Z
2016-03-11T13:35:51.000Z
src/utils/choke.js
freemountain/fux
01b39adfe40d8d039621199578b23f7bfa97f195
[ "MIT" ]
null
null
null
/** * creates a choke that throttle fuction calls * * The returned choke function will throttle calls with the same path argument * for delta milliseconds. * * @param {Number} delta - the delta between calls [ms] * @return {function(path: String, f: Function)} */ export default function choke(delta) { const cache = {}; function call(path, f) { const lastTime = cache[ path ]; const currentTime = Date.now(); if(lastTime && currentTime - lastTime < delta) return; cache[ path ] = Date.now(); f(); } return call; }
21.423077
78
0.64991
05a5fb067b71c414f62261cc9c66c766c737711d
914
js
JavaScript
file-reader.js
ddikman/tagmaker
b4be1334db43cd76719f3d9261f5be52606e1a46
[ "Unlicense", "MIT" ]
null
null
null
file-reader.js
ddikman/tagmaker
b4be1334db43cd76719f3d9261f5be52606e1a46
[ "Unlicense", "MIT" ]
null
null
null
file-reader.js
ddikman/tagmaker
b4be1334db43cd76719f3d9261f5be52606e1a46
[ "Unlicense", "MIT" ]
null
null
null
function readData(file, callback) { var reader = new FileReader(); // Closure to capture the file information. reader.onload = function (e) { callback(reader.result); } // Read in the image file as a data URL. reader.readAsText(file, 'windows-1252'); } function handleCsvUpload(evt, callback) { var files = evt.target.files; try { if (files.length != 1 || !files[0].name.toLowerCase().endsWith('csv')) { throw 'Only a single .csv file must be supplied'; } const file = files[0]; readData(file, function (data) { const hasSemicolon = data.indexOf(';') >= 0; const seperator = hasSemicolon ? ';' : ','; rows = data.trim().split('\n').map(function (row) { return row.split(seperator) }); callback(null, rows) }); } catch (err) { callback(err, null); } }
30.466667
95
0.562363
05a6492c308658c65e270ac3c902f407154a134a
630
js
JavaScript
packages/desktop/src/App.js
HoldemTools/RangeAssistant
cf8a8cf9471e7cc2750c19f5627e23ce6cbf184e
[ "MIT" ]
14
2020-10-12T08:22:21.000Z
2022-03-12T23:45:19.000Z
packages/desktop/src/App.js
HoldemTools/RangeAssistant
cf8a8cf9471e7cc2750c19f5627e23ce6cbf184e
[ "MIT" ]
75
2021-03-01T07:22:38.000Z
2022-03-28T22:05:51.000Z
packages/desktop/src/App.js
HoldemTools/RangeAssistant
cf8a8cf9471e7cc2750c19f5627e23ce6cbf184e
[ "MIT" ]
4
2021-01-20T22:12:33.000Z
2021-12-01T05:59:35.000Z
import React, { useEffect } from "react"; import RangeAssistant from "./components/RangeAssistant"; import Dropzone from "./components/Dropzone"; import { message } from 'antd'; import { storeRange } from "./data"; import "./App.css"; const { Ranges } = window; const App = () => { useEffect(() => { message.config({ top: "80%", maxCount: 1, duration: 1.5 }) Ranges.onAdd((range) => { storeRange(range) .then(_ => message.success('Range added!')) .catch(_ => message.error('Error adding range!')); }); }, []); return <Dropzone> <RangeAssistant /> </Dropzone>; }; export default App;
27.391304
62
0.614286
05a79fb53ed165b2c088ac119e03dfff14ee7a8e
793
js
JavaScript
api/server.js
njanssen/mandora-monitoring
77cd9e8dec4e10a0e13f9d546b7eb64338886124
[ "MIT" ]
null
null
null
api/server.js
njanssen/mandora-monitoring
77cd9e8dec4e10a0e13f9d546b7eb64338886124
[ "MIT" ]
null
null
null
api/server.js
njanssen/mandora-monitoring
77cd9e8dec4e10a0e13f9d546b7eb64338886124
[ "MIT" ]
null
null
null
require('module-alias/register') const config = require('@config') const logger = require('@lib/logger') const Express = require('express') const BodyParser = require('body-parser') const routes = require('./routes') const API_VERSION = 1 const API_SERVER_PORT = config.api.server.port const API_BASEURL = '/api/' + API_VERSION const app = Express() app.use(BodyParser.json()) app.use(BodyParser.urlencoded({ extended: true })) // Mount all routes on /api path app.use(API_BASEURL, routes) // Error handler app.use((err, req, res, next) => { res.status(500).json({ status: err.status, message: err.message }) }) const start = () => { app.listen(API_SERVER_PORT, () => { logger.info(`Mandora API server started on :${API_SERVER_PORT}`) }) } module.exports = { start: start }
20.868421
66
0.693569
05a8847980b3dc0e5e55ed449d76be79efbf6f16
1,376
js
JavaScript
04-async-state-changes-custom-hooks/clip-05-normalize-state-values-to-request-state/src/hooks/useRequestSpeakers.js
mlauren/pluralsight-designing-react-components-course-code
414ede0e5d284fdb696e44ac532d0ff17561be86
[ "MIT" ]
136
2020-05-26T02:59:59.000Z
2022-03-03T15:17:46.000Z
04-async-state-changes-custom-hooks/clip-05-normalize-state-values-to-request-state/src/hooks/useRequestSpeakers.js
mlauren/pluralsight-designing-react-components-course-code
414ede0e5d284fdb696e44ac532d0ff17561be86
[ "MIT" ]
9
2020-09-26T13:41:43.000Z
2022-01-12T17:46:05.000Z
04-async-state-changes-custom-hooks/clip-05-normalize-state-values-to-request-state/src/hooks/useRequestSpeakers.js
mlauren/pluralsight-designing-react-components-course-code
414ede0e5d284fdb696e44ac532d0ff17561be86
[ "MIT" ]
236
2020-05-30T14:02:44.000Z
2022-03-30T17:48:54.000Z
import { data } from "../../SpeakerData"; import { useState, useEffect } from "react"; export const REQUEST_STATUS = { LOADING: "loading", SUCCESS: "success", FAILURE: "failure", }; function useRequestSpeakers(delayTime = 1000) { const [speakersData, setSpeakersData] = useState([]); const [requestStatus, setRequestStatus] = useState(REQUEST_STATUS.LOADING); const [error, setError] = useState(""); const delay = (ms) => new Promise((resolve) => setTimeout(resolve, ms)); useEffect(() => { async function delayFunc() { try { await delay(delayTime); //throw "Had Error." setRequestStatus(REQUEST_STATUS.SUCCESS); setSpeakersData(data); } catch (e) { setRequestStatus(REQUEST_STATUS.FAILURE); setError(e); } } delayFunc(); }, []); function onFavoriteToggle(id) { const speakersRecPrevious = speakersData.find(function (rec) { return rec.id === id; }); const speakerRecUpdated = { ...speakersRecPrevious, favorite: !speakersRecPrevious.favorite, }; const speakersDataNew = speakersData.map(function (rec) { return rec.id === id ? speakerRecUpdated : rec; }); setSpeakersData(speakersDataNew); } return { speakersData, requestStatus, error, onFavoriteToggle, }; } export default useRequestSpeakers;
24.571429
77
0.640262
05a8ea5c2eec3ac85741eb3ca3e6894592e51c8f
583
js
JavaScript
packages/itinerary-body/src/TransitLegBody/intermediate-stops.js
openmove/otp-ui
69d2f25a3db782d314d2bfdb37eec50e1db24406
[ "MIT" ]
30
2019-12-23T19:03:58.000Z
2021-12-13T13:25:39.000Z
packages/itinerary-body/src/TransitLegBody/intermediate-stops.js
openmove/otp-ui
69d2f25a3db782d314d2bfdb37eec50e1db24406
[ "MIT" ]
234
2019-12-17T16:27:48.000Z
2022-03-31T18:07:40.000Z
packages/itinerary-body/src/TransitLegBody/intermediate-stops.js
ibi-group/otp-ui
c8f4f569b3c8a71bd9fd18c4f038a56ca51194b3
[ "MIT" ]
18
2019-12-27T18:14:11.000Z
2022-02-08T04:27:22.000Z
import PropTypes from "prop-types"; import React from "react"; import * as Styled from "../styled"; export default function IntermediateStops({ stops }) { return ( <Styled.IntermediateStops> {stops.map((stop, k) => { return ( <Styled.StopRow key={k}> <Styled.StopMarker>&bull;</Styled.StopMarker> <Styled.StopName>{stop.name}</Styled.StopName> </Styled.StopRow> ); })} </Styled.IntermediateStops> ); } IntermediateStops.propTypes = { stops: PropTypes.arrayOf(PropTypes.shape({})).isRequired };
24.291667
58
0.61578
05a9e4a106da2f52c22379b6894335656c9342f6
3,372
js
JavaScript
src/api/exchanges/binance/binance.js
myenchantedtrader/met
eec83b3741a53325319166a18bc14b0afdf264cf
[ "MIT" ]
1
2020-07-23T18:01:45.000Z
2020-07-23T18:01:45.000Z
src/api/exchanges/binance/binance.js
myenchantedtrader/met
eec83b3741a53325319166a18bc14b0afdf264cf
[ "MIT" ]
20
2019-03-27T10:48:39.000Z
2020-06-02T16:55:58.000Z
src/api/exchanges/binance/binance.js
myenchantedtrader/met
eec83b3741a53325319166a18bc14b0afdf264cf
[ "MIT" ]
null
null
null
// Binance API const API_URL = 'https://api.binance.com/' const WS_URL = 'wss://stream.binance.com:9443' function _call (url) { return new Promise((resolve, reject) => { fetch('https://cors-anywhere.herokuapp.com/' + API_URL + url) .then(r => r.json()) .then(r => resolve(r)) .catch(e => reject(e)) }) } const helpers = { alts: { 'bcc': 'bch' }, formatSymbols (symbols) { return symbols.map((value) => this.alts[value] || value) } } const rest = { async getSymbol (symbol) { const response = await _call('api/v1/exchangeInfo') return [response.symbols.find(value => value.symbol === symbol)].map((value) => [value.baseAsset, value.quoteAsset])[0] }, async getMarkets () { const response = await _call('api/v1/exchangeInfo') // let finalList = [] return response.symbols.map((value) => ({base: value.baseAsset, quote: value.quoteAsset})) }, // ticker () { // // return only tickers {ticker: {information}, ticker: {information}} // } async orderBook (symbol, limit = 100) { const response = await _call(`api/v1/depth?symbol=${symbol}&limit=${limit}`) let bid = {} response['bids'].forEach((value) => { bid[value[0]] = value[1] }) let ask = {} response['asks'].forEach((value) => { ask[value[0]] = value[1] }) return [bid, ask] } } // TODO: rewrite const ws = { price (symbol, _cb) { const socket = new WebSocket(`${WS_URL}/ws/${symbol.toLowerCase()}@ticker`) socket.onmessage = (msg) => { try { const response = JSON.parse(msg.data) _cb(response.c) } catch (e) { console.log('Binance socket error', e) } } return socket }, ticker (symbol, _cb) { const socket = new WebSocket(`${WS_URL}/ws/${symbol.toLowerCase()}@ticker`) socket.onmessage = (msg) => { try { const response = JSON.parse(msg.data) _cb({ price: response.c, change: response.P, volume: response.q, high: response.h, low: response.l }) } catch (e) { console.log('Binance socket error', e) } } return socket }, trades (symbol, _cb) { const socket = new WebSocket(`${WS_URL}/ws/${symbol.toLowerCase()}@trade`) socket.onmessage = (msg) => { try { const response = JSON.parse(msg.data) _cb({ price: response.p, quantity: response.q, amount: response.p * response.q, type: response.m ? 0 : 1, timestamp: response.T }) } catch (e) { console.log('Binance socket error', e) } } return socket }, async orderBook (symbol, _cb) { const book = await rest.orderBook(symbol) _cb(book[0], book[1]) const socket = new WebSocket(`${WS_URL}/ws/${symbol.toLowerCase()}@depth`) socket.onmessage = (msg) => { try { const response = JSON.parse(msg.data) let bid = {} response['b'].forEach((value) => { bid[value[0]] = value[1] }) let ask = {} response['a'].forEach((value) => { ask[value[0]] = value[1] }) _cb(bid, ask) } catch (e) { console.log('Binance socket error', e) } } return socket } } export default { ...helpers, ...rest, ws }
22.938776
123
0.544781
05ace12e2504ecace382786e0a540baee5d2f510
361
js
JavaScript
packages/utils/__test__/Monitor.test.js
Madvinking/node-toolbox
459e10ec37312cdadd6e6a3186386b26357ed37f
[ "MIT" ]
null
null
null
packages/utils/__test__/Monitor.test.js
Madvinking/node-toolbox
459e10ec37312cdadd6e6a3186386b26357ed37f
[ "MIT" ]
4
2021-09-22T18:42:25.000Z
2022-02-21T10:26:54.000Z
packages/utils/__test__/Monitor.test.js
Madvinking/node-toolbox
459e10ec37312cdadd6e6a3186386b26357ed37f
[ "MIT" ]
1
2021-09-22T14:55:14.000Z
2021-09-22T14:55:14.000Z
import { Monitor } from '../src/Monitor.js'; describe.skip('utils - Monitor', () => { it('invoke callback function on monitor', async () => { let numberOfCalls = 0; const monitor = new Monitor({ monitor: async () => (numberOfCalls += 1), interval: 5 }); monitor.start(); jest.runAllTimers(); expect(numberOfCalls).toEqual(2); }); });
25.785714
92
0.609418
05ae87e317bd9bcf29561814331ff8e785c5de9e
283
js
JavaScript
utils/shuffleArray.js
reacto11mecha/wuno-bot
303ff4b972e4b38fc33dca181fe5d76e30003c66
[ "MIT" ]
1
2021-12-07T10:06:53.000Z
2021-12-07T10:06:53.000Z
utils/shuffleArray.js
reacto11mecha/wuno-bot
303ff4b972e4b38fc33dca181fe5d76e30003c66
[ "MIT" ]
null
null
null
utils/shuffleArray.js
reacto11mecha/wuno-bot
303ff4b972e4b38fc33dca181fe5d76e30003c66
[ "MIT" ]
null
null
null
const shuffleArray = (array) => { if (Array.isArray(array)) return array .map((value) => ({ value, sort: Math.random() })) .sort((a, b) => a.sort - b.sort) .map(({ value }) => value); throw new Error("Not a valid array!"); }; export default shuffleArray;
23.583333
55
0.565371
05aea9da39d703301e752b5040f5731671c497ea
5,976
js
JavaScript
core/fork/fork_container/forkAssembler.js
formula1/Silk-Skeleton
a9a6e59c7c83371352988eeca442db32736793af
[ "BSD-2-Clause" ]
null
null
null
core/fork/fork_container/forkAssembler.js
formula1/Silk-Skeleton
a9a6e59c7c83371352988eeca442db32736793af
[ "BSD-2-Clause" ]
null
null
null
core/fork/fork_container/forkAssembler.js
formula1/Silk-Skeleton
a9a6e59c7c83371352988eeca442db32736793af
[ "BSD-2-Clause" ]
null
null
null
var url = require("url"); var child_process = require("child_process"); var http = require("http"); var https = require("https"); var fs = require("fs"); var async = require("async"); var Server2Fork = require(__dirname+"/Server2Fork_com.js"); var windowreq = ["url","title","icon"]; var windowuri = ["url","icon"] function forkAssembler(folder,urlpath,file,next){ async.waterfall([ function(next){ next(void(0),folder,urlpath,file); }, checkWindowJSON, checkURIs, checkNPMDeps, checkBowerDeps, createFork, forkListens ],function(err,result){ if(err) return next(err); next(void(0),result) }) } module.exports = forkAssembler; function checkWindowJSON (folder,urlpath,file,next){ console.log("checking window.json for: "+file); var f = folder; fs.exists(f+file+"/window.json",function(boo){ if(!boo) return next(new Error(f+file+"/window.json does not exist.")); fs.readFile(f+file+"/window.json", function(err, contents){ if(err) return next(err) try{ var j = JSON.parse(contents); }catch(err){ return next(err); } try{ windowreq.forEach(function(item){ if(!j[item]) throw new Error(item+" is required in "+file+"/window.json") }) }catch(e){ return next(e); } j.name = file; j.clean = JSON.parse(JSON.stringify(j)); j.path = f+file; j.tempurl = urlpath+j.name; next(void(0),j); }) }) } function checkURIs (j,next){ console.log("checking uris for: "+j.name); if(j.url === "headless") return next(void(0),j); async.each(windowuri,function(ns,next){ j[ns] = url.resolve(j.tempurl+"/index.html",j[ns]); j.clean[ns] = j[ns]; var parsed = url.parse(j[ns]); if(!url.host){ fs.exists(j.path,function(boo){ if(!boo) return next(new Error("local file does not exist")); next(); }) return; } if(/^https/.test(j[ns])) https.request(j[ns], function(res){ if(res.statusCode >= 400) return next(new Error(j[ns]+" cannot be fulfilled "+res.statusCode)); }) else http.request(j[ns],function(res){ if(res.statusCode >= 400) return next(new Error(j[ns]+" cannot be fulfilled "+res.statusCode)); }) },function(err){ if(err) next(err); next(void(0),j); }) }; function checkNPMDeps (j,next){ console.log("checking npm dependencies for: "+j.name); if(!j.npm_dependencies){ j.npm_dependencies = {}; j.npm_info = {already_install:[],new_install:[],all:[]}; return next(void(0),j); } var ai = []; var ni = []; async.each(Object.keys(j.npm_dependencies),function(dep,next){ try{ var loc = require.resolve(dep); ai.push({name:dep,path:loc}); return next(void(0),dep); }catch(e){ console.log("this dependency does not exist"); child_process.exec( "npm install "+dep+"@"+j.npm_dependencies[dep], {cwd:__root}, function(err,stout,sterr){ if(err) return next(err); try{ var loc = require.resolve(dep); ni.push({name:dep,path:loc}); return next(void(0),dep); }catch(e){ return next(e); } }) } },function(err,results){ if(err) return next(err); j.npm_info = {already_install:ai,new_install:ni,all:results}; return next(void(0),j); }) }; function checkBowerDeps (j,next){ console.log("checking bower dependencies for: "+j.name); if(!j.bower_dependencies){ j.bower_dependencies = {}; j.bower_info = {already_install:[],new_install:[],all:[]}; return next(void(0),j); } var bowerJson = require('bower-json-auth'); var ai = []; var ni = []; async.each(Object.keys(j.bower_dependencies),function(dep,next){ bowerJson.read(__root+"/bower_components/"+dep,function(err,json){ if(json){ ai.push(dep) return next(void(0),dep); } child_process.exec( "bower install "+dep+"#"+j.bower_dependencies[dep], {cwd:__root}, function(err,stout,sterr){ if(err) return next(err); console.log(stout); bowerJson.read(__root+"/bower_components/"+dep,function(err,file){ if(err) return next(err); ni.push(dep); return next(void(0),dep); }); }) }) },function(err,results){ if(err) return next(err); j.bower_info = {already_install:ai,new_install:ni,all:results}; return next(void(0),j); }) } function createFork (j,next){ console.log("creating fork: "+j.name); try{ require.resolve(j.path); try{ var fork = child_process.fork( __dirname+"/Fork2Server_com.js",[],{ cwd:__root, env:{ start:j.path, TERM:process.env.TERM } }); j.fork = fork; var timeout = setTimeout(function(){ fork.removeAllListeners(); fork.kill(); return next(new Error(j.title+"'s fork process timed out, this may be due to long syncrounous code on initialization'")); }, 5000); fork.once("message",function(m){ clearTimeout(timeout); fork.removeAllListeners(); if(m.cmd != "ready"){ fork.kill(); return next(new Error("fork process sending messages before initialization")); } console.log("forkready"); next(void(0),j); }); fork.once("error",function(e){ clearTimeout(timeout); fork.removeAllListeners(); return next(e); }); }catch(e){ clearTimeout(timeout); fork.removeAllListeners(); return next(e); } }catch(e){ console.log(j.name+" has no serverside scripts but that is ok") return next(void(0),j); } } function forkListens(j,next){ if(!j.fork) return next(void(0),j); console.log("adding listeners to fork: "+j.name); j.S2fork = Server2Fork(j,j.fork) next(void(0),j); }
28.056338
129
0.587182
05af3d6c1ef63b4f5f7b3ebf7b31e075a0f07b26
474
js
JavaScript
server/models/upvote.js
TomKlotzPro/openNetwork
3cac69c0406f4958fa0e37d394135f03ab244ed4
[ "BSD-3-Clause" ]
1
2020-11-05T15:15:58.000Z
2020-11-05T15:15:58.000Z
server/models/upvote.js
TomKlotzPro/openNetwork
3cac69c0406f4958fa0e37d394135f03ab244ed4
[ "BSD-3-Clause" ]
50
2020-11-04T12:14:14.000Z
2021-03-09T08:34:29.000Z
server/models/upvote.js
TomKlotzPro/openNetwork
3cac69c0406f4958fa0e37d394135f03ab244ed4
[ "BSD-3-Clause" ]
null
null
null
const mongoose = require("mongoose"); const mongooseAlgolia = require("mongoose-algolia"); const Schema = mongoose.Schema; const upvoteSchema = new Schema({ createdAt: { type: Date, default: Date.now }, author: { type: Schema.Types.ObjectId, ref: "User" } }); upvoteSchema.plugin(mongooseAlgolia, { appId: process.env.APPID, apiKey: process.env.APPKEY, indexName: "upvotes" + process.env.INDEX_NAME }); module.exports = mongoose.model("Upvote", upvoteSchema);
26.333333
56
0.723629
05af9a9272cdabffece1c5a22a4cefaa4c3baabe
347,983
js
JavaScript
geodata/region/mexico/verHigh.js
AnnieMT/travel-2019-map
7ee51971e5aba8f2d55bab1fcaf460df1caffa0e
[ "Apache-2.0" ]
null
null
null
geodata/region/mexico/verHigh.js
AnnieMT/travel-2019-map
7ee51971e5aba8f2d55bab1fcaf460df1caffa0e
[ "Apache-2.0" ]
null
null
null
geodata/region/mexico/verHigh.js
AnnieMT/travel-2019-map
7ee51971e5aba8f2d55bab1fcaf460df1caffa0e
[ "Apache-2.0" ]
null
null
null
/** * @license * Copyright (c) 2018 amCharts (Antanas Marcelionis, Martynas Majeris) * * This sofware is provided under multiple licenses. Please see below for * links to appropriate usage. * * Free amCharts linkware license. Details and conditions: * https://github.com/amcharts/amcharts4/blob/master/LICENSE * * One of the amCharts commercial licenses. Details and pricing: * https://www.amcharts.com/online-store/ * https://www.amcharts.com/online-store/licenses-explained/ * * If in doubt, contact amCharts at contact@amcharts.com * * PLEASE DO NOT REMOVE THIS COPYRIGHT NOTICE. * @hidden */ am4internal_webpackJsonp(["1b45"],{"1Xpg":function(e,o,a){"use strict";Object.defineProperty(o,"__esModule",{value:!0});var r={type:"FeatureCollection",features:[{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-97.3874,21.5365],[-97.3472,21.5549],[-97.3425,21.5591],[-97.3302,21.5584],[-97.3327,21.5513],[-97.3328,21.539],[-97.3294,21.521],[-97.3318,21.5101],[-97.3416,21.4868],[-97.3456,21.4719],[-97.3542,21.4477],[-97.3785,21.3934],[-97.3957,21.3678],[-97.4046,21.3517],[-97.4112,21.3363],[-97.4181,21.3096],[-97.4204,21.2939],[-97.4209,21.2707],[-97.4193,21.2604],[-97.4224,21.2491],[-97.4202,21.2309],[-97.4122,21.2007],[-97.4042,21.1777],[-97.3918,21.1483],[-97.3806,21.126],[-97.365,21.0976],[-97.3721,21.1073],[-97.3779,21.1112],[-97.3847,21.1208],[-97.3858,21.1316],[-97.4003,21.132],[-97.4,21.1257],[-97.4076,21.1214],[-97.409,21.1148],[-97.4343,21.1175],[-97.435,21.1257],[-97.4431,21.1258],[-97.4506,21.1321],[-97.4512,21.1366],[-97.4684,21.1394],[-97.4862,21.1375],[-97.4934,21.133],[-97.4954,21.1272],[-97.5127,21.1223],[-97.523,21.1228],[-97.5291,21.1206],[-97.538,21.1236],[-97.5547,21.1132],[-97.5566,21.1054],[-97.5726,21.1078],[-97.5786,21.1162],[-97.5882,21.124],[-97.5901,21.1334],[-97.5938,21.1386],[-97.5995,21.1371],[-97.6118,21.1406],[-97.6111,21.1473],[-97.623,21.1574],[-97.63,21.1589],[-97.6302,21.1704],[-97.637,21.1837],[-97.6518,21.1848],[-97.6718,21.1884],[-97.6845,21.194],[-97.6852,21.1987],[-97.7054,21.1915],[-97.7122,21.1964],[-97.713,21.2039],[-97.6988,21.2139],[-97.695,21.2237],[-97.705,21.2322],[-97.7038,21.243],[-97.6984,21.2464],[-97.6966,21.2535],[-97.6807,21.2588],[-97.6705,21.2573],[-97.6636,21.2642],[-97.6645,21.2729],[-97.6596,21.28],[-97.6538,21.2878],[-97.6268,21.2828],[-97.6127,21.2843],[-97.6063,21.2952],[-97.5984,21.2922],[-97.5888,21.3096],[-97.5923,21.3157],[-97.5863,21.3329],[-97.5826,21.3332],[-97.5831,21.3475],[-97.5855,21.3517],[-97.5847,21.3591],[-97.5763,21.3599],[-97.5674,21.367],[-97.5658,21.3718],[-97.5587,21.3745],[-97.5601,21.3838],[-97.5565,21.3845],[-97.5539,21.3974],[-97.5409,21.4032],[-97.5383,21.4071],[-97.5261,21.403],[-97.5204,21.4097],[-97.5275,21.4136],[-97.5284,21.4189],[-97.5436,21.4193],[-97.5415,21.4252],[-97.5251,21.4265],[-97.5255,21.4358],[-97.5212,21.4409],[-97.5199,21.4589],[-97.5131,21.467],[-97.5196,21.5006],[-97.5305,21.5809],[-97.5255,21.5825],[-97.5065,21.5764],[-97.4887,21.5767],[-97.4881,21.5687],[-97.3874,21.5365]]]},properties:{id:"30151",COUNTYID:"151",COUNTY:"Tamiahua",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30151"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-96.1183,19.1717],[-96.1185,19.1687],[-96.1315,19.1652],[-96.1294,19.1462],[-96.1354,19.1444],[-96.1416,19.1376],[-96.1497,19.1095],[-96.1589,19.1108],[-96.1672,19.1093],[-96.1748,19.1026],[-96.1828,19.1051],[-96.1904,19.1027],[-96.2019,19.1095],[-96.2087,19.1095],[-96.2076,19.1162],[-96.2108,19.1242],[-96.2221,19.1192],[-96.244,19.1449],[-96.2571,19.1404],[-96.2636,19.1333],[-96.2666,19.1374],[-96.2929,19.1542],[-96.2974,19.1591],[-96.3041,19.1574],[-96.3138,19.1606],[-96.31,19.179],[-96.3061,19.1857],[-96.3088,19.192],[-96.3147,19.1913],[-96.3197,19.1987],[-96.3323,19.1988],[-96.3339,19.2085],[-96.3271,19.217],[-96.3333,19.2266],[-96.3395,19.2311],[-96.3394,19.2419],[-96.3237,19.2373],[-96.3198,19.2329],[-96.3096,19.2349],[-96.2911,19.2435],[-96.2868,19.2599],[-96.2803,19.2591],[-96.2732,19.2648],[-96.2537,19.2429],[-96.257,19.2417],[-96.2414,19.2255],[-96.2267,19.2209],[-96.227,19.2354],[-96.2242,19.2487],[-96.2277,19.2606],[-96.2216,19.2654],[-96.2077,19.2593],[-96.1964,19.257],[-96.1891,19.2507],[-96.1818,19.2504],[-96.1742,19.2371],[-96.1747,19.2291],[-96.1693,19.2219],[-96.1591,19.2169],[-96.1407,19.2165],[-96.1327,19.218],[-96.123,19.2131],[-96.1303,19.2078],[-96.1354,19.2141],[-96.1403,19.2101],[-96.1355,19.2016],[-96.1234,19.1946],[-96.1234,19.1793],[-96.1183,19.1717]]]},properties:{id:"30193",COUNTYID:"193",COUNTY:"Veracruz",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30193"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-97.0696,18.7032],[-97.0625,18.6982],[-97.0556,18.6852],[-97.0548,18.6778],[-97.0568,18.665],[-97.064,18.6639],[-97.0785,18.6414],[-97.0847,18.6412],[-97.0894,18.6483],[-97.0951,18.648],[-97.1094,18.6554],[-97.1217,18.6486],[-97.1342,18.6481],[-97.134,18.6594],[-97.1421,18.6615],[-97.1433,18.6665],[-97.1589,18.6642],[-97.1713,18.6643],[-97.1784,18.6598],[-97.1854,18.6678],[-97.1792,18.6757],[-97.1663,18.6868],[-97.1597,18.6852],[-97.1547,18.6749],[-97.1471,18.673],[-97.1359,18.6839],[-97.1348,18.6894],[-97.1378,18.6992],[-97.1374,18.7166],[-97.1322,18.7303],[-97.1281,18.7244],[-97.1212,18.7015],[-97.114,18.7028],[-97.1077,18.7109],[-97.1019,18.7062],[-97.0864,18.7083],[-97.0855,18.716],[-97.0747,18.7131],[-97.076,18.7031],[-97.0696,18.7032]]]},properties:{id:"30020",COUNTYID:"020",COUNTY:"Atlahuilco",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30020"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-96.9913,18.9791],[-96.9946,18.9652],[-97.0036,18.9529],[-96.9927,18.9398],[-96.9803,18.9324],[-96.9731,18.9221],[-96.9587,18.9083],[-96.9564,18.9025],[-96.9706,18.9002],[-96.9809,18.9029],[-96.9823,18.8991],[-96.9798,18.8867],[-96.9816,18.8829],[-96.974,18.8633],[-96.9737,18.8552],[-96.97,18.8467],[-96.9627,18.8382],[-96.9566,18.8383],[-96.9568,18.8257],[-96.9342,18.8165],[-96.9285,18.8111],[-96.9264,18.8022],[-96.9491,18.804],[-96.9514,18.8105],[-96.9625,18.8139],[-96.964,18.8205],[-96.9716,18.8254],[-96.9803,18.8347],[-96.9835,18.8422],[-96.9866,18.8643],[-96.9959,18.863],[-97.0043,18.8685],[-97.0064,18.8866],[-97.0129,18.8943],[-97.0095,18.902],[-97.0129,18.9063],[-97.0098,18.9153],[-97.021,18.9224],[-97.0219,18.9321],[-97.0252,18.9407],[-97.0209,18.944],[-97.0269,18.9513],[-97.0285,18.961],[-97.0329,18.9638],[-97.0318,18.9723],[-97.0188,18.9745],[-97.0143,18.9786],[-97.0124,18.9869],[-96.9971,18.9796],[-96.9913,18.9791]]]},properties:{id:"30068",COUNTYID:"068",COUNTY:"Fortín",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30068"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-96.2216,19.2654],[-96.2277,19.2606],[-96.2242,19.2487],[-96.227,19.2354],[-96.2267,19.2209],[-96.2414,19.2255],[-96.257,19.2417],[-96.2537,19.2429],[-96.2732,19.2648],[-96.2803,19.2591],[-96.2868,19.2599],[-96.2911,19.2435],[-96.3096,19.2349],[-96.3198,19.2329],[-96.3237,19.2373],[-96.3394,19.2419],[-96.34,19.2489],[-96.325,19.2963],[-96.3327,19.3047],[-96.3458,19.3148],[-96.3469,19.3251],[-96.3529,19.3291],[-96.3494,19.3412],[-96.3598,19.3427],[-96.3587,19.3479],[-96.3739,19.3583],[-96.3783,19.3651],[-96.3848,19.3606],[-96.3819,19.3723],[-96.3732,19.3806],[-96.3771,19.4007],[-96.3692,19.4005],[-96.3533,19.3955],[-96.3426,19.3974],[-96.3321,19.3959],[-96.3299,19.4088],[-96.3249,19.4077],[-96.3217,19.4143],[-96.3163,19.3941],[-96.3066,19.3716],[-96.3112,19.3597],[-96.3071,19.3446],[-96.3023,19.3336],[-96.2918,19.3183],[-96.2682,19.2943],[-96.257,19.2858],[-96.2276,19.268],[-96.2216,19.2654]]]},properties:{id:"30016",COUNTYID:"016",COUNTY:"La Antigua",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30016"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-97.0219,18.9321],[-97.021,18.9224],[-97.0098,18.9153],[-97.0129,18.9063],[-97.0095,18.902],[-97.0129,18.8943],[-97.0064,18.8866],[-97.0043,18.8685],[-96.9959,18.863],[-96.9866,18.8643],[-96.9835,18.8422],[-96.9803,18.8347],[-96.9716,18.8254],[-96.9771,18.8205],[-96.9749,18.8128],[-96.9766,18.8052],[-96.9748,18.7988],[-96.9876,18.7941],[-96.9839,18.7791],[-96.9959,18.7699],[-97.0033,18.7721],[-97.0093,18.7689],[-97.0113,18.7576],[-97.0142,18.7556],[-97.0221,18.7626],[-97.0277,18.7693],[-97.0412,18.7898],[-97.0466,18.7986],[-97.0575,18.8106],[-97.0592,18.8209],[-97.0628,18.8271],[-97.0708,18.8318],[-97.0834,18.8298],[-97.0871,18.8329],[-97.0836,18.8346],[-97.0702,18.8507],[-97.068,18.8594],[-97.0738,18.8664],[-97.0791,18.8662],[-97.0848,18.875],[-97.0844,18.8805],[-97.079,18.886],[-97.082,18.8934],[-97.0659,18.8907],[-97.0619,18.9],[-97.0663,18.9228],[-97.0593,18.9459],[-97.0448,18.9453],[-97.0313,18.936],[-97.0219,18.9321]]]},properties:{id:"30085",COUNTYID:"085",COUNTY:"Ixtaczoquitlán",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30085"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-95.9197,18.2468],[-95.9111,18.2406],[-95.9116,18.2219],[-95.8938,18.2236],[-95.8896,18.2125],[-95.8818,18.2075],[-95.8789,18.1978],[-95.89,18.1884],[-95.8987,18.1903],[-95.9108,18.1849],[-95.9137,18.1711],[-95.9097,18.1702],[-95.9083,18.1618],[-95.9122,18.1534],[-95.899,18.1512],[-95.8955,18.1465],[-95.9027,18.1357],[-95.9135,18.1386],[-95.9125,18.1506],[-95.9221,18.1508],[-95.9334,18.1435],[-95.9374,18.1568],[-95.9525,18.1598],[-95.9674,18.1541],[-95.9813,18.1442],[-95.9906,18.1512],[-95.9928,18.1596],[-96.006,18.1659],[-96.0158,18.1677],[-96.007,18.1848],[-96.0002,18.1845],[-95.9825,18.1893],[-95.9799,18.1997],[-95.9917,18.1994],[-95.9988,18.2069],[-95.9965,18.2135],[-95.9887,18.2245],[-95.9767,18.2315],[-95.9831,18.2397],[-95.9938,18.2407],[-95.9924,18.2493],[-95.9878,18.2527],[-95.9769,18.2507],[-95.9687,18.2369],[-95.9617,18.2312],[-95.9646,18.2205],[-95.9573,18.2209],[-95.9519,18.2268],[-95.9561,18.235],[-95.9561,18.2467],[-95.9502,18.2513],[-95.9417,18.2489],[-95.9197,18.2468]]]},properties:{id:"30176",COUNTYID:"176",COUNTY:"Tlacojalpan",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30176"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-95.8931,18.6224],[-95.8979,18.6088],[-95.8975,18.6009],[-95.9011,18.5944],[-95.8976,18.577],[-95.9105,18.5653],[-95.9244,18.5651],[-95.9369,18.5674],[-95.9408,18.554],[-95.947,18.5475],[-95.9493,18.5411],[-95.9593,18.5246],[-95.9624,18.5271],[-95.9768,18.5177],[-95.9851,18.5277],[-95.9951,18.5269],[-96.0121,18.5367],[-96.0053,18.5447],[-96.0048,18.5536],[-96.0144,18.5674],[-96.0199,18.5657],[-96.0278,18.5697],[-96.0352,18.5816],[-96.036,18.5954],[-96.0311,18.6055],[-96.0297,18.6166],[-96.0374,18.6285],[-96.0409,18.6307],[-96.0427,18.646],[-96.0491,18.6477],[-96.0573,18.6556],[-96.0479,18.6726],[-96.0369,18.6731],[-96.0364,18.6896],[-96.0495,18.6895],[-96.0491,18.7056],[-96.0409,18.7055],[-96.0409,18.7175],[-96.045,18.7211],[-96.044,18.7294],[-96.0368,18.7288],[-96.0367,18.7384],[-96.0193,18.7383],[-96.0219,18.7524],[-96.0281,18.7533],[-96.0281,18.7641],[-96.0147,18.7606],[-96,18.7538],[-95.9968,18.7603],[-95.9957,18.7761],[-95.9889,18.784],[-95.984,18.7853],[-95.9767,18.7931],[-95.9733,18.7895],[-95.964,18.7932],[-95.9541,18.7923],[-95.9491,18.7953],[-95.9366,18.7941],[-95.9186,18.7839],[-95.9115,18.7779],[-95.9088,18.7683],[-95.9072,18.7534],[-95.8956,18.7519],[-95.8924,18.7569],[-95.8834,18.7606],[-95.8784,18.7486],[-95.8657,18.7522],[-95.8673,18.742],[-95.8719,18.7348],[-95.871,18.7268],[-95.8824,18.721],[-95.8852,18.7041],[-95.8824,18.6982],[-95.8869,18.68],[-95.8867,18.6653],[-95.8909,18.6414],[-95.8997,18.6263],[-95.8931,18.6224]]]},properties:{id:"30075",COUNTYID:"075",COUNTY:"Ignacio de la Llave",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30075"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-97.1059,19.5215],[-97.0831,19.5151],[-97.0717,19.5095],[-97.0682,19.5033],[-97.0568,19.4967],[-97.0497,19.4825],[-97.0431,19.4759],[-97.0274,19.468],[-97.0223,19.4688],[-97.0109,19.4633],[-96.999,19.4623],[-96.9983,19.4497],[-96.9832,19.4395],[-96.9795,19.44],[-96.9645,19.4267],[-96.95,19.4225],[-96.9387,19.409],[-96.931,19.4026],[-96.9253,19.4012],[-96.9224,19.3931],[-96.916,19.387],[-96.9085,19.3844],[-96.9079,19.3789],[-96.8954,19.3756],[-96.8966,19.3711],[-96.9045,19.3686],[-96.9064,19.3743],[-96.9217,19.3845],[-96.9378,19.3924],[-96.9642,19.3978],[-96.9706,19.4018],[-96.9801,19.4],[-96.9884,19.4035],[-96.9971,19.4013],[-97.0116,19.3933],[-97.0208,19.3966],[-97.0306,19.3916],[-97.0474,19.3964],[-97.0574,19.3949],[-97.0657,19.4006],[-97.0821,19.4156],[-97.0906,19.4172],[-97.0983,19.4227],[-97.1105,19.4196],[-97.1152,19.4221],[-97.1345,19.4227],[-97.1397,19.4349],[-97.1478,19.4478],[-97.1438,19.4588],[-97.1517,19.4772],[-97.1498,19.488],[-97.1385,19.5082],[-97.1229,19.5192],[-97.1115,19.5177],[-97.1059,19.5215]]]},properties:{id:"30092",COUNTYID:"092",COUNTY:"Xico",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30092"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-96.73,19.719],[-96.7243,19.7098],[-96.7174,19.7067],[-96.7142,19.6976],[-96.7202,19.6952],[-96.7277,19.6736],[-96.7374,19.6746],[-96.7373,19.6632],[-96.7445,19.6632],[-96.7438,19.6456],[-96.7515,19.632],[-96.7487,19.6181],[-96.7598,19.6116],[-96.7664,19.62],[-96.7708,19.6046],[-96.7776,19.6028],[-96.7833,19.5933],[-96.7966,19.5929],[-96.8092,19.6125],[-96.7954,19.6216],[-96.793,19.6313],[-96.7974,19.638],[-96.7979,19.6449],[-96.8086,19.6555],[-96.8163,19.6542],[-96.8214,19.6637],[-96.831,19.6729],[-96.8296,19.6817],[-96.8228,19.6839],[-96.8215,19.6952],[-96.8136,19.6989],[-96.7963,19.6995],[-96.792,19.7133],[-96.7863,19.7111],[-96.7731,19.7131],[-96.7816,19.7221],[-96.7738,19.7284],[-96.7699,19.7354],[-96.7614,19.7301],[-96.7506,19.7265],[-96.7498,19.7151],[-96.7413,19.709],[-96.73,19.719]]]},properties:{id:"30166",COUNTYID:"166",COUNTY:"Tepetlán",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30166"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-94.0902,17.9683],[-94.0976,17.9697],[-94.1079,17.9661],[-94.118,17.9678],[-94.1334,17.9787],[-94.1402,17.9778],[-94.1548,17.9839],[-94.1761,17.9787],[-94.1803,17.9892],[-94.1973,17.9897],[-94.2038,17.9909],[-94.2089,17.9983],[-94.2129,17.9967],[-94.2203,18.0034],[-94.2172,18.0131],[-94.2207,18.0203],[-94.2206,18.0283],[-94.2174,18.0398],[-94.2248,18.0445],[-94.2326,18.045],[-94.2352,18.0501],[-94.2513,18.0511],[-94.2589,18.0474],[-94.2721,18.0494],[-94.2818,18.0619],[-94.2574,18.0698],[-94.2402,18.0869],[-94.2414,18.118],[-94.2343,18.1283],[-94.2235,18.1358],[-94.2283,18.153],[-94.235,18.1611],[-94.2343,18.1723],[-94.2404,18.1751],[-94.2423,18.1831],[-94.2401,18.188],[-94.203,18.1963],[-94.1975,18.1986],[-94.1696,18.2041],[-94.132,18.2135],[-94.13,18.2129],[-94.1292,18.1751],[-94.1256,18.1667],[-94.1173,18.1661],[-94.1095,18.1734],[-94.1029,18.1734],[-94.097,18.167],[-94.0941,18.1585],[-94.0983,18.1481],[-94.1011,18.1306],[-94.0961,18.1119],[-94.0834,18.1024],[-94.0831,18.0908],[-94.0959,18.0835],[-94.0972,18.0786],[-94.0912,18.0715],[-94.0846,18.0693],[-94.0744,18.0589],[-94.0775,18.0444],[-94.0836,18.0339],[-94.0799,18.0223],[-94.0838,18.0073],[-94.0806,18.0047],[-94.0713,18.0105],[-94.0642,18.0023],[-94.0667,17.9962],[-94.0623,17.9861],[-94.0711,17.9859],[-94.0822,17.9783],[-94.081,17.9681],[-94.0902,17.9683]]]},properties:{id:"30204",COUNTYID:"204",COUNTY:"Agua Dulce",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30204"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-95.7782,18.4668],[-95.7768,18.4575],[-95.768,18.457],[-95.7736,18.4493],[-95.7736,18.4425],[-95.7693,18.4389],[-95.7745,18.4312],[-95.774,18.4269],[-95.7801,18.4179],[-95.7913,18.4173],[-95.7786,18.3999],[-95.787,18.3844],[-95.7987,18.3859],[-95.7993,18.3823],[-95.818,18.392],[-95.8281,18.3793],[-95.8349,18.3768],[-95.8437,18.3774],[-95.8472,18.3742],[-95.8589,18.372],[-95.8712,18.3786],[-95.8731,18.3744],[-95.8852,18.3739],[-95.8964,18.3787],[-95.8971,18.3824],[-95.8903,18.3886],[-95.8883,18.4017],[-95.8964,18.4032],[-95.9062,18.4008],[-95.9063,18.4155],[-95.9036,18.4257],[-95.9146,18.4269],[-95.93,18.432],[-95.9353,18.4283],[-95.9328,18.4173],[-95.938,18.4116],[-95.9432,18.4187],[-95.9558,18.4213],[-95.9618,18.4251],[-95.9674,18.4233],[-95.977,18.4268],[-95.9851,18.4269],[-95.9903,18.4342],[-95.999,18.4328],[-95.9979,18.4428],[-96.001,18.4478],[-95.9991,18.4579],[-95.9875,18.47],[-95.9913,18.478],[-96.0037,18.4786],[-96.0121,18.4825],[-96.0124,18.4894],[-95.9979,18.5007],[-95.9864,18.5062],[-95.9768,18.5177],[-95.9624,18.5271],[-95.9593,18.5246],[-95.9493,18.5411],[-95.947,18.5475],[-95.9408,18.554],[-95.9369,18.5674],[-95.9244,18.5651],[-95.9105,18.5653],[-95.8976,18.577],[-95.9011,18.5944],[-95.8975,18.6009],[-95.8979,18.6088],[-95.8931,18.6224],[-95.8863,18.6231],[-95.8787,18.6295],[-95.8787,18.6255],[-95.8921,18.6113],[-95.8891,18.6033],[-95.8767,18.5945],[-95.8755,18.588],[-95.8803,18.5801],[-95.8655,18.5758],[-95.8675,18.5645],[-95.8498,18.5655],[-95.8403,18.552],[-95.8266,18.5395],[-95.8303,18.5122],[-95.8334,18.5037],[-95.8505,18.4989],[-95.8508,18.4938],[-95.8435,18.489],[-95.827,18.484],[-95.8174,18.4787],[-95.8099,18.4816],[-95.7995,18.468],[-95.7873,18.4652],[-95.7782,18.4668]]]},properties:{id:"30084",COUNTYID:"084",COUNTY:"Ixmatlahuacan",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30084"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-97.5146,20.17],[-97.5319,20.169],[-97.5376,20.1754],[-97.5473,20.1681],[-97.5637,20.1672],[-97.5707,20.1683],[-97.5804,20.1738],[-97.5857,20.1646],[-97.5859,20.1582],[-97.5949,20.1599],[-97.605,20.1578],[-97.6045,20.1669],[-97.6164,20.169],[-97.622,20.1744],[-97.6206,20.1803],[-97.6148,20.1863],[-97.6006,20.1885],[-97.6029,20.1947],[-97.6004,20.1939],[-97.5794,20.1978],[-97.5685,20.2059],[-97.5675,20.2119],[-97.5758,20.217],[-97.5696,20.2205],[-97.5674,20.2281],[-97.5614,20.2285],[-97.5576,20.2372],[-97.5474,20.2407],[-97.5528,20.2493],[-97.5571,20.2501],[-97.5637,20.2426],[-97.5751,20.2434],[-97.5819,20.2669],[-97.5768,20.2706],[-97.5675,20.2717],[-97.558,20.2671],[-97.5529,20.2714],[-97.5471,20.2689],[-97.5434,20.2734],[-97.5299,20.2653],[-97.519,20.2642],[-97.5036,20.2674],[-97.4964,20.2614],[-97.4828,20.2592],[-97.4872,20.2458],[-97.4995,20.2424],[-97.5091,20.2443],[-97.5167,20.2417],[-97.5174,20.2319],[-97.5265,20.229],[-97.529,20.2201],[-97.5387,20.2139],[-97.537,20.2052],[-97.5518,20.2053],[-97.5486,20.1944],[-97.5437,20.2017],[-97.531,20.1998],[-97.5304,20.1887],[-97.5216,20.1907],[-97.5234,20.2047],[-97.5132,20.2083],[-97.5059,20.2055],[-97.5102,20.1951],[-97.515,20.1945],[-97.5137,20.1822],[-97.5052,20.1801],[-97.5146,20.17]]]},properties:{id:"30050",COUNTYID:"050",COUNTY:"Coxquihui",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30050"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-98.313,21.6894],[-98.324,21.6868],[-98.3257,21.6719],[-98.3667,21.6675],[-98.374,21.6618],[-98.4185,21.657],[-98.4222,21.6639],[-98.4302,21.666],[-98.4423,21.6758],[-98.448,21.6778],[-98.481,21.67],[-98.4894,21.6586],[-98.5149,21.6478],[-98.5162,21.6438],[-98.5302,21.6481],[-98.5365,21.6463],[-98.5508,21.6915],[-98.5583,21.6877],[-98.5579,21.7009],[-98.5631,21.7068],[-98.5698,21.7069],[-98.5711,21.7137],[-98.5671,21.7176],[-98.5595,21.7174],[-98.5429,21.7228],[-98.5376,21.7132],[-98.5329,21.6976],[-98.5283,21.6985],[-98.5205,21.7092],[-98.5271,21.7153],[-98.5336,21.7133],[-98.5383,21.7178],[-98.5302,21.7223],[-98.5184,21.7161],[-98.513,21.7204],[-98.5127,21.7266],[-98.5047,21.7285],[-98.5052,21.7371],[-98.5,21.7393],[-98.4915,21.7351],[-98.4817,21.7404],[-98.476,21.7466],[-98.4837,21.7522],[-98.4807,21.7592],[-98.4702,21.7636],[-98.4648,21.7702],[-98.4607,21.7637],[-98.4547,21.7667],[-98.4626,21.7798],[-98.4617,21.7901],[-98.4739,21.7995],[-98.4775,21.8153],[-98.4914,21.8117],[-98.4935,21.8162],[-98.4909,21.8277],[-98.4856,21.8343],[-98.4882,21.8376],[-98.488,21.8519],[-98.4847,21.8557],[-98.4709,21.8524],[-98.4622,21.8595],[-98.4505,21.8749],[-98.4411,21.8739],[-98.4383,21.8875],[-98.4322,21.8879],[-98.4185,21.8837],[-98.4096,21.878],[-98.405,21.8612],[-98.4085,21.8596],[-98.4059,21.842],[-98.4118,21.8309],[-98.3965,21.8306],[-98.3907,21.8195],[-98.3567,21.8224],[-98.3054,21.8251],[-98.3081,21.8096],[-98.3137,21.7671],[-98.3173,21.7487],[-98.3217,21.7082],[-98.31,21.71],[-98.313,21.6894]]]},properties:{id:"30205",COUNTYID:"205",COUNTY:"El Higo",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30205"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-96.9941,19.785],[-96.9845,19.7828],[-96.9743,19.7848],[-96.967,19.7781],[-96.9649,19.7705],[-96.9565,19.7634],[-96.9455,19.764],[-96.9323,19.7552],[-96.9489,19.7435],[-96.9533,19.746],[-96.9648,19.7456],[-96.9668,19.7312],[-96.9596,19.7224],[-96.9667,19.7191],[-96.9799,19.726],[-96.9898,19.7255],[-96.9887,19.7171],[-96.9798,19.7141],[-96.9725,19.6892],[-96.9748,19.684],[-96.9717,19.6676],[-96.9729,19.6648],[-96.9666,19.6498],[-96.9685,19.6437],[-96.974,19.6365],[-96.9855,19.6293],[-96.9875,19.6207],[-97.0025,19.617],[-97.0204,19.6217],[-97.0378,19.6159],[-97.0343,19.6256],[-97.0385,19.6327],[-97.0258,19.6396],[-97.0291,19.6491],[-97.0365,19.6556],[-97.0481,19.6584],[-97.0641,19.6563],[-97.0639,19.6613],[-97.0569,19.6705],[-97.0683,19.685],[-97.0659,19.6938],[-97.0476,19.7056],[-97.0442,19.706],[-97.0367,19.7153],[-97.0309,19.7192],[-97.0292,19.7259],[-97.0342,19.7345],[-97.0296,19.7474],[-97.0317,19.7543],[-97.0223,19.7585],[-97.0268,19.7648],[-97.0233,19.7751],[-97.0259,19.78],[-97.0181,19.7874],[-97.0111,19.7791],[-97,19.7756],[-96.9941,19.785]]]},properties:{id:"30177",COUNTYID:"177",COUNTY:"Tlacolulan",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30177"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-97.6724,20.2436],[-97.6708,20.24],[-97.693,20.2288],[-97.7008,20.2193],[-97.6963,20.2101],[-97.686,20.2037],[-97.6847,20.1923],[-97.6775,20.1893],[-97.6678,20.1817],[-97.6449,20.1827],[-97.6413,20.187],[-97.6354,20.1825],[-97.6384,20.1767],[-97.6451,20.1769],[-97.6456,20.1687],[-97.6535,20.1634],[-97.6567,20.1683],[-97.6704,20.1691],[-97.6806,20.1651],[-97.6896,20.1668],[-97.6987,20.1824],[-97.7069,20.1821],[-97.7202,20.1892],[-97.725,20.1832],[-97.7315,20.1813],[-97.7362,20.1899],[-97.7414,20.1931],[-97.7386,20.2021],[-97.7308,20.2048],[-97.7329,20.2194],[-97.7367,20.2272],[-97.7346,20.2348],[-97.7365,20.2441],[-97.7261,20.2463],[-97.7207,20.2399],[-97.7052,20.2275],[-97.698,20.2427],[-97.693,20.2482],[-97.6856,20.2509],[-97.684,20.2602],[-97.6797,20.2629],[-97.6803,20.2581],[-97.6724,20.2436]]]},properties:{id:"30067",COUNTYID:"067",COUNTY:"Filomeno Mata",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30067"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-96.6851,19.1932],[-96.6974,19.1828],[-96.7076,19.1797],[-96.7084,19.1734],[-96.7173,19.1679],[-96.7319,19.1643],[-96.7464,19.168],[-96.7596,19.1616],[-96.7709,19.1615],[-96.7794,19.1642],[-96.7872,19.1616],[-96.7995,19.1636],[-96.819,19.1604],[-96.8312,19.1671],[-96.8368,19.1658],[-96.8478,19.1713],[-96.8569,19.1698],[-96.8604,19.1756],[-96.8634,19.182],[-96.8582,19.1865],[-96.863,19.1945],[-96.8522,19.1952],[-96.8479,19.2011],[-96.8365,19.2006],[-96.8189,19.2028],[-96.8108,19.2011],[-96.7868,19.2035],[-96.7809,19.1997],[-96.7701,19.1968],[-96.7545,19.1969],[-96.7465,19.2022],[-96.7389,19.2042],[-96.7198,19.2018],[-96.6961,19.2016],[-96.7069,19.1908],[-96.6951,19.1887],[-96.6851,19.1932]]]},properties:{id:"30179",COUNTYID:"179",COUNTY:"Tlacotepec de Mejía",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30179"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-96.8149,19.0089],[-96.8143,18.9987],[-96.8066,18.9962],[-96.7996,19.0016],[-96.7942,18.995],[-96.7871,18.9791],[-96.7869,18.9722],[-96.7813,18.9646],[-96.7786,18.9521],[-96.7748,18.9477],[-96.7716,18.9368],[-96.7682,18.9365],[-96.7594,18.9151],[-96.7558,18.9137],[-96.7509,18.8987],[-96.7451,18.8982],[-96.7392,18.884],[-96.733,18.876],[-96.7331,18.8678],[-96.7117,18.8485],[-96.7157,18.84],[-96.7219,18.8476],[-96.7352,18.8399],[-96.7477,18.8457],[-96.755,18.8516],[-96.7615,18.8513],[-96.7651,18.8596],[-96.7809,18.8738],[-96.7902,18.878],[-96.7993,18.8753],[-96.8248,18.8822],[-96.8239,18.9015],[-96.8184,18.9055],[-96.8282,18.9122],[-96.8286,18.9167],[-96.8364,18.9251],[-96.8294,18.9374],[-96.8297,18.9425],[-96.8381,18.9425],[-96.8447,18.9572],[-96.8537,18.9606],[-96.8606,18.9806],[-96.8589,18.9884],[-96.8675,19.0018],[-96.8658,19.0085],[-96.858,19.0108],[-96.8472,19.004],[-96.8361,19.0074],[-96.8323,19.0046],[-96.8212,19.0046],[-96.8149,19.0089]]]},properties:{id:"30021",COUNTYID:"021",COUNTY:"Atoyac",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30021"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-96.8954,19.3756],[-96.8885,19.3825],[-96.867,19.382],[-96.848,19.3776],[-96.8435,19.3714],[-96.8559,19.3725],[-96.8604,19.3603],[-96.8728,19.3529],[-96.8794,19.3533],[-96.8822,19.3444],[-96.8949,19.3442],[-96.9034,19.3452],[-96.9169,19.352],[-96.9223,19.3492],[-96.9305,19.3692],[-96.9335,19.3656],[-96.9425,19.3649],[-96.9442,19.3686],[-96.9601,19.3601],[-96.9715,19.3559],[-96.9909,19.3598],[-96.9997,19.3558],[-97.0128,19.3551],[-97.0152,19.3589],[-97.0028,19.3771],[-97.0022,19.3829],[-97.0102,19.3829],[-97.0145,19.3865],[-97.0278,19.3857],[-97.0306,19.3916],[-97.0208,19.3966],[-97.0116,19.3933],[-96.9971,19.4013],[-96.9884,19.4035],[-96.9801,19.4],[-96.9706,19.4018],[-96.9642,19.3978],[-96.9378,19.3924],[-96.9217,19.3845],[-96.9064,19.3743],[-96.9045,19.3686],[-96.8966,19.3711],[-96.8954,19.3756]]]},properties:{id:"30164",COUNTYID:"164",COUNTY:"Teocelo",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30164"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-96.9043,18.7861],[-96.9086,18.781],[-96.9072,18.7714],[-96.9153,18.761],[-96.9259,18.7567],[-96.9375,18.7551],[-96.9374,18.7667],[-96.9312,18.766],[-96.9278,18.7739],[-96.9281,18.7807],[-96.937,18.7816],[-96.9324,18.7897],[-96.9242,18.7949],[-96.9043,18.7861]]]},properties:{id:"30041",COUNTYID:"041",COUNTY:"Coetzala",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30041"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-96.8897,19.0911],[-96.8967,19.0846],[-96.8928,19.0816],[-96.8946,19.0646],[-96.8906,19.0579],[-96.8746,19.0453],[-96.8824,19.0397],[-96.8797,19.0191],[-96.8839,19.0092],[-96.8816,19.0064],[-96.8714,19.0075],[-96.8697,19.0122],[-96.858,19.0108],[-96.8658,19.0085],[-96.8675,19.0018],[-96.8589,18.9884],[-96.8606,18.9806],[-96.8537,18.9606],[-96.8593,18.9617],[-96.8733,18.9573],[-96.8998,18.9644],[-96.9048,18.9723],[-96.9009,18.979],[-96.9051,18.9855],[-96.8985,18.9915],[-96.9131,19.0062],[-96.9286,19.0106],[-96.9392,19.0105],[-96.9521,19.0043],[-96.9643,19.0087],[-96.9754,19.0324],[-96.983,19.0329],[-96.9821,19.0251],[-96.9863,19.0212],[-97.0002,19.0283],[-97.0027,19.0442],[-97.006,19.0513],[-97.0099,19.0614],[-97.0179,19.0701],[-97.0089,19.0793],[-97.0038,19.0773],[-96.9997,19.0861],[-96.9824,19.096],[-96.9717,19.0858],[-96.9648,19.0843],[-96.9538,19.0865],[-96.9503,19.0839],[-96.9326,19.0887],[-96.9238,19.0855],[-96.9145,19.0883],[-96.9036,19.095],[-96.8897,19.0911]]]},properties:{id:"30080",COUNTYID:"080",COUNTY:"Ixhuatlán del Café",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30080"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-96.3394,19.2419],[-96.3395,19.2311],[-96.3333,19.2266],[-96.3271,19.217],[-96.3339,19.2085],[-96.3323,19.1988],[-96.3447,19.1947],[-96.3642,19.191],[-96.3677,19.1973],[-96.3798,19.1921],[-96.3846,19.1876],[-96.392,19.1883],[-96.405,19.186],[-96.4112,19.182],[-96.4209,19.1894],[-96.4338,19.1837],[-96.4445,19.1863],[-96.4548,19.1871],[-96.4679,19.1779],[-96.4747,19.1769],[-96.4788,19.1814],[-96.4896,19.1782],[-96.4877,19.1729],[-96.4971,19.1668],[-96.5003,19.1507],[-96.5105,19.1524],[-96.5159,19.1569],[-96.5394,19.1607],[-96.546,19.1599],[-96.5628,19.1657],[-96.5698,19.1717],[-96.5911,19.1748],[-96.5943,19.1822],[-96.6097,19.1892],[-96.6139,19.1967],[-96.6189,19.1971],[-96.6242,19.2039],[-96.6103,19.2153],[-96.6066,19.2143],[-96.6008,19.2239],[-96.5922,19.2323],[-96.5884,19.2295],[-96.5605,19.2409],[-96.5592,19.2439],[-96.5426,19.2499],[-96.539,19.2577],[-96.5166,19.2724],[-96.5167,19.2748],[-96.502,19.2848],[-96.4943,19.2854],[-96.4928,19.2945],[-96.4877,19.2942],[-96.4768,19.3046],[-96.4697,19.3054],[-96.4678,19.315],[-96.4526,19.3182],[-96.4406,19.3272],[-96.4396,19.3316],[-96.4253,19.3351],[-96.4253,19.3469],[-96.4223,19.3516],[-96.4139,19.35],[-96.4122,19.355],[-96.3931,19.3478],[-96.3848,19.3606],[-96.3783,19.3651],[-96.3739,19.3583],[-96.3587,19.3479],[-96.3598,19.3427],[-96.3494,19.3412],[-96.3529,19.3291],[-96.3469,19.3251],[-96.3458,19.3148],[-96.3327,19.3047],[-96.325,19.2963],[-96.34,19.2489],[-96.3394,19.2419]]]},properties:{id:"30126",COUNTYID:"126",COUNTY:"Paso de Ovejas",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30126"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-94.9919,18.1274],[-94.9894,18.1261],[-94.9926,18.1104],[-94.9895,18.1064],[-94.9752,18.115],[-94.9437,18.1375],[-94.9376,18.1411],[-94.9346,18.1354],[-94.923,18.1346],[-94.9177,18.1289],[-94.9184,18.1187],[-94.9113,18.1154],[-94.8987,18.1141],[-94.8841,18.1071],[-94.8855,18.0976],[-94.8806,18.0945],[-94.8809,18.0864],[-94.8743,18.0654],[-94.8598,18.0526],[-94.8576,18.0432],[-94.8682,18.0419],[-94.8712,18.0314],[-94.8643,18.0262],[-94.8558,18.0078],[-94.8495,17.9985],[-94.8538,17.9919],[-94.8669,17.9933],[-94.8716,17.9871],[-94.8845,17.9951],[-94.8906,17.9949],[-94.8972,17.988],[-94.9001,17.9774],[-94.8992,17.9715],[-94.9119,17.9713],[-94.9066,17.9594],[-94.8905,17.9525],[-94.9015,17.9454],[-94.9137,17.9336],[-94.9195,17.935],[-94.9303,17.9214],[-94.9479,17.9213],[-94.9548,17.9285],[-94.9602,17.9283],[-94.9662,17.921],[-94.9825,17.9077],[-94.9862,17.9258],[-94.9919,17.9302],[-95.0075,17.9299],[-95.0104,17.9299],[-95.0102,17.953],[-95.0044,17.9587],[-95.0101,17.9643],[-95.0249,17.9618],[-95.0396,17.962],[-95.0455,17.9599],[-95.0583,17.9637],[-95.0583,17.9743],[-95.097,17.9728],[-95.0967,17.9572],[-95.1017,17.9587],[-95.1189,17.959],[-95.1234,17.9651],[-95.1348,17.9652],[-95.1327,17.95],[-95.1454,17.9435],[-95.1548,17.953],[-95.1648,17.9549],[-95.1698,17.9662],[-95.1664,17.9777],[-95.1718,17.9838],[-95.1813,17.9858],[-95.189,17.982],[-95.1959,17.9854],[-95.1976,17.9962],[-95.2033,18.0013],[-95.2085,18.0149],[-95.2077,18.0194],[-95.1972,18.0343],[-95.2005,18.0403],[-95.2084,18.0404],[-95.2083,18.0308],[-95.2134,18.0307],[-95.2216,18.0433],[-95.2223,18.0507],[-95.2342,18.0488],[-95.2414,18.0519],[-95.2451,18.061],[-95.2385,18.0636],[-95.2318,18.0586],[-95.2282,18.0625],[-95.235,18.0718],[-95.234,18.0769],[-95.227,18.0853],[-95.2328,18.0943],[-95.2493,18.1047],[-95.2599,18.1235],[-95.2518,18.1216],[-95.2434,18.1087],[-95.2328,18.1128],[-95.2251,18.1122],[-95.2258,18.0987],[-95.2128,18.0924],[-95.2045,18.0851],[-95.2027,18.0796],[-95.1921,18.0765],[-95.1925,18.0685],[-95.1865,18.0636],[-95.1828,18.0744],[-95.1728,18.0745],[-95.1674,18.0792],[-95.1599,18.0767],[-95.1557,18.085],[-95.1597,18.0891],[-95.1502,18.0978],[-95.1478,18.1029],[-95.1388,18.1086],[-95.1287,18.1223],[-95.1278,18.129],[-95.1205,18.1334],[-95.1028,18.1276],[-95.0968,18.1309],[-95.0869,18.1424],[-95.0789,18.1401],[-95.0737,18.1354],[-95.0621,18.1433],[-95.0566,18.1399],[-95.0596,18.1325],[-95.0504,18.1257],[-95.0503,18.1181],[-95.0418,18.1153],[-95.0332,18.1213],[-95.0206,18.1216],[-95.0204,18.1362],[-95.0165,18.14],[-95.007,18.1362],[-95.0065,18.1257],[-95.0024,18.1259],[-95.003,18.1375],[-95.0005,18.1484],[-94.9933,18.1455],[-94.9978,18.1385],[-94.9963,18.1311],[-94.9919,18.1274]]]},properties:{id:"30003",COUNTYID:"003",COUNTY:"Acayucan",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30003"},{type:"Feature",geometry:{type:"MultiPolygon",coordinates:[[[[-94.7891,18.5077],[-94.7989,18.502],[-94.7969,18.4977],[-94.8053,18.4947],[-94.808,18.4902],[-94.8219,18.4827],[-94.8292,18.4815],[-94.8432,18.4732],[-94.8493,18.4581],[-94.8539,18.4539],[-94.864,18.4523],[-94.8857,18.4541],[-94.8939,18.4484],[-94.9059,18.4495],[-94.9114,18.4657],[-94.9092,18.4726],[-94.9124,18.4829],[-94.906,18.4893],[-94.9093,18.4937],[-94.9082,18.5065],[-94.9042,18.5132],[-94.907,18.5209],[-94.8974,18.5432],[-94.8991,18.5487],[-94.891,18.5477],[-94.8742,18.5488],[-94.8668,18.5455],[-94.835,18.5433],[-94.8166,18.5386],[-94.8093,18.5295],[-94.8,18.5253],[-94.795,18.5145],[-94.7891,18.5077]]],[[[-94.7263,18.2419],[-94.7191,18.232],[-94.71,18.2332],[-94.7084,18.221],[-94.723,18.2145],[-94.7177,18.2026],[-94.7318,18.193],[-94.7401,18.1963],[-94.7502,18.1913],[-94.7459,18.1785],[-94.7594,18.1713],[-94.7534,18.1566],[-94.7574,18.1504],[-94.7654,18.1454],[-94.7588,18.1326],[-94.7457,18.1249],[-94.74,18.1186],[-94.7437,18.1055],[-94.7365,18.1019],[-94.7426,18.0923],[-94.7441,18.0833],[-94.7497,18.0821],[-94.7596,18.0854],[-94.7773,18.0848],[-94.7868,18.0882],[-94.7886,18.0828],[-94.7989,18.0857],[-94.8002,18.082],[-94.8042,18.0865],[-94.8425,18.086],[-94.8543,18.0943],[-94.8526,18.1016],[-94.8428,18.0998],[-94.8438,18.1078],[-94.8365,18.1145],[-94.8332,18.124],[-94.8187,18.1171],[-94.8154,18.1292],[-94.7962,18.1266],[-94.7982,18.1463],[-94.7973,18.1552],[-94.8121,18.1559],[-94.8162,18.16],[-94.8247,18.1563],[-94.8317,18.1618],[-94.8435,18.1604],[-94.8457,18.1768],[-94.8394,18.1786],[-94.8417,18.1943],[-94.8494,18.1941],[-94.8546,18.2126],[-94.8608,18.2245],[-94.8548,18.2259],[-94.8592,18.2427],[-94.8528,18.2482],[-94.8511,18.2595],[-94.8436,18.2625],[-94.8268,18.2622],[-94.8248,18.2668],[-94.8144,18.265],[-94.814,18.2695],[-94.821,18.2734],[-94.8227,18.2836],[-94.8349,18.3071],[-94.8351,18.3242],[-94.8268,18.3109],[-94.8076,18.2994],[-94.8029,18.2934],[-94.7854,18.2925],[-94.7858,18.2881],[-94.795,18.2883],[-94.7955,18.2838],[-94.8104,18.2841],[-94.813,18.2751],[-94.8064,18.2694],[-94.8044,18.2604],[-94.7883,18.2605],[-94.7869,18.2768],[-94.7771,18.2769],[-94.7704,18.2736],[-94.7669,18.2635],[-94.7706,18.2526],[-94.7782,18.2493],[-94.7813,18.2386],[-94.7765,18.2323],[-94.7812,18.2145],[-94.7797,18.202],[-94.7838,18.1901],[-94.7679,18.1904],[-94.7685,18.2097],[-94.7675,18.2186],[-94.761,18.2338],[-94.7449,18.2405],[-94.7263,18.2419]]]]},properties:{id:"30104",COUNTYID:"104",COUNTY:"Mecayapan",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30104"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-98.3435,20.7979],[-98.3487,20.8025],[-98.3552,20.7916],[-98.3643,20.785],[-98.3877,20.7843],[-98.3981,20.7798],[-98.3927,20.7616],[-98.3935,20.7552],[-98.4022,20.7537],[-98.4147,20.7549],[-98.4255,20.7489],[-98.428,20.7445],[-98.4394,20.7386],[-98.4438,20.729],[-98.4665,20.7103],[-98.4972,20.6999],[-98.5012,20.6946],[-98.5148,20.6892],[-98.5174,20.6838],[-98.5251,20.6818],[-98.529,20.6758],[-98.5315,20.6659],[-98.5361,20.6634],[-98.5469,20.6772],[-98.5502,20.6894],[-98.5397,20.6937],[-98.5291,20.704],[-98.5322,20.7154],[-98.5207,20.7268],[-98.5154,20.7265],[-98.5128,20.7332],[-98.5178,20.7412],[-98.5081,20.7442],[-98.5042,20.7324],[-98.4968,20.7368],[-98.4756,20.7392],[-98.4707,20.7449],[-98.4617,20.7458],[-98.4497,20.7513],[-98.456,20.7556],[-98.4643,20.7719],[-98.4617,20.7795],[-98.4632,20.7852],[-98.4559,20.7895],[-98.4496,20.8061],[-98.4522,20.814],[-98.45,20.8222],[-98.4436,20.8301],[-98.4437,20.8343],[-98.4318,20.8417],[-98.4306,20.8477],[-98.4182,20.8508],[-98.3982,20.8587],[-98.3932,20.8543],[-98.3819,20.8535],[-98.373,20.8565],[-98.3711,20.8623],[-98.3649,20.8634],[-98.3565,20.8571],[-98.351,20.8612],[-98.3477,20.8549],[-98.3518,20.8488],[-98.3498,20.843],[-98.3529,20.836],[-98.3454,20.8318],[-98.3381,20.8325],[-98.3272,20.828],[-98.3288,20.8208],[-98.3165,20.8178],[-98.3148,20.8098],[-98.3435,20.7979]]]},properties:{id:"30076",COUNTYID:"076",COUNTY:"Ilamatlán",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30076"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-97.404,20.4877],[-97.4169,20.487],[-97.4484,20.4912],[-97.4574,20.4968],[-97.4752,20.5036],[-97.4831,20.5081],[-97.4881,20.5075],[-97.4867,20.5146],[-97.4783,20.5265],[-97.4822,20.5379],[-97.4656,20.5496],[-97.4548,20.5532],[-97.4494,20.5598],[-97.441,20.5763],[-97.4488,20.5795],[-97.4468,20.5861],[-97.4388,20.5901],[-97.4263,20.5846],[-97.4202,20.5796],[-97.4148,20.5687],[-97.4107,20.5537],[-97.4116,20.5461],[-97.4046,20.5268],[-97.4,20.5034],[-97.404,20.4877]]]},properties:{id:"30131",COUNTYID:"131",COUNTY:"Poza Rica de Hidalgo",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30131"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-97.8292,21.2233],[-97.8331,21.2117],[-97.8397,21.2053],[-97.8442,21.1968],[-97.8443,21.186],[-97.8327,21.1802],[-97.8215,21.1849],[-97.8074,21.1852],[-97.7989,21.1801],[-97.7958,21.175],[-97.7801,21.1648],[-97.7754,21.1525],[-97.7769,21.1452],[-97.7628,21.1374],[-97.7552,21.1394],[-97.754,21.1331],[-97.7577,21.1249],[-97.7529,21.1045],[-97.7478,21.1028],[-97.7503,21.0945],[-97.7655,21.0913],[-97.7792,21.0963],[-97.7863,21.0964],[-97.793,21.1035],[-97.8012,21.1042],[-97.8118,21.1139],[-97.8102,21.1198],[-97.8167,21.1235],[-97.8333,21.1266],[-97.8323,21.1175],[-97.8245,21.1114],[-97.8222,21.1041],[-97.8421,21.0936],[-97.8514,21.0865],[-97.8569,21.086],[-97.8529,21.075],[-97.8578,21.0705],[-97.8747,21.0648],[-97.8802,21.0682],[-97.8799,21.0738],[-97.8938,21.0744],[-97.8939,21.0802],[-97.9019,21.0863],[-97.9039,21.0961],[-97.9174,21.1016],[-97.9237,21.1066],[-97.938,21.1041],[-97.9425,21.1073],[-97.943,21.1149],[-97.9505,21.1153],[-97.9484,21.1306],[-97.941,21.1504],[-97.9416,21.1668],[-97.9519,21.169],[-97.9569,21.1805],[-97.9639,21.1809],[-97.9612,21.1864],[-97.9554,21.1862],[-97.9515,21.1947],[-97.9366,21.1997],[-97.9326,21.1971],[-97.9153,21.1979],[-97.9093,21.2047],[-97.9035,21.2165],[-97.8952,21.2209],[-97.8876,21.2318],[-97.8709,21.2381],[-97.8621,21.2327],[-97.8575,21.2241],[-97.8475,21.2279],[-97.8421,21.224],[-97.8326,21.2306],[-97.8292,21.2233]]]},properties:{id:"30167",COUNTYID:"167",COUNTY:"Tepetzintla",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30167"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-96.8377,18.7859],[-96.8288,18.776],[-96.8107,18.7727],[-96.7985,18.7756],[-96.788,18.7683],[-96.7871,18.7629],[-96.7774,18.7686],[-96.7516,18.7563],[-96.7376,18.7518],[-96.7263,18.7442],[-96.7323,18.7396],[-96.753,18.7462],[-96.7679,18.7473],[-96.7803,18.7508],[-96.7994,18.7506],[-96.8128,18.7559],[-96.8228,18.7629],[-96.846,18.7661],[-96.8538,18.7583],[-96.87,18.7626],[-96.8769,18.7732],[-96.888,18.7804],[-96.8939,18.7805],[-96.9043,18.7861],[-96.9014,18.7906],[-96.8931,18.7931],[-96.8887,18.8008],[-96.8686,18.7834],[-96.8608,18.7865],[-96.8501,18.7849],[-96.8377,18.7859]]]},properties:{id:"30052",COUNTYID:"052",COUNTY:"Cuichapa",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30052"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-96.0159,18.3879],[-96.0166,18.3754],[-96.0331,18.3825],[-96.0363,18.3651],[-96.0434,18.3606],[-96.0496,18.3658],[-96.0664,18.3522],[-96.0681,18.3345],[-96.0787,18.3368],[-96.0901,18.3268],[-96.0908,18.3196],[-96.0835,18.3141],[-96.0825,18.3062],[-96.0766,18.3079],[-96.0698,18.3142],[-96.0566,18.3018],[-96.0557,18.2899],[-96.0698,18.2877],[-96.0713,18.27],[-96.0609,18.2613],[-96.06,18.2548],[-96.0652,18.2489],[-96.0621,18.2397],[-96.0782,18.2325],[-96.0804,18.2187],[-96.0698,18.2197],[-96.0691,18.2141],[-96.0741,18.2102],[-96.0782,18.1998],[-96.0852,18.2009],[-96.0897,18.195],[-96.1044,18.1923],[-96.1185,18.1917],[-96.1222,18.1846],[-96.1281,18.1873],[-96.1384,18.1848],[-96.1397,18.1993],[-96.1459,18.1919],[-96.1714,18.1864],[-96.1898,18.1811],[-96.2031,18.1749],[-96.2175,18.162],[-96.231,18.1897],[-96.2436,18.1971],[-96.2468,18.2031],[-96.2683,18.2255],[-96.2661,18.2385],[-96.2668,18.2457],[-96.2867,18.2641],[-96.2816,18.2667],[-96.2737,18.2757],[-96.2775,18.2937],[-96.2729,18.3003],[-96.2855,18.3017],[-96.2861,18.3094],[-96.2944,18.3124],[-96.2904,18.3166],[-96.2923,18.327],[-96.2971,18.3373],[-96.296,18.3453],[-96.2993,18.363],[-96.2967,18.3713],[-96.2892,18.3778],[-96.2816,18.3778],[-96.2769,18.3913],[-96.2677,18.3997],[-96.264,18.4062],[-96.2494,18.4044],[-96.2441,18.3969],[-96.2338,18.396],[-96.2269,18.392],[-96.2208,18.3949],[-96.2091,18.3937],[-96.1997,18.3952],[-96.1875,18.3933],[-96.1822,18.3873],[-96.1643,18.3886],[-96.159,18.3964],[-96.1593,18.4017],[-96.1508,18.4049],[-96.1506,18.4108],[-96.1396,18.4101],[-96.1373,18.4153],[-96.1203,18.423],[-96.1118,18.4161],[-96.1037,18.4208],[-96.0841,18.4105],[-96.0799,18.4134],[-96.0739,18.4091],[-96.0626,18.4163],[-96.05,18.4074],[-96.0427,18.4002],[-96.0372,18.4056],[-96.0243,18.3895],[-96.0159,18.3879]]]},properties:{id:"30207",COUNTYID:"207",COUNTY:"Tres Valles",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30207"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-94.5972,18.1935],[-94.5878,18.1856],[-94.5634,18.1711],[-94.531,18.1585],[-94.5074,18.1533],[-94.4755,18.1506],[-94.457,18.1515],[-94.42,18.1568],[-94.4074,18.1597],[-94.3909,18.1597],[-94.3542,18.1641],[-94.2932,18.1754],[-94.2755,18.1802],[-94.2401,18.188],[-94.2423,18.1831],[-94.2404,18.1751],[-94.2343,18.1723],[-94.235,18.1611],[-94.2283,18.153],[-94.2235,18.1358],[-94.2343,18.1283],[-94.2414,18.118],[-94.2402,18.0869],[-94.2574,18.0698],[-94.2694,18.0762],[-94.2859,18.0735],[-94.2891,18.0809],[-94.2988,18.0873],[-94.3017,18.096],[-94.3108,18.0973],[-94.3144,18.0871],[-94.3232,18.0758],[-94.3374,18.065],[-94.3445,18.061],[-94.3504,18.0673],[-94.3652,18.0756],[-94.3658,18.0823],[-94.3732,18.0806],[-94.3836,18.0739],[-94.3911,18.0725],[-94.3995,18.0778],[-94.3979,18.0837],[-94.4002,18.0909],[-94.4121,18.0905],[-94.4153,18.0979],[-94.4241,18.098],[-94.4305,18.0935],[-94.437,18.096],[-94.4369,18.1097],[-94.4427,18.1093],[-94.4456,18.1026],[-94.4532,18.1065],[-94.4656,18.1034],[-94.4701,18.1119],[-94.4778,18.1079],[-94.4838,18.1095],[-94.4961,18.1071],[-94.5092,18.1011],[-94.5232,18.1043],[-94.5247,18.1119],[-94.5169,18.112],[-94.5134,18.1169],[-94.5165,18.1292],[-94.5284,18.1334],[-94.5369,18.1419],[-94.5459,18.1377],[-94.5567,18.1363],[-94.5668,18.1278],[-94.5775,18.1228],[-94.5849,18.1216],[-94.5957,18.1264],[-94.6063,18.1549],[-94.6199,18.1538],[-94.6326,18.1591],[-94.6336,18.166],[-94.639,18.1731],[-94.6385,18.1795],[-94.6262,18.2113],[-94.6134,18.2097],[-94.6073,18.197],[-94.5972,18.1935]]]},properties:{id:"30039",COUNTYID:"039",COUNTY:"Coatzacoalcos",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30039"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-97.2228,19.9226],[-97.2254,19.9186],[-97.2247,19.9076],[-97.2359,19.9086],[-97.2468,19.8971],[-97.252,19.8843],[-97.2465,19.8742],[-97.2501,19.8689],[-97.2462,19.8617],[-97.2469,19.8542],[-97.2553,19.8403],[-97.2456,19.836],[-97.2391,19.826],[-97.239,19.8159],[-97.2437,19.8066],[-97.2556,19.8002],[-97.2538,19.7912],[-97.2604,19.7891],[-97.2651,19.78],[-97.2598,19.7758],[-97.2685,19.7691],[-97.2804,19.7568],[-97.2831,19.7315],[-97.2815,19.7245],[-97.2714,19.7169],[-97.2702,19.6977],[-97.2809,19.6861],[-97.278,19.6675],[-97.2713,19.6507],[-97.2679,19.638],[-97.2738,19.6333],[-97.2735,19.6272],[-97.2851,19.6166],[-97.3002,19.6137],[-97.3096,19.6096],[-97.3052,19.6237],[-97.3108,19.6331],[-97.3179,19.6321],[-97.3424,19.6146],[-97.3484,19.6126],[-97.3579,19.6232],[-97.3643,19.6216],[-97.3724,19.6255],[-97.3804,19.634],[-97.3767,19.6348],[-97.3647,19.6492],[-97.3609,19.6513],[-97.3429,19.6686],[-97.3412,19.6758],[-97.3264,19.6789],[-97.3043,19.6717],[-97.3074,19.6845],[-97.3156,19.692],[-97.3247,19.7071],[-97.3331,19.7168],[-97.3228,19.722],[-97.3152,19.73],[-97.3187,19.7356],[-97.3211,19.7478],[-97.3188,19.7507],[-97.3197,19.7739],[-97.3131,19.7915],[-97.3167,19.8077],[-97.3156,19.8249],[-97.3082,19.8344],[-97.3086,19.8585],[-97.3045,19.8657],[-97.3001,19.8813],[-97.2906,19.8866],[-97.2949,19.8925],[-97.287,19.9015],[-97.281,19.9123],[-97.2748,19.9147],[-97.2695,19.921],[-97.2628,19.9229],[-97.2558,19.9325],[-97.2417,19.9376],[-97.2306,19.9309],[-97.2289,19.9227],[-97.2228,19.9226]]]},properties:{id:"30086",COUNTYID:"086",COUNTY:"Jalacingo",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30086"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-96.4069,19.7051],[-96.4105,19.711],[-96.4268,19.7166],[-96.4335,19.7086],[-96.4395,19.719],[-96.4481,19.727],[-96.46,19.7248],[-96.4704,19.7188],[-96.4733,19.7116],[-96.483,19.7121],[-96.5037,19.7058],[-96.5,19.6927],[-96.5007,19.6838],[-96.5096,19.6838],[-96.5152,19.6873],[-96.5219,19.6824],[-96.5265,19.6626],[-96.5307,19.6566],[-96.5394,19.6549],[-96.5414,19.644],[-96.5475,19.6384],[-96.5596,19.6192],[-96.5638,19.6202],[-96.5859,19.6175],[-96.5982,19.6215],[-96.5999,19.6164],[-96.6079,19.6143],[-96.6191,19.6191],[-96.6185,19.6124],[-96.6226,19.6007],[-96.6146,19.5928],[-96.6119,19.5852],[-96.622,19.588],[-96.6247,19.582],[-96.6318,19.5784],[-96.6415,19.5807],[-96.6597,19.5896],[-96.6695,19.5834],[-96.6789,19.5828],[-96.6828,19.5691],[-96.6809,19.5578],[-96.6656,19.5398],[-96.6754,19.5331],[-96.6815,19.5335],[-96.6855,19.5413],[-96.6951,19.5473],[-96.6998,19.5547],[-96.7059,19.5586],[-96.7064,19.5646],[-96.7299,19.5711],[-96.7549,19.5723],[-96.7578,19.5753],[-96.7582,19.5796],[-96.7514,19.5881],[-96.75,19.6016],[-96.7598,19.6116],[-96.7487,19.6181],[-96.7515,19.632],[-96.7438,19.6456],[-96.7445,19.6632],[-96.7373,19.6632],[-96.7374,19.6746],[-96.7277,19.6736],[-96.7202,19.6952],[-96.7142,19.6976],[-96.7174,19.7067],[-96.7243,19.7098],[-96.73,19.719],[-96.7169,19.7183],[-96.7168,19.7249],[-96.7059,19.7279],[-96.6999,19.7247],[-96.6931,19.726],[-96.6861,19.738],[-96.6729,19.7371],[-96.67,19.7293],[-96.6713,19.7215],[-96.6652,19.7168],[-96.6592,19.7237],[-96.6548,19.7374],[-96.666,19.739],[-96.6756,19.7473],[-96.6611,19.7501],[-96.6582,19.7538],[-96.6486,19.7558],[-96.6468,19.7743],[-96.6398,19.7747],[-96.625,19.7844],[-96.6153,19.7813],[-96.5925,19.7857],[-96.5814,19.7919],[-96.5765,19.805],[-96.5668,19.8096],[-96.5664,19.8209],[-96.5578,19.8284],[-96.5537,19.8355],[-96.5492,19.8364],[-96.5435,19.8546],[-96.5366,19.8661],[-96.5442,19.8751],[-96.538,19.8874],[-96.5324,19.8925],[-96.5316,19.9017],[-96.5259,19.9049],[-96.5318,19.9168],[-96.5263,19.9248],[-96.5191,19.9165],[-96.5013,19.8997],[-96.4908,19.8852],[-96.4766,19.8716],[-96.463,19.8609],[-96.4604,19.8612],[-96.4472,19.8444],[-96.447,19.8302],[-96.4391,19.8157],[-96.4348,19.8022],[-96.4218,19.7851],[-96.4246,19.78],[-96.4147,19.756],[-96.407,19.7471],[-96.4084,19.7393],[-96.401,19.7235],[-96.4039,19.7187],[-96.4069,19.7051]]]},properties:{id:"30009",COUNTYID:"009",COUNTY:"Alto Lucero de Gutiérrez Barrios",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30009"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-97.0871,18.8329],[-97.0834,18.8298],[-97.0708,18.8318],[-97.0628,18.8271],[-97.0592,18.8209],[-97.0575,18.8106],[-97.0466,18.7986],[-97.0641,18.788],[-97.0703,18.8014],[-97.0756,18.8079],[-97.0892,18.8061],[-97.0956,18.8122],[-97.1133,18.7957],[-97.111,18.7907],[-97.1208,18.7829],[-97.1217,18.7759],[-97.1137,18.767],[-97.1116,18.7569],[-97.1177,18.757],[-97.1284,18.767],[-97.1307,18.7663],[-97.1405,18.7673],[-97.1338,18.7808],[-97.1356,18.7873],[-97.1318,18.7964],[-97.1208,18.8074],[-97.1228,18.8124],[-97.1069,18.817],[-97.0954,18.8257],[-97.0985,18.833],[-97.0871,18.8329]]]},properties:{id:"30135",COUNTYID:"135",COUNTY:"Rafael Delgado",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30135"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-95.4681,18.6039],[-95.4662,18.5878],[-95.4609,18.5886],[-95.4602,18.5759],[-95.4672,18.5718],[-95.469,18.556],[-95.4768,18.5516],[-95.4822,18.5555],[-95.4817,18.5635],[-95.4926,18.5593],[-95.4926,18.554],[-95.4862,18.551],[-95.488,18.5445],[-95.4961,18.5385],[-95.4969,18.5278],[-95.5032,18.5241],[-95.4987,18.5189],[-95.5013,18.5034],[-95.5036,18.5009],[-95.4999,18.4838],[-95.5031,18.4764],[-95.5098,18.4717],[-95.5152,18.4805],[-95.5268,18.4893],[-95.5342,18.4872],[-95.5406,18.5123],[-95.5357,18.5141],[-95.5441,18.5339],[-95.5498,18.5349],[-95.5532,18.544],[-95.5629,18.551],[-95.5717,18.5524],[-95.5733,18.5611],[-95.5683,18.5698],[-95.5668,18.5811],[-95.5731,18.5886],[-95.5802,18.5905],[-95.5818,18.605],[-95.5612,18.6172],[-95.5512,18.6214],[-95.5443,18.6084],[-95.5325,18.6069],[-95.5185,18.6112],[-95.5154,18.6087],[-95.4929,18.6113],[-95.4889,18.6079],[-95.4788,18.6086],[-95.4767,18.6038],[-95.4681,18.6039]]]},properties:{id:"30139",COUNTYID:"139",COUNTY:"Saltabarranca",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30139"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-96.8345,19.7146],[-96.8482,19.7128],[-96.8558,19.7088],[-96.8554,19.7231],[-96.8735,19.7476],[-96.8708,19.7571],[-96.8723,19.7694],[-96.8624,19.7702],[-96.861,19.777],[-96.8574,19.7703],[-96.8512,19.7699],[-96.8409,19.7637],[-96.8372,19.7528],[-96.8431,19.7424],[-96.839,19.7354],[-96.8389,19.7239],[-96.8345,19.7146]]]},properties:{id:"30096",COUNTYID:"096",COUNTY:"Landero y Coss",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30096"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-97.0466,18.7986],[-97.0412,18.7898],[-97.0471,18.7885],[-97.0489,18.782],[-97.0613,18.7739],[-97.0705,18.7774],[-97.0677,18.7874],[-97.0873,18.796],[-97.1015,18.7918],[-97.111,18.7907],[-97.1133,18.7957],[-97.0956,18.8122],[-97.0892,18.8061],[-97.0756,18.8079],[-97.0703,18.8014],[-97.0641,18.788],[-97.0466,18.7986]]]},properties:{id:"30185",COUNTYID:"185",COUNTY:"Tlilapan",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30185"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-97.0343,19.6256],[-97.0414,19.6242],[-97.041,19.6152],[-97.0498,19.6129],[-97.0565,19.6055],[-97.0797,19.5941],[-97.0907,19.5862],[-97.0926,19.575],[-97.0974,19.5624],[-97.0914,19.5555],[-97.0921,19.55],[-97.1004,19.5479],[-97.1078,19.5558],[-97.1181,19.5635],[-97.1212,19.5701],[-97.1284,19.5775],[-97.1249,19.5876],[-97.1255,19.5981],[-97.1339,19.5964],[-97.145,19.5997],[-97.1671,19.6159],[-97.1521,19.6216],[-97.1495,19.6281],[-97.1557,19.6376],[-97.151,19.6463],[-97.1158,19.6512],[-97.1154,19.6582],[-97.1059,19.6592],[-97.1032,19.656],[-97.0911,19.6568],[-97.087,19.6669],[-97.0797,19.6674],[-97.0748,19.675],[-97.0787,19.684],[-97.0683,19.685],[-97.0569,19.6705],[-97.0639,19.6613],[-97.0641,19.6563],[-97.0481,19.6584],[-97.0365,19.6556],[-97.0291,19.6491],[-97.0258,19.6396],[-97.0385,19.6327],[-97.0343,19.6256]]]},properties:{id:"30132",COUNTYID:"132",COUNTY:"Las Vigas de Ramírez",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30132"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-97.713,21.2039],[-97.7122,21.1964],[-97.7054,21.1915],[-97.7088,21.1834],[-97.7101,21.1699],[-97.7044,21.1566],[-97.7084,21.1531],[-97.7195,21.1556],[-97.7252,21.1545],[-97.7247,21.1475],[-97.7199,21.1415],[-97.7272,21.1308],[-97.7345,21.1408],[-97.7478,21.132],[-97.7552,21.1394],[-97.7628,21.1374],[-97.7769,21.1452],[-97.7754,21.1525],[-97.7801,21.1648],[-97.7958,21.175],[-97.7989,21.1801],[-97.8074,21.1852],[-97.8215,21.1849],[-97.8327,21.1802],[-97.8443,21.186],[-97.8442,21.1968],[-97.8397,21.2053],[-97.8331,21.2117],[-97.8292,21.2233],[-97.8203,21.2208],[-97.8118,21.2245],[-97.8024,21.2343],[-97.7883,21.2364],[-97.7648,21.2222],[-97.7495,21.2179],[-97.7474,21.2091],[-97.713,21.2039]]]},properties:{id:"30034",COUNTYID:"034",COUNTY:"Cerro Azul",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30034"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-97.1957,19.6783],[-97.1665,19.6589],[-97.151,19.6463],[-97.1557,19.6376],[-97.1495,19.6281],[-97.1521,19.6216],[-97.1671,19.6159],[-97.1662,19.6286],[-97.1716,19.6323],[-97.1807,19.6298],[-97.1869,19.6234],[-97.2043,19.6142],[-97.2185,19.6276],[-97.2185,19.6337],[-97.238,19.6368],[-97.2364,19.657],[-97.2476,19.6626],[-97.2556,19.6779],[-97.2597,19.6811],[-97.2562,19.6881],[-97.2503,19.6879],[-97.2282,19.6786],[-97.2203,19.6827],[-97.2099,19.683],[-97.1957,19.6783]]]},properties:{id:"30194",COUNTYID:"194",COUNTY:"Villa Aldama",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30194"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-96.0985,19.1023],[-96.0993,19.094],[-96.1066,19.0919],[-96.1137,19.0861],[-96.1137,19.0757],[-96.1172,19.0557],[-96.1238,19.0596],[-96.1432,19.0589],[-96.1413,19.0678],[-96.1314,19.0698],[-96.1321,19.0757],[-96.1404,19.0781],[-96.1394,19.095],[-96.1236,19.0942],[-96.1178,19.0921],[-96.1115,19.0977],[-96.1132,19.1071],[-96.1234,19.1158],[-96.1326,19.1179],[-96.1401,19.1124],[-96.1497,19.1095],[-96.1416,19.1376],[-96.1354,19.1444],[-96.1294,19.1462],[-96.1315,19.1652],[-96.1185,19.1687],[-96.1183,19.1717],[-96.1051,19.1655],[-96.0949,19.1548],[-96.0935,19.1482],[-96.0994,19.1446],[-96.1007,19.1342],[-96.1053,19.1259],[-96.0985,19.1023]]]},properties:{id:"30028",COUNTYID:"028",COUNTY:"Boca del Río",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30028"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-97.2183,18.911],[-97.2321,18.9036],[-97.2233,18.8884],[-97.2127,18.8796],[-97.2117,18.8686],[-97.2274,18.8599],[-97.2296,18.852],[-97.2275,18.8424],[-97.2325,18.834],[-97.229,18.8209],[-97.2339,18.8108],[-97.2229,18.808],[-97.2263,18.7995],[-97.2245,18.7917],[-97.2489,18.7855],[-97.2659,18.7782],[-97.2678,18.7739],[-97.2789,18.7726],[-97.2778,18.7674],[-97.2852,18.7627],[-97.2971,18.7727],[-97.3122,18.7691],[-97.3187,18.7652],[-97.3254,18.7665],[-97.3169,18.7709],[-97.3118,18.7767],[-97.2969,18.7785],[-97.2922,18.7864],[-97.312,18.8107],[-97.3258,18.813],[-97.3263,18.8197],[-97.3207,18.8206],[-97.3245,18.8304],[-97.3205,18.8374],[-97.3088,18.8429],[-97.2973,18.8673],[-97.2744,18.8881],[-97.2634,18.8929],[-97.2458,18.8933],[-97.2424,18.9086],[-97.2472,18.9189],[-97.2419,18.9206],[-97.2375,18.915],[-97.2221,18.9208],[-97.2183,18.911]]]},properties:{id:"30099",COUNTYID:"099",COUNTY:"Maltrata",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30099"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-97.0277,19.0335],[-97.0243,19.0258],[-97.0184,19.0264],[-97.0111,19.0174],[-97.0024,19.013],[-96.9932,18.9994],[-96.9894,18.9905],[-96.997,18.9868],[-96.9913,18.9791],[-96.9971,18.9796],[-97.0124,18.9869],[-97.0143,18.9786],[-97.0188,18.9745],[-97.0318,18.9723],[-97.0329,18.9638],[-97.0393,18.9693],[-97.0357,18.9756],[-97.0401,18.9856],[-97.0476,18.9917],[-97.0527,18.9838],[-97.0607,18.9836],[-97.0713,18.9753],[-97.0867,18.9757],[-97.092,18.9838],[-97.0907,18.9915],[-97.0865,18.9967],[-97.0768,19.0027],[-97.0652,19.0027],[-97.0674,19.0149],[-97.0721,19.0227],[-97.0519,19.0254],[-97.0426,19.0322],[-97.032,19.037],[-97.0277,19.0335]]]},properties:{id:"30062",COUNTYID:"062",COUNTY:"Chocamán",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30062"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-96.2635,18.9173],[-96.2741,18.9165],[-96.2777,18.9252],[-96.2826,18.9284],[-96.2814,18.9377],[-96.2869,18.944],[-96.2937,18.9411],[-96.2944,18.9351],[-96.3008,18.9351],[-96.3009,18.9434],[-96.2967,18.9621],[-96.3052,18.9741],[-96.3039,18.9835],[-96.3155,18.9823],[-96.3131,18.9938],[-96.3066,19.0003],[-96.2999,18.9973],[-96.2954,19.0076],[-96.3125,19.0284],[-96.3036,19.0288],[-96.299,19.0338],[-96.2921,19.0522],[-96.287,19.0527],[-96.2828,19.0608],[-96.2644,19.0642],[-96.2599,19.0593],[-96.2505,19.0548],[-96.2516,19.0477],[-96.246,19.0458],[-96.2312,19.0484],[-96.2195,19.0392],[-96.2101,19.0479],[-96.1986,19.0466],[-96.1973,19.0505],[-96.1772,19.0502],[-96.1742,19.0381],[-96.1808,19.0341],[-96.1876,19.0243],[-96.1853,19.008],[-96.1926,18.9982],[-96.1998,18.9974],[-96.204,18.9912],[-96.2172,18.9831],[-96.2199,18.9761],[-96.2332,18.9539],[-96.2463,18.9463],[-96.2537,18.945],[-96.257,18.9357],[-96.2529,18.923],[-96.2635,18.9173]]]},properties:{id:"30090",COUNTYID:"090",COUNTY:"Jamapa",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30090"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-97.7852,22.1663],[-97.8073,22.1533],[-97.837,22.1522],[-97.8444,22.1432],[-97.86,22.148],[-97.8818,22.1373],[-97.8965,22.1247],[-97.8972,22.1176],[-97.893,22.1099],[-97.8947,22.0994],[-97.8935,22.0894],[-97.9061,22.0934],[-97.9194,22.0828],[-97.9213,22.071],[-97.9529,22.0773],[-97.9502,22.0869],[-97.9411,22.0937],[-97.9414,22.1007],[-97.9349,22.1059],[-97.9329,22.1146],[-97.9369,22.1213],[-97.9519,22.124],[-97.9515,22.12],[-97.9731,22.1238],[-97.9762,22.1126],[-97.9813,22.1072],[-97.9823,22.0896],[-97.9781,22.0795],[-98.0016,22.0706],[-98.0066,22.0698],[-98.0187,22.07],[-98.022,22.0644],[-98.031,22.0676],[-98.0373,22.0863],[-98.0416,22.0889],[-98.0661,22.0915],[-98.0818,22.0968],[-98.0869,22.1012],[-98.09,22.1104],[-98.0865,22.115],[-98.0792,22.1108],[-98.0642,22.1069],[-98.0519,22.1012],[-98.0435,22.1024],[-98.0401,22.1127],[-98.0425,22.1247],[-98.063,22.131],[-98.0658,22.1413],[-98.0576,22.1476],[-98.0438,22.1483],[-98.039,22.1441],[-98.0431,22.135],[-98.0391,22.1293],[-98.0297,22.1321],[-98.021,22.1436],[-98.0004,22.1513],[-97.9993,22.1562],[-98.0125,22.1686],[-98.0158,22.1788],[-98.0116,22.1917],[-97.9966,22.207],[-97.9822,22.2129],[-97.9593,22.2062],[-97.9495,22.2058],[-97.9351,22.2082],[-97.9213,22.2173],[-97.9077,22.2218],[-97.895,22.2224],[-97.8513,22.2075],[-97.8449,22.207],[-97.8377,22.2124],[-97.8365,22.2299],[-97.8321,22.2381],[-97.8116,22.2518],[-97.7924,22.2604],[-97.7937,22.2497],[-97.7928,22.212],[-97.7887,22.182],[-97.7852,22.1663]]]},properties:{id:"30133",COUNTYID:"133",COUNTY:"Pueblo Viejo",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30133"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-96.8838,20.1355],[-96.8936,20.1243],[-96.902,20.1223],[-96.9069,20.1162],[-96.9049,20.1122],[-96.9126,20.1042],[-96.9087,20.0974],[-96.9032,20.1012],[-96.8974,20.0987],[-96.9002,20.091],[-96.8947,20.0856],[-96.8941,20.0799],[-96.8795,20.0735],[-96.8795,20.0644],[-96.8678,20.0575],[-96.8646,20.0481],[-96.8637,20.0351],[-96.8481,20.0177],[-96.8272,20.0144],[-96.8189,20.0023],[-96.8111,20.0023],[-96.7887,20.0089],[-96.7786,20.0087],[-96.764,20.0187],[-96.7596,20.0121],[-96.7623,19.9994],[-96.767,19.9994],[-96.776,19.9838],[-96.7589,19.9787],[-96.756,19.9712],[-96.7504,19.9667],[-96.7631,19.9529],[-96.7646,19.9479],[-96.7725,19.9448],[-96.775,19.9385],[-96.7936,19.9417],[-96.7942,19.931],[-96.7858,19.9246],[-96.771,19.9048],[-96.7787,19.9037],[-96.7842,19.8983],[-96.7934,19.8982],[-96.7989,19.8881],[-96.8078,19.8786],[-96.8077,19.8689],[-96.8272,19.8505],[-96.8313,19.8387],[-96.836,19.8333],[-96.836,19.8178],[-96.8491,19.8176],[-96.849,19.8078],[-96.8373,19.7867],[-96.8399,19.7776],[-96.8483,19.7759],[-96.8543,19.7797],[-96.861,19.777],[-96.8624,19.7702],[-96.8723,19.7694],[-96.8763,19.7706],[-96.8753,19.7774],[-96.8835,19.7758],[-96.8956,19.7676],[-96.9026,19.777],[-96.9011,19.7816],[-96.8933,19.7841],[-96.8974,19.7908],[-96.8956,19.8011],[-96.8992,19.807],[-96.9008,19.8199],[-96.9052,19.8236],[-96.9094,19.8358],[-96.9144,19.8424],[-96.9121,19.848],[-96.9307,19.8765],[-96.9493,19.895],[-96.9563,19.8952],[-96.9532,19.9087],[-96.9568,19.9205],[-96.9549,19.9339],[-96.9636,19.9498],[-96.9593,19.9567],[-96.9617,19.9692],[-96.9795,19.9714],[-96.9879,19.9813],[-96.9805,19.9912],[-96.957,19.9927],[-96.9577,20.0037],[-96.98,20.0078],[-96.9828,20.0107],[-96.9856,20.0285],[-96.9835,20.0415],[-96.9761,20.0357],[-96.971,20.0426],[-96.9759,20.0503],[-96.9864,20.0568],[-96.9849,20.0715],[-96.9927,20.08],[-96.9832,20.0877],[-96.9841,20.0956],[-96.98,20.0998],[-96.9802,20.1076],[-96.9746,20.1251],[-96.9687,20.1283],[-96.9431,20.1349],[-96.9346,20.1306],[-96.9216,20.1447],[-96.9023,20.1466],[-96.8977,20.1512],[-96.8903,20.1495],[-96.8835,20.1414],[-96.8838,20.1355]]]},properties:{id:"30109",COUNTYID:"109",COUNTY:"Misantla",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30109"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-98.0468,21.3395],[-98.0446,21.3301],[-98.0405,21.3246],[-98.0297,21.3249],[-98.0267,21.3286],[-98.0147,21.3258],[-98.0102,21.3135],[-98.0107,21.308],[-98.0036,21.2934],[-98.005,21.2841],[-98.0045,21.2611],[-97.9994,21.2486],[-97.9916,21.2493],[-97.9792,21.256],[-97.969,21.2554],[-97.9724,21.2468],[-97.9585,21.2382],[-97.9493,21.2393],[-97.9372,21.2333],[-97.9362,21.2217],[-97.929,21.2162],[-97.9326,21.2047],[-97.9476,21.207],[-97.9612,21.211],[-97.9612,21.1864],[-97.9639,21.1809],[-97.9643,21.1715],[-97.9786,21.166],[-97.9873,21.1585],[-98.0036,21.155],[-98.0142,21.1486],[-98.0197,21.1494],[-98.0305,21.1558],[-98.0434,21.1576],[-98.0436,21.1617],[-98.0353,21.1714],[-98.0359,21.1799],[-98.0436,21.1955],[-98.0554,21.202],[-98.061,21.1987],[-98.0704,21.2088],[-98.0588,21.2168],[-98.0673,21.2223],[-98.0558,21.23],[-98.067,21.2341],[-98.0754,21.2424],[-98.08,21.2389],[-98.0931,21.2382],[-98.0997,21.243],[-98.1097,21.2416],[-98.1135,21.248],[-98.1046,21.2487],[-98.098,21.2539],[-98.0968,21.261],[-98.0885,21.2752],[-98.0693,21.2738],[-98.0637,21.2878],[-98.0642,21.2942],[-98.0699,21.3139],[-98.0615,21.3217],[-98.0686,21.3419],[-98.0656,21.3487],[-98.057,21.3464],[-98.0532,21.3399],[-98.0468,21.3395]]]},properties:{id:"30078",COUNTYID:"078",COUNTY:"Ixcatepec",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30078"},{type:"Feature",geometry:{type:"MultiPolygon",coordinates:[[[[-97.1478,19.4478],[-97.1544,19.4651],[-97.1651,19.4583],[-97.1696,19.4514],[-97.1722,19.4315],[-97.1749,19.4234],[-97.1688,19.4129],[-97.1674,19.4043],[-97.1582,19.4056],[-97.1482,19.399],[-97.1401,19.3846],[-97.1264,19.3756],[-97.1326,19.363],[-97.131,19.3481],[-97.1374,19.3433],[-97.1447,19.3313],[-97.1485,19.3202],[-97.1538,19.3242],[-97.1667,19.3291],[-97.1757,19.3279],[-97.1883,19.3216],[-97.1903,19.3157],[-97.199,19.3091],[-97.2008,19.3163],[-97.2106,19.317],[-97.2156,19.3233],[-97.2062,19.327],[-97.2048,19.3314],[-97.2101,19.3379],[-97.2067,19.349],[-97.2109,19.358],[-97.2234,19.3569],[-97.2311,19.3627],[-97.2315,19.3695],[-97.248,19.3787],[-97.2568,19.3819],[-97.2667,19.3825],[-97.2507,19.385],[-97.2375,19.3837],[-97.2204,19.3858],[-97.234,19.4054],[-97.2398,19.4073],[-97.2462,19.4186],[-97.2493,19.4285],[-97.2572,19.4339],[-97.2672,19.4484],[-97.2747,19.4531],[-97.2604,19.4676],[-97.2462,19.4698],[-97.2327,19.4752],[-97.219,19.4747],[-97.1965,19.4773],[-97.1859,19.4842],[-97.1706,19.4848],[-97.1654,19.4828],[-97.1498,19.488],[-97.1517,19.4772],[-97.1438,19.4588],[-97.1478,19.4478]]],[[[-97.0152,19.3589],[-97.0254,19.3544],[-97.0354,19.3528],[-97.0353,19.3565],[-97.0468,19.3633],[-97.0421,19.3711],[-97.0479,19.3772],[-97.0418,19.3827],[-97.0278,19.3857],[-97.0145,19.3865],[-97.0102,19.3829],[-97.0022,19.3829],[-97.0028,19.3771],[-97.0152,19.3589]]]]},properties:{id:"30025",COUNTYID:"025",COUNTY:"Ayahualulco",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30025"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-96.8733,18.9573],[-96.8747,18.9517],[-96.8814,18.9494],[-96.8829,18.9401],[-96.8787,18.9356],[-96.8831,18.9266],[-96.8753,18.9112],[-96.885,18.9078],[-96.8961,18.9069],[-96.9023,18.9107],[-96.9069,18.8967],[-96.8925,18.8872],[-96.8815,18.8857],[-96.8854,18.8751],[-96.8949,18.8733],[-96.8988,18.8644],[-96.9046,18.8661],[-96.9176,18.8638],[-96.9204,18.8594],[-96.9306,18.8548],[-96.9357,18.8571],[-96.9483,18.852],[-96.9566,18.8383],[-96.9627,18.8382],[-96.97,18.8467],[-96.9737,18.8552],[-96.974,18.8633],[-96.9816,18.8829],[-96.9798,18.8867],[-96.9823,18.8991],[-96.9809,18.9029],[-96.9706,18.9002],[-96.9564,18.9025],[-96.9587,18.9083],[-96.9731,18.9221],[-96.9803,18.9324],[-96.9927,18.9398],[-97.0036,18.9529],[-96.9946,18.9652],[-96.9913,18.9791],[-96.997,18.9868],[-96.9894,18.9905],[-96.9815,18.987],[-96.9793,19.002],[-96.9643,19.0087],[-96.9521,19.0043],[-96.9392,19.0105],[-96.9286,19.0106],[-96.9131,19.0062],[-96.8985,18.9915],[-96.9051,18.9855],[-96.9009,18.979],[-96.9048,18.9723],[-96.8998,18.9644],[-96.8733,18.9573]]]},properties:{id:"30044",COUNTYID:"044",COUNTY:"Córdoba",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30044"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-97.6029,20.1947],[-97.6021,20.2025],[-97.6111,20.2062],[-97.6115,20.2203],[-97.6072,20.2355],[-97.5908,20.245],[-97.5751,20.2434],[-97.5637,20.2426],[-97.5571,20.2501],[-97.5528,20.2493],[-97.5474,20.2407],[-97.5576,20.2372],[-97.5614,20.2285],[-97.5674,20.2281],[-97.5696,20.2205],[-97.5758,20.217],[-97.5675,20.2119],[-97.5685,20.2059],[-97.5794,20.1978],[-97.6004,20.1939],[-97.6029,20.1947]]]},properties:{id:"30064",COUNTYID:"064",COUNTY:"Chumatlán",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30064"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-97.8443,21.2975],[-97.8472,21.2866],[-97.8536,21.2826],[-97.8621,21.2849],[-97.8681,21.258],[-97.872,21.2461],[-97.8794,21.2506],[-97.8807,21.2605],[-97.8858,21.2758],[-97.8911,21.2789],[-97.8954,21.2958],[-97.9033,21.2984],[-97.9065,21.3098],[-97.9026,21.3191],[-97.9075,21.324],[-97.9061,21.3363],[-97.9104,21.3438],[-97.9065,21.3532],[-97.904,21.3719],[-97.927,21.3831],[-97.9347,21.3841],[-97.9423,21.3887],[-97.9451,21.3949],[-97.9536,21.402],[-97.957,21.4146],[-97.9321,21.4276],[-97.9307,21.4186],[-97.9105,21.3885],[-97.8971,21.3764],[-97.8915,21.3788],[-97.889,21.3865],[-97.8935,21.4034],[-97.8902,21.4079],[-97.86,21.3824],[-97.8523,21.3787],[-97.8516,21.3713],[-97.862,21.3596],[-97.8642,21.3483],[-97.8615,21.3421],[-97.858,21.3182],[-97.8484,21.3127],[-97.8418,21.3054],[-97.8443,21.2975]]]},properties:{id:"30035",COUNTYID:"035",COUNTY:"Citlaltépetl",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30035"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-97.5146,20.17],[-97.5124,20.1661],[-97.5187,20.1542],[-97.5097,20.1409],[-97.5035,20.1486],[-97.4947,20.1378],[-97.5009,20.1324],[-97.5083,20.1309],[-97.5116,20.1249],[-97.5182,20.1241],[-97.5274,20.1149],[-97.5392,20.1162],[-97.5445,20.1039],[-97.5513,20.1004],[-97.5569,20.1074],[-97.5634,20.09],[-97.5699,20.0821],[-97.576,20.0846],[-97.5814,20.0789],[-97.5912,20.0817],[-97.5961,20.093],[-97.5944,20.0975],[-97.5801,20.0969],[-97.5789,20.1032],[-97.5875,20.1123],[-97.5981,20.1153],[-97.6027,20.1193],[-97.6051,20.1317],[-97.601,20.1405],[-97.6062,20.1439],[-97.6077,20.1519],[-97.605,20.1578],[-97.5949,20.1599],[-97.5859,20.1582],[-97.5857,20.1646],[-97.5804,20.1738],[-97.5707,20.1683],[-97.5637,20.1672],[-97.5473,20.1681],[-97.5376,20.1754],[-97.5319,20.169],[-97.5146,20.17]]]},properties:{id:"30203",COUNTYID:"203",COUNTY:"Zozocolco de Hidalgo",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30203"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-96.8763,19.7706],[-96.8723,19.7694],[-96.8708,19.7571],[-96.8735,19.7476],[-96.8554,19.7231],[-96.8558,19.7088],[-96.8544,19.6954],[-96.8619,19.6949],[-96.8644,19.69],[-96.8725,19.6989],[-96.8881,19.6932],[-96.8949,19.7029],[-96.9002,19.701],[-96.9044,19.7118],[-96.9095,19.7077],[-96.9167,19.7048],[-96.917,19.7209],[-96.903,19.721],[-96.9005,19.7318],[-96.8943,19.7433],[-96.8881,19.7473],[-96.8897,19.7533],[-96.8834,19.7629],[-96.8824,19.7713],[-96.8763,19.7706]]]},properties:{id:"30106",COUNTYID:"106",COUNTY:"Miahuatlán",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30106"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-97.0415,18.5855],[-97.0303,18.5718],[-97.0218,18.5665],[-97.0043,18.5638],[-97.0034,18.5598],[-96.9901,18.5546],[-96.9744,18.5534],[-96.9772,18.5453],[-96.9839,18.5465],[-96.9989,18.5319],[-97.0068,18.5233],[-97.0153,18.5209],[-97.021,18.5124],[-97.027,18.5141],[-97.0464,18.4996],[-97.052,18.4857],[-97.0613,18.4759],[-97.0761,18.466],[-97.08,18.4545],[-97.0835,18.4839],[-97.0894,18.4884],[-97.1127,18.5213],[-97.1047,18.5289],[-97.104,18.5359],[-97.0973,18.5389],[-97.0794,18.5548],[-97.0711,18.5692],[-97.0521,18.5763],[-97.0481,18.5814],[-97.0415,18.5855]]]},properties:{id:"30159",COUNTYID:"159",COUNTY:"Tehuipango",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30159"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-97.6115,20.2203],[-97.6111,20.2062],[-97.6021,20.2025],[-97.6029,20.1947],[-97.6006,20.1885],[-97.6148,20.1863],[-97.6206,20.1803],[-97.622,20.1744],[-97.6291,20.1818],[-97.6354,20.1825],[-97.6413,20.187],[-97.6449,20.1827],[-97.6678,20.1817],[-97.6775,20.1893],[-97.6847,20.1923],[-97.686,20.2037],[-97.6963,20.2101],[-97.7008,20.2193],[-97.693,20.2288],[-97.6708,20.24],[-97.6724,20.2436],[-97.6546,20.2413],[-97.6478,20.2436],[-97.6448,20.2383],[-97.6486,20.2321],[-97.6354,20.209],[-97.624,20.209],[-97.6216,20.2203],[-97.6115,20.2203]]]},properties:{id:"30103",COUNTYID:"103",COUNTY:"Mecatlán",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30103"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-96.8456,19.0788],[-96.8247,19.0548],[-96.8195,19.0462],[-96.8058,19.0318],[-96.8043,19.0274],[-96.8083,19.021],[-96.8085,19.0136],[-96.8149,19.0089],[-96.8212,19.0046],[-96.8323,19.0046],[-96.8361,19.0074],[-96.8472,19.004],[-96.858,19.0108],[-96.8697,19.0122],[-96.8714,19.0075],[-96.8816,19.0064],[-96.8839,19.0092],[-96.8797,19.0191],[-96.8824,19.0397],[-96.8746,19.0453],[-96.8906,19.0579],[-96.8946,19.0646],[-96.8928,19.0816],[-96.8967,19.0846],[-96.8897,19.0911],[-96.8829,19.094],[-96.8617,19.0865],[-96.8511,19.0843],[-96.8456,19.0788]]]},properties:{id:"30165",COUNTYID:"165",COUNTY:"Tepatlaxco",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30165"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-97.0025,19.617],[-96.9966,19.6136],[-96.9976,19.5843],[-96.996,19.5783],[-97,19.5734],[-96.9984,19.5654],[-97.0048,19.5557],[-97.0183,19.5516],[-97.0106,19.5352],[-97.0019,19.5332],[-97.018,19.5262],[-97.0142,19.5218],[-97.0179,19.5168],[-97.0292,19.5085],[-97.051,19.5114],[-97.0594,19.5176],[-97.068,19.5159],[-97.0796,19.5202],[-97.0829,19.5257],[-97.0944,19.5323],[-97.1045,19.5303],[-97.0988,19.5401],[-97.1004,19.5479],[-97.0921,19.55],[-97.0914,19.5555],[-97.0974,19.5624],[-97.0926,19.575],[-97.0907,19.5862],[-97.0797,19.5941],[-97.0565,19.6055],[-97.0498,19.6129],[-97.041,19.6152],[-97.0414,19.6242],[-97.0343,19.6256],[-97.0378,19.6159],[-97.0204,19.6217],[-97.0025,19.617]]]},properties:{id:"30001",COUNTYID:"001",COUNTY:"Acajete",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30001"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-97.6596,21.28],[-97.6645,21.2729],[-97.6636,21.2642],[-97.6705,21.2573],[-97.6807,21.2588],[-97.6966,21.2535],[-97.6984,21.2464],[-97.7038,21.243],[-97.705,21.2322],[-97.695,21.2237],[-97.6988,21.2139],[-97.713,21.2039],[-97.7474,21.2091],[-97.7495,21.2179],[-97.7648,21.2222],[-97.7883,21.2364],[-97.8024,21.2343],[-97.8118,21.2245],[-97.8203,21.2208],[-97.8292,21.2233],[-97.8326,21.2306],[-97.8421,21.224],[-97.8475,21.2279],[-97.8575,21.2241],[-97.8621,21.2327],[-97.8709,21.2381],[-97.872,21.2461],[-97.8681,21.258],[-97.8621,21.2849],[-97.8536,21.2826],[-97.8472,21.2866],[-97.8443,21.2975],[-97.8347,21.3001],[-97.8273,21.3076],[-97.8247,21.3143],[-97.816,21.3131],[-97.8085,21.3205],[-97.7946,21.3265],[-97.79,21.3323],[-97.7846,21.334],[-97.7744,21.331],[-97.7649,21.3131],[-97.7461,21.2807],[-97.745,21.2674],[-97.7345,21.2669],[-97.7158,21.2531],[-97.707,21.2599],[-97.7154,21.2689],[-97.6896,21.265],[-97.6756,21.2726],[-97.6745,21.2791],[-97.6843,21.2933],[-97.6766,21.3026],[-97.6687,21.2993],[-97.6596,21.28]]]},properties:{id:"30153",COUNTYID:"153",COUNTY:"Tancoco",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30153"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-96.5624,19.3419],[-96.5703,19.3366],[-96.5769,19.3254],[-96.5867,19.3265],[-96.5911,19.3198],[-96.5976,19.3211],[-96.6017,19.3315],[-96.608,19.3363],[-96.6185,19.3333],[-96.6317,19.3193],[-96.6382,19.3209],[-96.6453,19.3163],[-96.6657,19.3142],[-96.6707,19.3058],[-96.678,19.3036],[-96.6899,19.305],[-96.7029,19.3118],[-96.7186,19.3154],[-96.7306,19.3352],[-96.7328,19.3515],[-96.738,19.3623],[-96.7371,19.3724],[-96.729,19.3667],[-96.7219,19.3668],[-96.7142,19.3581],[-96.7069,19.3578],[-96.7036,19.3647],[-96.6949,19.3715],[-96.6812,19.3766],[-96.6794,19.3691],[-96.6679,19.3646],[-96.6592,19.3507],[-96.6579,19.342],[-96.6541,19.3378],[-96.6366,19.3486],[-96.626,19.3466],[-96.6108,19.3494],[-96.6029,19.3466],[-96.5968,19.3496],[-96.5825,19.3414],[-96.5624,19.3419]]]},properties:{id:"30017",COUNTYID:"017",COUNTY:"Apazapan",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30017"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-96.8949,19.3442],[-96.8957,19.336],[-96.9182,19.3228],[-96.9183,19.3186],[-96.9265,19.3091],[-96.9441,19.3041],[-96.9468,19.2968],[-96.959,19.2933],[-96.9596,19.2896],[-96.9715,19.2898],[-96.9807,19.2898],[-97.0003,19.3063],[-97.0072,19.3183],[-97.0242,19.3189],[-97.0303,19.3252],[-97.0345,19.3361],[-97.0281,19.3443],[-97.0354,19.3528],[-97.0254,19.3544],[-97.0152,19.3589],[-97.0128,19.3551],[-96.9997,19.3558],[-96.9909,19.3598],[-96.9715,19.3559],[-96.9601,19.3601],[-96.9442,19.3686],[-96.9425,19.3649],[-96.9335,19.3656],[-96.9305,19.3692],[-96.9223,19.3492],[-96.9169,19.352],[-96.9034,19.3452],[-96.8949,19.3442]]]},properties:{id:"30046",COUNTYID:"046",COUNTY:"Cosautlán de Carvajal",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30046"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-97.2065,18.7804],[-97.2185,18.7694],[-97.2163,18.7662],[-97.2253,18.7583],[-97.2176,18.7502],[-97.2118,18.7479],[-97.2106,18.7408],[-97.2194,18.7394],[-97.2237,18.7319],[-97.2163,18.719],[-97.2335,18.702],[-97.23,18.6943],[-97.2217,18.6911],[-97.2225,18.6835],[-97.2306,18.6811],[-97.2309,18.6729],[-97.2403,18.6663],[-97.2438,18.6469],[-97.2354,18.6436],[-97.2452,18.6402],[-97.2523,18.6267],[-97.2594,18.6243],[-97.2719,18.6278],[-97.2821,18.6522],[-97.2912,18.6555],[-97.2939,18.6649],[-97.3032,18.6743],[-97.3095,18.6738],[-97.3227,18.6642],[-97.344,18.6858],[-97.3404,18.6935],[-97.345,18.6984],[-97.3422,18.7059],[-97.35,18.717],[-97.3421,18.7258],[-97.3472,18.7274],[-97.3415,18.7416],[-97.3441,18.7494],[-97.3397,18.759],[-97.3308,18.7639],[-97.3254,18.7665],[-97.3187,18.7652],[-97.3122,18.7691],[-97.2971,18.7727],[-97.2852,18.7627],[-97.2778,18.7674],[-97.2789,18.7726],[-97.2678,18.7739],[-97.2659,18.7782],[-97.2489,18.7855],[-97.2245,18.7917],[-97.2109,18.7875],[-97.2065,18.7804]]]},properties:{id:"30006",COUNTYID:"006",COUNTY:"Acultzingo",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30006"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-96.8763,19.7706],[-96.8824,19.7713],[-96.8834,19.7629],[-96.8897,19.7533],[-96.8881,19.7473],[-96.8943,19.7433],[-96.9005,19.7318],[-96.903,19.721],[-96.917,19.7209],[-96.9167,19.7048],[-96.9095,19.7077],[-96.9059,19.7],[-96.9004,19.696],[-96.8978,19.6794],[-96.8945,19.6777],[-96.8926,19.6664],[-96.9039,19.6665],[-96.9141,19.6632],[-96.9147,19.6707],[-96.9295,19.6762],[-96.9295,19.6858],[-96.9334,19.6968],[-96.9417,19.7035],[-96.9513,19.7171],[-96.9596,19.7224],[-96.9668,19.7312],[-96.9648,19.7456],[-96.9533,19.746],[-96.9489,19.7435],[-96.9323,19.7552],[-96.9227,19.7609],[-96.8956,19.7676],[-96.8835,19.7758],[-96.8753,19.7774],[-96.8763,19.7706]]]},properties:{id:"30187",COUNTYID:"187",COUNTY:"Tonayán",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30187"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-96.8972,19.581],[-96.9087,19.576],[-96.9184,19.5792],[-96.9304,19.5793],[-96.9394,19.5765],[-96.9548,19.5673],[-96.9624,19.5667],[-96.9674,19.5752],[-96.9888,19.5791],[-96.9793,19.5855],[-96.9583,19.5874],[-96.9684,19.5967],[-96.9581,19.595],[-96.9488,19.6021],[-96.9483,19.6083],[-96.9418,19.6124],[-96.9336,19.6053],[-96.928,19.5925],[-96.9214,19.5934],[-96.9119,19.5863],[-96.8972,19.581]]]},properties:{id:"30026",COUNTYID:"026",COUNTY:"Banderilla",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30026"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-96.9237,19.1934],[-96.9149,19.1821],[-96.9116,19.1694],[-96.899,19.1597],[-96.886,19.1582],[-96.8856,19.1417],[-96.8962,19.1439],[-96.9016,19.1503],[-96.9258,19.1594],[-96.9328,19.1661],[-96.9415,19.1814],[-96.9502,19.1847],[-96.9592,19.1853],[-96.9468,19.2024],[-96.942,19.1977],[-96.9237,19.1934]]]},properties:{id:"30146",COUNTYID:"146",COUNTY:"Sochiapa",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30146"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-95.4371,18.7109],[-95.4475,18.7009],[-95.4487,18.6972],[-95.465,18.6912],[-95.4751,18.684],[-95.468,18.672],[-95.4585,18.6621],[-95.4596,18.6567],[-95.4672,18.6559],[-95.4707,18.6408],[-95.4683,18.6304],[-95.471,18.627],[-95.4681,18.6039],[-95.4767,18.6038],[-95.4788,18.6086],[-95.4889,18.6079],[-95.4929,18.6113],[-95.5154,18.6087],[-95.5185,18.6112],[-95.5325,18.6069],[-95.5443,18.6084],[-95.5512,18.6214],[-95.5614,18.6408],[-95.5506,18.653],[-95.5238,18.6583],[-95.5119,18.6649],[-95.5136,18.6723],[-95.5099,18.689],[-95.5159,18.7011],[-95.5217,18.7038],[-95.5253,18.7148],[-95.4919,18.7125],[-95.4371,18.7109]]]},properties:{id:"30097",COUNTYID:"097",COUNTY:"Lerdo de Tejada",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30097"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-97.0139,18.7032],[-97.0146,18.6954],[-97.0079,18.6866],[-97.0227,18.6774],[-97.0243,18.6726],[-97.0202,18.6509],[-97.0379,18.6456],[-97.0416,18.6487],[-97.0522,18.6447],[-97.0688,18.6331],[-97.0784,18.6294],[-97.0847,18.6412],[-97.0785,18.6414],[-97.064,18.6639],[-97.0568,18.665],[-97.0548,18.6778],[-97.0556,18.6852],[-97.0625,18.6982],[-97.0696,18.7032],[-97.0622,18.7063],[-97.0492,18.704],[-97.0542,18.7118],[-97.0447,18.7118],[-97.0398,18.7052],[-97.0345,18.7082],[-97.0139,18.7032]]]},properties:{id:"30137",COUNTYID:"137",COUNTY:"Los Reyes",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30137"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-96.007,18.1848],[-96.0158,18.1677],[-96.006,18.1659],[-95.9928,18.1596],[-95.9906,18.1512],[-96.0018,18.144],[-96.0103,18.142],[-96.0136,18.1376],[-96.0277,18.1334],[-96.0411,18.1385],[-96.0514,18.1267],[-96.0558,18.1335],[-96.0664,18.1316],[-96.0689,18.1408],[-96.0795,18.1498],[-96.0839,18.1618],[-96.0745,18.1618],[-96.0666,18.1683],[-96.0628,18.176],[-96.0525,18.173],[-96.0445,18.1795],[-96.043,18.1919],[-96.0438,18.2056],[-96.035,18.2163],[-96.0249,18.2177],[-96.0162,18.2139],[-96.0083,18.2058],[-96.007,18.1848]]]},properties:{id:"30119",COUNTYID:"119",COUNTY:"Otatitlán",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30119"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-97.0329,18.9638],[-97.0285,18.961],[-97.0269,18.9513],[-97.0209,18.944],[-97.0252,18.9407],[-97.0219,18.9321],[-97.0313,18.936],[-97.0448,18.9453],[-97.0593,18.9459],[-97.0663,18.9228],[-97.0619,18.9],[-97.0659,18.8907],[-97.082,18.8934],[-97.079,18.886],[-97.0844,18.8805],[-97.0904,18.876],[-97.1009,18.8811],[-97.1057,18.8862],[-97.1081,18.8946],[-97.0991,18.8975],[-97.0988,18.9029],[-97.1063,18.9108],[-97.0871,18.9195],[-97.0943,18.937],[-97.113,18.9427],[-97.1208,18.9486],[-97.1203,18.9595],[-97.1239,18.9605],[-97.1277,18.9708],[-97.1235,18.9772],[-97.1113,18.9791],[-97.1038,18.9899],[-97.0987,18.9911],[-97.092,18.9838],[-97.0867,18.9757],[-97.0713,18.9753],[-97.0607,18.9836],[-97.0527,18.9838],[-97.0476,18.9917],[-97.0401,18.9856],[-97.0357,18.9756],[-97.0393,18.9693],[-97.0329,18.9638]]]},properties:{id:"30022",COUNTYID:"022",COUNTY:"Atzacan",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30022"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-96.9643,19.0087],[-96.9793,19.002],[-96.9815,18.987],[-96.9894,18.9905],[-96.9932,18.9994],[-97.0024,19.013],[-97.0111,19.0174],[-97.0184,19.0264],[-97.0243,19.0258],[-97.0277,19.0335],[-97.0209,19.0353],[-97.0226,19.0409],[-97.033,19.0494],[-97.006,19.0513],[-97.0027,19.0442],[-97.0002,19.0283],[-96.9863,19.0212],[-96.9821,19.0251],[-96.983,19.0329],[-96.9754,19.0324],[-96.9643,19.0087]]]},properties:{id:"30186",COUNTYID:"186",COUNTY:"Tomatlán",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30186"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-97.1342,18.6481],[-97.1342,18.6422],[-97.1231,18.6357],[-97.1342,18.6285],[-97.1402,18.6176],[-97.1424,18.5933],[-97.1564,18.601],[-97.1623,18.6059],[-97.1744,18.6067],[-97.1768,18.6172],[-97.1841,18.6167],[-97.1984,18.6297],[-97.2136,18.6252],[-97.2203,18.6289],[-97.2266,18.6388],[-97.1994,18.6381],[-97.1795,18.6527],[-97.1728,18.6548],[-97.1661,18.6526],[-97.1589,18.6642],[-97.1433,18.6665],[-97.1421,18.6615],[-97.134,18.6594],[-97.1342,18.6481]]]},properties:{id:"30195",COUNTYID:"195",COUNTY:"Xoxocotla",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30195"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-97.2183,18.911],[-97.2179,18.9111],[-97.2125,18.8963],[-97.2029,18.8767],[-97.205,18.8723],[-97.1912,18.8681],[-97.1805,18.8569],[-97.1782,18.8495],[-97.1707,18.8395],[-97.168,18.8305],[-97.1611,18.8341],[-97.1528,18.8255],[-97.1574,18.8184],[-97.1667,18.8096],[-97.1768,18.8139],[-97.1947,18.8134],[-97.1978,18.7937],[-97.1782,18.7865],[-97.1593,18.7768],[-97.1625,18.7719],[-97.1617,18.7637],[-97.1705,18.7635],[-97.1743,18.7588],[-97.1877,18.757],[-97.197,18.7628],[-97.1943,18.7699],[-97.2065,18.7804],[-97.2109,18.7875],[-97.2245,18.7917],[-97.2263,18.7995],[-97.2229,18.808],[-97.2339,18.8108],[-97.229,18.8209],[-97.2325,18.834],[-97.2275,18.8424],[-97.2296,18.852],[-97.2274,18.8599],[-97.2117,18.8686],[-97.2127,18.8796],[-97.2233,18.8884],[-97.2321,18.9036],[-97.2183,18.911]]]},properties:{id:"30115",COUNTYID:"115",COUNTY:"Nogales",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30115"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-96.702,19.8841],[-96.7062,19.8764],[-96.7186,19.8699],[-96.7241,19.8593],[-96.7223,19.8544],[-96.7272,19.8466],[-96.7202,19.845],[-96.7305,19.8349],[-96.7351,19.8343],[-96.7426,19.8245],[-96.7411,19.8167],[-96.7471,19.8115],[-96.7541,19.7921],[-96.7635,19.7928],[-96.7674,19.7881],[-96.7769,19.7905],[-96.783,19.7947],[-96.7964,19.7853],[-96.8011,19.7937],[-96.7966,19.7959],[-96.7927,19.8038],[-96.8075,19.8055],[-96.8107,19.7983],[-96.8219,19.7947],[-96.8295,19.8033],[-96.8331,19.8165],[-96.836,19.8178],[-96.836,19.8333],[-96.8313,19.8387],[-96.8272,19.8505],[-96.8077,19.8689],[-96.8078,19.8786],[-96.7989,19.8881],[-96.7934,19.8982],[-96.7842,19.8983],[-96.7787,19.9037],[-96.771,19.9048],[-96.7708,19.9027],[-96.7557,19.8889],[-96.7496,19.8944],[-96.7395,19.9084],[-96.7215,19.9054],[-96.7163,19.9025],[-96.7121,19.8887],[-96.7182,19.8864],[-96.7154,19.878],[-96.702,19.8841]]]},properties:{id:"30197",COUNTYID:"197",COUNTY:"Yecuatla",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30197"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-95.594,18.3549],[-95.6375,18.3514],[-95.6397,18.3563],[-95.6449,18.3618],[-95.6522,18.3746],[-95.681,18.3873],[-95.7406,18.4193],[-95.7364,18.4243],[-95.7507,18.4285],[-95.7572,18.4388],[-95.7693,18.4389],[-95.7736,18.4425],[-95.7736,18.4493],[-95.768,18.457],[-95.7768,18.4575],[-95.7782,18.4668],[-95.7764,18.4721],[-95.7547,18.4715],[-95.7461,18.4866],[-95.7207,18.4814],[-95.7056,18.494],[-95.7042,18.5007],[-95.7121,18.5103],[-95.7166,18.5236],[-95.7111,18.5216],[-95.7017,18.5125],[-95.6991,18.5046],[-95.6891,18.5006],[-95.6831,18.4952],[-95.6765,18.4818],[-95.6623,18.4641],[-95.6647,18.4582],[-95.6584,18.4513],[-95.6464,18.4482],[-95.6398,18.4373],[-95.6459,18.4308],[-95.6312,18.4208],[-95.6268,18.408],[-95.6316,18.3935],[-95.6295,18.3839],[-95.6173,18.3865],[-95.6131,18.3826],[-95.6175,18.3728],[-95.6101,18.3608],[-95.6013,18.3654],[-95.5958,18.3635],[-95.594,18.3549]]]},properties:{id:"30012",COUNTYID:"012",COUNTY:"Amatitlán",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30012"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-96.8018,19.5755],[-96.7941,19.5703],[-96.7791,19.5658],[-96.7678,19.5653],[-96.772,19.5571],[-96.7783,19.5537],[-96.7843,19.5562],[-96.7904,19.5538],[-96.7884,19.5459],[-96.781,19.5404],[-96.7738,19.529],[-96.7684,19.5296],[-96.7525,19.5214],[-96.7396,19.521],[-96.7294,19.5164],[-96.7334,19.5111],[-96.729,19.5024],[-96.7242,19.5018],[-96.707,19.4858],[-96.712,19.4743],[-96.7016,19.4657],[-96.693,19.4643],[-96.6899,19.4575],[-96.6781,19.4572],[-96.6705,19.4536],[-96.655,19.4547],[-96.6472,19.4418],[-96.6378,19.4343],[-96.6258,19.4323],[-96.6216,19.4279],[-96.606,19.4203],[-96.5893,19.4231],[-96.5783,19.4218],[-96.5723,19.4145],[-96.5606,19.4176],[-96.5557,19.4088],[-96.5543,19.4003],[-96.5462,19.4022],[-96.5407,19.3976],[-96.5438,19.3909],[-96.5423,19.3822],[-96.543,19.3694],[-96.5636,19.3606],[-96.5624,19.3419],[-96.5825,19.3414],[-96.5968,19.3496],[-96.6029,19.3466],[-96.6108,19.3494],[-96.626,19.3466],[-96.6366,19.3486],[-96.6541,19.3378],[-96.6579,19.342],[-96.6592,19.3507],[-96.6679,19.3646],[-96.6794,19.3691],[-96.6812,19.3766],[-96.6949,19.3715],[-96.7036,19.3647],[-96.7069,19.3578],[-96.7142,19.3581],[-96.7219,19.3668],[-96.729,19.3667],[-96.7371,19.3724],[-96.7469,19.3864],[-96.7577,19.3954],[-96.7662,19.3929],[-96.7817,19.3928],[-96.7789,19.3847],[-96.7797,19.3744],[-96.7836,19.3742],[-96.8046,19.386],[-96.8165,19.3953],[-96.8084,19.4001],[-96.8087,19.4071],[-96.8025,19.4126],[-96.8092,19.4243],[-96.8171,19.4205],[-96.8203,19.4288],[-96.828,19.4346],[-96.8396,19.438],[-96.856,19.4386],[-96.8644,19.4431],[-96.8758,19.4459],[-96.8867,19.4458],[-96.8905,19.4558],[-96.9034,19.4632],[-96.8999,19.4678],[-96.9029,19.4746],[-96.8999,19.4855],[-96.8994,19.4928],[-96.8903,19.4906],[-96.8826,19.4947],[-96.8762,19.4947],[-96.869,19.5045],[-96.8605,19.5092],[-96.8543,19.5209],[-96.8364,19.5137],[-96.8223,19.5144],[-96.8264,19.5233],[-96.8461,19.5378],[-96.8419,19.5395],[-96.8298,19.5339],[-96.8299,19.5421],[-96.8422,19.5469],[-96.8424,19.5528],[-96.8368,19.5558],[-96.8325,19.5631],[-96.81,19.5593],[-96.7991,19.5674],[-96.8018,19.5755]]]},properties:{id:"30065",COUNTYID:"065",COUNTY:"Emiliano Zapata",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30065"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-96.7055,20.1569],[-96.7157,20.1487],[-96.7121,20.1444],[-96.7047,20.1236],[-96.6937,20.1076],[-96.7089,20.0946],[-96.7029,20.0936],[-96.7006,20.088],[-96.6807,20.0824],[-96.6958,20.0675],[-96.6997,20.0662],[-96.7119,20.0555],[-96.7068,20.0499],[-96.7177,20.0465],[-96.7282,20.0334],[-96.739,20.0272],[-96.7429,20.0212],[-96.7616,20.022],[-96.764,20.0187],[-96.7786,20.0087],[-96.7887,20.0089],[-96.8111,20.0023],[-96.8189,20.0023],[-96.8272,20.0144],[-96.8481,20.0177],[-96.8637,20.0351],[-96.8646,20.0481],[-96.8678,20.0575],[-96.8795,20.0644],[-96.8795,20.0735],[-96.8941,20.0799],[-96.8947,20.0856],[-96.9002,20.091],[-96.8974,20.0987],[-96.9032,20.1012],[-96.9087,20.0974],[-96.9126,20.1042],[-96.9049,20.1122],[-96.9069,20.1162],[-96.902,20.1223],[-96.8936,20.1243],[-96.8838,20.1355],[-96.8761,20.1401],[-96.8765,20.1507],[-96.8716,20.1559],[-96.8579,20.1517],[-96.859,20.1631],[-96.8514,20.1671],[-96.85,20.1764],[-96.8549,20.1852],[-96.8618,20.1856],[-96.8664,20.1915],[-96.8657,20.1982],[-96.856,20.1957],[-96.854,20.1895],[-96.842,20.1839],[-96.8341,20.1764],[-96.8243,20.1838],[-96.822,20.1995],[-96.8137,20.2115],[-96.8092,20.2104],[-96.7996,20.2019],[-96.7887,20.2032],[-96.779,20.2132],[-96.7763,20.2205],[-96.7775,20.2284],[-96.7854,20.2418],[-96.7845,20.2435],[-96.773,20.2268],[-96.7174,20.1732],[-96.7055,20.1569]]]},properties:{id:"30114",COUNTYID:"114",COUNTY:"Nautla",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30114"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-96.3217,19.4143],[-96.3249,19.4077],[-96.3299,19.4088],[-96.3321,19.3959],[-96.3426,19.3974],[-96.3533,19.3955],[-96.3692,19.4005],[-96.3771,19.4007],[-96.4011,19.4017],[-96.4016,19.4072],[-96.4111,19.4116],[-96.4234,19.4085],[-96.4344,19.397],[-96.447,19.3944],[-96.4563,19.3976],[-96.4658,19.3973],[-96.4678,19.4094],[-96.4739,19.4231],[-96.4773,19.4357],[-96.4808,19.4383],[-96.4748,19.4522],[-96.4646,19.4529],[-96.4566,19.4617],[-96.4505,19.4585],[-96.4386,19.4616],[-96.4263,19.4603],[-96.4117,19.4563],[-96.4057,19.4591],[-96.3947,19.4566],[-96.3833,19.4655],[-96.3835,19.4705],[-96.3691,19.4761],[-96.3666,19.4848],[-96.356,19.4793],[-96.3549,19.485],[-96.3451,19.4908],[-96.3375,19.4901],[-96.3301,19.4975],[-96.3208,19.4867],[-96.3142,19.4819],[-96.3089,19.462],[-96.3167,19.4576],[-96.3197,19.4507],[-96.3215,19.4317],[-96.3217,19.4143]]]},properties:{id:"30191",COUNTYID:"191",COUNTY:"Ursulo Galván",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30191"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-94.2574,18.0698],[-94.2818,18.0619],[-94.2721,18.0494],[-94.2589,18.0474],[-94.2513,18.0511],[-94.2352,18.0501],[-94.2326,18.045],[-94.2248,18.0445],[-94.2174,18.0398],[-94.2206,18.0283],[-94.2207,18.0203],[-94.2172,18.0131],[-94.2203,18.0034],[-94.2129,17.9967],[-94.2089,17.9983],[-94.2038,17.9909],[-94.1973,17.9897],[-94.2089,17.9732],[-94.2146,17.9724],[-94.2178,17.9642],[-94.2094,17.9588],[-94.208,17.95],[-94.2113,17.9439],[-94.2228,17.9378],[-94.2292,17.9287],[-94.2347,17.9166],[-94.2414,17.9155],[-94.2414,17.9097],[-94.2504,17.902],[-94.2505,17.8983],[-94.2585,17.8891],[-94.2672,17.8878],[-94.2773,17.8903],[-94.2907,17.8971],[-94.2937,17.9047],[-94.2988,17.903],[-94.3035,17.911],[-94.3332,17.9047],[-94.3526,17.9133],[-94.35,17.9163],[-94.3538,17.9271],[-94.3607,17.9584],[-94.3644,17.962],[-94.3641,17.9737],[-94.37,17.9795],[-94.3727,17.9868],[-94.3595,17.9911],[-94.3552,18.0033],[-94.3454,18.005],[-94.3404,18.0095],[-94.3332,18.0091],[-94.3368,18.0226],[-94.3328,18.0329],[-94.3258,18.0401],[-94.3191,18.0505],[-94.3184,18.0576],[-94.3275,18.0597],[-94.3374,18.065],[-94.3232,18.0758],[-94.3144,18.0871],[-94.3108,18.0973],[-94.3017,18.096],[-94.2988,18.0873],[-94.2891,18.0809],[-94.2859,18.0735],[-94.2694,18.0762],[-94.2574,18.0698]]]},properties:{id:"30111",COUNTYID:"111",COUNTY:"Moloacán",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30111"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-96.9744,18.5534],[-96.9901,18.5546],[-97.0034,18.5598],[-97.0043,18.5638],[-97.0218,18.5665],[-97.0303,18.5718],[-97.0415,18.5855],[-97.0336,18.5888],[-97.0187,18.5869],[-97.0192,18.5925],[-97.0098,18.5924],[-97.0121,18.6003],[-97.0191,18.5993],[-97.018,18.6124],[-97.0095,18.6144],[-97.0003,18.6085],[-96.9899,18.6132],[-96.9912,18.6181],[-96.985,18.6236],[-96.9754,18.6182],[-96.9738,18.6292],[-96.9629,18.6283],[-96.9582,18.6338],[-96.9769,18.6422],[-96.9744,18.6466],[-96.9622,18.6471],[-96.9586,18.6499],[-96.9493,18.6465],[-96.949,18.6317],[-96.954,18.6239],[-96.9441,18.6221],[-96.9372,18.6129],[-96.9343,18.6027],[-96.9356,18.5933],[-96.9286,18.5865],[-96.9348,18.5815],[-96.9324,18.574],[-96.9428,18.5678],[-96.939,18.5602],[-96.9441,18.5549],[-96.9522,18.563],[-96.9549,18.5603],[-96.9744,18.5534]]]},properties:{id:"30110",COUNTYID:"110",COUNTY:"Mixtla de Altamirano",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30110"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-97.1417,20.3761],[-97.1472,20.3831],[-97.1557,20.3879],[-97.1644,20.3889],[-97.1631,20.3974],[-97.1732,20.3965],[-97.1807,20.4125],[-97.1865,20.4147],[-97.1831,20.434],[-97.1905,20.4347],[-97.1916,20.4468],[-97.177,20.4484],[-97.1745,20.4625],[-97.1623,20.4616],[-97.1596,20.467],[-97.1595,20.4799],[-97.1526,20.4813],[-97.1479,20.4884],[-97.1513,20.507],[-97.1335,20.5124],[-97.1275,20.5215],[-97.1136,20.521],[-97.1114,20.5262],[-97.1042,20.5307],[-97.0639,20.4933],[-97.0707,20.4895],[-97.077,20.4823],[-97.0528,20.4674],[-97.0426,20.4681],[-97.0196,20.4731],[-97.0203,20.4619],[-97.0275,20.4611],[-97.0305,20.4498],[-97.023,20.4435],[-97.0283,20.4338],[-97.0341,20.4323],[-97.0329,20.4253],[-97.0373,20.4099],[-97.0565,20.406],[-97.0696,20.407],[-97.0737,20.4018],[-97.0813,20.4013],[-97.0797,20.3916],[-97.0865,20.3872],[-97.0961,20.3963],[-97.1065,20.3949],[-97.105,20.3882],[-97.1114,20.3797],[-97.1223,20.3775],[-97.129,20.3721],[-97.1417,20.3761]]]},properties:{id:"30069",COUNTYID:"069",COUNTY:"Gutiérrez Zamora",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30069"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-94.3526,17.9133],[-94.3559,17.9128],[-94.3705,17.8984],[-94.3791,17.9116],[-94.3939,17.9056],[-94.4012,17.906],[-94.4127,17.9125],[-94.4192,17.9105],[-94.4345,17.9097],[-94.4414,17.9168],[-94.4381,17.9237],[-94.4492,17.9333],[-94.445,17.9386],[-94.4454,17.9463],[-94.4498,17.9505],[-94.4434,17.9639],[-94.437,17.9673],[-94.4333,17.9757],[-94.4278,17.9807],[-94.4315,17.9895],[-94.4306,17.9971],[-94.4416,17.9987],[-94.4421,18.0068],[-94.4483,18.0115],[-94.4482,18.0163],[-94.4601,18.0285],[-94.4595,18.0404],[-94.4569,18.0492],[-94.4449,18.0562],[-94.4276,18.0503],[-94.4221,18.0524],[-94.4127,18.0341],[-94.3911,18.0413],[-94.3752,18.0454],[-94.368,18.0525],[-94.3597,18.0566],[-94.3445,18.061],[-94.3374,18.065],[-94.3275,18.0597],[-94.3184,18.0576],[-94.3191,18.0505],[-94.3258,18.0401],[-94.3328,18.0329],[-94.3368,18.0226],[-94.3332,18.0091],[-94.3404,18.0095],[-94.3454,18.005],[-94.3552,18.0033],[-94.3595,17.9911],[-94.3727,17.9868],[-94.37,17.9795],[-94.3641,17.9737],[-94.3644,17.962],[-94.3607,17.9584],[-94.3538,17.9271],[-94.35,17.9163],[-94.3526,17.9133]]]},properties:{id:"30082",COUNTYID:"082",COUNTY:"Ixhuatlán del Sureste",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30082"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-96.9171,19.6351],[-96.9031,19.6324],[-96.896,19.6272],[-96.89,19.6267],[-96.8699,19.6153],[-96.8637,19.6075],[-96.8486,19.608],[-96.8419,19.6038],[-96.8429,19.5995],[-96.8448,19.5908],[-96.8512,19.586],[-96.8585,19.5884],[-96.8709,19.5876],[-96.874,19.5811],[-96.882,19.5787],[-96.8972,19.581],[-96.9119,19.5863],[-96.9214,19.5934],[-96.928,19.5925],[-96.9336,19.6053],[-96.9418,19.6124],[-96.9483,19.6083],[-96.9488,19.6021],[-96.9581,19.595],[-96.9684,19.5967],[-96.9754,19.6046],[-96.9744,19.6132],[-96.9802,19.6205],[-96.9875,19.6207],[-96.9855,19.6293],[-96.974,19.6365],[-96.9685,19.6437],[-96.9627,19.6372],[-96.9509,19.64],[-96.9418,19.6392],[-96.9197,19.6341],[-96.9171,19.6351]]]},properties:{id:"30093",COUNTYID:"093",COUNTY:"Jilotepec",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30093"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-94.3445,18.061],[-94.3597,18.0566],[-94.368,18.0525],[-94.3752,18.0454],[-94.3911,18.0413],[-94.4127,18.0341],[-94.4221,18.0524],[-94.4143,18.0684],[-94.4161,18.0825],[-94.4241,18.098],[-94.4153,18.0979],[-94.4121,18.0905],[-94.4002,18.0909],[-94.3979,18.0837],[-94.3995,18.0778],[-94.3911,18.0725],[-94.3836,18.0739],[-94.3732,18.0806],[-94.3658,18.0823],[-94.3652,18.0756],[-94.3504,18.0673],[-94.3445,18.061]]]},properties:{id:"30206",COUNTYID:"206",COUNTY:"Nanchital de Lázaro Cárdenas del Río",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30206"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-97.0481,18.5814],[-97.0521,18.5763],[-97.0711,18.5692],[-97.0794,18.5548],[-97.0973,18.5389],[-97.104,18.5359],[-97.1047,18.5289],[-97.1127,18.5213],[-97.1137,18.5314],[-97.1238,18.5429],[-97.1446,18.5709],[-97.1289,18.5758],[-97.1192,18.5719],[-97.1157,18.5762],[-97.0977,18.5777],[-97.0863,18.5823],[-97.0751,18.5821],[-97.0489,18.5884],[-97.0481,18.5814]]]},properties:{id:"30019",COUNTYID:"019",COUNTY:"Astacinga",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30019"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-96.3052,18.9741],[-96.2967,18.9621],[-96.3009,18.9434],[-96.3008,18.9351],[-96.2944,18.9351],[-96.2937,18.9411],[-96.2869,18.944],[-96.2814,18.9377],[-96.2826,18.9284],[-96.2777,18.9252],[-96.2741,18.9165],[-96.2635,18.9173],[-96.263,18.9073],[-96.2556,18.9023],[-96.2463,18.9025],[-96.2434,18.9079],[-96.2318,18.9105],[-96.2324,18.9142],[-96.2159,18.92],[-96.2145,18.8962],[-96.2115,18.8869],[-96.2013,18.897],[-96.1934,18.9023],[-96.1839,18.8425],[-96.1906,18.8401],[-96.2001,18.8327],[-96.2036,18.8381],[-96.2154,18.8381],[-96.2175,18.8298],[-96.224,18.8276],[-96.2286,18.8309],[-96.2412,18.8277],[-96.2456,18.8228],[-96.2628,18.8147],[-96.2691,18.8102],[-96.267,18.8007],[-96.2714,18.7884],[-96.2846,18.7824],[-96.2957,18.7858],[-96.3055,18.7842],[-96.3127,18.7897],[-96.3215,18.7923],[-96.3275,18.7901],[-96.3314,18.7967],[-96.339,18.796],[-96.3399,18.7878],[-96.3588,18.7921],[-96.3677,18.7857],[-96.3717,18.7877],[-96.3824,18.784],[-96.3916,18.7841],[-96.4118,18.776],[-96.4163,18.7678],[-96.4108,18.7587],[-96.3993,18.7564],[-96.4007,18.7491],[-96.4053,18.7461],[-96.4234,18.7502],[-96.42,18.7402],[-96.4348,18.7367],[-96.4362,18.7406],[-96.4486,18.7396],[-96.454,18.7421],[-96.4606,18.738],[-96.4755,18.7364],[-96.4745,18.7521],[-96.4758,18.7603],[-96.4826,18.7651],[-96.4808,18.7708],[-96.4738,18.7771],[-96.4658,18.786],[-96.4647,18.7971],[-96.4718,18.802],[-96.4666,18.8141],[-96.4797,18.8209],[-96.4875,18.8371],[-96.4967,18.8409],[-96.5075,18.8529],[-96.5163,18.8558],[-96.5212,18.8624],[-96.5281,18.8646],[-96.5155,18.8712],[-96.5141,18.8772],[-96.5202,18.8799],[-96.5317,18.8932],[-96.5364,18.9021],[-96.5299,18.9085],[-96.515,18.9041],[-96.5065,18.8995],[-96.4974,18.9014],[-96.494,18.9112],[-96.5163,18.9125],[-96.5203,18.9192],[-96.5121,18.922],[-96.5006,18.9161],[-96.4951,18.9167],[-96.5,18.9286],[-96.4811,18.9277],[-96.4677,18.93],[-96.4666,18.9395],[-96.4622,18.9391],[-96.4587,18.9467],[-96.4438,18.9468],[-96.434,18.937],[-96.4265,18.9445],[-96.414,18.9373],[-96.4052,18.9354],[-96.3926,18.939],[-96.3789,18.9475],[-96.3693,18.9481],[-96.3535,18.9623],[-96.3498,18.9713],[-96.3267,18.967],[-96.3147,18.9726],[-96.3144,18.9782],[-96.3052,18.9741]]]},properties:{id:"30049",COUNTYID:"049",COUNTY:"Cotaxtla",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30049"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-96.5263,19.9248],[-96.5318,19.9168],[-96.5259,19.9049],[-96.5316,19.9017],[-96.5324,19.8925],[-96.538,19.8874],[-96.5442,19.8751],[-96.5366,19.8661],[-96.5435,19.8546],[-96.5492,19.8364],[-96.5537,19.8355],[-96.5578,19.8284],[-96.5717,19.8314],[-96.5792,19.8438],[-96.5874,19.8444],[-96.599,19.8485],[-96.6237,19.8641],[-96.6313,19.8765],[-96.6305,19.8791],[-96.6499,19.8924],[-96.6503,19.9027],[-96.6545,19.9156],[-96.6434,19.9248],[-96.6438,19.9355],[-96.6376,19.9419],[-96.6402,19.9462],[-96.6532,19.9479],[-96.6418,19.961],[-96.6414,19.9703],[-96.6449,19.9763],[-96.6451,19.9908],[-96.6534,19.9894],[-96.6575,19.9852],[-96.6625,19.9985],[-96.6726,19.9892],[-96.678,19.9873],[-96.6826,19.9787],[-96.6909,19.9765],[-96.7029,19.9702],[-96.7096,19.9704],[-96.7219,19.9769],[-96.7265,19.9693],[-96.7316,19.9757],[-96.73,19.9867],[-96.7344,19.9881],[-96.7383,19.977],[-96.7504,19.9667],[-96.756,19.9712],[-96.7589,19.9787],[-96.776,19.9838],[-96.767,19.9994],[-96.7623,19.9994],[-96.7596,20.0121],[-96.764,20.0187],[-96.7616,20.022],[-96.7429,20.0212],[-96.739,20.0272],[-96.7282,20.0334],[-96.7177,20.0465],[-96.7068,20.0499],[-96.7119,20.0555],[-96.6997,20.0662],[-96.6958,20.0675],[-96.6807,20.0824],[-96.7006,20.088],[-96.7029,20.0936],[-96.7089,20.0946],[-96.6937,20.1076],[-96.7047,20.1236],[-96.7121,20.1444],[-96.7157,20.1487],[-96.7055,20.1569],[-96.7009,20.1496],[-96.6454,20.0865],[-96.6081,20.0425],[-96.6023,20.0348],[-96.5787,20.0079],[-96.5749,20.0048],[-96.5741,19.9919],[-96.5653,19.9736],[-96.5554,19.9591],[-96.5263,19.9248]]]},properties:{id:"30192",COUNTYID:"192",COUNTY:"Vega de Alatorre",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30192"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-97.1667,18.8096],[-97.1664,18.8055],[-97.1576,18.8037],[-97.1403,18.796],[-97.1318,18.7964],[-97.1356,18.7873],[-97.1338,18.7808],[-97.1405,18.7673],[-97.1447,18.762],[-97.151,18.7644],[-97.1617,18.7637],[-97.1625,18.7719],[-97.1593,18.7768],[-97.1782,18.7865],[-97.1978,18.7937],[-97.1947,18.8134],[-97.1768,18.8139],[-97.1667,18.8096]]]},properties:{id:"30030",COUNTYID:"030",COUNTY:"Camerino Z. Mendoza",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30030"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-97.0221,18.7626],[-97.0284,18.7532],[-97.0468,18.7475],[-97.0583,18.7598],[-97.0667,18.7591],[-97.0711,18.7691],[-97.0705,18.7774],[-97.0613,18.7739],[-97.0489,18.782],[-97.0471,18.7885],[-97.0412,18.7898],[-97.0277,18.7693],[-97.0221,18.7626]]]},properties:{id:"30098",COUNTYID:"098",COUNTY:"Magdalena",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30098"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-98.3766,21.4087],[-98.3855,21.4049],[-98.3867,21.3966],[-98.3982,21.3835],[-98.398,21.3806],[-98.384,21.3681],[-98.3706,21.3646],[-98.3633,21.3543],[-98.3682,21.3516],[-98.3648,21.3351],[-98.3758,21.3252],[-98.3708,21.3172],[-98.3867,21.3141],[-98.3888,21.3072],[-98.3788,21.3079],[-98.374,21.3029],[-98.3651,21.2989],[-98.3684,21.2919],[-98.3758,21.2935],[-98.3801,21.2854],[-98.3679,21.2824],[-98.363,21.2857],[-98.3608,21.2955],[-98.3486,21.3006],[-98.3405,21.2989],[-98.337,21.294],[-98.3398,21.2883],[-98.3263,21.2894],[-98.3228,21.2866],[-98.3027,21.2875],[-98.2957,21.2901],[-98.2892,21.2877],[-98.286,21.2821],[-98.2766,21.2885],[-98.2719,21.2848],[-98.2755,21.2769],[-98.2704,21.2742],[-98.2592,21.2762],[-98.2505,21.2605],[-98.2526,21.2502],[-98.2489,21.2441],[-98.2554,21.231],[-98.2879,21.2055],[-98.2918,21.2042],[-98.2961,21.188],[-98.2993,21.1775],[-98.3094,21.185],[-98.3136,21.1958],[-98.3201,21.2002],[-98.3337,21.1995],[-98.3392,21.2081],[-98.3363,21.215],[-98.3553,21.2306],[-98.3681,21.233],[-98.372,21.242],[-98.3801,21.239],[-98.3842,21.2434],[-98.3814,21.252],[-98.3975,21.2643],[-98.4088,21.2657],[-98.4144,21.2601],[-98.4327,21.2561],[-98.4325,21.2657],[-98.444,21.2845],[-98.4576,21.2823],[-98.464,21.2917],[-98.4589,21.3008],[-98.4779,21.3211],[-98.482,21.3176],[-98.4978,21.3279],[-98.4956,21.3404],[-98.4852,21.3501],[-98.4751,21.3441],[-98.4656,21.3471],[-98.4697,21.3619],[-98.4674,21.3786],[-98.4644,21.3812],[-98.4529,21.379],[-98.4497,21.3847],[-98.4589,21.3911],[-98.457,21.3968],[-98.4475,21.3998],[-98.4381,21.3929],[-98.4262,21.3897],[-98.4137,21.3837],[-98.4065,21.3891],[-98.4063,21.4025],[-98.397,21.4103],[-98.3952,21.4156],[-98.3827,21.4136],[-98.3766,21.4087]]]},properties:{id:"30129",COUNTYID:"129",COUNTY:"Platón Sánchez",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30129"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-97.5566,21.1054],[-97.553,21.1076],[-97.5428,21.104],[-97.5324,21.1034],[-97.5214,21.1076],[-97.5088,21.0994],[-97.5116,21.0904],[-97.5071,21.0741],[-97.5169,21.0754],[-97.528,21.0738],[-97.5385,21.07],[-97.5433,21.0716],[-97.5463,21.0818],[-97.5544,21.0843],[-97.5615,21.0663],[-97.5585,21.0566],[-97.5488,21.055],[-97.5617,21.0345],[-97.5706,21.0289],[-97.5764,21.0221],[-97.5918,21.0277],[-97.5947,21.0175],[-97.5893,21.0017],[-97.5801,21.0008],[-97.5732,21.0055],[-97.5668,21.0006],[-97.5737,20.9942],[-97.5794,20.9971],[-97.5999,20.9976],[-97.5988,20.991],[-97.5896,20.9769],[-97.5927,20.9717],[-97.5717,20.9501],[-97.5264,20.9539],[-97.5166,20.9446],[-97.5192,20.9341],[-97.4998,20.933],[-97.4993,20.9268],[-97.506,20.9175],[-97.5076,20.9104],[-97.5015,20.9068],[-97.5026,20.8962],[-97.5015,20.8804],[-97.5071,20.8745],[-97.5076,20.8516],[-97.5138,20.8594],[-97.5284,20.8577],[-97.5295,20.8466],[-97.5204,20.8385],[-97.522,20.8315],[-97.5303,20.8233],[-97.5414,20.8219],[-97.5424,20.8183],[-97.5568,20.8204],[-97.5721,20.8173],[-97.5767,20.8122],[-97.5877,20.812],[-97.604,20.8125],[-97.6033,20.8158],[-97.6135,20.8231],[-97.6121,20.826],[-97.6219,20.8331],[-97.6245,20.8286],[-97.6339,20.8302],[-97.6347,20.8178],[-97.6462,20.8104],[-97.6567,20.8145],[-97.6735,20.8165],[-97.6826,20.8152],[-97.6854,20.8069],[-97.7175,20.8095],[-97.7247,20.808],[-97.7384,20.8166],[-97.7503,20.8148],[-97.7627,20.8187],[-97.7732,20.8268],[-97.7904,20.8168],[-97.8072,20.822],[-97.8166,20.818],[-97.824,20.8098],[-97.8374,20.8126],[-97.8499,20.8191],[-97.8431,20.8244],[-97.8436,20.8314],[-97.839,20.8362],[-97.8453,20.8398],[-97.8558,20.8332],[-97.8617,20.8354],[-97.8708,20.8313],[-97.8791,20.8343],[-97.8841,20.8253],[-97.8948,20.7978],[-97.9059,20.7973],[-97.9137,20.7839],[-97.9285,20.7892],[-97.9261,20.8056],[-97.9218,20.8092],[-97.9225,20.8218],[-97.9202,20.8342],[-97.9093,20.8394],[-97.9017,20.8478],[-97.8887,20.8515],[-97.91,20.8561],[-97.9026,20.8642],[-97.9035,20.8709],[-97.9159,20.8749],[-97.9292,20.8757],[-97.9295,20.8795],[-97.9104,20.8856],[-97.8995,20.898],[-97.8803,20.8933],[-97.8745,20.9036],[-97.8777,20.9143],[-97.8783,20.9364],[-97.8731,20.9411],[-97.8696,20.9505],[-97.8495,20.9706],[-97.8581,20.9715],[-97.8637,20.9785],[-97.8616,20.9834],[-97.8655,20.989],[-97.875,20.9867],[-97.8776,20.9814],[-97.8876,20.982],[-97.8998,20.9895],[-97.9091,20.9879],[-97.9113,20.9943],[-97.9068,21.0003],[-97.9238,21.001],[-97.9258,21.0113],[-97.9169,21.0089],[-97.9087,21.0122],[-97.9058,21.0199],[-97.9211,21.0263],[-97.9125,21.0507],[-97.9049,21.0535],[-97.8899,21.0486],[-97.8847,21.05],[-97.8842,21.0567],[-97.8789,21.058],[-97.8747,21.0648],[-97.8578,21.0705],[-97.8529,21.075],[-97.8569,21.086],[-97.8514,21.0865],[-97.8421,21.0936],[-97.8222,21.1041],[-97.8245,21.1114],[-97.8323,21.1175],[-97.8333,21.1266],[-97.8167,21.1235],[-97.8102,21.1198],[-97.8118,21.1139],[-97.8012,21.1042],[-97.793,21.1035],[-97.7863,21.0964],[-97.7792,21.0963],[-97.7655,21.0913],[-97.7503,21.0945],[-97.7478,21.1028],[-97.7529,21.1045],[-97.7577,21.1249],[-97.754,21.1331],[-97.7552,21.1394],[-97.7478,21.132],[-97.7345,21.1408],[-97.7272,21.1308],[-97.7199,21.1415],[-97.7247,21.1475],[-97.7252,21.1545],[-97.7195,21.1556],[-97.7084,21.1531],[-97.7044,21.1566],[-97.7101,21.1699],[-97.7088,21.1834],[-97.7054,21.1915],[-97.6852,21.1987],[-97.6845,21.194],[-97.6718,21.1884],[-97.6518,21.1848],[-97.637,21.1837],[-97.6302,21.1704],[-97.63,21.1589],[-97.623,21.1574],[-97.6111,21.1473],[-97.6118,21.1406],[-97.5995,21.1371],[-97.5938,21.1386],[-97.5901,21.1334],[-97.5882,21.124],[-97.5786,21.1162],[-97.5726,21.1078],[-97.5566,21.1054]]]},properties:{id:"30160",COUNTYID:"160",COUNTY:"Álamo Temapache",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30160"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-94.7891,18.5077],[-94.783,18.492],[-94.7778,18.4697],[-94.7741,18.4627],[-94.7737,18.4492],[-94.7601,18.4354],[-94.7438,18.4217],[-94.7446,18.4145],[-94.7375,18.3952],[-94.729,18.3856],[-94.7101,18.37],[-94.6915,18.3593],[-94.6825,18.35],[-94.6895,18.3481],[-94.6944,18.3424],[-94.6943,18.336],[-94.7027,18.3332],[-94.7028,18.3278],[-94.7102,18.3229],[-94.7137,18.3313],[-94.7212,18.3261],[-94.7197,18.3162],[-94.7406,18.3097],[-94.7331,18.299],[-94.7305,18.2872],[-94.7385,18.271],[-94.7344,18.2612],[-94.7334,18.2517],[-94.7263,18.2419],[-94.7449,18.2405],[-94.761,18.2338],[-94.7675,18.2186],[-94.7685,18.2097],[-94.7679,18.1904],[-94.7838,18.1901],[-94.7797,18.202],[-94.7812,18.2145],[-94.7765,18.2323],[-94.7813,18.2386],[-94.7782,18.2493],[-94.7706,18.2526],[-94.7669,18.2635],[-94.7704,18.2736],[-94.7771,18.2769],[-94.7869,18.2768],[-94.7883,18.2605],[-94.8044,18.2604],[-94.8064,18.2694],[-94.813,18.2751],[-94.8104,18.2841],[-94.7955,18.2838],[-94.795,18.2883],[-94.7858,18.2881],[-94.7854,18.2925],[-94.8029,18.2934],[-94.8076,18.2994],[-94.8268,18.3109],[-94.8351,18.3242],[-94.8368,18.3304],[-94.8324,18.3356],[-94.8345,18.3432],[-94.8329,18.3506],[-94.8278,18.3565],[-94.8226,18.3723],[-94.8288,18.3908],[-94.8341,18.3897],[-94.8333,18.4039],[-94.8567,18.3997],[-94.8616,18.3926],[-94.8692,18.3896],[-94.8738,18.3922],[-94.8855,18.4044],[-94.8965,18.4089],[-94.8879,18.4231],[-94.8919,18.4292],[-94.8865,18.4323],[-94.8822,18.4436],[-94.8741,18.4482],[-94.8663,18.4475],[-94.864,18.4523],[-94.8539,18.4539],[-94.8493,18.4581],[-94.8432,18.4732],[-94.8292,18.4815],[-94.8219,18.4827],[-94.808,18.4902],[-94.8053,18.4947],[-94.7969,18.4977],[-94.7989,18.502],[-94.7891,18.5077]]]},properties:{id:"30209",COUNTYID:"209",COUNTY:"Tatahuicapan de Juárez",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30209"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-96.8435,19.3714],[-96.8384,19.367],[-96.8188,19.3663],[-96.8045,19.3591],[-96.8044,19.344],[-96.7888,19.3361],[-96.7756,19.3376],[-96.7698,19.3276],[-96.7762,19.3096],[-96.7741,19.3054],[-96.7599,19.3118],[-96.7448,19.3136],[-96.7414,19.2964],[-96.7323,19.2841],[-96.7256,19.283],[-96.7253,19.2691],[-96.7044,19.2685],[-96.7002,19.2755],[-96.7088,19.286],[-96.704,19.2956],[-96.7029,19.3118],[-96.6899,19.305],[-96.678,19.3036],[-96.6707,19.3058],[-96.6657,19.3142],[-96.6453,19.3163],[-96.6382,19.3209],[-96.6317,19.3193],[-96.6185,19.3333],[-96.608,19.3363],[-96.6017,19.3315],[-96.5976,19.3211],[-96.6038,19.316],[-96.6043,19.3094],[-96.6136,19.3036],[-96.6136,19.293],[-96.6195,19.2872],[-96.6263,19.285],[-96.6353,19.2776],[-96.6511,19.2779],[-96.6551,19.2721],[-96.6753,19.271],[-96.6952,19.2542],[-96.7016,19.2554],[-96.7159,19.2488],[-96.7237,19.2499],[-96.7296,19.2455],[-96.7432,19.2414],[-96.7679,19.2297],[-96.789,19.2256],[-96.8006,19.2201],[-96.8073,19.2196],[-96.8065,19.2258],[-96.8145,19.2269],[-96.8183,19.2334],[-96.8256,19.2329],[-96.831,19.2393],[-96.8258,19.2467],[-96.8224,19.2491],[-96.7993,19.2571],[-96.7819,19.2645],[-96.7785,19.269],[-96.754,19.2733],[-96.7631,19.2839],[-96.77,19.2879],[-96.7775,19.2846],[-96.7911,19.2856],[-96.7927,19.2832],[-96.8134,19.2922],[-96.8196,19.2987],[-96.8318,19.2998],[-96.8534,19.2884],[-96.8613,19.2867],[-96.8737,19.2893],[-96.8875,19.2834],[-96.9146,19.2767],[-96.9237,19.2674],[-96.9344,19.2616],[-96.9358,19.2554],[-96.9447,19.2485],[-96.9525,19.2389],[-96.9617,19.2335],[-96.9686,19.2229],[-96.9761,19.2237],[-96.9797,19.2165],[-96.9743,19.2054],[-96.9697,19.2046],[-96.9668,19.1957],[-96.9771,19.1966],[-96.9826,19.201],[-96.993,19.2012],[-96.9979,19.2066],[-97.0063,19.2098],[-97.0137,19.2059],[-97.03,19.2087],[-97.0296,19.218],[-97.0247,19.2195],[-97.0134,19.2321],[-97.0077,19.231],[-97.0012,19.2365],[-97.0053,19.2495],[-96.9963,19.2635],[-96.9899,19.278],[-96.9857,19.28],[-96.9715,19.2898],[-96.9596,19.2896],[-96.959,19.2933],[-96.9468,19.2968],[-96.9441,19.3041],[-96.9265,19.3091],[-96.9183,19.3186],[-96.9182,19.3228],[-96.8957,19.336],[-96.8949,19.3442],[-96.8822,19.3444],[-96.8794,19.3533],[-96.8728,19.3529],[-96.8604,19.3603],[-96.8559,19.3725],[-96.8435,19.3714]]]},properties:{id:"30024",COUNTYID:"024",COUNTY:"Tlaltetela",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30024"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-96.6844,19.078],[-96.6598,19.0801],[-96.6501,19.0741],[-96.6316,19.0794],[-96.6309,19.0917],[-96.6251,19.0885],[-96.6076,19.0903],[-96.5925,19.0869],[-96.5797,19.0821],[-96.5688,19.0813],[-96.5654,19.0844],[-96.5572,19.0789],[-96.5627,19.0734],[-96.5843,19.0716],[-96.5724,19.063],[-96.5583,19.0581],[-96.5423,19.0571],[-96.5412,19.0522],[-96.5294,19.0438],[-96.5368,19.0399],[-96.5408,19.0454],[-96.5519,19.0392],[-96.5539,19.0512],[-96.5631,19.0542],[-96.5847,19.0502],[-96.605,19.0498],[-96.6161,19.0555],[-96.6205,19.048],[-96.6303,19.0427],[-96.6343,19.0469],[-96.643,19.0479],[-96.6635,19.0411],[-96.6755,19.0474],[-96.6762,19.0417],[-96.689,19.036],[-96.6955,19.0286],[-96.7077,19.0212],[-96.7249,19.022],[-96.7427,19.0267],[-96.7546,19.0222],[-96.7689,19.0209],[-96.7817,19.0222],[-96.7916,19.0266],[-96.8043,19.0274],[-96.8058,19.0318],[-96.8195,19.0462],[-96.8247,19.0548],[-96.8456,19.0788],[-96.8545,19.094],[-96.864,19.0937],[-96.8724,19.1],[-96.8714,19.113],[-96.88,19.1242],[-96.8671,19.1321],[-96.8558,19.1333],[-96.8362,19.1256],[-96.8147,19.1119],[-96.7988,19.106],[-96.7897,19.0961],[-96.7688,19.0914],[-96.7614,19.0836],[-96.7563,19.0833],[-96.7397,19.077],[-96.7192,19.0755],[-96.7127,19.0779],[-96.7038,19.0771],[-96.6911,19.0726],[-96.6844,19.078]]]},properties:{id:"30200",COUNTYID:"200",COUNTY:"Zentla",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30200"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-96.689,18.8534],[-96.6879,18.8142],[-96.6989,18.8165],[-96.7001,18.8053],[-96.6877,18.8025],[-96.6849,18.7773],[-96.666,18.7736],[-96.6571,18.7683],[-96.647,18.7665],[-96.6391,18.7721],[-96.631,18.7727],[-96.613,18.7697],[-96.6012,18.7653],[-96.5936,18.7602],[-96.5638,18.7619],[-96.5418,18.7547],[-96.528,18.7576],[-96.5233,18.754],[-96.5135,18.7564],[-96.5078,18.7638],[-96.4992,18.7663],[-96.4974,18.7749],[-96.4894,18.7755],[-96.4842,18.7799],[-96.4797,18.7746],[-96.4738,18.7771],[-96.4808,18.7708],[-96.4826,18.7651],[-96.4758,18.7603],[-96.4745,18.7521],[-96.4755,18.7364],[-96.482,18.7406],[-96.4897,18.7399],[-96.5028,18.7324],[-96.5191,18.726],[-96.5294,18.7278],[-96.5361,18.7326],[-96.5445,18.7349],[-96.5641,18.7353],[-96.5768,18.7388],[-96.5887,18.7418],[-96.5936,18.7383],[-96.6275,18.742],[-96.6485,18.7461],[-96.6548,18.7515],[-96.6621,18.7452],[-96.6658,18.7499],[-96.6895,18.7445],[-96.7157,18.7455],[-96.7263,18.7442],[-96.7376,18.7518],[-96.7516,18.7563],[-96.7774,18.7686],[-96.7804,18.7788],[-96.7667,18.7831],[-96.7802,18.7924],[-96.7755,18.7985],[-96.7693,18.7928],[-96.7564,18.7987],[-96.7589,18.8048],[-96.7666,18.8081],[-96.7477,18.8457],[-96.7352,18.8399],[-96.7219,18.8476],[-96.7157,18.84],[-96.7117,18.8485],[-96.689,18.8534]]]},properties:{id:"30053",COUNTYID:"053",COUNTY:"Cuitláhuac",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30053"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-95.7786,18.3999],[-95.7786,18.3739],[-95.7707,18.36],[-95.7769,18.3598],[-95.7794,18.3418],[-95.7767,18.3306],[-95.7655,18.3186],[-95.7665,18.3147],[-95.7767,18.318],[-95.7859,18.3286],[-95.783,18.3414],[-95.7912,18.3379],[-95.8022,18.3181],[-95.8124,18.3171],[-95.8219,18.3245],[-95.8301,18.3336],[-95.8396,18.3332],[-95.8462,18.3276],[-95.8507,18.3158],[-95.8458,18.3065],[-95.8454,18.2961],[-95.8493,18.2874],[-95.8563,18.2825],[-95.881,18.2751],[-95.8909,18.2744],[-95.9047,18.2769],[-95.9165,18.2702],[-95.9176,18.2663],[-95.912,18.2506],[-95.9197,18.2468],[-95.9417,18.2489],[-95.9502,18.2513],[-95.9561,18.2467],[-95.9561,18.235],[-95.9519,18.2268],[-95.9573,18.2209],[-95.9646,18.2205],[-95.9617,18.2312],[-95.9687,18.2369],[-95.9769,18.2507],[-95.9878,18.2527],[-95.9924,18.2493],[-95.9938,18.2407],[-95.9831,18.2397],[-95.9767,18.2315],[-95.9887,18.2245],[-95.9965,18.2135],[-95.9988,18.2069],[-95.9917,18.1994],[-95.9799,18.1997],[-95.9825,18.1893],[-96.0002,18.1845],[-96.007,18.1848],[-96.0083,18.2058],[-96.0162,18.2139],[-96.0249,18.2177],[-96.035,18.2163],[-96.0438,18.2056],[-96.043,18.1919],[-96.0445,18.1795],[-96.0525,18.173],[-96.0628,18.176],[-96.0666,18.1683],[-96.0745,18.1618],[-96.0839,18.1618],[-96.0974,18.1668],[-96.1143,18.1641],[-96.1172,18.1552],[-96.1239,18.1516],[-96.1241,18.1404],[-96.1376,18.1342],[-96.1436,18.1401],[-96.1497,18.1316],[-96.1647,18.1346],[-96.1797,18.1406],[-96.1883,18.1513],[-96.183,18.1569],[-96.1864,18.1672],[-96.1729,18.1678],[-96.1691,18.1721],[-96.169,18.1834],[-96.1714,18.1864],[-96.1459,18.1919],[-96.1397,18.1993],[-96.1384,18.1848],[-96.1281,18.1873],[-96.1222,18.1846],[-96.1185,18.1917],[-96.1044,18.1923],[-96.0897,18.195],[-96.0852,18.2009],[-96.0782,18.1998],[-96.0741,18.2102],[-96.0691,18.2141],[-96.0698,18.2197],[-96.0804,18.2187],[-96.0782,18.2325],[-96.0621,18.2397],[-96.0652,18.2489],[-96.06,18.2548],[-96.0609,18.2613],[-96.0713,18.27],[-96.0698,18.2877],[-96.0557,18.2899],[-96.0566,18.3018],[-96.0698,18.3142],[-96.0766,18.3079],[-96.0825,18.3062],[-96.0835,18.3141],[-96.0908,18.3196],[-96.0901,18.3268],[-96.0787,18.3368],[-96.0681,18.3345],[-96.0664,18.3522],[-96.0496,18.3658],[-96.0434,18.3606],[-96.0363,18.3651],[-96.0331,18.3825],[-96.0166,18.3754],[-96.0159,18.3879],[-96.0106,18.3943],[-96.0002,18.3969],[-95.9927,18.4037],[-95.9849,18.415],[-95.9851,18.4269],[-95.977,18.4268],[-95.9674,18.4233],[-95.9618,18.4251],[-95.9558,18.4213],[-95.9432,18.4187],[-95.938,18.4116],[-95.9328,18.4173],[-95.9353,18.4283],[-95.93,18.432],[-95.9146,18.4269],[-95.9036,18.4257],[-95.9063,18.4155],[-95.9062,18.4008],[-95.8964,18.4032],[-95.8883,18.4017],[-95.8903,18.3886],[-95.8971,18.3824],[-95.8964,18.3787],[-95.8852,18.3739],[-95.8731,18.3744],[-95.8712,18.3786],[-95.8589,18.372],[-95.8472,18.3742],[-95.8437,18.3774],[-95.8349,18.3768],[-95.8281,18.3793],[-95.818,18.392],[-95.7993,18.3823],[-95.7987,18.3859],[-95.787,18.3844],[-95.7786,18.3999]]]},properties:{id:"30045",COUNTYID:"045",COUNTY:"Cosamaloapan de Carpio",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30045"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-97.404,20.4877],[-97.397,20.4807],[-97.3993,20.4696],[-97.4179,20.461],[-97.4286,20.459],[-97.441,20.459],[-97.4477,20.4565],[-97.448,20.4488],[-97.4518,20.4341],[-97.4478,20.4264],[-97.451,20.4176],[-97.459,20.4139],[-97.4774,20.4109],[-97.4787,20.4061],[-97.4631,20.4002],[-97.4741,20.3829],[-97.474,20.3731],[-97.4685,20.3683],[-97.4722,20.3605],[-97.4787,20.3565],[-97.4854,20.3631],[-97.4959,20.3668],[-97.5021,20.3751],[-97.5158,20.3765],[-97.5191,20.3671],[-97.5255,20.37],[-97.5353,20.3612],[-97.5458,20.362],[-97.548,20.3569],[-97.5582,20.3578],[-97.5702,20.3562],[-97.5741,20.3503],[-97.5945,20.3539],[-97.5952,20.3503],[-97.6049,20.3483],[-97.6145,20.3496],[-97.6342,20.3672],[-97.639,20.368],[-97.649,20.383],[-97.6549,20.388],[-97.6527,20.3976],[-97.6481,20.3998],[-97.6364,20.3982],[-97.6466,20.4087],[-97.6376,20.4179],[-97.6355,20.4324],[-97.6407,20.4423],[-97.6341,20.4528],[-97.6268,20.4511],[-97.6072,20.462],[-97.601,20.461],[-97.5861,20.4729],[-97.576,20.4909],[-97.5601,20.4894],[-97.5561,20.4847],[-97.5418,20.4885],[-97.531,20.4841],[-97.5201,20.4907],[-97.5201,20.4955],[-97.5139,20.5029],[-97.5105,20.498],[-97.5013,20.5003],[-97.4957,20.4975],[-97.4881,20.5075],[-97.4831,20.5081],[-97.4752,20.5036],[-97.4574,20.4968],[-97.4484,20.4912],[-97.4169,20.487],[-97.404,20.4877]]]},properties:{id:"30040",COUNTYID:"040",COUNTY:"Coatzintla",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30040"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-95.5253,18.7148],[-95.5217,18.7038],[-95.5159,18.7011],[-95.5099,18.689],[-95.5136,18.6723],[-95.5119,18.6649],[-95.5238,18.6583],[-95.5506,18.653],[-95.5577,18.662],[-95.5655,18.6653],[-95.5705,18.6631],[-95.58,18.671],[-95.585,18.6832],[-95.5943,18.692],[-95.6037,18.6951],[-95.6176,18.6959],[-95.6271,18.6934],[-95.6313,18.7044],[-95.6369,18.6956],[-95.6469,18.6959],[-95.6562,18.6869],[-95.6669,18.683],[-95.6787,18.6833],[-95.6911,18.6752],[-95.696,18.6741],[-95.7115,18.676],[-95.7191,18.6684],[-95.7247,18.667],[-95.7252,18.6369],[-95.7215,18.6334],[-95.7215,18.6155],[-95.7346,18.6026],[-95.7488,18.6002],[-95.7489,18.5806],[-95.7583,18.555],[-95.766,18.5715],[-95.7754,18.5694],[-95.7775,18.5743],[-95.7863,18.5827],[-95.7835,18.5889],[-95.7899,18.596],[-95.7935,18.6154],[-95.8055,18.6153],[-95.8112,18.6174],[-95.8025,18.6396],[-95.8075,18.6455],[-95.8209,18.6453],[-95.8332,18.6546],[-95.8459,18.6539],[-95.8501,18.648],[-95.8577,18.6481],[-95.8655,18.6447],[-95.8787,18.6295],[-95.8863,18.6231],[-95.8931,18.6224],[-95.8997,18.6263],[-95.8909,18.6414],[-95.8867,18.6653],[-95.8869,18.68],[-95.8824,18.6982],[-95.8852,18.7041],[-95.8824,18.721],[-95.871,18.7268],[-95.8719,18.7348],[-95.8673,18.742],[-95.8657,18.7522],[-95.8784,18.7486],[-95.8834,18.7606],[-95.8924,18.7569],[-95.8956,18.7519],[-95.9072,18.7534],[-95.9088,18.7683],[-95.9115,18.7779],[-95.9186,18.7839],[-95.9366,18.7941],[-95.9491,18.7953],[-95.9541,18.7923],[-95.964,18.7932],[-95.9733,18.7895],[-95.9767,18.7931],[-95.9805,18.7986],[-95.996,18.8023],[-95.9985,18.8268],[-95.9825,18.8337],[-95.985,18.8365],[-95.9819,18.8547],[-95.9823,18.8673],[-95.986,18.8751],[-95.9863,18.8851],[-95.9975,18.8834],[-96.0037,18.8858],[-96.0226,18.8856],[-96.0329,18.9],[-96.0318,18.9126],[-96.0268,18.9272],[-96.0193,18.9344],[-96.022,18.9406],[-96.0266,18.9434],[-96.0289,18.9602],[-96.0342,18.9661],[-96.037,18.976],[-96.0439,18.9866],[-96.052,18.9906],[-96.0692,18.9888],[-96.0749,18.9917],[-96.0756,18.9976],[-96.0871,18.9995],[-96.092,18.9949],[-96.1111,19.0105],[-96.1096,19.0269],[-96.1026,19.0267],[-96.1015,19.0351],[-96.0966,19.0417],[-96.1044,19.0471],[-96.1098,19.058],[-96.1172,19.0557],[-96.1137,19.0757],[-96.1137,19.0861],[-96.1066,19.0919],[-96.0993,19.094],[-96.0985,19.1023],[-96.0971,19.0934],[-96.0904,19.0848],[-96.0735,19.0712],[-96.0581,19.0635],[-96.0394,19.0576],[-96.0161,19.056],[-96.0054,19.0575],[-95.9921,19.063],[-95.9827,19.0635],[-95.9739,19.0579],[-95.9699,19.0487],[-95.9643,18.9897],[-95.9608,18.9666],[-95.9566,18.9519],[-95.9511,18.9404],[-95.9417,18.9269],[-95.9434,18.9139],[-95.9409,18.9054],[-95.9269,18.8852],[-95.9008,18.8594],[-95.8849,18.8472],[-95.8623,18.8325],[-95.8447,18.8239],[-95.8115,18.8102],[-95.7808,18.7989],[-95.7522,18.7919],[-95.7367,18.7834],[-95.7207,18.7691],[-95.7114,18.7635],[-95.6834,18.7499],[-95.6644,18.7421],[-95.6461,18.7359],[-95.613,18.7271],[-95.5731,18.7196],[-95.5253,18.7148]]]},properties:{id:"30011",COUNTYID:"011",COUNTY:"Alvarado",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30011"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-97.5191,20.3671],[-97.5103,20.3531],[-97.5159,20.3395],[-97.4938,20.3346],[-97.4813,20.3296],[-97.4703,20.3275],[-97.4587,20.3286],[-97.4553,20.3325],[-97.4377,20.3238],[-97.4335,20.3238],[-97.4195,20.3104],[-97.4095,20.3091],[-97.3983,20.303],[-97.4092,20.2995],[-97.406,20.2903],[-97.4073,20.2807],[-97.4012,20.2821],[-97.3926,20.2654],[-97.38,20.2584],[-97.3793,20.2496],[-97.3918,20.2455],[-97.4064,20.2326],[-97.4251,20.244],[-97.4359,20.2405],[-97.4453,20.2462],[-97.4519,20.2383],[-97.4596,20.2331],[-97.465,20.2212],[-97.4647,20.2062],[-97.4625,20.1852],[-97.4689,20.1781],[-97.4769,20.1777],[-97.4865,20.1722],[-97.4874,20.1654],[-97.5023,20.158],[-97.5035,20.1486],[-97.5097,20.1409],[-97.5187,20.1542],[-97.5124,20.1661],[-97.5146,20.17],[-97.5052,20.1801],[-97.5137,20.1822],[-97.515,20.1945],[-97.5102,20.1951],[-97.5059,20.2055],[-97.5132,20.2083],[-97.5234,20.2047],[-97.5216,20.1907],[-97.5304,20.1887],[-97.531,20.1998],[-97.5437,20.2017],[-97.5486,20.1944],[-97.5518,20.2053],[-97.537,20.2052],[-97.5387,20.2139],[-97.529,20.2201],[-97.5265,20.229],[-97.5174,20.2319],[-97.5167,20.2417],[-97.5091,20.2443],[-97.4995,20.2424],[-97.4872,20.2458],[-97.4828,20.2592],[-97.4964,20.2614],[-97.5036,20.2674],[-97.519,20.2642],[-97.5299,20.2653],[-97.5434,20.2734],[-97.5471,20.2689],[-97.5529,20.2714],[-97.558,20.2671],[-97.5675,20.2717],[-97.5768,20.2706],[-97.5819,20.2669],[-97.5881,20.2623],[-97.6013,20.2647],[-97.6056,20.2714],[-97.6022,20.2815],[-97.5828,20.2821],[-97.5928,20.3011],[-97.6005,20.303],[-97.6048,20.3134],[-97.6008,20.3204],[-97.5865,20.3173],[-97.58,20.3235],[-97.5781,20.3322],[-97.583,20.3363],[-97.5827,20.347],[-97.5741,20.3503],[-97.5702,20.3562],[-97.5582,20.3578],[-97.548,20.3569],[-97.5458,20.362],[-97.5353,20.3612],[-97.5255,20.37],[-97.5191,20.3671]]]},properties:{id:"30066",COUNTYID:"066",COUNTY:"Espinal",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30066"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-96.4348,18.7367],[-96.4361,18.7154],[-96.4305,18.7126],[-96.4255,18.7035],[-96.4361,18.7033],[-96.4361,18.6948],[-96.4304,18.6865],[-96.4252,18.6848],[-96.4039,18.6889],[-96.3945,18.6866],[-96.3897,18.6914],[-96.3821,18.6915],[-96.3764,18.6873],[-96.364,18.6955],[-96.3524,18.6913],[-96.3347,18.6739],[-96.3243,18.6672],[-96.3096,18.668],[-96.2948,18.6618],[-96.2766,18.6662],[-96.2664,18.6644],[-96.2632,18.6604],[-96.2459,18.6548],[-96.2417,18.647],[-96.2252,18.652],[-96.2079,18.6437],[-96.2027,18.6392],[-96.199,18.6464],[-96.1791,18.6533],[-96.1677,18.6509],[-96.16,18.6441],[-96.155,18.6354],[-96.1414,18.6267],[-96.1342,18.607],[-96.1198,18.6028],[-96.1197,18.6083],[-96.103,18.6089],[-96.1029,18.6118],[-96.0823,18.6123],[-96.0754,18.6093],[-96.0728,18.602],[-96.0615,18.602],[-96.052,18.5973],[-96.0445,18.5995],[-96.036,18.5954],[-96.0352,18.5816],[-96.0278,18.5697],[-96.0199,18.5657],[-96.0144,18.5674],[-96.0048,18.5536],[-96.0053,18.5447],[-96.0121,18.5367],[-95.9951,18.5269],[-95.9851,18.5277],[-95.9768,18.5177],[-95.9864,18.5062],[-95.9979,18.5007],[-96.0124,18.4894],[-96.0121,18.4825],[-96.0037,18.4786],[-95.9913,18.478],[-95.9875,18.47],[-95.9991,18.4579],[-96.001,18.4478],[-95.9979,18.4428],[-95.999,18.4328],[-95.9903,18.4342],[-95.9851,18.4269],[-95.9849,18.415],[-95.9927,18.4037],[-96.0002,18.3969],[-96.0106,18.3943],[-96.0159,18.3879],[-96.0243,18.3895],[-96.0372,18.4056],[-96.0427,18.4002],[-96.05,18.4074],[-96.0626,18.4163],[-96.0739,18.4091],[-96.0799,18.4134],[-96.0841,18.4105],[-96.1037,18.4208],[-96.1118,18.4161],[-96.1203,18.423],[-96.1373,18.4153],[-96.1396,18.4101],[-96.1506,18.4108],[-96.1508,18.4049],[-96.1593,18.4017],[-96.159,18.3964],[-96.1643,18.3886],[-96.1822,18.3873],[-96.1875,18.3933],[-96.1997,18.3952],[-96.2091,18.3937],[-96.2208,18.3949],[-96.2269,18.392],[-96.2338,18.396],[-96.2441,18.3969],[-96.2494,18.4044],[-96.264,18.4062],[-96.2677,18.3997],[-96.2769,18.3913],[-96.2816,18.3778],[-96.2892,18.3778],[-96.2967,18.3713],[-96.2993,18.363],[-96.296,18.3453],[-96.2971,18.3373],[-96.2923,18.327],[-96.2904,18.3166],[-96.2944,18.3124],[-96.3135,18.3281],[-96.3162,18.3378],[-96.3155,18.3499],[-96.3193,18.3536],[-96.319,18.3651],[-96.3323,18.3709],[-96.3311,18.3792],[-96.3395,18.3756],[-96.3473,18.3823],[-96.3484,18.3944],[-96.3461,18.3964],[-96.3522,18.4066],[-96.3648,18.411],[-96.3678,18.4174],[-96.3742,18.4174],[-96.3781,18.4261],[-96.3838,18.4241],[-96.3905,18.4348],[-96.4002,18.4445],[-96.4049,18.4653],[-96.4129,18.465],[-96.4184,18.4756],[-96.4112,18.4768],[-96.4171,18.4997],[-96.4203,18.5079],[-96.4326,18.5254],[-96.438,18.5287],[-96.4413,18.5354],[-96.4551,18.5495],[-96.4518,18.5587],[-96.4572,18.5703],[-96.4647,18.5739],[-96.4727,18.5732],[-96.4777,18.58],[-96.4921,18.5827],[-96.4997,18.5895],[-96.5088,18.5894],[-96.5165,18.5829],[-96.527,18.5872],[-96.537,18.584],[-96.5413,18.5883],[-96.5612,18.5878],[-96.5695,18.5941],[-96.5811,18.6],[-96.5956,18.6115],[-96.6066,18.6174],[-96.6169,18.6193],[-96.6282,18.6319],[-96.6272,18.6356],[-96.6119,18.6546],[-96.6179,18.6611],[-96.6132,18.676],[-96.5918,18.6801],[-96.5904,18.6898],[-96.5986,18.6929],[-96.5985,18.7018],[-96.5914,18.7053],[-96.5767,18.7036],[-96.5669,18.7077],[-96.5674,18.7189],[-96.58,18.7246],[-96.5789,18.7307],[-96.5874,18.7319],[-96.5867,18.7371],[-96.5768,18.7388],[-96.5641,18.7353],[-96.5445,18.7349],[-96.5361,18.7326],[-96.5294,18.7278],[-96.5191,18.726],[-96.5028,18.7324],[-96.4897,18.7399],[-96.482,18.7406],[-96.4755,18.7364],[-96.4606,18.738],[-96.454,18.7421],[-96.4486,18.7396],[-96.4362,18.7406],[-96.4348,18.7367]]]},properties:{id:"30174",COUNTYID:"174",COUNTY:"Tierra Blanca",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30174"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-97.238,19.6368],[-97.2185,19.6337],[-97.2185,19.6276],[-97.2043,19.6142],[-97.1869,19.6234],[-97.1807,19.6298],[-97.1716,19.6323],[-97.1662,19.6286],[-97.1671,19.6159],[-97.145,19.5997],[-97.1339,19.5964],[-97.1255,19.5981],[-97.1249,19.5876],[-97.1284,19.5775],[-97.1212,19.5701],[-97.1181,19.5635],[-97.1078,19.5558],[-97.1004,19.5479],[-97.0988,19.5401],[-97.1045,19.5303],[-97.1059,19.5215],[-97.1115,19.5177],[-97.1229,19.5192],[-97.1385,19.5082],[-97.1498,19.488],[-97.1654,19.4828],[-97.1706,19.4848],[-97.1859,19.4842],[-97.1965,19.4773],[-97.219,19.4747],[-97.2327,19.4752],[-97.2462,19.4698],[-97.2604,19.4676],[-97.2747,19.4531],[-97.2672,19.4484],[-97.2572,19.4339],[-97.2493,19.4285],[-97.2462,19.4186],[-97.2398,19.4073],[-97.234,19.4054],[-97.2204,19.3858],[-97.2375,19.3837],[-97.2507,19.385],[-97.2667,19.3825],[-97.2784,19.3851],[-97.2872,19.3893],[-97.3144,19.3919],[-97.3378,19.3925],[-97.3486,19.3785],[-97.3605,19.376],[-97.3717,19.4031],[-97.3941,19.4073],[-97.3901,19.4286],[-97.3815,19.4324],[-97.3573,19.4324],[-97.3521,19.442],[-97.3533,19.4483],[-97.3469,19.451],[-97.3483,19.4846],[-97.3557,19.4929],[-97.3607,19.4885],[-97.3707,19.495],[-97.3949,19.4924],[-97.4046,19.4959],[-97.4059,19.5008],[-97.4009,19.5069],[-97.4021,19.5154],[-97.4075,19.5219],[-97.4055,19.5255],[-97.4121,19.5359],[-97.4249,19.5436],[-97.4278,19.5556],[-97.4269,19.5692],[-97.4306,19.5762],[-97.4303,19.5861],[-97.4341,19.5884],[-97.428,19.6017],[-97.428,19.6159],[-97.4211,19.6206],[-97.4185,19.6272],[-97.4081,19.622],[-97.4027,19.6153],[-97.3904,19.6272],[-97.385,19.6279],[-97.3804,19.634],[-97.3724,19.6255],[-97.3643,19.6216],[-97.3579,19.6232],[-97.3484,19.6126],[-97.3424,19.6146],[-97.3179,19.6321],[-97.3108,19.6331],[-97.3052,19.6237],[-97.3096,19.6096],[-97.3002,19.6137],[-97.2851,19.6166],[-97.2735,19.6272],[-97.2738,19.6333],[-97.2679,19.638],[-97.2616,19.6456],[-97.238,19.6368]]]},properties:{id:"30128",COUNTYID:"128",COUNTY:"Perote",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30128"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-95.7289,17.9203],[-95.7152,17.9178],[-95.7096,17.9124],[-95.7009,17.9089],[-95.7037,17.9027],[-95.698,17.8967],[-95.7003,17.8908],[-95.6968,17.8815],[-95.6909,17.8853],[-95.6847,17.8839],[-95.6708,17.8853],[-95.6562,17.8928],[-95.6547,17.9058],[-95.6515,17.9097],[-95.6367,17.9005],[-95.6317,17.8915],[-95.5627,17.8833],[-95.5621,17.8914],[-95.5674,17.8939],[-95.5658,17.9022],[-95.552,17.8993],[-95.5314,17.9058],[-95.5229,17.8984],[-95.5222,17.8882],[-95.5132,17.8771],[-95.5018,17.8777],[-95.4959,17.8733],[-95.4889,17.8726],[-95.4817,17.8609],[-95.4775,17.8575],[-95.4804,17.8443],[-95.4949,17.8441],[-95.4976,17.8352],[-95.4921,17.8328],[-95.4811,17.8353],[-95.4752,17.8282],[-95.4724,17.8177],[-95.4726,17.8043],[-95.475,17.802],[-95.4725,17.7827],[-95.4686,17.7736],[-95.4562,17.77],[-95.4459,17.7735],[-95.4394,17.7638],[-95.4384,17.7558],[-95.4344,17.7531],[-95.429,17.7482],[-95.4283,17.7374],[-95.4238,17.7314],[-95.4258,17.7262],[-95.4177,17.7217],[-95.4117,17.7122],[-95.418,17.708],[-95.412,17.7029],[-95.4114,17.6942],[-95.4032,17.6952],[-95.3985,17.6904],[-95.3831,17.6905],[-95.3793,17.6826],[-95.3693,17.6829],[-95.3642,17.6759],[-95.3512,17.6782],[-95.3517,17.6718],[-95.3679,17.6737],[-95.3697,17.6691],[-95.3876,17.6633],[-95.3953,17.6518],[-95.4107,17.6497],[-95.42,17.644],[-95.427,17.6444],[-95.4273,17.6363],[-95.438,17.6317],[-95.4461,17.6218],[-95.4544,17.6235],[-95.4545,17.6111],[-95.4735,17.6057],[-95.4647,17.6001],[-95.4769,17.5884],[-95.4781,17.5949],[-95.4832,17.6012],[-95.4977,17.5919],[-95.5063,17.5908],[-95.5046,17.5835],[-95.514,17.5855],[-95.5151,17.5795],[-95.5211,17.5774],[-95.5172,17.571],[-95.5301,17.571],[-95.5334,17.5716],[-95.549,17.5657],[-95.5539,17.5671],[-95.5541,17.5804],[-95.5587,17.582],[-95.5667,17.5974],[-95.5429,17.6111],[-95.5112,17.6283],[-95.5202,17.64],[-95.5271,17.6425],[-95.5342,17.6373],[-95.5481,17.6345],[-95.5465,17.6428],[-95.5513,17.6526],[-95.5595,17.6496],[-95.5657,17.6512],[-95.588,17.6413],[-95.5918,17.636],[-95.5967,17.66],[-95.5893,17.6607],[-95.5923,17.6682],[-95.6,17.6686],[-95.5985,17.6763],[-95.6023,17.6856],[-95.6113,17.6864],[-95.612,17.6819],[-95.6264,17.6838],[-95.6258,17.6925],[-95.6357,17.6892],[-95.6515,17.6963],[-95.6597,17.7178],[-95.6552,17.7193],[-95.6607,17.7321],[-95.6746,17.7275],[-95.6829,17.7493],[-95.6866,17.7506],[-95.719,17.7216],[-95.733,17.7172],[-95.7407,17.7179],[-95.749,17.7227],[-95.7521,17.6969],[-95.7581,17.6979],[-95.7598,17.6862],[-95.7666,17.687],[-95.7686,17.6734],[-95.7673,17.6658],[-95.7736,17.6294],[-95.7734,17.6238],[-95.7825,17.6258],[-95.7856,17.6334],[-95.8033,17.6294],[-95.8074,17.6377],[-95.808,17.6468],[-95.82,17.6483],[-95.8312,17.653],[-95.8381,17.6603],[-95.8438,17.6727],[-95.8534,17.6756],[-95.8675,17.6848],[-95.8708,17.6927],[-95.871,17.7022],[-95.8953,17.7045],[-95.8911,17.7124],[-95.8828,17.717],[-95.873,17.7178],[-95.8728,17.7274],[-95.8799,17.7281],[-95.8899,17.7249],[-95.9011,17.7287],[-95.9026,17.7365],[-95.8977,17.7494],[-95.899,17.7543],[-95.8926,17.7603],[-95.8922,17.766],[-95.8848,17.7718],[-95.8672,17.7732],[-95.8658,17.7824],[-95.8691,17.7939],[-95.8668,17.7996],[-95.8549,17.8071],[-95.8533,17.8188],[-95.8492,17.8276],[-95.8586,17.8392],[-95.8588,17.8448],[-95.8502,17.8445],[-95.8,17.9498],[-95.8001,17.9414],[-95.7955,17.9274],[-95.7897,17.9361],[-95.765,17.9259],[-95.755,17.9283],[-95.7504,17.9233],[-95.7289,17.9203]]]},properties:{id:"30130",COUNTYID:"130",COUNTY:"Playa Vicente",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30130"},{type:"Feature",geometry:{type:"MultiPolygon",coordinates:[[[[-98.3407,21.1698],[-98.342,21.161],[-98.3537,21.1598],[-98.3581,21.1563],[-98.365,21.1617],[-98.3728,21.1664],[-98.3786,21.1762],[-98.3677,21.18],[-98.3458,21.1801],[-98.3407,21.1698]]],[[[-98.4327,21.2561],[-98.4457,21.2437],[-98.4523,21.2393],[-98.4292,21.2147],[-98.4263,21.1926],[-98.4224,21.1815],[-98.424,21.1673],[-98.4303,21.168],[-98.433,21.1743],[-98.4464,21.1797],[-98.4494,21.1866],[-98.4472,21.2006],[-98.4563,21.207],[-98.4535,21.211],[-98.4704,21.2225],[-98.4789,21.2228],[-98.4816,21.2296],[-98.4693,21.2342],[-98.4692,21.2495],[-98.477,21.2524],[-98.486,21.2507],[-98.4993,21.2522],[-98.4998,21.2478],[-98.519,21.2477],[-98.5379,21.2639],[-98.5412,21.2695],[-98.5258,21.2875],[-98.5213,21.2981],[-98.5059,21.3194],[-98.4978,21.3279],[-98.482,21.3176],[-98.4779,21.3211],[-98.4589,21.3008],[-98.464,21.2917],[-98.4576,21.2823],[-98.444,21.2845],[-98.4325,21.2657],[-98.4327,21.2561]]]]},properties:{id:"30056",COUNTYID:"056",COUNTY:"Chiconamel",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30056"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-94.4325,17.4538],[-94.4792,17.4591],[-94.5196,17.4629],[-94.5193,17.4585],[-94.531,17.4595],[-94.5325,17.4323],[-94.5296,17.4182],[-94.5232,17.4142],[-94.5112,17.4129],[-94.5051,17.4065],[-94.4971,17.4076],[-94.4847,17.4005],[-94.4942,17.3884],[-94.5271,17.3921],[-94.5849,17.3993],[-94.5954,17.4011],[-94.5995,17.3608],[-94.6095,17.3661],[-94.6087,17.3699],[-94.6233,17.3782],[-94.6323,17.3795],[-94.6389,17.3216],[-94.6481,17.3226],[-94.6488,17.3276],[-94.6553,17.3309],[-94.6601,17.3403],[-94.661,17.3566],[-94.6644,17.3633],[-94.6556,17.3648],[-94.6455,17.3603],[-94.6502,17.371],[-94.6571,17.3742],[-94.652,17.3798],[-94.6641,17.383],[-94.6706,17.3799],[-94.703,17.3841],[-94.7005,17.3743],[-94.7176,17.3705],[-94.72,17.3751],[-94.7307,17.3742],[-94.7353,17.378],[-94.7304,17.3848],[-94.7304,17.392],[-94.7181,17.3943],[-94.7186,17.4045],[-94.7137,17.4133],[-94.7189,17.4227],[-94.7285,17.4281],[-94.7388,17.4237],[-94.7419,17.43],[-94.7477,17.4337],[-94.7505,17.4417],[-94.744,17.452],[-94.7482,17.4607],[-94.7598,17.4658],[-94.7804,17.4586],[-94.7832,17.4509],[-94.7936,17.4417],[-94.8036,17.4399],[-94.8051,17.4325],[-94.8103,17.43],[-94.8205,17.439],[-94.8328,17.4392],[-94.8327,17.4478],[-94.8487,17.4594],[-94.8525,17.4646],[-94.8516,17.4856],[-94.8479,17.4939],[-94.8427,17.4986],[-94.8302,17.5032],[-94.8243,17.5013],[-94.8125,17.4862],[-94.8058,17.4818],[-94.7946,17.4788],[-94.7805,17.4814],[-94.7667,17.4982],[-94.7595,17.4967],[-94.7571,17.4863],[-94.7527,17.4838],[-94.7457,17.4875],[-94.7257,17.5028],[-94.7094,17.5335],[-94.7115,17.5404],[-94.7195,17.55],[-94.7415,17.5619],[-94.7537,17.5711],[-94.761,17.5843],[-94.7605,17.5914],[-94.7562,17.5968],[-94.7478,17.6],[-94.7314,17.6033],[-94.7271,17.6076],[-94.7295,17.6149],[-94.7496,17.6301],[-94.7513,17.6332],[-94.7471,17.6444],[-94.7369,17.6511],[-94.7187,17.6562],[-94.7252,17.6701],[-94.7177,17.6881],[-94.7047,17.6979],[-94.6989,17.7055],[-94.7037,17.7156],[-94.706,17.7255],[-94.6997,17.7282],[-94.6861,17.7169],[-94.6852,17.7091],[-94.6916,17.7018],[-94.6875,17.6975],[-94.6783,17.7009],[-94.6759,17.7096],[-94.6759,17.7196],[-94.6787,17.7322],[-94.685,17.7409],[-94.6718,17.7506],[-94.6748,17.7679],[-94.6669,17.7709],[-94.6527,17.7731],[-94.6451,17.7783],[-94.6505,17.7878],[-94.6511,17.8014],[-94.6462,17.815],[-94.6265,17.8188],[-94.6292,17.8317],[-94.6339,17.8358],[-94.6337,17.844],[-94.626,17.8386],[-94.6252,17.8342],[-94.6161,17.8305],[-94.6179,17.8247],[-94.6081,17.8153],[-94.6051,17.8075],[-94.5886,17.8147],[-94.5777,17.8163],[-94.5718,17.8076],[-94.5799,17.7992],[-94.5875,17.7852],[-94.5958,17.7811],[-94.5999,17.7721],[-94.607,17.763],[-94.5991,17.7398],[-94.6026,17.7277],[-94.5915,17.7287],[-94.5824,17.7196],[-94.5817,17.7128],[-94.5904,17.7111],[-94.58,17.6569],[-94.5775,17.6474],[-94.5682,17.6474],[-94.561,17.6554],[-94.5563,17.6554],[-94.5535,17.6419],[-94.5394,17.647],[-94.5354,17.6534],[-94.5287,17.6511],[-94.5264,17.6458],[-94.5174,17.6439],[-94.5075,17.6484],[-94.5019,17.6464],[-94.4847,17.652],[-94.4797,17.6452],[-94.466,17.64],[-94.4656,17.6307],[-94.4608,17.6266],[-94.4511,17.6276],[-94.4391,17.6179],[-94.4409,17.6131],[-94.4355,17.608],[-94.4419,17.5975],[-94.439,17.5886],[-94.4477,17.5814],[-94.4513,17.5704],[-94.4584,17.5683],[-94.462,17.5626],[-94.4723,17.5549],[-94.4733,17.5315],[-94.468,17.516],[-94.4716,17.5137],[-94.4711,17.5047],[-94.4637,17.4895],[-94.4547,17.4895],[-94.4566,17.482],[-94.4441,17.4803],[-94.4453,17.4711],[-94.4364,17.4672],[-94.4325,17.4538]]]},properties:{id:"30070",COUNTYID:"070",COUNTY:"Hidalgotitlán",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30070"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-94.6922,18.0065],[-94.6915,17.9881],[-94.6963,17.9649],[-94.6884,17.9576],[-94.6763,17.9623],[-94.6714,17.9557],[-94.6741,17.9404],[-94.6811,17.9422],[-94.685,17.9359],[-94.6898,17.9181],[-94.6874,17.9053],[-94.6802,17.8993],[-94.6819,17.8916],[-94.6896,17.8867],[-94.6795,17.8811],[-94.6738,17.8747],[-94.6669,17.8724],[-94.6591,17.8748],[-94.6466,17.8699],[-94.6554,17.8666],[-94.6421,17.8615],[-94.6337,17.844],[-94.6339,17.8358],[-94.6292,17.8317],[-94.6265,17.8188],[-94.6462,17.815],[-94.6511,17.8014],[-94.6505,17.7878],[-94.6451,17.7783],[-94.6527,17.7731],[-94.6669,17.7709],[-94.6748,17.7679],[-94.6718,17.7506],[-94.685,17.7409],[-94.6787,17.7322],[-94.6759,17.7196],[-94.6759,17.7096],[-94.6783,17.7009],[-94.6875,17.6975],[-94.6916,17.7018],[-94.6852,17.7091],[-94.6861,17.7169],[-94.6997,17.7282],[-94.706,17.7255],[-94.7037,17.7156],[-94.7155,17.7172],[-94.711,17.7296],[-94.7178,17.7416],[-94.7321,17.7384],[-94.7399,17.743],[-94.7384,17.7514],[-94.7543,17.7515],[-94.7559,17.763],[-94.7591,17.767],[-94.756,17.7746],[-94.7616,17.7774],[-94.7739,17.7785],[-94.7779,17.793],[-94.7722,17.7971],[-94.7667,17.8119],[-94.7746,17.8155],[-94.7597,17.829],[-94.7517,17.8307],[-94.7463,17.841],[-94.7389,17.8346],[-94.7283,17.8439],[-94.7212,17.8531],[-94.7157,17.8544],[-94.7133,17.8613],[-94.7211,17.8718],[-94.7172,17.8771],[-94.7347,17.8825],[-94.7536,17.883],[-94.7664,17.8851],[-94.7657,17.8962],[-94.7725,17.8973],[-94.7702,17.9105],[-94.7823,17.9141],[-94.7613,17.9295],[-94.762,17.9361],[-94.7714,17.9344],[-94.7751,17.9293],[-94.7808,17.9296],[-94.7863,17.942],[-94.783,17.9555],[-94.7889,17.9586],[-94.7987,17.9582],[-94.7926,17.9666],[-94.7872,17.9664],[-94.7858,17.9787],[-94.7914,17.9801],[-94.7834,17.984],[-94.7805,17.9908],[-94.7813,17.9996],[-94.7718,18.0007],[-94.765,18.0056],[-94.764,18.02],[-94.7695,18.0265],[-94.7053,18.017],[-94.698,18.0043],[-94.6922,18.0065]]]},properties:{id:"30089",COUNTYID:"089",COUNTY:"Jáltipan",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30089"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-97.2181,20.7959],[-97.2052,20.7761],[-97.2045,20.7605],[-97.1938,20.738],[-97.2012,20.7246],[-97.1959,20.7203],[-97.1949,20.7037],[-97.19,20.6896],[-97.1835,20.6793],[-97.1807,20.6707],[-97.1851,20.6732],[-97.2026,20.6714],[-97.2034,20.6646],[-97.2151,20.6534],[-97.2255,20.655],[-97.2309,20.6603],[-97.2434,20.654],[-97.2496,20.6594],[-97.2536,20.6553],[-97.2641,20.6543],[-97.2615,20.6492],[-97.2769,20.6341],[-97.2807,20.6255],[-97.2792,20.617],[-97.2937,20.6171],[-97.2923,20.6267],[-97.2994,20.6276],[-97.3054,20.6354],[-97.2975,20.6396],[-97.295,20.6476],[-97.3016,20.6596],[-97.3078,20.6597],[-97.3267,20.6523],[-97.342,20.6559],[-97.3432,20.6516],[-97.351,20.6492],[-97.3587,20.6533],[-97.3658,20.6518],[-97.3796,20.6548],[-97.3738,20.659],[-97.3707,20.6689],[-97.3721,20.678],[-97.3661,20.6782],[-97.3741,20.6936],[-97.381,20.6994],[-97.3848,20.6898],[-97.3952,20.6998],[-97.3958,20.7052],[-97.4062,20.7105],[-97.4059,20.7279],[-97.3904,20.7377],[-97.3654,20.7345],[-97.3537,20.7424],[-97.3452,20.7439],[-97.3368,20.7542],[-97.337,20.7628],[-97.3267,20.7676],[-97.3166,20.7828],[-97.313,20.794],[-97.3039,20.7941],[-97.2977,20.7994],[-97.2861,20.801],[-97.2675,20.7975],[-97.2663,20.7921],[-97.2601,20.7862],[-97.2562,20.778],[-97.2423,20.78],[-97.2283,20.7861],[-97.2269,20.7936],[-97.2181,20.7959]]]},properties:{id:"30033",COUNTYID:"033",COUNTY:"Cazones de Herrera",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30033"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-97.3302,21.5584],[-97.3425,21.5591],[-97.3472,21.5549],[-97.3874,21.5365],[-97.3993,21.5476],[-97.4046,21.556],[-97.4211,21.5683],[-97.4272,21.5685],[-97.4342,21.5782],[-97.4466,21.5898],[-97.4604,21.5973],[-97.4626,21.6037],[-97.4699,21.6093],[-97.4771,21.6217],[-97.4934,21.6388],[-97.4986,21.655],[-97.5039,21.658],[-97.5063,21.6686],[-97.5206,21.6749],[-97.5264,21.6825],[-97.5448,21.699],[-97.5474,21.7066],[-97.5537,21.7137],[-97.5611,21.73],[-97.5774,21.743],[-97.5863,21.7432],[-97.5899,21.7541],[-97.6012,21.7636],[-97.6074,21.7744],[-97.6153,21.78],[-97.6207,21.7799],[-97.6206,21.7903],[-97.6265,21.7998],[-97.628,21.8119],[-97.6337,21.8153],[-97.6377,21.8222],[-97.6368,21.8424],[-97.6402,21.8493],[-97.6488,21.8564],[-97.6585,21.8807],[-97.6592,21.8884],[-97.6642,21.8887],[-97.6736,21.9162],[-97.6779,21.9215],[-97.7166,21.907],[-97.72,21.9157],[-97.7582,21.9215],[-97.7603,21.9315],[-97.7896,21.9314],[-97.7993,21.926],[-97.8185,21.923],[-97.825,21.9388],[-97.8343,21.9376],[-97.8435,21.9407],[-97.8455,21.9479],[-97.8518,21.9463],[-97.8553,21.9343],[-97.8645,21.925],[-97.8773,21.9083],[-97.8939,21.9116],[-97.8974,21.9056],[-97.9034,21.9148],[-97.9228,21.9166],[-97.9264,21.9234],[-97.9198,21.9354],[-97.9265,21.9389],[-97.9648,21.9431],[-97.965,21.9411],[-98.0346,21.9489],[-98.0417,21.9468],[-98.0587,21.9487],[-98.046,21.959],[-98.045,21.97],[-98.0532,21.9715],[-98.0629,21.9842],[-98.0594,21.993],[-98.065,21.9966],[-98.0722,21.9953],[-98.0715,21.9999],[-98.081,22.0077],[-98.0778,22.0156],[-98.0655,22.0238],[-98.0553,22.0201],[-98.054,22.0145],[-98.0371,22.0243],[-98.0257,22.0275],[-98.0218,22.0317],[-98.0247,22.0401],[-98.0261,22.0544],[-98.0149,22.0535],[-98.0117,22.0635],[-98.0066,22.0698],[-98.0016,22.0706],[-97.9781,22.0795],[-97.9823,22.0896],[-97.9813,22.1072],[-97.9762,22.1126],[-97.9731,22.1238],[-97.9515,22.12],[-97.9519,22.124],[-97.9369,22.1213],[-97.9329,22.1146],[-97.9349,22.1059],[-97.9414,22.1007],[-97.9411,22.0937],[-97.9502,22.0869],[-97.9529,22.0773],[-97.9213,22.071],[-97.9194,22.0828],[-97.9061,22.0934],[-97.8935,22.0894],[-97.8947,22.0994],[-97.893,22.1099],[-97.8972,22.1176],[-97.8965,22.1247],[-97.8818,22.1373],[-97.86,22.148],[-97.8444,22.1432],[-97.837,22.1522],[-97.8073,22.1533],[-97.7852,22.1663],[-97.7764,22.1328],[-97.7657,22.0993],[-97.7546,22.0685],[-97.7452,22.0461],[-97.7309,22.0153],[-97.7073,21.9713],[-97.6947,21.9513],[-97.6554,21.8938],[-97.6392,21.8685],[-97.6228,21.8457],[-97.6161,21.8349],[-97.5961,21.8085],[-97.5643,21.7708],[-97.5442,21.7501],[-97.5219,21.7294],[-97.4801,21.696],[-97.4666,21.6838],[-97.4522,21.6676],[-97.4286,21.6481],[-97.4,21.6263],[-97.3541,21.5934],[-97.3436,21.5877],[-97.3402,21.5793],[-97.3274,21.5656],[-97.3302,21.5584]]]},properties:{id:"30152",COUNTYID:"152",COUNTY:"Tampico Alto",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30152"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-95.5408,18.3366],[-95.5411,18.331],[-95.5354,18.3283],[-95.5328,18.3218],[-95.5258,18.3239],[-95.5158,18.3171],[-95.5056,18.3179],[-95.5046,18.3085],[-95.5074,18.3003],[-95.5029,18.2925],[-95.5069,18.2885],[-95.5052,18.2817],[-95.4979,18.2784],[-95.4953,18.2721],[-95.5086,18.2679],[-95.5146,18.2599],[-95.5152,18.2525],[-95.5051,18.2454],[-95.4885,18.2454],[-95.4716,18.2507],[-95.471,18.2618],[-95.4626,18.2607],[-95.4553,18.2648],[-95.4584,18.2518],[-95.45,18.2461],[-95.4348,18.2482],[-95.4343,18.2449],[-95.4412,18.2444],[-95.4457,18.2392],[-95.4456,18.2238],[-95.4392,18.2201],[-95.4301,18.2228],[-95.4318,18.2362],[-95.4234,18.2435],[-95.4217,18.2347],[-95.4168,18.2298],[-95.4035,18.2333],[-95.3905,18.2263],[-95.3817,18.2264],[-95.3881,18.222],[-95.3853,18.2177],[-95.3929,18.2117],[-95.4021,18.2151],[-95.4122,18.2],[-95.4049,18.1881],[-95.3986,18.1841],[-95.3906,18.1853],[-95.3887,18.1779],[-95.3984,18.1788],[-95.4045,18.1699],[-95.4165,18.1714],[-95.4231,18.1629],[-95.4317,18.1591],[-95.4467,18.1559],[-95.4583,18.1739],[-95.48,18.1933],[-95.4879,18.1856],[-95.4905,18.1741],[-95.4954,18.166],[-95.506,18.1591],[-95.5108,18.1506],[-95.5109,18.1429],[-95.5173,18.128],[-95.5181,18.1177],[-95.5137,18.1117],[-95.5006,18.1016],[-95.4986,18.0904],[-95.482,18.0736],[-95.4693,18.0587],[-95.4466,18.0278],[-95.4307,18.0204],[-95.4326,18.0099],[-95.4392,18.0047],[-95.4414,17.9933],[-95.4345,17.9898],[-95.4349,17.9843],[-95.4465,17.9731],[-95.4378,17.9698],[-95.434,17.9572],[-95.4423,17.9499],[-95.4503,17.9502],[-95.4506,17.94],[-95.4435,17.9406],[-95.4591,17.9215],[-95.4671,17.9288],[-95.4769,17.9193],[-95.4751,17.9136],[-95.479,17.908],[-95.4915,17.9101],[-95.4998,17.908],[-95.5042,17.9017],[-95.5164,17.9016],[-95.5229,17.8984],[-95.5314,17.9058],[-95.552,17.8993],[-95.5658,17.9022],[-95.5674,17.8939],[-95.5621,17.8914],[-95.5627,17.8833],[-95.6317,17.8915],[-95.6367,17.9005],[-95.6515,17.9097],[-95.6547,17.9058],[-95.6562,17.8928],[-95.6708,17.8853],[-95.6847,17.8839],[-95.6909,17.8853],[-95.6968,17.8815],[-95.7003,17.8908],[-95.698,17.8967],[-95.7037,17.9027],[-95.7009,17.9089],[-95.7096,17.9124],[-95.7152,17.9178],[-95.7289,17.9203],[-95.7206,17.9376],[-95.7129,17.9478],[-95.7173,17.9535],[-95.7001,17.956],[-95.6998,17.9821],[-95.6926,17.9923],[-95.6843,17.9962],[-95.6714,17.9925],[-95.6691,17.9983],[-95.6616,17.9919],[-95.6566,18],[-95.6576,18.0117],[-95.6502,18.0182],[-95.6472,18.0291],[-95.6477,18.042],[-95.6442,18.0458],[-95.6497,18.0517],[-95.6456,18.0684],[-95.6299,18.0709],[-95.6255,18.0861],[-95.6421,18.0916],[-95.6619,18.0945],[-95.6613,18.1031],[-95.6648,18.1112],[-95.6577,18.1206],[-95.6499,18.1244],[-95.649,18.1312],[-95.6541,18.1362],[-95.6537,18.1438],[-95.6489,18.1494],[-95.6394,18.1548],[-95.6506,18.1582],[-95.6482,18.1645],[-95.6488,18.1784],[-95.6542,18.1817],[-95.6517,18.19],[-95.6467,18.1951],[-95.6446,18.2057],[-95.6312,18.2086],[-95.6326,18.2204],[-95.6253,18.2238],[-95.6141,18.2152],[-95.6068,18.2169],[-95.6089,18.2229],[-95.6069,18.2308],[-95.5966,18.2309],[-95.5961,18.236],[-95.5811,18.2429],[-95.5765,18.2354],[-95.5693,18.2356],[-95.5678,18.2406],[-95.5803,18.2476],[-95.5788,18.2596],[-95.572,18.2614],[-95.5719,18.2677],[-95.5624,18.2685],[-95.5588,18.2756],[-95.5636,18.2848],[-95.5751,18.2906],[-95.5852,18.2887],[-95.5893,18.2953],[-95.5797,18.2964],[-95.5837,18.303],[-95.5917,18.3032],[-95.5974,18.3108],[-95.5972,18.3158],[-95.5861,18.3288],[-95.5867,18.3359],[-95.5919,18.3396],[-95.5981,18.3345],[-95.6048,18.3402],[-95.5981,18.3465],[-95.5941,18.3544],[-95.5856,18.3607],[-95.5773,18.3632],[-95.5652,18.3598],[-95.5523,18.3641],[-95.5465,18.3517],[-95.5458,18.3434],[-95.5408,18.3366]]]},properties:{id:"30077",COUNTYID:"077",COUNTY:"Isla",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30077"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-97.083,20.0516],[-97.0925,20.0419],[-97.0967,20.024],[-97.1141,20.0201],[-97.1361,20.0184],[-97.141,20.0146],[-97.153,20.0133],[-97.1492,19.9983],[-97.1588,19.9919],[-97.1652,19.9955],[-97.1734,19.9913],[-97.1726,19.9837],[-97.1835,19.9691],[-97.1844,19.9654],[-97.2035,19.9433],[-97.2085,19.9342],[-97.2154,19.9333],[-97.2173,19.9255],[-97.2228,19.9226],[-97.2289,19.9227],[-97.2306,19.9309],[-97.2417,19.9376],[-97.2558,19.9325],[-97.2588,19.9331],[-97.2636,19.9444],[-97.2688,19.9463],[-97.2687,19.9592],[-97.2616,19.9714],[-97.261,19.9764],[-97.2535,19.9833],[-97.24,19.9873],[-97.2321,19.9992],[-97.2253,20.0021],[-97.2246,20.0094],[-97.2072,20.0145],[-97.2045,20.0299],[-97.2111,20.0426],[-97.2071,20.0469],[-97.2062,20.0564],[-97.1857,20.0623],[-97.1822,20.0722],[-97.1836,20.08],[-97.174,20.0922],[-97.1683,20.0953],[-97.1539,20.1129],[-97.1406,20.1198],[-97.1314,20.1187],[-97.116,20.1201],[-97.1199,20.1104],[-97.1081,20.0996],[-97.1199,20.0866],[-97.1167,20.0803],[-97.1004,20.0691],[-97.0918,20.0688],[-97.083,20.0516]]]},properties:{id:"30183",COUNTYID:"183",COUNTY:"Tlapacoyan",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30183"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-94.5972,18.1935],[-94.6073,18.197],[-94.6134,18.2097],[-94.6262,18.2113],[-94.6385,18.1795],[-94.639,18.1731],[-94.6336,18.166],[-94.6326,18.1591],[-94.6199,18.1538],[-94.6063,18.1549],[-94.5957,18.1264],[-94.5849,18.1216],[-94.5898,18.1083],[-94.5879,18.1047],[-94.5942,18.0963],[-94.6057,18.1011],[-94.6129,18.0986],[-94.6267,18.0999],[-94.6287,18.0936],[-94.6389,18.0924],[-94.6458,18.0949],[-94.6526,18.0896],[-94.6624,18.0915],[-94.6779,18.0978],[-94.6843,18.098],[-94.6944,18.1024],[-94.6995,18.0999],[-94.7089,18.1059],[-94.7112,18.1102],[-94.74,18.1186],[-94.7457,18.1249],[-94.7588,18.1326],[-94.7654,18.1454],[-94.7574,18.1504],[-94.7534,18.1566],[-94.7594,18.1713],[-94.7459,18.1785],[-94.7502,18.1913],[-94.7401,18.1963],[-94.7318,18.193],[-94.7177,18.2026],[-94.723,18.2145],[-94.7084,18.221],[-94.71,18.2332],[-94.7191,18.232],[-94.7263,18.2419],[-94.7334,18.2517],[-94.7344,18.2612],[-94.7385,18.271],[-94.7305,18.2872],[-94.7331,18.299],[-94.7406,18.3097],[-94.7197,18.3162],[-94.7212,18.3261],[-94.7137,18.3313],[-94.7102,18.3229],[-94.7028,18.3278],[-94.7027,18.3332],[-94.6943,18.336],[-94.6944,18.3424],[-94.6895,18.3481],[-94.6825,18.35],[-94.6662,18.3371],[-94.6622,18.3202],[-94.6556,18.31],[-94.6403,18.298],[-94.6234,18.2874],[-94.6269,18.2816],[-94.6271,18.2741],[-94.6244,18.2535],[-94.618,18.2328],[-94.6112,18.2194],[-94.6076,18.2049],[-94.5972,18.1935]]]},properties:{id:"30122",COUNTYID:"122",COUNTY:"Pajapan",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30122"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-97.5877,20.812],[-97.5858,20.802],[-97.577,20.7992],[-97.5859,20.7739],[-97.5882,20.7618],[-97.586,20.7559],[-97.5912,20.7531],[-97.5918,20.7451],[-97.5964,20.7439],[-97.6005,20.7361],[-97.6025,20.7096],[-97.6061,20.7036],[-97.6009,20.6965],[-97.6096,20.6959],[-97.6123,20.6783],[-97.6084,20.6711],[-97.6216,20.6677],[-97.6307,20.663],[-97.6319,20.656],[-97.6432,20.6555],[-97.6462,20.6578],[-97.6585,20.6566],[-97.6655,20.648],[-97.6653,20.6414],[-97.6819,20.637],[-97.6932,20.6429],[-97.7023,20.6411],[-97.7048,20.6296],[-97.7151,20.6369],[-97.726,20.6367],[-97.7354,20.6411],[-97.7373,20.6464],[-97.7483,20.6454],[-97.7504,20.6528],[-97.7406,20.6601],[-97.7385,20.6667],[-97.7406,20.6735],[-97.7371,20.6797],[-97.7395,20.6872],[-97.7568,20.6892],[-97.7565,20.6973],[-97.7515,20.7016],[-97.749,20.733],[-97.727,20.7432],[-97.7259,20.7586],[-97.7202,20.765],[-97.7199,20.7768],[-97.7281,20.785],[-97.7258,20.7906],[-97.714,20.7996],[-97.7049,20.7974],[-97.6952,20.8],[-97.7389,20.8015],[-97.7482,20.809],[-97.7503,20.8148],[-97.7384,20.8166],[-97.7247,20.808],[-97.7175,20.8095],[-97.6854,20.8069],[-97.6826,20.8152],[-97.6735,20.8165],[-97.6567,20.8145],[-97.6462,20.8104],[-97.6347,20.8178],[-97.6339,20.8302],[-97.6245,20.8286],[-97.6219,20.8331],[-97.6121,20.826],[-97.6135,20.8231],[-97.6033,20.8158],[-97.604,20.8125],[-97.5877,20.812]]]},properties:{id:"30157",COUNTYID:"157",COUNTY:"Castillo de Teayo",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30157"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-96.9668,19.1957],[-96.9649,19.1895],[-96.9592,19.1853],[-96.9502,19.1847],[-96.9415,19.1814],[-96.9328,19.1661],[-96.9258,19.1594],[-96.9016,19.1503],[-96.8962,19.1439],[-96.8856,19.1417],[-96.886,19.1582],[-96.8733,19.1505],[-96.862,19.1506],[-96.848,19.1443],[-96.8235,19.1404],[-96.815,19.1283],[-96.8101,19.1266],[-96.7976,19.1135],[-96.7903,19.1118],[-96.7798,19.1024],[-96.7609,19.0962],[-96.7359,19.0895],[-96.7298,19.0917],[-96.718,19.0875],[-96.7041,19.0883],[-96.6844,19.078],[-96.6911,19.0726],[-96.7038,19.0771],[-96.7127,19.0779],[-96.7192,19.0755],[-96.7397,19.077],[-96.7563,19.0833],[-96.7614,19.0836],[-96.7688,19.0914],[-96.7897,19.0961],[-96.7988,19.106],[-96.8147,19.1119],[-96.8362,19.1256],[-96.8558,19.1333],[-96.8671,19.1321],[-96.88,19.1242],[-96.8714,19.113],[-96.8724,19.1],[-96.864,19.0937],[-96.8545,19.094],[-96.8456,19.0788],[-96.8511,19.0843],[-96.8617,19.0865],[-96.8829,19.094],[-96.8897,19.0911],[-96.9036,19.095],[-96.9145,19.0883],[-96.9238,19.0855],[-96.9326,19.0887],[-96.9503,19.0839],[-96.9538,19.0865],[-96.9648,19.0843],[-96.9717,19.0858],[-96.9824,19.096],[-96.9997,19.0861],[-97.0075,19.0932],[-97.0143,19.108],[-97.0259,19.1157],[-97.0256,19.1241],[-97.0315,19.1267],[-97.0381,19.1343],[-97.0294,19.1429],[-97.0421,19.1514],[-97.0383,19.1577],[-97.043,19.165],[-97.0413,19.1739],[-97.056,19.198],[-97.0528,19.2052],[-97.045,19.2106],[-97.0356,19.2127],[-97.0296,19.218],[-97.03,19.2087],[-97.0137,19.2059],[-97.0063,19.2098],[-96.9979,19.2066],[-96.993,19.2012],[-96.9826,19.201],[-96.9771,19.1966],[-96.9668,19.1957]]]},properties:{id:"30071",COUNTYID:"071",COUNTY:"Huatusco",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30071"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-94.7037,17.7156],[-94.6989,17.7055],[-94.7047,17.6979],[-94.7177,17.6881],[-94.7252,17.6701],[-94.7187,17.6562],[-94.7369,17.6511],[-94.7471,17.6444],[-94.7513,17.6332],[-94.7496,17.6301],[-94.7295,17.6149],[-94.7271,17.6076],[-94.7314,17.6033],[-94.7478,17.6],[-94.7562,17.5968],[-94.7605,17.5914],[-94.761,17.5843],[-94.7636,17.5878],[-94.7859,17.5766],[-94.7894,17.5815],[-94.8049,17.5834],[-94.8004,17.618],[-94.8065,17.6187],[-94.8042,17.6384],[-94.8035,17.6634],[-94.8087,17.6694],[-94.8099,17.6855],[-94.8146,17.6857],[-94.8182,17.6923],[-94.8246,17.6947],[-94.8295,17.7062],[-94.8266,17.711],[-94.8261,17.7236],[-94.82,17.7268],[-94.8302,17.7371],[-94.8435,17.7379],[-94.8583,17.7437],[-94.8659,17.7399],[-94.8704,17.7473],[-94.8794,17.7499],[-94.8769,17.7629],[-94.8697,17.7649],[-94.8527,17.7582],[-94.8412,17.7628],[-94.8396,17.7702],[-94.8418,17.7779],[-94.8497,17.7789],[-94.8546,17.7746],[-94.8674,17.7759],[-94.8755,17.7803],[-94.8784,17.7894],[-94.891,17.798],[-94.8904,17.808],[-94.8925,17.8161],[-94.884,17.8307],[-94.8839,17.8369],[-94.8933,17.8369],[-94.8896,17.8438],[-94.8947,17.8539],[-94.8904,17.8604],[-94.8813,17.8632],[-94.8682,17.8634],[-94.8529,17.8776],[-94.857,17.8834],[-94.8559,17.8901],[-94.862,17.8943],[-94.8629,17.9037],[-94.8553,17.9033],[-94.8465,17.9245],[-94.8479,17.9377],[-94.8567,17.9386],[-94.8565,17.9552],[-94.8378,17.9638],[-94.8286,17.9652],[-94.8212,17.9733],[-94.8131,17.9684],[-94.7966,17.9785],[-94.7914,17.9801],[-94.7858,17.9787],[-94.7872,17.9664],[-94.7926,17.9666],[-94.7987,17.9582],[-94.7889,17.9586],[-94.783,17.9555],[-94.7863,17.942],[-94.7808,17.9296],[-94.7751,17.9293],[-94.7714,17.9344],[-94.762,17.9361],[-94.7613,17.9295],[-94.7823,17.9141],[-94.7702,17.9105],[-94.7725,17.8973],[-94.7657,17.8962],[-94.7664,17.8851],[-94.7536,17.883],[-94.7347,17.8825],[-94.7172,17.8771],[-94.7211,17.8718],[-94.7133,17.8613],[-94.7157,17.8544],[-94.7212,17.8531],[-94.7283,17.8439],[-94.7389,17.8346],[-94.7463,17.841],[-94.7517,17.8307],[-94.7597,17.829],[-94.7746,17.8155],[-94.7667,17.8119],[-94.7722,17.7971],[-94.7779,17.793],[-94.7739,17.7785],[-94.7616,17.7774],[-94.756,17.7746],[-94.7591,17.767],[-94.7559,17.763],[-94.7543,17.7515],[-94.7384,17.7514],[-94.7399,17.743],[-94.7321,17.7384],[-94.7178,17.7416],[-94.711,17.7296],[-94.7155,17.7172],[-94.7037,17.7156]]]},properties:{id:"30172",COUNTYID:"172",COUNTY:"Texistepec",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30172"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-97.3874,21.5365],[-97.4881,21.5687],[-97.4887,21.5767],[-97.5065,21.5764],[-97.5255,21.5825],[-97.5305,21.5809],[-97.6452,21.6276],[-97.6507,21.6195],[-97.6634,21.6112],[-97.667,21.6053],[-97.6734,21.6068],[-97.6793,21.6131],[-97.688,21.6132],[-97.697,21.6183],[-97.7049,21.6117],[-97.7166,21.6054],[-97.7243,21.6042],[-97.7228,21.5971],[-97.7277,21.5894],[-97.7212,21.5857],[-97.7209,21.5805],[-97.7259,21.5736],[-97.7166,21.5708],[-97.7132,21.5654],[-97.7204,21.5561],[-97.7271,21.5539],[-97.7269,21.5451],[-97.7336,21.5445],[-97.7491,21.5365],[-97.7503,21.5289],[-97.761,21.5279],[-97.7667,21.5308],[-97.7799,21.5271],[-97.7794,21.5214],[-97.791,21.5251],[-97.7962,21.5216],[-97.792,21.5028],[-97.8013,21.5057],[-97.8006,21.4989],[-97.8087,21.496],[-97.8137,21.4848],[-97.8248,21.4749],[-97.8339,21.47],[-97.837,21.4585],[-97.8354,21.4527],[-97.8422,21.4417],[-97.8422,21.4343],[-97.8525,21.4302],[-97.8614,21.4326],[-97.8638,21.438],[-97.8706,21.4362],[-97.8775,21.4437],[-97.8885,21.4346],[-97.9018,21.4347],[-97.9085,21.4425],[-97.915,21.4402],[-97.9321,21.4276],[-97.957,21.4146],[-97.9536,21.402],[-97.96,21.4077],[-97.9649,21.4065],[-97.9701,21.4163],[-97.9635,21.4265],[-97.9687,21.4299],[-97.9759,21.4451],[-97.9751,21.4516],[-97.9826,21.4617],[-97.9884,21.4657],[-97.9881,21.4769],[-97.9908,21.4846],[-97.9869,21.4954],[-97.9784,21.5078],[-97.9781,21.5141],[-97.9834,21.5271],[-97.9803,21.532],[-97.9831,21.5417],[-97.9806,21.5546],[-97.9745,21.562],[-97.9751,21.5822],[-97.9712,21.5881],[-97.9716,21.5984],[-97.9799,21.6018],[-97.9821,21.6075],[-97.9763,21.6166],[-97.9879,21.6203],[-97.9915,21.6282],[-97.986,21.6334],[-97.9867,21.6423],[-97.9909,21.6478],[-97.9906,21.6571],[-97.9971,21.6658],[-98.0013,21.6618],[-98.0076,21.6646],[-98.0125,21.6598],[-98.0292,21.6673],[-98.0426,21.6691],[-98.0449,21.6651],[-98.0578,21.6702],[-98.0722,21.67],[-98.0775,21.6633],[-98.0833,21.6675],[-98.091,21.6653],[-98.1,21.6527],[-98.0995,21.6465],[-98.1072,21.6481],[-98.1098,21.6538],[-98.1277,21.6596],[-98.1279,21.6643],[-98.1363,21.6671],[-98.1485,21.679],[-98.1463,21.6841],[-98.1481,21.6926],[-98.1546,21.6895],[-98.1581,21.6966],[-98.1554,21.7071],[-98.1595,21.7115],[-98.1474,21.7182],[-98.1472,21.7253],[-98.1424,21.7284],[-98.1419,21.7409],[-98.1456,21.7513],[-98.1462,21.7672],[-98.1438,21.7746],[-98.1336,21.7844],[-98.1273,21.7806],[-98.1204,21.7954],[-98.123,21.7997],[-98.1198,21.8129],[-98.1295,21.8318],[-98.124,21.8375],[-98.1226,21.8446],[-98.1123,21.8453],[-98.1078,21.8489],[-98.1013,21.8479],[-98.0945,21.8572],[-98.0878,21.8546],[-98.0899,21.8671],[-98.0951,21.8764],[-98.1008,21.8809],[-98.1004,21.8969],[-98.1164,21.9175],[-98.122,21.9212],[-98.1206,21.9292],[-98.1226,21.9372],[-98.1162,21.9432],[-98.1107,21.9426],[-98.1024,21.947],[-98.0941,21.9609],[-98.0994,21.9714],[-98.1067,21.977],[-98.0971,21.9834],[-98.0887,21.9828],[-98.0722,21.9953],[-98.065,21.9966],[-98.0594,21.993],[-98.0629,21.9842],[-98.0532,21.9715],[-98.045,21.97],[-98.046,21.959],[-98.0587,21.9487],[-98.0417,21.9468],[-98.0346,21.9489],[-97.965,21.9411],[-97.9648,21.9431],[-97.9265,21.9389],[-97.9198,21.9354],[-97.9264,21.9234],[-97.9228,21.9166],[-97.9034,21.9148],[-97.8974,21.9056],[-97.8939,21.9116],[-97.8773,21.9083],[-97.8645,21.925],[-97.8553,21.9343],[-97.8518,21.9463],[-97.8455,21.9479],[-97.8435,21.9407],[-97.8343,21.9376],[-97.825,21.9388],[-97.8185,21.923],[-97.7993,21.926],[-97.7896,21.9314],[-97.7603,21.9315],[-97.7582,21.9215],[-97.72,21.9157],[-97.7166,21.907],[-97.6779,21.9215],[-97.6736,21.9162],[-97.6642,21.8887],[-97.6592,21.8884],[-97.6585,21.8807],[-97.6488,21.8564],[-97.6402,21.8493],[-97.6368,21.8424],[-97.6377,21.8222],[-97.6337,21.8153],[-97.628,21.8119],[-97.6265,21.7998],[-97.6206,21.7903],[-97.6207,21.7799],[-97.6153,21.78],[-97.6074,21.7744],[-97.6012,21.7636],[-97.5899,21.7541],[-97.5863,21.7432],[-97.5774,21.743],[-97.5611,21.73],[-97.5537,21.7137],[-97.5474,21.7066],[-97.5448,21.699],[-97.5264,21.6825],[-97.5206,21.6749],[-97.5063,21.6686],[-97.5039,21.658],[-97.4986,21.655],[-97.4934,21.6388],[-97.4771,21.6217],[-97.4699,21.6093],[-97.4626,21.6037],[-97.4604,21.5973],[-97.4466,21.5898],[-97.4342,21.5782],[-97.4272,21.5685],[-97.4211,21.5683],[-97.4046,21.556],[-97.3993,21.5476],[-97.3874,21.5365]]]},properties:{id:"30121",COUNTYID:"121",COUNTY:"Ozuluama de Mascareñas",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30121"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-96.9879,19.9813],[-96.9795,19.9714],[-96.9617,19.9692],[-96.9593,19.9567],[-96.9636,19.9498],[-96.9549,19.9339],[-96.9568,19.9205],[-96.9532,19.9087],[-96.9563,19.8952],[-96.9563,19.893],[-96.9745,19.8821],[-96.9879,19.8865],[-97.0036,19.8827],[-97.0041,19.8751],[-97.0099,19.8674],[-97.0085,19.8583],[-97.0175,19.8569],[-97.0324,19.8652],[-97.0397,19.8621],[-97.054,19.8519],[-97.0578,19.8441],[-97.068,19.8558],[-97.0729,19.8496],[-97.0816,19.8482],[-97.0964,19.8539],[-97.1081,19.8412],[-97.115,19.8451],[-97.1301,19.8262],[-97.1346,19.8257],[-97.1378,19.8155],[-97.155,19.8033],[-97.1627,19.7929],[-97.1735,19.7939],[-97.1853,19.7869],[-97.1803,19.7726],[-97.1888,19.7569],[-97.1992,19.7624],[-97.2103,19.782],[-97.2198,19.7785],[-97.2288,19.7727],[-97.2335,19.7784],[-97.2503,19.7787],[-97.249,19.7855],[-97.2604,19.7891],[-97.2538,19.7912],[-97.2556,19.8002],[-97.2437,19.8066],[-97.239,19.8159],[-97.2391,19.826],[-97.2456,19.836],[-97.2553,19.8403],[-97.2469,19.8542],[-97.2462,19.8617],[-97.2501,19.8689],[-97.2465,19.8742],[-97.252,19.8843],[-97.2468,19.8971],[-97.2359,19.9086],[-97.2247,19.9076],[-97.2254,19.9186],[-97.2228,19.9226],[-97.2173,19.9255],[-97.2154,19.9333],[-97.2085,19.9342],[-97.2035,19.9433],[-97.1844,19.9654],[-97.1835,19.9691],[-97.1726,19.9837],[-97.1734,19.9913],[-97.1652,19.9955],[-97.1588,19.9919],[-97.1492,19.9983],[-97.153,20.0133],[-97.141,20.0146],[-97.1361,20.0184],[-97.1141,20.0201],[-97.0967,20.024],[-97.0925,20.0419],[-97.083,20.0516],[-97.078,20.0537],[-97.0717,20.049],[-97.0651,20.0509],[-97.0589,20.0485],[-97.0492,20.05],[-97.0413,20.0481],[-97.0403,20.0337],[-97.0502,20.0309],[-97.0555,20.0435],[-97.0618,20.0335],[-97.0544,20.0073],[-97.0529,19.991],[-97.0389,19.9851],[-97.0334,19.9797],[-97.0071,19.9745],[-97.0121,19.9648],[-97.0018,19.9587],[-96.9931,19.9621],[-96.9962,19.9687],[-96.9877,19.9767],[-96.9879,19.9813]]]},properties:{id:"30023",COUNTYID:"023",COUNTY:"Atzalan",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30023"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-97.895,22.2224],[-97.9077,22.2218],[-97.9213,22.2173],[-97.9351,22.2082],[-97.9495,22.2058],[-97.9593,22.2062],[-97.9822,22.2129],[-97.9966,22.207],[-98.0116,22.1917],[-98.0158,22.1788],[-98.0125,22.1686],[-97.9993,22.1562],[-98.0004,22.1513],[-98.021,22.1436],[-98.0297,22.1321],[-98.0391,22.1293],[-98.0431,22.135],[-98.039,22.1441],[-98.0438,22.1483],[-98.0576,22.1476],[-98.0658,22.1413],[-98.063,22.131],[-98.0425,22.1247],[-98.0401,22.1127],[-98.0435,22.1024],[-98.0519,22.1012],[-98.0642,22.1069],[-98.0792,22.1108],[-98.0865,22.115],[-98.09,22.1104],[-98.0869,22.1012],[-98.0818,22.0968],[-98.0661,22.0915],[-98.0416,22.0889],[-98.0373,22.0863],[-98.031,22.0676],[-98.022,22.0644],[-98.0187,22.07],[-98.0066,22.0698],[-98.0117,22.0635],[-98.0149,22.0535],[-98.0261,22.0544],[-98.0247,22.0401],[-98.0218,22.0317],[-98.0257,22.0275],[-98.0371,22.0243],[-98.054,22.0145],[-98.0553,22.0201],[-98.0655,22.0238],[-98.0778,22.0156],[-98.081,22.0077],[-98.0715,21.9999],[-98.0722,21.9953],[-98.0887,21.9828],[-98.0971,21.9834],[-98.1067,21.977],[-98.0994,21.9714],[-98.0941,21.9609],[-98.1024,21.947],[-98.1107,21.9426],[-98.1162,21.9432],[-98.1226,21.9372],[-98.1206,21.9292],[-98.122,21.9212],[-98.1164,21.9175],[-98.1004,21.8969],[-98.1008,21.8809],[-98.0951,21.8764],[-98.0899,21.8671],[-98.0878,21.8546],[-98.0945,21.8572],[-98.1013,21.8479],[-98.1078,21.8489],[-98.1123,21.8453],[-98.1226,21.8446],[-98.124,21.8375],[-98.1295,21.8318],[-98.1198,21.8129],[-98.123,21.7997],[-98.1204,21.7954],[-98.1273,21.7806],[-98.1336,21.7844],[-98.1438,21.7746],[-98.1462,21.7672],[-98.1456,21.7513],[-98.1419,21.7409],[-98.1424,21.7284],[-98.1472,21.7253],[-98.1474,21.7182],[-98.1595,21.7115],[-98.1904,21.715],[-98.1956,21.7201],[-98.2051,21.7218],[-98.2102,21.712],[-98.2252,21.7143],[-98.2274,21.7036],[-98.2424,21.7057],[-98.2433,21.7029],[-98.2599,21.7013],[-98.313,21.6894],[-98.31,21.71],[-98.3217,21.7082],[-98.3173,21.7487],[-98.3137,21.7671],[-98.3081,21.8096],[-98.3054,21.8251],[-98.3567,21.8224],[-98.3907,21.8195],[-98.3965,21.8306],[-98.4118,21.8309],[-98.4059,21.842],[-98.4085,21.8596],[-98.405,21.8612],[-98.4096,21.878],[-98.4185,21.8837],[-98.4322,21.8879],[-98.4383,21.8875],[-98.4411,21.8739],[-98.4505,21.8749],[-98.4622,21.8595],[-98.4709,21.8524],[-98.4847,21.8557],[-98.488,21.8519],[-98.4882,21.8376],[-98.4943,21.8384],[-98.5093,21.8244],[-98.5145,21.8239],[-98.5185,21.8314],[-98.5218,21.8455],[-98.5275,21.8614],[-98.531,21.864],[-98.5446,21.8589],[-98.5479,21.8608],[-98.5404,21.8735],[-98.5448,21.8899],[-98.5378,21.8988],[-98.5347,21.9064],[-98.5213,21.8972],[-98.5139,21.9016],[-98.5109,21.9072],[-98.513,21.9165],[-98.5249,21.9146],[-98.5349,21.9191],[-98.5466,21.9193],[-98.5434,21.9327],[-98.5311,21.9344],[-98.5086,21.9274],[-98.4988,21.9274],[-98.5031,21.9366],[-98.5123,21.9495],[-98.5291,21.9506],[-98.5391,21.9391],[-98.5533,21.9334],[-98.566,21.9376],[-98.5736,21.943],[-98.5771,21.9496],[-98.5793,21.9614],[-98.5749,21.9691],[-98.5626,21.9677],[-98.552,21.9609],[-98.5462,21.9634],[-98.5266,21.9782],[-98.5204,21.9789],[-98.5125,21.9722],[-98.4951,21.9611],[-98.4873,21.9595],[-98.4741,21.9617],[-98.4686,21.9662],[-98.482,21.983],[-98.4735,21.9889],[-98.4636,21.991],[-98.4595,21.9952],[-98.4589,22.0063],[-98.4482,22.0212],[-98.4483,22.0273],[-98.4435,22.033],[-98.4464,22.0422],[-98.4431,22.0491],[-98.4351,22.0512],[-98.4344,22.0569],[-98.4413,22.0639],[-98.4397,22.0749],[-98.4315,22.0786],[-98.4332,22.0887],[-98.4256,22.0931],[-98.4195,22.1009],[-98.4382,22.1148],[-98.4323,22.1178],[-98.4312,22.1254],[-98.4167,22.1412],[-98.4111,22.1434],[-98.3553,22.1803],[-98.3444,22.1865],[-98.3365,22.1877],[-98.3343,22.1971],[-98.3352,22.21],[-98.3431,22.2159],[-98.3446,22.2221],[-98.326,22.2431],[-98.3519,22.2386],[-98.3696,22.2381],[-98.3681,22.2554],[-98.4051,22.2561],[-98.4056,22.2628],[-98.4011,22.2722],[-98.4027,22.2787],[-98.408,22.2841],[-98.4248,22.2743],[-98.4335,22.2766],[-98.4279,22.2838],[-98.4397,22.2941],[-98.4467,22.3056],[-98.4576,22.3013],[-98.4645,22.3035],[-98.467,22.2958],[-98.4759,22.2886],[-98.4778,22.2962],[-98.488,22.3035],[-98.496,22.3037],[-98.506,22.3104],[-98.5061,22.316],[-98.5158,22.3188],[-98.5256,22.3188],[-98.5256,22.328],[-98.5353,22.328],[-98.5352,22.3379],[-98.5548,22.338],[-98.5548,22.3426],[-98.5645,22.3426],[-98.5645,22.3475],[-98.5793,22.3486],[-98.5823,22.3606],[-98.5788,22.3659],[-98.5829,22.3731],[-98.6761,22.3732],[-98.6815,22.3716],[-98.6708,22.4054],[-98.6658,22.4037],[-98.6361,22.4137],[-98.6264,22.402],[-98.6166,22.4076],[-98.6084,22.4073],[-98.6063,22.4024],[-98.5895,22.3947],[-98.5749,22.3939],[-98.5673,22.4014],[-98.5609,22.3995],[-98.5461,22.4002],[-98.5413,22.4057],[-98.5254,22.4068],[-98.5208,22.4115],[-98.5096,22.4164],[-98.5122,22.4212],[-98.5044,22.4295],[-98.4939,22.4255],[-98.4852,22.4256],[-98.4688,22.4289],[-98.4641,22.4235],[-98.4666,22.4143],[-98.461,22.4122],[-98.4486,22.42],[-98.4437,22.4313],[-98.432,22.4316],[-98.4325,22.4129],[-98.419,22.4127],[-98.4095,22.3999],[-98.3966,22.4126],[-98.3935,22.4214],[-98.3886,22.4243],[-98.3833,22.4203],[-98.3846,22.4033],[-98.39,22.3976],[-98.3878,22.3893],[-98.3792,22.388],[-98.3722,22.3913],[-98.3598,22.405],[-98.3552,22.4074],[-98.3508,22.4002],[-98.3562,22.3971],[-98.3541,22.3896],[-98.3429,22.3897],[-98.3277,22.3987],[-98.3202,22.3912],[-98.3164,22.3933],[-98.3168,22.4024],[-98.3132,22.411],[-98.3169,22.4204],[-98.3257,22.4239],[-98.3268,22.4291],[-98.3209,22.44],[-98.3119,22.4474],[-98.3136,22.4562],[-98.3193,22.4652],[-98.3088,22.4685],[-98.301,22.4612],[-98.2917,22.4678],[-98.2836,22.4634],[-98.2776,22.4489],[-98.2729,22.4473],[-98.2621,22.4503],[-98.2555,22.4553],[-98.252,22.4692],[-98.2403,22.4697],[-98.2348,22.463],[-98.2297,22.4621],[-98.2215,22.4712],[-98.2141,22.47],[-98.2088,22.4648],[-98.195,22.4696],[-98.1934,22.4632],[-98.1999,22.449],[-98.1891,22.44],[-98.189,22.4253],[-98.1765,22.4199],[-98.166,22.4111],[-98.1516,22.4129],[-98.1384,22.4076],[-98.112,22.3938],[-98.1119,22.3782],[-98.1051,22.366],[-98.0955,22.3727],[-98.0847,22.3687],[-98.0771,22.3516],[-98.0708,22.347],[-98.0582,22.3471],[-98.054,22.3555],[-98.0387,22.3558],[-98.0285,22.3584],[-98.0195,22.3522],[-98.0113,22.3528],[-98.0007,22.3482],[-97.9889,22.3498],[-97.9852,22.3412],[-97.9768,22.3384],[-97.9705,22.3281],[-97.984,22.3047],[-97.9983,22.3121],[-97.9976,22.3027],[-98.0003,22.2974],[-97.9927,22.2928],[-97.9869,22.3016],[-97.9788,22.3016],[-97.9715,22.2962],[-97.9567,22.2939],[-97.9539,22.287],[-97.9312,22.2696],[-97.9342,22.2542],[-97.9172,22.248],[-97.9164,22.2385],[-97.9043,22.2347],[-97.8978,22.2297],[-97.895,22.2224]]]},properties:{id:"30123",COUNTYID:"123",COUNTY:"Pánuco",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30123"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-96.6841,18.6443],[-96.6887,18.6388],[-96.6831,18.6349],[-96.6722,18.6186],[-96.6725,18.6076],[-96.679,18.6078],[-96.6842,18.6038],[-96.6878,18.5951],[-96.6935,18.5892],[-96.6878,18.5836],[-96.6921,18.5791],[-96.7021,18.5812],[-96.6909,18.568],[-96.6996,18.5533],[-96.7156,18.5732],[-96.7242,18.559],[-96.7118,18.5481],[-96.7191,18.5369],[-96.7259,18.5352],[-96.7269,18.5298],[-96.719,18.5221],[-96.7111,18.5282],[-96.7062,18.5263],[-96.7029,18.5103],[-96.688,18.5126],[-96.6823,18.5071],[-96.686,18.4976],[-96.6837,18.4848],[-96.6841,18.4742],[-96.6908,18.4674],[-96.6951,18.4585],[-96.7044,18.4524],[-96.705,18.4442],[-96.7089,18.4353],[-96.7091,18.4257],[-96.7059,18.4229],[-96.6844,18.4157],[-96.681,18.4122],[-96.6814,18.3857],[-96.6746,18.3814],[-96.6816,18.3756],[-96.6896,18.381],[-96.7173,18.3804],[-96.7292,18.3749],[-96.7415,18.3839],[-96.7371,18.39],[-96.7281,18.3966],[-96.7313,18.4014],[-96.7285,18.4091],[-96.7435,18.4073],[-96.7514,18.4113],[-96.7591,18.4083],[-96.7661,18.4125],[-96.7704,18.4216],[-96.781,18.4291],[-96.7778,18.435],[-96.7848,18.4442],[-96.7765,18.4498],[-96.7849,18.4543],[-96.7914,18.4774],[-96.7966,18.487],[-96.7934,18.4906],[-96.7976,18.4993],[-96.7943,18.5017],[-96.797,18.5119],[-96.8044,18.5122],[-96.8134,18.5176],[-96.8185,18.5115],[-96.824,18.5111],[-96.8262,18.4978],[-96.8424,18.4934],[-96.8428,18.5017],[-96.856,18.5109],[-96.8621,18.5109],[-96.8653,18.5158],[-96.8663,18.5259],[-96.863,18.5299],[-96.8659,18.5398],[-96.8478,18.5472],[-96.8415,18.5544],[-96.8399,18.5656],[-96.8364,18.5723],[-96.8337,18.588],[-96.8444,18.5924],[-96.8523,18.6103],[-96.8616,18.6095],[-96.8642,18.6272],[-96.8757,18.6212],[-96.8803,18.6252],[-96.8798,18.6392],[-96.876,18.6469],[-96.864,18.6596],[-96.8681,18.6647],[-96.8665,18.6757],[-96.8758,18.6869],[-96.8837,18.6867],[-96.8823,18.6938],[-96.8862,18.715],[-96.8978,18.7184],[-96.8897,18.7254],[-96.8849,18.7449],[-96.8822,18.7486],[-96.8717,18.7523],[-96.8617,18.7469],[-96.8472,18.7439],[-96.8429,18.7526],[-96.8358,18.7463],[-96.8283,18.7446],[-96.8205,18.7365],[-96.8124,18.7388],[-96.8056,18.7256],[-96.7929,18.7143],[-96.7862,18.7122],[-96.7723,18.6939],[-96.7646,18.6972],[-96.7605,18.6933],[-96.7441,18.6925],[-96.7332,18.6877],[-96.7235,18.6796],[-96.7217,18.6727],[-96.7082,18.6582],[-96.6841,18.6443]]]},properties:{id:"30173",COUNTYID:"173",COUNTY:"Tezonapa",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30173"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-94.8991,18.5487],[-94.8974,18.5432],[-94.907,18.5209],[-94.9042,18.5132],[-94.9082,18.5065],[-94.9093,18.4937],[-94.906,18.4893],[-94.9124,18.4829],[-94.9092,18.4726],[-94.9114,18.4657],[-94.9059,18.4495],[-94.8939,18.4484],[-94.8857,18.4541],[-94.864,18.4523],[-94.8663,18.4475],[-94.8741,18.4482],[-94.8822,18.4436],[-94.8865,18.4323],[-94.8919,18.4292],[-94.8879,18.4231],[-94.8965,18.4089],[-94.8855,18.4044],[-94.8738,18.3922],[-94.8692,18.3896],[-94.8771,18.38],[-94.8803,18.3718],[-94.8954,18.3686],[-94.8971,18.3566],[-94.9078,18.3599],[-94.9164,18.354],[-94.9201,18.3588],[-94.9348,18.3559],[-94.9399,18.3579],[-94.9449,18.365],[-94.9516,18.361],[-94.9569,18.3635],[-94.973,18.3639],[-94.9854,18.3468],[-94.9919,18.3442],[-94.9992,18.3477],[-95.0086,18.3457],[-95.015,18.3404],[-95.026,18.3375],[-95.0317,18.3265],[-95.0179,18.32],[-95.0211,18.3142],[-95.0303,18.3097],[-95.0303,18.2991],[-95.023,18.2981],[-95.021,18.2844],[-95.0283,18.2851],[-95.0352,18.2811],[-95.0423,18.2712],[-95.0632,18.277],[-95.0702,18.2905],[-95.0676,18.2994],[-95.0766,18.2992],[-95.0787,18.3094],[-95.0981,18.3037],[-95.1153,18.3105],[-95.1218,18.3059],[-95.1224,18.2987],[-95.1335,18.2916],[-95.1436,18.2891],[-95.1431,18.2985],[-95.1544,18.3031],[-95.1614,18.3039],[-95.1582,18.3158],[-95.1488,18.3186],[-95.1511,18.3695],[-95.1555,18.3901],[-95.1531,18.3973],[-95.1466,18.401],[-95.1465,18.4077],[-95.1424,18.4156],[-95.134,18.4248],[-95.1355,18.4293],[-95.1333,18.4445],[-95.1302,18.4493],[-95.1371,18.4709],[-95.1441,18.479],[-95.1507,18.483],[-95.1514,18.4919],[-95.145,18.4937],[-95.1288,18.4921],[-95.121,18.4958],[-95.1051,18.4937],[-95.1023,18.4889],[-95.0855,18.4908],[-95.0743,18.5035],[-95.0806,18.5162],[-95.0852,18.516],[-95.0873,18.5285],[-95.1048,18.534],[-95.1175,18.53],[-95.1264,18.5349],[-95.1307,18.5414],[-95.1108,18.5507],[-95.0993,18.5496],[-95.1045,18.567],[-95.0938,18.5746],[-95.0802,18.5765],[-95.0497,18.5996],[-95.0514,18.5859],[-95.044,18.5778],[-95.0338,18.5723],[-95.0112,18.5636],[-94.9891,18.5569],[-94.973,18.5579],[-94.968,18.5539],[-94.9435,18.5494],[-94.9102,18.547],[-94.8991,18.5487]]]},properties:{id:"30032",COUNTYID:"032",COUNTY:"Catemaco",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30032"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-96.1497,19.1095],[-96.1401,19.1124],[-96.1326,19.1179],[-96.1234,19.1158],[-96.1132,19.1071],[-96.1115,19.0977],[-96.1178,19.0921],[-96.1236,19.0942],[-96.1394,19.095],[-96.1404,19.0781],[-96.1321,19.0757],[-96.1314,19.0698],[-96.1413,19.0678],[-96.1432,19.0589],[-96.1238,19.0596],[-96.1172,19.0557],[-96.1098,19.058],[-96.1044,19.0471],[-96.0966,19.0417],[-96.1015,19.0351],[-96.1026,19.0267],[-96.1096,19.0269],[-96.1111,19.0105],[-96.092,18.9949],[-96.0871,18.9995],[-96.0756,18.9976],[-96.0749,18.9917],[-96.0692,18.9888],[-96.052,18.9906],[-96.0439,18.9866],[-96.037,18.976],[-96.0342,18.9661],[-96.0289,18.9602],[-96.0266,18.9434],[-96.022,18.9406],[-96.032,18.9391],[-96.0375,18.9256],[-96.0479,18.9295],[-96.0542,18.9396],[-96.0502,18.9457],[-96.055,18.9485],[-96.065,18.937],[-96.0711,18.9387],[-96.0664,18.946],[-96.0716,18.9512],[-96.0862,18.9303],[-96.093,18.917],[-96.1002,18.9137],[-96.1016,18.8992],[-96.1081,18.8948],[-96.1204,18.897],[-96.1324,18.8595],[-96.1407,18.8572],[-96.146,18.8422],[-96.1567,18.8396],[-96.1651,18.8462],[-96.1804,18.8455],[-96.1839,18.8425],[-96.1934,18.9023],[-96.2013,18.897],[-96.2115,18.8869],[-96.2145,18.8962],[-96.2159,18.92],[-96.2324,18.9142],[-96.2318,18.9105],[-96.2434,18.9079],[-96.2463,18.9025],[-96.2556,18.9023],[-96.263,18.9073],[-96.2635,18.9173],[-96.2529,18.923],[-96.257,18.9357],[-96.2537,18.945],[-96.2463,18.9463],[-96.2332,18.9539],[-96.2199,18.9761],[-96.2172,18.9831],[-96.204,18.9912],[-96.1998,18.9974],[-96.1926,18.9982],[-96.1853,19.008],[-96.1876,19.0243],[-96.1808,19.0341],[-96.1742,19.0381],[-96.1772,19.0502],[-96.1973,19.0505],[-96.1986,19.0466],[-96.2101,19.0479],[-96.2195,19.0392],[-96.2312,19.0484],[-96.246,19.0458],[-96.2516,19.0477],[-96.2505,19.0548],[-96.2599,19.0593],[-96.2644,19.0642],[-96.2638,19.0756],[-96.2587,19.0798],[-96.2563,19.0919],[-96.2631,19.093],[-96.2609,19.1021],[-96.2637,19.1185],[-96.272,19.1218],[-96.2636,19.1333],[-96.2571,19.1404],[-96.244,19.1449],[-96.2221,19.1192],[-96.2108,19.1242],[-96.2076,19.1162],[-96.2087,19.1095],[-96.2019,19.1095],[-96.1904,19.1027],[-96.1828,19.1051],[-96.1748,19.1026],[-96.1672,19.1093],[-96.1589,19.1108],[-96.1497,19.1095]]]},properties:{id:"30105",COUNTYID:"105",COUNTY:"Medellín de Bravo",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30105"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-97.9159,20.8749],[-97.9035,20.8709],[-97.9026,20.8642],[-97.91,20.8561],[-97.8887,20.8515],[-97.9017,20.8478],[-97.9093,20.8394],[-97.9202,20.8342],[-97.9225,20.8218],[-97.9218,20.8092],[-97.9261,20.8056],[-97.9285,20.7892],[-97.9137,20.7839],[-97.9059,20.7973],[-97.8948,20.7978],[-97.9037,20.775],[-97.9224,20.7165],[-97.8974,20.7032],[-97.9065,20.6906],[-97.9144,20.6872],[-97.9178,20.6712],[-97.9133,20.672],[-97.9078,20.6643],[-97.9094,20.6565],[-97.9068,20.6436],[-97.9016,20.6408],[-97.8952,20.6225],[-97.9052,20.6094],[-97.906,20.5987],[-97.9147,20.5865],[-97.9273,20.5719],[-97.9431,20.5626],[-97.9563,20.5569],[-97.9808,20.5407],[-97.9815,20.5257],[-97.9726,20.5232],[-97.9793,20.5149],[-98.0042,20.5249],[-98.0173,20.526],[-98.0083,20.5327],[-98.0249,20.5775],[-98.0287,20.5897],[-98.0177,20.6017],[-98.021,20.6268],[-98.0295,20.6321],[-98.04,20.6319],[-98.054,20.6527],[-98.0668,20.6739],[-98.072,20.6579],[-98.0793,20.6497],[-98.0828,20.6421],[-98.0807,20.6333],[-98.0855,20.6298],[-98.0875,20.6225],[-98.095,20.6255],[-98.1006,20.6209],[-98.1006,20.6139],[-98.1112,20.6162],[-98.1197,20.6202],[-98.1208,20.6265],[-98.1297,20.6393],[-98.1298,20.6473],[-98.1254,20.657],[-98.1201,20.661],[-98.1275,20.6659],[-98.12,20.678],[-98.1289,20.6881],[-98.1482,20.6986],[-98.141,20.7129],[-98.1349,20.7203],[-98.1385,20.7242],[-98.1297,20.7288],[-98.1097,20.7274],[-98.1045,20.7368],[-98.1129,20.7413],[-98.1136,20.7469],[-98.1096,20.7616],[-98.1029,20.7604],[-98.1009,20.7525],[-98.0931,20.7602],[-98.088,20.7774],[-98.0985,20.7789],[-98.1111,20.7908],[-98.1023,20.7921],[-98.0999,20.7969],[-98.1126,20.7995],[-98.1152,20.8052],[-98.1263,20.8009],[-98.1279,20.8088],[-98.134,20.8087],[-98.1344,20.8156],[-98.1296,20.8201],[-98.1288,20.8274],[-98.1211,20.8274],[-98.121,20.8361],[-98.1165,20.8396],[-98.1141,20.8533],[-98.1097,20.8632],[-98.1066,20.8693],[-98.0989,20.8726],[-98.0806,20.8633],[-98.0782,20.8709],[-98.063,20.8743],[-98.0567,20.8777],[-98.0416,20.8954],[-98.0299,20.8917],[-98.0267,20.8827],[-98.0083,20.882],[-98.0028,20.8783],[-98.0085,20.867],[-98.0055,20.8635],[-97.9927,20.867],[-97.9946,20.8748],[-97.9908,20.8776],[-97.9723,20.8627],[-97.9637,20.8532],[-97.9626,20.84],[-97.9545,20.8318],[-97.9419,20.8369],[-97.9431,20.8405],[-97.9326,20.8465],[-97.9233,20.8485],[-97.9237,20.8555],[-97.9173,20.8596],[-97.9208,20.8644],[-97.9159,20.8749]]]},properties:{id:"30083",COUNTYID:"083",COUNTY:"Ixhuatlán de Madero",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30083"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-95.0497,18.5996],[-95.0802,18.5765],[-95.0938,18.5746],[-95.1045,18.567],[-95.0993,18.5496],[-95.1108,18.5507],[-95.1307,18.5414],[-95.1264,18.5349],[-95.1175,18.53],[-95.1048,18.534],[-95.0873,18.5285],[-95.0852,18.516],[-95.0806,18.5162],[-95.0743,18.5035],[-95.0855,18.4908],[-95.1023,18.4889],[-95.1051,18.4937],[-95.121,18.4958],[-95.1288,18.4921],[-95.145,18.4937],[-95.1514,18.4919],[-95.1507,18.483],[-95.1441,18.479],[-95.1371,18.4709],[-95.1302,18.4493],[-95.1333,18.4445],[-95.1355,18.4293],[-95.134,18.4248],[-95.1424,18.4156],[-95.1465,18.4077],[-95.1466,18.401],[-95.1531,18.3973],[-95.1555,18.3901],[-95.1511,18.3695],[-95.1488,18.3186],[-95.1582,18.3158],[-95.1614,18.3039],[-95.1695,18.2981],[-95.1757,18.3012],[-95.19,18.2942],[-95.1879,18.2863],[-95.1955,18.2689],[-95.2049,18.2564],[-95.2229,18.2586],[-95.2268,18.2691],[-95.2374,18.2793],[-95.245,18.272],[-95.2442,18.2637],[-95.237,18.2634],[-95.2336,18.2572],[-95.2129,18.2506],[-95.2099,18.2445],[-95.2179,18.2375],[-95.2309,18.2356],[-95.2314,18.2294],[-95.2384,18.2266],[-95.2397,18.2328],[-95.2504,18.2322],[-95.2507,18.2382],[-95.2615,18.2377],[-95.263,18.2426],[-95.2854,18.2433],[-95.2919,18.2451],[-95.2839,18.2171],[-95.289,18.2125],[-95.2959,18.2122],[-95.3055,18.2204],[-95.312,18.2155],[-95.3221,18.2214],[-95.3152,18.2292],[-95.3185,18.2341],[-95.3271,18.2383],[-95.3305,18.2333],[-95.3459,18.2364],[-95.3497,18.2405],[-95.3581,18.2372],[-95.3537,18.2318],[-95.3726,18.2287],[-95.3761,18.2234],[-95.3817,18.2264],[-95.3905,18.2263],[-95.4035,18.2333],[-95.4168,18.2298],[-95.4217,18.2347],[-95.4234,18.2435],[-95.4318,18.2362],[-95.4301,18.2228],[-95.4392,18.2201],[-95.4456,18.2238],[-95.4457,18.2392],[-95.4412,18.2444],[-95.4343,18.2449],[-95.429,18.2576],[-95.4155,18.2563],[-95.3954,18.2562],[-95.3883,18.2638],[-95.3867,18.2692],[-95.3715,18.2677],[-95.3698,18.2784],[-95.3559,18.2779],[-95.3507,18.2948],[-95.3417,18.3012],[-95.3404,18.312],[-95.3442,18.321],[-95.339,18.327],[-95.3364,18.3416],[-95.3254,18.3647],[-95.3317,18.3723],[-95.3315,18.3857],[-95.3219,18.386],[-95.314,18.3921],[-95.3107,18.3995],[-95.3061,18.3977],[-95.2981,18.4029],[-95.2848,18.4018],[-95.2771,18.4151],[-95.2747,18.4288],[-95.27,18.4301],[-95.2717,18.4472],[-95.2615,18.4675],[-95.2675,18.4686],[-95.2688,18.4789],[-95.2672,18.4878],[-95.2567,18.4866],[-95.2541,18.4979],[-95.2327,18.506],[-95.2344,18.5175],[-95.2654,18.5208],[-95.2652,18.5304],[-95.2754,18.5374],[-95.284,18.5402],[-95.279,18.5478],[-95.2845,18.5585],[-95.2842,18.5675],[-95.2996,18.5708],[-95.3018,18.5679],[-95.3183,18.5702],[-95.3243,18.573],[-95.3221,18.5837],[-95.3097,18.5845],[-95.305,18.5935],[-95.2985,18.5903],[-95.2875,18.5939],[-95.2798,18.5917],[-95.2678,18.5918],[-95.2679,18.5997],[-95.2842,18.6028],[-95.2886,18.6079],[-95.2874,18.6159],[-95.2938,18.6165],[-95.2914,18.632],[-95.2955,18.6325],[-95.2925,18.6473],[-95.2896,18.6468],[-95.2861,18.6641],[-95.295,18.6653],[-95.2935,18.6706],[-95.299,18.6965],[-95.2945,18.707],[-95.2847,18.7075],[-95.2873,18.7153],[-95.2722,18.7078],[-95.2614,18.7052],[-95.2455,18.7039],[-95.2095,18.7032],[-95.1984,18.7042],[-95.1892,18.7097],[-95.1819,18.7067],[-95.1831,18.7],[-95.1757,18.6926],[-95.1658,18.6866],[-95.1542,18.6843],[-95.1448,18.6792],[-95.14,18.6726],[-95.13,18.6702],[-95.13,18.6633],[-95.1216,18.6525],[-95.1027,18.6448],[-95.0872,18.6448],[-95.0795,18.6417],[-95.0811,18.6317],[-95.0762,18.6253],[-95.062,18.618],[-95.0604,18.6073],[-95.0543,18.5996],[-95.0497,18.5996]]]},properties:{id:"30141",COUNTYID:"141",COUNTY:"San Andrés Tuxtla",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30141"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-95.5301,17.571],[-95.5254,17.5613],[-95.5327,17.5557],[-95.5429,17.5587],[-95.5461,17.5542],[-95.5561,17.5557],[-95.5618,17.5463],[-95.5678,17.5512],[-95.5784,17.5446],[-95.5777,17.5387],[-95.5853,17.535],[-95.59,17.5383],[-95.5996,17.5362],[-95.599,17.5429],[-95.6078,17.5455],[-95.6081,17.5399],[-95.6181,17.5409],[-95.6377,17.5488],[-95.65,17.5461],[-95.6488,17.5396],[-95.6597,17.5388],[-95.6649,17.5354],[-95.6803,17.5341],[-95.6892,17.5351],[-95.691,17.5249],[-95.7025,17.5187],[-95.7088,17.5319],[-95.7133,17.5362],[-95.7212,17.5369],[-95.722,17.5492],[-95.7296,17.5715],[-95.7376,17.5805],[-95.7501,17.5863],[-95.7697,17.5881],[-95.7735,17.5915],[-95.7722,17.5998],[-95.7818,17.603],[-95.793,17.6014],[-95.7905,17.5913],[-95.7952,17.5862],[-95.8088,17.5932],[-95.8076,17.6018],[-95.8035,17.6071],[-95.7962,17.606],[-95.7891,17.6109],[-95.7742,17.6097],[-95.7734,17.6238],[-95.7736,17.6294],[-95.7673,17.6658],[-95.7686,17.6734],[-95.7666,17.687],[-95.7598,17.6862],[-95.7581,17.6979],[-95.7521,17.6969],[-95.749,17.7227],[-95.7407,17.7179],[-95.733,17.7172],[-95.719,17.7216],[-95.6866,17.7506],[-95.6829,17.7493],[-95.6746,17.7275],[-95.6607,17.7321],[-95.6552,17.7193],[-95.6597,17.7178],[-95.6515,17.6963],[-95.6357,17.6892],[-95.6258,17.6925],[-95.6264,17.6838],[-95.612,17.6819],[-95.6113,17.6864],[-95.6023,17.6856],[-95.5985,17.6763],[-95.6,17.6686],[-95.5923,17.6682],[-95.5893,17.6607],[-95.5967,17.66],[-95.5918,17.636],[-95.588,17.6413],[-95.5657,17.6512],[-95.5595,17.6496],[-95.5513,17.6526],[-95.5465,17.6428],[-95.5481,17.6345],[-95.5342,17.6373],[-95.5271,17.6425],[-95.5202,17.64],[-95.5112,17.6283],[-95.5429,17.6111],[-95.5667,17.5974],[-95.5587,17.582],[-95.5541,17.5804],[-95.5539,17.5671],[-95.549,17.5657],[-95.5334,17.5716],[-95.5301,17.571]]]},properties:{id:"30212",COUNTYID:"212",COUNTY:"Santiago Sochiapan",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30212"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-97.0142,19.5218],[-97.0025,19.5113],[-96.9964,19.5105],[-96.9804,19.5147],[-96.9704,19.5134],[-96.9686,19.5076],[-96.9549,19.5104],[-96.9477,19.5142],[-96.9425,19.5143],[-96.941,19.505],[-96.9353,19.4929],[-96.9224,19.4884],[-96.9172,19.4944],[-96.9066,19.4942],[-96.9061,19.485],[-96.8999,19.4855],[-96.9029,19.4746],[-96.8999,19.4678],[-96.9034,19.4632],[-96.8905,19.4558],[-96.8867,19.4458],[-96.8758,19.4459],[-96.8644,19.4431],[-96.856,19.4386],[-96.8396,19.438],[-96.828,19.4346],[-96.8203,19.4288],[-96.8171,19.4205],[-96.8092,19.4243],[-96.8025,19.4126],[-96.8087,19.4071],[-96.8084,19.4001],[-96.8165,19.3953],[-96.8145,19.3859],[-96.8252,19.379],[-96.797,19.365],[-96.8045,19.3591],[-96.8188,19.3663],[-96.8384,19.367],[-96.8435,19.3714],[-96.848,19.3776],[-96.867,19.382],[-96.8885,19.3825],[-96.8954,19.3756],[-96.9079,19.3789],[-96.9085,19.3844],[-96.916,19.387],[-96.9224,19.3931],[-96.9253,19.4012],[-96.931,19.4026],[-96.9387,19.409],[-96.95,19.4225],[-96.9645,19.4267],[-96.9795,19.44],[-96.9832,19.4395],[-96.9983,19.4497],[-96.999,19.4623],[-97.0109,19.4633],[-97.0223,19.4688],[-97.0274,19.468],[-97.0431,19.4759],[-97.0497,19.4825],[-97.0568,19.4967],[-97.0682,19.5033],[-97.0717,19.5095],[-97.0831,19.5151],[-97.1059,19.5215],[-97.1045,19.5303],[-97.0944,19.5323],[-97.0829,19.5257],[-97.0796,19.5202],[-97.068,19.5159],[-97.0594,19.5176],[-97.051,19.5114],[-97.0292,19.5085],[-97.0179,19.5168],[-97.0142,19.5218]]]},properties:{id:"30038",COUNTYID:"038",COUNTY:"Coatepec",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30038"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-95.5506,18.653],[-95.5614,18.6408],[-95.5512,18.6214],[-95.5612,18.6172],[-95.5818,18.605],[-95.5802,18.5905],[-95.5731,18.5886],[-95.5668,18.5811],[-95.5683,18.5698],[-95.5733,18.5611],[-95.5717,18.5524],[-95.5629,18.551],[-95.5532,18.544],[-95.5498,18.5349],[-95.5441,18.5339],[-95.5357,18.5141],[-95.5406,18.5123],[-95.5342,18.4872],[-95.5419,18.4822],[-95.5334,18.4774],[-95.5288,18.4712],[-95.5343,18.4668],[-95.5322,18.4609],[-95.5251,18.4622],[-95.5179,18.4583],[-95.5204,18.4394],[-95.5172,18.4305],[-95.5102,18.4265],[-95.5179,18.4161],[-95.5149,18.4122],[-95.5069,18.4144],[-95.5038,18.4106],[-95.5131,18.4056],[-95.5135,18.3637],[-95.5232,18.3635],[-95.5228,18.3493],[-95.527,18.3349],[-95.5408,18.3366],[-95.5458,18.3434],[-95.5465,18.3517],[-95.5523,18.3641],[-95.5652,18.3598],[-95.5773,18.3632],[-95.5856,18.3607],[-95.5941,18.3544],[-95.594,18.3549],[-95.5958,18.3635],[-95.6013,18.3654],[-95.6101,18.3608],[-95.6175,18.3728],[-95.6131,18.3826],[-95.6173,18.3865],[-95.6295,18.3839],[-95.6316,18.3935],[-95.6268,18.408],[-95.6312,18.4208],[-95.6459,18.4308],[-95.6398,18.4373],[-95.6464,18.4482],[-95.6584,18.4513],[-95.6647,18.4582],[-95.6623,18.4641],[-95.6765,18.4818],[-95.6831,18.4952],[-95.6891,18.5006],[-95.6991,18.5046],[-95.7017,18.5125],[-95.7111,18.5216],[-95.7166,18.5236],[-95.7247,18.5343],[-95.7289,18.5435],[-95.7433,18.537],[-95.7544,18.5348],[-95.7599,18.5438],[-95.7655,18.547],[-95.7583,18.555],[-95.7489,18.5806],[-95.7488,18.6002],[-95.7346,18.6026],[-95.7215,18.6155],[-95.7215,18.6334],[-95.7252,18.6369],[-95.7247,18.667],[-95.7191,18.6684],[-95.7115,18.676],[-95.696,18.6741],[-95.6911,18.6752],[-95.6787,18.6833],[-95.6669,18.683],[-95.6562,18.6869],[-95.6469,18.6959],[-95.6369,18.6956],[-95.6313,18.7044],[-95.6271,18.6934],[-95.6176,18.6959],[-95.6037,18.6951],[-95.5943,18.692],[-95.585,18.6832],[-95.58,18.671],[-95.5705,18.6631],[-95.5655,18.6653],[-95.5577,18.662],[-95.5506,18.653]]]},properties:{id:"30178",COUNTYID:"178",COUNTY:"Tlacotalpan",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30178"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-96.8537,18.9606],[-96.8447,18.9572],[-96.8381,18.9425],[-96.8297,18.9425],[-96.8294,18.9374],[-96.8364,18.9251],[-96.8286,18.9167],[-96.8282,18.9122],[-96.8184,18.9055],[-96.8239,18.9015],[-96.8248,18.8822],[-96.8406,18.8758],[-96.8503,18.8695],[-96.8515,18.8645],[-96.8359,18.8521],[-96.8223,18.8434],[-96.8205,18.8177],[-96.8317,18.8244],[-96.848,18.807],[-96.8352,18.7991],[-96.8377,18.7859],[-96.8501,18.7849],[-96.8608,18.7865],[-96.8686,18.7834],[-96.8887,18.8008],[-96.8931,18.7931],[-96.9014,18.7906],[-96.9043,18.7861],[-96.9242,18.7949],[-96.9264,18.8022],[-96.9285,18.8111],[-96.9342,18.8165],[-96.9568,18.8257],[-96.9566,18.8383],[-96.9483,18.852],[-96.9357,18.8571],[-96.9306,18.8548],[-96.9204,18.8594],[-96.9176,18.8638],[-96.9046,18.8661],[-96.8988,18.8644],[-96.8949,18.8733],[-96.8854,18.8751],[-96.8815,18.8857],[-96.8925,18.8872],[-96.9069,18.8967],[-96.9023,18.9107],[-96.8961,18.9069],[-96.885,18.9078],[-96.8753,18.9112],[-96.8831,18.9266],[-96.8787,18.9356],[-96.8829,18.9401],[-96.8814,18.9494],[-96.8747,18.9517],[-96.8733,18.9573],[-96.8593,18.9617],[-96.8537,18.9606]]]},properties:{id:"30014",COUNTYID:"014",COUNTY:"Amatlán de los Reyes",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30014"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-95.7289,17.9203],[-95.7504,17.9233],[-95.755,17.9283],[-95.765,17.9259],[-95.7897,17.9361],[-95.7955,17.9274],[-95.8001,17.9414],[-95.8,17.9498],[-95.8242,18.081],[-95.8166,18.0851],[-95.7954,18.0883],[-95.7809,18.093],[-95.7753,18.1026],[-95.778,18.1084],[-95.7758,18.1245],[-95.7695,18.1301],[-95.7705,18.1426],[-95.765,18.1426],[-95.7654,18.1506],[-95.7487,18.1548],[-95.7338,18.1634],[-95.7286,18.164],[-95.7262,18.1823],[-95.7219,18.1872],[-95.7077,18.1888],[-95.7085,18.1984],[-95.7045,18.2047],[-95.7097,18.2077],[-95.7143,18.2038],[-95.7248,18.2104],[-95.7183,18.2148],[-95.7036,18.2291],[-95.6971,18.2371],[-95.6825,18.2377],[-95.683,18.2507],[-95.654,18.262],[-95.6574,18.2768],[-95.6447,18.281],[-95.6412,18.2955],[-95.6424,18.3045],[-95.6615,18.3084],[-95.6631,18.3162],[-95.6553,18.3191],[-95.6556,18.3299],[-95.6522,18.3354],[-95.643,18.3404],[-95.654,18.3511],[-95.6397,18.3563],[-95.6375,18.3514],[-95.594,18.3549],[-95.5941,18.3544],[-95.5981,18.3465],[-95.6048,18.3402],[-95.5981,18.3345],[-95.5919,18.3396],[-95.5867,18.3359],[-95.5861,18.3288],[-95.5972,18.3158],[-95.5974,18.3108],[-95.5917,18.3032],[-95.5837,18.303],[-95.5797,18.2964],[-95.5893,18.2953],[-95.5852,18.2887],[-95.5751,18.2906],[-95.5636,18.2848],[-95.5588,18.2756],[-95.5624,18.2685],[-95.5719,18.2677],[-95.572,18.2614],[-95.5788,18.2596],[-95.5803,18.2476],[-95.5678,18.2406],[-95.5693,18.2356],[-95.5765,18.2354],[-95.5811,18.2429],[-95.5961,18.236],[-95.5966,18.2309],[-95.6069,18.2308],[-95.6089,18.2229],[-95.6068,18.2169],[-95.6141,18.2152],[-95.6253,18.2238],[-95.6326,18.2204],[-95.6312,18.2086],[-95.6446,18.2057],[-95.6467,18.1951],[-95.6517,18.19],[-95.6542,18.1817],[-95.6488,18.1784],[-95.6482,18.1645],[-95.6506,18.1582],[-95.6394,18.1548],[-95.6489,18.1494],[-95.6537,18.1438],[-95.6541,18.1362],[-95.649,18.1312],[-95.6499,18.1244],[-95.6577,18.1206],[-95.6648,18.1112],[-95.6613,18.1031],[-95.6619,18.0945],[-95.6421,18.0916],[-95.6255,18.0861],[-95.6299,18.0709],[-95.6456,18.0684],[-95.6497,18.0517],[-95.6442,18.0458],[-95.6477,18.042],[-95.6472,18.0291],[-95.6502,18.0182],[-95.6576,18.0117],[-95.6566,18],[-95.6616,17.9919],[-95.6691,17.9983],[-95.6714,17.9925],[-95.6843,17.9962],[-95.6926,17.9923],[-95.6998,17.9821],[-95.7001,17.956],[-95.7173,17.9535],[-95.7129,17.9478],[-95.7206,17.9376],[-95.7289,17.9203]]]},properties:{id:"30169",COUNTYID:"169",COUNTY:"José Azueta",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30169"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-97.5855,21.3517],[-97.5831,21.3475],[-97.5826,21.3332],[-97.5863,21.3329],[-97.5923,21.3157],[-97.5888,21.3096],[-97.5984,21.2922],[-97.6063,21.2952],[-97.6127,21.2843],[-97.6268,21.2828],[-97.6538,21.2878],[-97.6596,21.28],[-97.6687,21.2993],[-97.6766,21.3026],[-97.6843,21.2933],[-97.6745,21.2791],[-97.6756,21.2726],[-97.6896,21.265],[-97.7154,21.2689],[-97.707,21.2599],[-97.7158,21.2531],[-97.7345,21.2669],[-97.745,21.2674],[-97.7461,21.2807],[-97.7649,21.3131],[-97.7744,21.331],[-97.7846,21.334],[-97.79,21.3323],[-97.7923,21.3384],[-97.7882,21.3465],[-97.7747,21.3622],[-97.7716,21.3577],[-97.7768,21.3468],[-97.7679,21.3472],[-97.7556,21.3442],[-97.7453,21.3347],[-97.7317,21.3336],[-97.7317,21.3389],[-97.7221,21.343],[-97.7033,21.342],[-97.6963,21.3491],[-97.6974,21.3575],[-97.6849,21.3621],[-97.6803,21.3586],[-97.6666,21.3548],[-97.6581,21.35],[-97.6515,21.3433],[-97.6437,21.3479],[-97.6336,21.3439],[-97.6169,21.332],[-97.6012,21.3296],[-97.601,21.3439],[-97.5983,21.3479],[-97.5889,21.3471],[-97.5855,21.3517]]]},properties:{id:"30013",COUNTYID:"013",COUNTY:"Naranjos Amatlán",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30013"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-94.8049,17.5834],[-94.7894,17.5815],[-94.7859,17.5766],[-94.7636,17.5878],[-94.761,17.5843],[-94.7537,17.5711],[-94.7415,17.5619],[-94.7195,17.55],[-94.7115,17.5404],[-94.7094,17.5335],[-94.7257,17.5028],[-94.7457,17.4875],[-94.7527,17.4838],[-94.7571,17.4863],[-94.7595,17.4967],[-94.7667,17.4982],[-94.7805,17.4814],[-94.7946,17.4788],[-94.8058,17.4818],[-94.8125,17.4862],[-94.8243,17.5013],[-94.8302,17.5032],[-94.8427,17.4986],[-94.8479,17.4939],[-94.8516,17.4856],[-94.8525,17.4646],[-94.8487,17.4594],[-94.8327,17.4478],[-94.8328,17.4392],[-94.8205,17.439],[-94.8103,17.43],[-94.8051,17.4325],[-94.8036,17.4399],[-94.7936,17.4417],[-94.7832,17.4509],[-94.7804,17.4586],[-94.7598,17.4658],[-94.7482,17.4607],[-94.744,17.452],[-94.7505,17.4417],[-94.7477,17.4337],[-94.7419,17.43],[-94.7388,17.4237],[-94.7285,17.4281],[-94.7189,17.4227],[-94.7137,17.4133],[-94.7186,17.4045],[-94.7181,17.3943],[-94.7304,17.392],[-94.7304,17.3848],[-94.7353,17.378],[-94.7307,17.3742],[-94.72,17.3751],[-94.7176,17.3705],[-94.7005,17.3743],[-94.703,17.3841],[-94.6706,17.3799],[-94.6641,17.383],[-94.652,17.3798],[-94.6571,17.3742],[-94.6502,17.371],[-94.6455,17.3603],[-94.6556,17.3648],[-94.6644,17.3633],[-94.661,17.3566],[-94.6601,17.3403],[-94.6553,17.3309],[-94.6649,17.3292],[-94.6775,17.3332],[-94.6964,17.3361],[-94.6997,17.2949],[-94.7259,17.2952],[-94.7278,17.2919],[-94.7401,17.286],[-94.7471,17.2863],[-94.7541,17.2791],[-94.7542,17.2708],[-94.7487,17.2686],[-94.7443,17.2596],[-94.7481,17.2547],[-94.7564,17.2274],[-94.7535,17.2172],[-94.7566,17.2136],[-94.7492,17.1958],[-94.7389,17.1939],[-94.7436,17.1847],[-94.9228,17.1938],[-94.9236,17.2032],[-94.915,17.2066],[-94.9112,17.2137],[-94.9108,17.2259],[-94.9053,17.2369],[-94.9094,17.2406],[-94.9064,17.2467],[-94.898,17.2518],[-94.8954,17.2564],[-94.9097,17.268],[-94.9045,17.2896],[-94.9131,17.2862],[-94.9148,17.2926],[-94.9091,17.2972],[-94.9018,17.2964],[-94.8896,17.2998],[-94.8908,17.3111],[-94.9031,17.3172],[-94.9083,17.3138],[-94.9289,17.3247],[-94.9331,17.319],[-94.9458,17.3141],[-94.9521,17.3161],[-94.9606,17.3231],[-94.9663,17.3343],[-94.9712,17.331],[-95.0766,17.3729],[-95.2046,17.5387],[-95.1978,17.5459],[-95.1921,17.5448],[-95.1763,17.546],[-95.1722,17.5569],[-95.1635,17.5566],[-95.1518,17.5627],[-95.1381,17.5629],[-95.1245,17.5595],[-95.1136,17.5611],[-95.1046,17.5656],[-95.0886,17.569],[-95.0819,17.5732],[-95.0638,17.5683],[-95.0604,17.5717],[-95.0481,17.5743],[-95.0375,17.5658],[-95.024,17.5637],[-95.0131,17.5723],[-95.0078,17.573],[-95.0002,17.5794],[-94.9947,17.5736],[-94.981,17.5772],[-94.9639,17.5745],[-94.9595,17.5779],[-94.9395,17.5785],[-94.9312,17.5699],[-94.9236,17.5686],[-94.9137,17.5744],[-94.8909,17.5816],[-94.8812,17.5804],[-94.8729,17.584],[-94.8667,17.5799],[-94.8625,17.5835],[-94.852,17.5846],[-94.8412,17.5904],[-94.8333,17.5908],[-94.8282,17.5868],[-94.8186,17.5893],[-94.811,17.5885],[-94.8049,17.5834]]]},properties:{id:"30091",COUNTYID:"091",COUNTY:"Jesús Carranza",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30091"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-97.8747,21.0648],[-97.8789,21.058],[-97.8842,21.0567],[-97.8847,21.05],[-97.8899,21.0486],[-97.9049,21.0535],[-97.9125,21.0507],[-97.9211,21.0263],[-97.9058,21.0199],[-97.9087,21.0122],[-97.9169,21.0089],[-97.9258,21.0113],[-97.9238,21.001],[-97.9068,21.0003],[-97.9113,20.9943],[-97.9091,20.9879],[-97.8998,20.9895],[-97.8876,20.982],[-97.8776,20.9814],[-97.875,20.9867],[-97.8655,20.989],[-97.8616,20.9834],[-97.8637,20.9785],[-97.8581,20.9715],[-97.8495,20.9706],[-97.8696,20.9505],[-97.8731,20.9411],[-97.8783,20.9364],[-97.8777,20.9143],[-97.8745,20.9036],[-97.8803,20.8933],[-97.8995,20.898],[-97.9104,20.8856],[-97.9295,20.8795],[-97.9292,20.8757],[-97.9159,20.8749],[-97.9208,20.8644],[-97.9173,20.8596],[-97.9237,20.8555],[-97.9233,20.8485],[-97.9326,20.8465],[-97.9431,20.8405],[-97.9419,20.8369],[-97.9545,20.8318],[-97.9626,20.84],[-97.9637,20.8532],[-97.9723,20.8627],[-97.9908,20.8776],[-97.9946,20.8748],[-97.9927,20.867],[-98.0055,20.8635],[-98.0085,20.867],[-98.0028,20.8783],[-98.0083,20.882],[-98.0267,20.8827],[-98.0299,20.8917],[-98.0416,20.8954],[-98.0567,20.8777],[-98.063,20.8743],[-98.0782,20.8709],[-98.0806,20.8633],[-98.0989,20.8726],[-98.1066,20.8693],[-98.1097,20.8632],[-98.1135,20.8736],[-98.1185,20.8808],[-98.1288,20.8795],[-98.1246,20.8946],[-98.133,20.8925],[-98.1384,20.8848],[-98.1459,20.8823],[-98.1573,20.8838],[-98.1661,20.8917],[-98.1678,20.8968],[-98.1883,20.9042],[-98.1951,20.8989],[-98.1985,20.8856],[-98.206,20.8903],[-98.2119,20.8978],[-98.2229,20.8974],[-98.2249,20.9066],[-98.2227,20.9134],[-98.2343,20.9158],[-98.2394,20.923],[-98.2349,20.9411],[-98.2302,20.9448],[-98.2257,20.9594],[-98.2173,20.9535],[-98.2098,20.9707],[-98.2169,20.9737],[-98.2134,20.9829],[-98.215,20.9896],[-98.2017,20.9943],[-98.1995,20.9991],[-98.2027,21.0094],[-98.197,21.0166],[-98.189,21.0183],[-98.1909,21.0264],[-98.1827,21.03],[-98.18,21.0236],[-98.1726,21.0208],[-98.1557,21.0334],[-98.1508,21.0472],[-98.1545,21.0661],[-98.1492,21.0714],[-98.1491,21.083],[-98.1588,21.0907],[-98.171,21.0968],[-98.1749,21.1062],[-98.1876,21.1108],[-98.1761,21.1109],[-98.1627,21.1256],[-98.1558,21.1392],[-98.1433,21.1378],[-98.1362,21.1455],[-98.1214,21.1449],[-98.1163,21.1503],[-98.1142,21.1586],[-98.0922,21.1648],[-98.0885,21.16],[-98.0803,21.1598],[-98.0757,21.1634],[-98.0702,21.1595],[-98.0583,21.1612],[-98.0485,21.1651],[-98.0434,21.1576],[-98.0305,21.1558],[-98.0197,21.1494],[-98.0142,21.1486],[-98.0036,21.155],[-97.9873,21.1585],[-97.9786,21.166],[-97.9643,21.1715],[-97.9639,21.1809],[-97.9569,21.1805],[-97.9519,21.169],[-97.9416,21.1668],[-97.941,21.1504],[-97.9484,21.1306],[-97.9505,21.1153],[-97.943,21.1149],[-97.9425,21.1073],[-97.938,21.1041],[-97.9237,21.1066],[-97.9174,21.1016],[-97.9039,21.0961],[-97.9019,21.0863],[-97.8939,21.0802],[-97.8938,21.0744],[-97.8799,21.0738],[-97.8802,21.0682],[-97.8747,21.0648]]]},properties:{id:"30058",COUNTYID:"058",COUNTY:"Chicontepec",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30058"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-96.4445,19.1863],[-96.4439,19.1765],[-96.4377,19.1701],[-96.4287,19.1731],[-96.4156,19.1682],[-96.4083,19.1725],[-96.4027,19.1719],[-96.4122,19.1589],[-96.4155,19.1495],[-96.4093,19.1472],[-96.4074,19.1339],[-96.3993,19.136],[-96.3952,19.1107],[-96.3971,19.093],[-96.3918,19.0906],[-96.3787,19.0943],[-96.3813,19.0857],[-96.3731,19.076],[-96.3812,19.0656],[-96.3906,19.0477],[-96.3998,19.0447],[-96.3953,19.0374],[-96.3992,19.0323],[-96.3899,19.0251],[-96.3839,19.0253],[-96.3625,19.0192],[-96.3534,19.0202],[-96.3522,19.0153],[-96.3417,19.0167],[-96.3361,19.0108],[-96.3344,19.0029],[-96.3199,18.9994],[-96.321,18.9884],[-96.3246,18.978],[-96.3144,18.9782],[-96.3147,18.9726],[-96.3267,18.967],[-96.3498,18.9713],[-96.3535,18.9623],[-96.3693,18.9481],[-96.3789,18.9475],[-96.3926,18.939],[-96.4052,18.9354],[-96.414,18.9373],[-96.4265,18.9445],[-96.434,18.937],[-96.4438,18.9468],[-96.4587,18.9467],[-96.4622,18.9391],[-96.4666,18.9395],[-96.4783,18.9353],[-96.4851,18.937],[-96.492,18.934],[-96.5168,18.9499],[-96.533,18.9524],[-96.5399,18.9578],[-96.5572,18.9655],[-96.558,18.977],[-96.5514,18.9741],[-96.5408,18.9787],[-96.5268,18.9799],[-96.5264,18.9896],[-96.5203,18.9941],[-96.5103,18.9943],[-96.5052,18.9972],[-96.4938,18.989],[-96.4896,18.9887],[-96.4919,19.0186],[-96.4903,19.0298],[-96.4825,19.0297],[-96.4852,19.0424],[-96.4948,19.048],[-96.5064,19.0403],[-96.5131,19.0405],[-96.5258,19.0457],[-96.5294,19.0438],[-96.5412,19.0522],[-96.5423,19.0571],[-96.5583,19.0581],[-96.5724,19.063],[-96.5843,19.0716],[-96.5627,19.0734],[-96.5572,19.0789],[-96.5654,19.0844],[-96.5695,19.0928],[-96.5677,19.1008],[-96.5515,19.1007],[-96.5496,19.112],[-96.5616,19.1121],[-96.5626,19.1193],[-96.5703,19.1189],[-96.5738,19.133],[-96.5557,19.1325],[-96.5445,19.1305],[-96.5334,19.1355],[-96.5213,19.1372],[-96.5152,19.1345],[-96.5098,19.1368],[-96.4931,19.1387],[-96.495,19.1473],[-96.5003,19.1507],[-96.4971,19.1668],[-96.4877,19.1729],[-96.4896,19.1782],[-96.4788,19.1814],[-96.4747,19.1769],[-96.4679,19.1779],[-96.4548,19.1871],[-96.4445,19.1863]]]},properties:{id:"30148",COUNTYID:"148",COUNTY:"Soledad de Doblado",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30148"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-96.5399,18.9578],[-96.533,18.9524],[-96.5168,18.9499],[-96.492,18.934],[-96.4851,18.937],[-96.4783,18.9353],[-96.4666,18.9395],[-96.4677,18.93],[-96.4811,18.9277],[-96.5,18.9286],[-96.4951,18.9167],[-96.5006,18.9161],[-96.5121,18.922],[-96.5203,18.9192],[-96.5163,18.9125],[-96.494,18.9112],[-96.4974,18.9014],[-96.5065,18.8995],[-96.515,18.9041],[-96.5299,18.9085],[-96.5364,18.9021],[-96.5317,18.8932],[-96.5202,18.8799],[-96.5141,18.8772],[-96.5155,18.8712],[-96.5281,18.8646],[-96.5366,18.8713],[-96.5424,18.8723],[-96.548,18.8787],[-96.5581,18.8825],[-96.5695,18.8818],[-96.573,18.8767],[-96.5858,18.8792],[-96.5909,18.8766],[-96.6006,18.8884],[-96.6174,18.8874],[-96.6255,18.8799],[-96.6354,18.8781],[-96.6446,18.8739],[-96.636,18.8603],[-96.642,18.8606],[-96.6456,18.8508],[-96.6621,18.8559],[-96.668,18.8476],[-96.689,18.8534],[-96.7117,18.8485],[-96.7331,18.8678],[-96.733,18.876],[-96.7392,18.884],[-96.7451,18.8982],[-96.7509,18.8987],[-96.7558,18.9137],[-96.7594,18.9151],[-96.7682,18.9365],[-96.7716,18.9368],[-96.7748,18.9477],[-96.7786,18.9521],[-96.7813,18.9646],[-96.7869,18.9722],[-96.7871,18.9791],[-96.7942,18.995],[-96.7996,19.0016],[-96.8066,18.9962],[-96.8143,18.9987],[-96.8149,19.0089],[-96.8085,19.0136],[-96.8083,19.021],[-96.8043,19.0274],[-96.7916,19.0266],[-96.7817,19.0222],[-96.7689,19.0209],[-96.7546,19.0222],[-96.7427,19.0267],[-96.7249,19.022],[-96.7077,19.0212],[-96.6955,19.0286],[-96.689,19.036],[-96.6762,19.0417],[-96.6755,19.0474],[-96.6635,19.0411],[-96.643,19.0479],[-96.6484,19.0386],[-96.6554,19.034],[-96.6626,19.0353],[-96.6678,19.0199],[-96.6556,19.0181],[-96.6419,19.0136],[-96.6357,19.0189],[-96.6199,19.0219],[-96.6193,19.016],[-96.612,19.0163],[-96.6124,19.0024],[-96.6104,18.9876],[-96.6145,18.9877],[-96.6168,18.9781],[-96.6312,18.9759],[-96.6135,18.9702],[-96.6062,18.9696],[-96.6168,18.9577],[-96.6133,18.9503],[-96.6037,18.9618],[-96.6003,18.955],[-96.5783,18.9605],[-96.5557,18.9581],[-96.5439,18.9543],[-96.5399,18.9578]]]},properties:{id:"30125",COUNTYID:"125",COUNTY:"Paso del Macho",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30125"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-97.1807,20.6707],[-97.1758,20.6593],[-97.1651,20.6415],[-97.1446,20.6143],[-97.1316,20.5998],[-97.1443,20.5987],[-97.1484,20.5944],[-97.1587,20.5954],[-97.1611,20.5855],[-97.1679,20.5859],[-97.1811,20.5746],[-97.1874,20.5725],[-97.1926,20.5651],[-97.1833,20.5523],[-97.1889,20.5436],[-97.2027,20.5389],[-97.2106,20.5386],[-97.2156,20.5274],[-97.2074,20.5281],[-97.1819,20.5228],[-97.1749,20.5164],[-97.1763,20.5078],[-97.1689,20.5052],[-97.1513,20.507],[-97.1479,20.4884],[-97.1526,20.4813],[-97.1595,20.4799],[-97.1596,20.467],[-97.1623,20.4616],[-97.1745,20.4625],[-97.177,20.4484],[-97.1916,20.4468],[-97.1905,20.4347],[-97.1831,20.434],[-97.1865,20.4147],[-97.1807,20.4125],[-97.1732,20.3965],[-97.1631,20.3974],[-97.1644,20.3889],[-97.1557,20.3879],[-97.1472,20.3831],[-97.1417,20.3761],[-97.1436,20.3631],[-97.1464,20.3591],[-97.1416,20.3528],[-97.1409,20.3449],[-97.1555,20.3291],[-97.1448,20.3134],[-97.1356,20.3112],[-97.1379,20.3042],[-97.133,20.3022],[-97.1224,20.3049],[-97.1095,20.3014],[-97.11,20.296],[-97.103,20.2883],[-97.1023,20.2764],[-97.1044,20.2709],[-97.1013,20.2634],[-97.1038,20.2562],[-97.1126,20.2544],[-97.1251,20.2467],[-97.1235,20.2363],[-97.1323,20.23],[-97.1312,20.2211],[-97.1252,20.217],[-97.1322,20.2022],[-97.136,20.2006],[-97.1412,20.1867],[-97.1433,20.1717],[-97.15,20.1606],[-97.1608,20.1608],[-97.1644,20.1518],[-97.2285,20.1726],[-97.2424,20.1745],[-97.2443,20.1812],[-97.2548,20.1773],[-97.2619,20.1775],[-97.2679,20.1822],[-97.2832,20.1811],[-97.2853,20.1907],[-97.3639,20.2161],[-97.3781,20.2261],[-97.3742,20.2355],[-97.3747,20.244],[-97.3793,20.2496],[-97.38,20.2584],[-97.3926,20.2654],[-97.4012,20.2821],[-97.4073,20.2807],[-97.406,20.2903],[-97.4092,20.2995],[-97.3983,20.303],[-97.4095,20.3091],[-97.4195,20.3104],[-97.4335,20.3238],[-97.4377,20.3238],[-97.4553,20.3325],[-97.4587,20.3286],[-97.4703,20.3275],[-97.4813,20.3296],[-97.4938,20.3346],[-97.5159,20.3395],[-97.5103,20.3531],[-97.5191,20.3671],[-97.5158,20.3765],[-97.5021,20.3751],[-97.4959,20.3668],[-97.4854,20.3631],[-97.4787,20.3565],[-97.4722,20.3605],[-97.4685,20.3683],[-97.474,20.3731],[-97.4741,20.3829],[-97.4631,20.4002],[-97.4787,20.4061],[-97.4774,20.4109],[-97.459,20.4139],[-97.451,20.4176],[-97.4478,20.4264],[-97.4518,20.4341],[-97.448,20.4488],[-97.4477,20.4565],[-97.441,20.459],[-97.4286,20.459],[-97.4179,20.461],[-97.3993,20.4696],[-97.397,20.4807],[-97.404,20.4877],[-97.4,20.5034],[-97.4046,20.5268],[-97.4116,20.5461],[-97.4107,20.5537],[-97.4148,20.5687],[-97.4202,20.5796],[-97.4263,20.5846],[-97.4388,20.5901],[-97.4404,20.5968],[-97.437,20.6015],[-97.4237,20.6037],[-97.4191,20.6133],[-97.4121,20.6156],[-97.4119,20.6259],[-97.4041,20.6224],[-97.3995,20.6278],[-97.4009,20.6341],[-97.3866,20.6483],[-97.3805,20.649],[-97.3796,20.6548],[-97.3658,20.6518],[-97.3587,20.6533],[-97.351,20.6492],[-97.3432,20.6516],[-97.342,20.6559],[-97.3267,20.6523],[-97.3078,20.6597],[-97.3016,20.6596],[-97.295,20.6476],[-97.2975,20.6396],[-97.3054,20.6354],[-97.2994,20.6276],[-97.2923,20.6267],[-97.2937,20.6171],[-97.2792,20.617],[-97.2807,20.6255],[-97.2769,20.6341],[-97.2615,20.6492],[-97.2641,20.6543],[-97.2536,20.6553],[-97.2496,20.6594],[-97.2434,20.654],[-97.2309,20.6603],[-97.2255,20.655],[-97.2151,20.6534],[-97.2034,20.6646],[-97.2026,20.6714],[-97.1851,20.6732],[-97.1807,20.6707]]]},properties:{id:"30124",COUNTYID:"124",COUNTY:"Papantla",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30124"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-94.4601,18.0285],[-94.4482,18.0163],[-94.4483,18.0115],[-94.4421,18.0068],[-94.4416,17.9987],[-94.4306,17.9971],[-94.4315,17.9895],[-94.4278,17.9807],[-94.4333,17.9757],[-94.437,17.9673],[-94.4434,17.9639],[-94.4498,17.9505],[-94.4454,17.9463],[-94.445,17.9386],[-94.4492,17.9333],[-94.4381,17.9237],[-94.4414,17.9168],[-94.4345,17.9097],[-94.4192,17.9105],[-94.4127,17.9125],[-94.4012,17.906],[-94.3939,17.9056],[-94.3791,17.9116],[-94.3705,17.8984],[-94.3559,17.9128],[-94.3526,17.9133],[-94.3332,17.9047],[-94.3035,17.911],[-94.2988,17.903],[-94.2937,17.9047],[-94.2907,17.8971],[-94.2773,17.8903],[-94.2672,17.8878],[-94.2714,17.8735],[-94.2679,17.869],[-94.2719,17.8624],[-94.2791,17.8646],[-94.2903,17.8559],[-94.2951,17.8616],[-94.2856,17.8637],[-94.2906,17.8711],[-94.3023,17.8639],[-94.2943,17.852],[-94.3128,17.8496],[-94.3081,17.8411],[-94.2971,17.8385],[-94.2932,17.8422],[-94.282,17.8433],[-94.2722,17.85],[-94.2635,17.8498],[-94.2595,17.8373],[-94.2494,17.8447],[-94.241,17.8409],[-94.2157,17.8579],[-94.2069,17.8588],[-94.1996,17.8514],[-94.1998,17.8419],[-94.2176,17.8121],[-94.2221,17.7988],[-94.2144,17.7971],[-94.2076,17.7989],[-94.1996,17.793],[-94.2003,17.7859],[-94.2099,17.7821],[-94.2175,17.7747],[-94.2255,17.7616],[-94.2179,17.7502],[-94.2185,17.7423],[-94.2255,17.7324],[-94.2109,17.733],[-94.1983,17.7251],[-94.1866,17.7129],[-94.1832,17.705],[-94.1909,17.6983],[-94.1903,17.6924],[-94.1796,17.6821],[-94.1787,17.6756],[-94.1879,17.672],[-94.1967,17.6659],[-94.2015,17.6565],[-94.1807,17.6525],[-94.1688,17.6589],[-94.1691,17.6497],[-94.1593,17.6399],[-94.1463,17.6369],[-94.1466,17.632],[-94.1583,17.6273],[-94.169,17.6045],[-94.1648,17.5994],[-94.1506,17.6068],[-94.144,17.5989],[-94.1278,17.5954],[-94.1227,17.5907],[-94.126,17.5853],[-94.1373,17.577],[-94.1436,17.5748],[-94.152,17.5818],[-94.1597,17.5747],[-94.1657,17.5731],[-94.1687,17.5835],[-94.1768,17.582],[-94.1802,17.5711],[-94.1906,17.5649],[-94.1941,17.5809],[-94.1969,17.5862],[-94.2028,17.5865],[-94.2055,17.5784],[-94.213,17.5822],[-94.2201,17.5815],[-94.2234,17.5729],[-94.2207,17.564],[-94.2252,17.5593],[-94.2204,17.5549],[-94.205,17.5535],[-94.198,17.5472],[-94.2041,17.5404],[-94.2112,17.5415],[-94.2236,17.5469],[-94.2344,17.5373],[-94.2364,17.5312],[-94.2295,17.5244],[-94.2273,17.5179],[-94.2293,17.5107],[-94.218,17.5111],[-94.2098,17.5087],[-94.2042,17.5176],[-94.197,17.5052],[-94.2076,17.499],[-94.2035,17.491],[-94.2092,17.4885],[-94.2172,17.4984],[-94.2281,17.4909],[-94.2313,17.4694],[-94.2254,17.4483],[-94.2192,17.4425],[-94.2101,17.4286],[-94.2013,17.4191],[-94.1983,17.4099],[-94.19,17.4133],[-94.1854,17.411],[-94.1857,17.3906],[-94.1979,17.3807],[-94.1988,17.3759],[-94.2059,17.3701],[-94.2165,17.3574],[-94.2153,17.348],[-94.2108,17.3408],[-94.2082,17.3239],[-94.2163,17.3168],[-94.2557,17.4012],[-94.3335,17.3973],[-94.3495,17.3973],[-94.36,17.4033],[-94.3616,17.4143],[-94.3687,17.4272],[-94.3734,17.4296],[-94.3508,17.4365],[-94.3565,17.4513],[-94.4289,17.428],[-94.4297,17.4356],[-94.4345,17.4395],[-94.4325,17.4538],[-94.4364,17.4672],[-94.4453,17.4711],[-94.4441,17.4803],[-94.4566,17.482],[-94.4547,17.4895],[-94.4637,17.4895],[-94.4711,17.5047],[-94.4716,17.5137],[-94.468,17.516],[-94.4733,17.5315],[-94.4723,17.5549],[-94.462,17.5626],[-94.4584,17.5683],[-94.4513,17.5704],[-94.4477,17.5814],[-94.439,17.5886],[-94.4419,17.5975],[-94.4355,17.608],[-94.4409,17.6131],[-94.4391,17.6179],[-94.4511,17.6276],[-94.4608,17.6266],[-94.4656,17.6307],[-94.466,17.64],[-94.4797,17.6452],[-94.4847,17.652],[-94.5019,17.6464],[-94.5075,17.6484],[-94.5174,17.6439],[-94.5264,17.6458],[-94.5287,17.6511],[-94.5354,17.6534],[-94.5394,17.647],[-94.5535,17.6419],[-94.5563,17.6554],[-94.561,17.6554],[-94.5682,17.6474],[-94.5775,17.6474],[-94.58,17.6569],[-94.5904,17.7111],[-94.5817,17.7128],[-94.5824,17.7196],[-94.5915,17.7287],[-94.6026,17.7277],[-94.5991,17.7398],[-94.607,17.763],[-94.5999,17.7721],[-94.5958,17.7811],[-94.5875,17.7852],[-94.5799,17.7992],[-94.5718,17.8076],[-94.5777,17.8163],[-94.5886,17.8147],[-94.6051,17.8075],[-94.6081,17.8153],[-94.6179,17.8247],[-94.6161,17.8305],[-94.6252,17.8342],[-94.626,17.8386],[-94.6337,17.844],[-94.6421,17.8615],[-94.6554,17.8666],[-94.6466,17.8699],[-94.6375,17.8773],[-94.6198,17.8853],[-94.6228,17.8952],[-94.6223,17.902],[-94.6121,17.8995],[-94.5992,17.8994],[-94.5889,17.8964],[-94.5857,17.9064],[-94.5765,17.9139],[-94.5747,17.922],[-94.5657,17.9406],[-94.5686,17.9516],[-94.5643,17.9609],[-94.5775,17.9649],[-94.5946,17.9822],[-94.5871,17.9894],[-94.5847,18.0075],[-94.574,18.0103],[-94.567,18.0044],[-94.5582,18.0018],[-94.5328,18.0284],[-94.5357,18.0308],[-94.5556,18.0241],[-94.5532,18.0205],[-94.5649,18.0131],[-94.5703,18.0221],[-94.5781,18.0266],[-94.5715,18.0321],[-94.5715,18.0533],[-94.5757,18.0616],[-94.5757,18.0696],[-94.5798,18.0819],[-94.5757,18.0888],[-94.5665,18.092],[-94.551,18.0708],[-94.516,18.0687],[-94.5033,18.0525],[-94.4959,18.0475],[-94.5029,18.0415],[-94.5032,18.0322],[-94.4861,18.0202],[-94.4703,18.0284],[-94.4601,18.0285]]]},properties:{id:"30108",COUNTYID:"108",COUNTY:"Minatitlán",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30108"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-96.3771,19.4007],[-96.3732,19.3806],[-96.3819,19.3723],[-96.3848,19.3606],[-96.3931,19.3478],[-96.4122,19.355],[-96.4139,19.35],[-96.4223,19.3516],[-96.4253,19.3469],[-96.4253,19.3351],[-96.4396,19.3316],[-96.4406,19.3272],[-96.4526,19.3182],[-96.4678,19.315],[-96.4697,19.3054],[-96.4768,19.3046],[-96.4877,19.2942],[-96.4928,19.2945],[-96.4943,19.2854],[-96.502,19.2848],[-96.5167,19.2748],[-96.5166,19.2724],[-96.539,19.2577],[-96.5426,19.2499],[-96.5592,19.2439],[-96.5605,19.2409],[-96.5884,19.2295],[-96.5922,19.2323],[-96.6008,19.2239],[-96.6066,19.2143],[-96.6103,19.2153],[-96.6242,19.2039],[-96.6396,19.1987],[-96.6503,19.1982],[-96.6509,19.209],[-96.6696,19.2033],[-96.6701,19.2006],[-96.6851,19.1932],[-96.6951,19.1887],[-96.7069,19.1908],[-96.6961,19.2016],[-96.7198,19.2018],[-96.7389,19.2042],[-96.7465,19.2022],[-96.7545,19.1969],[-96.7701,19.1968],[-96.7809,19.1997],[-96.7868,19.2035],[-96.8108,19.2011],[-96.8189,19.2028],[-96.8067,19.21],[-96.8073,19.2196],[-96.8006,19.2201],[-96.789,19.2256],[-96.7679,19.2297],[-96.7432,19.2414],[-96.7296,19.2455],[-96.7237,19.2499],[-96.7159,19.2488],[-96.7016,19.2554],[-96.6952,19.2542],[-96.6753,19.271],[-96.6551,19.2721],[-96.6511,19.2779],[-96.6353,19.2776],[-96.6263,19.285],[-96.6195,19.2872],[-96.6136,19.293],[-96.6136,19.3036],[-96.6043,19.3094],[-96.6038,19.316],[-96.5976,19.3211],[-96.5911,19.3198],[-96.5867,19.3265],[-96.5769,19.3254],[-96.5703,19.3366],[-96.5624,19.3419],[-96.5636,19.3606],[-96.543,19.3694],[-96.5423,19.3822],[-96.5438,19.3909],[-96.5407,19.3976],[-96.5334,19.4021],[-96.5248,19.4033],[-96.5176,19.3983],[-96.5127,19.4029],[-96.5166,19.4115],[-96.5131,19.4179],[-96.5036,19.4204],[-96.4944,19.4194],[-96.4887,19.4317],[-96.4808,19.4383],[-96.4773,19.4357],[-96.4739,19.4231],[-96.4678,19.4094],[-96.4658,19.3973],[-96.4563,19.3976],[-96.447,19.3944],[-96.4344,19.397],[-96.4234,19.4085],[-96.4111,19.4116],[-96.4016,19.4072],[-96.4011,19.4017],[-96.3771,19.4007]]]},properties:{id:"30134",COUNTYID:"134",COUNTY:"Puente Nacional",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30134"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-98.2314,20.6118],[-98.2309,20.6053],[-98.2372,20.5998],[-98.2377,20.5913],[-98.2422,20.565],[-98.2385,20.5612],[-98.2417,20.5537],[-98.2547,20.5409],[-98.2544,20.5356],[-98.2642,20.5301],[-98.2687,20.5317],[-98.287,20.5197],[-98.2878,20.5076],[-98.286,20.502],[-98.278,20.4954],[-98.2637,20.4914],[-98.2712,20.4818],[-98.2755,20.4811],[-98.2774,20.4727],[-98.2946,20.4603],[-98.2997,20.4587],[-98.3157,20.4457],[-98.3139,20.4395],[-98.321,20.418],[-98.3372,20.4141],[-98.3553,20.4018],[-98.3605,20.3998],[-98.3694,20.4019],[-98.3762,20.3985],[-98.3862,20.4027],[-98.4013,20.4093],[-98.4055,20.4031],[-98.413,20.4007],[-98.414,20.408],[-98.4294,20.4001],[-98.4446,20.3998],[-98.4449,20.4168],[-98.4379,20.4218],[-98.4411,20.4303],[-98.4314,20.4418],[-98.4257,20.4448],[-98.4196,20.4545],[-98.4116,20.462],[-98.4131,20.4685],[-98.4052,20.4766],[-98.4038,20.4822],[-98.4304,20.513],[-98.429,20.5244],[-98.4247,20.5238],[-98.4241,20.5359],[-98.4149,20.538],[-98.4135,20.5324],[-98.4045,20.5331],[-98.3986,20.5417],[-98.3864,20.5459],[-98.3814,20.558],[-98.3697,20.5614],[-98.3466,20.5496],[-98.3374,20.5506],[-98.3332,20.5556],[-98.3231,20.5587],[-98.3237,20.5672],[-98.3216,20.577],[-98.3234,20.5822],[-98.3168,20.5894],[-98.3066,20.5892],[-98.2973,20.5853],[-98.2968,20.5746],[-98.2844,20.5847],[-98.2723,20.5877],[-98.2568,20.5967],[-98.2491,20.6047],[-98.2314,20.6118]]]},properties:{id:"30198",COUNTYID:"198",COUNTY:"Zacualpan",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30198"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-97.1617,18.7637],[-97.151,18.7644],[-97.1447,18.762],[-97.1405,18.7673],[-97.1307,18.7663],[-97.1355,18.7616],[-97.1329,18.7543],[-97.1355,18.737],[-97.1322,18.7303],[-97.1374,18.7166],[-97.1378,18.6992],[-97.1348,18.6894],[-97.1359,18.6839],[-97.1471,18.673],[-97.1547,18.6749],[-97.1597,18.6852],[-97.1663,18.6868],[-97.1792,18.6757],[-97.1854,18.6678],[-97.1784,18.6598],[-97.1713,18.6643],[-97.1589,18.6642],[-97.1661,18.6526],[-97.1728,18.6548],[-97.1795,18.6527],[-97.1994,18.6381],[-97.2266,18.6388],[-97.2354,18.6436],[-97.2438,18.6469],[-97.2403,18.6663],[-97.2309,18.6729],[-97.2306,18.6811],[-97.2225,18.6835],[-97.2217,18.6911],[-97.23,18.6943],[-97.2335,18.702],[-97.2163,18.719],[-97.2237,18.7319],[-97.2194,18.7394],[-97.2106,18.7408],[-97.2118,18.7479],[-97.2176,18.7502],[-97.2253,18.7583],[-97.2163,18.7662],[-97.2185,18.7694],[-97.2065,18.7804],[-97.1943,18.7699],[-97.197,18.7628],[-97.1877,18.757],[-97.1743,18.7588],[-97.1705,18.7635],[-97.1617,18.7637]]]},properties:{id:"30147",COUNTYID:"147",COUNTY:"Soledad Atzompa",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30147"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-97.6797,20.2629],[-97.684,20.2602],[-97.6856,20.2509],[-97.693,20.2482],[-97.698,20.2427],[-97.7052,20.2275],[-97.7207,20.2399],[-97.7261,20.2463],[-97.7365,20.2441],[-97.739,20.2532],[-97.7454,20.2589],[-97.7512,20.2601],[-97.7573,20.2791],[-97.7488,20.2788],[-97.7409,20.2746],[-97.7308,20.2811],[-97.7223,20.2841],[-97.7084,20.2853],[-97.707,20.2992],[-97.703,20.3029],[-97.695,20.3004],[-97.6881,20.3035],[-97.6814,20.3024],[-97.6768,20.3069],[-97.6741,20.2955],[-97.6668,20.2829],[-97.6627,20.2843],[-97.6644,20.2693],[-97.6731,20.2619],[-97.6797,20.2629]]]},properties:{id:"30037",COUNTYID:"037",COUNTY:"Coahuitlán",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30037"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-96.9264,18.8022],[-96.9242,18.7949],[-96.9324,18.7897],[-96.937,18.7816],[-96.9408,18.7783],[-96.9546,18.7772],[-96.9628,18.7707],[-96.9751,18.7797],[-96.9804,18.7936],[-96.9748,18.7988],[-96.9766,18.8052],[-96.9749,18.8128],[-96.9771,18.8205],[-96.9716,18.8254],[-96.964,18.8205],[-96.9625,18.8139],[-96.9514,18.8105],[-96.9491,18.804],[-96.9264,18.8022]]]},properties:{id:"30113",COUNTYID:"113",COUNTY:"Naranjal",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30113"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-96.9153,18.761],[-96.902,18.7514],[-96.8957,18.7506],[-96.893,18.7421],[-96.8849,18.7449],[-96.8897,18.7254],[-96.8978,18.7184],[-96.8862,18.715],[-96.8823,18.6938],[-96.8837,18.6867],[-96.8758,18.6869],[-96.8665,18.6757],[-96.8681,18.6647],[-96.864,18.6596],[-96.876,18.6469],[-96.8798,18.6392],[-96.8803,18.6252],[-96.8757,18.6212],[-96.8642,18.6272],[-96.8616,18.6095],[-96.8523,18.6103],[-96.8444,18.5924],[-96.8337,18.588],[-96.8364,18.5723],[-96.8399,18.5656],[-96.8415,18.5544],[-96.8478,18.5472],[-96.8659,18.5398],[-96.863,18.5299],[-96.8663,18.5259],[-96.8735,18.5232],[-96.8788,18.5375],[-96.8859,18.5335],[-96.8993,18.5486],[-96.9067,18.5468],[-96.9096,18.5398],[-96.9259,18.5349],[-96.9316,18.5405],[-96.9421,18.5441],[-96.953,18.5539],[-96.9645,18.547],[-96.9652,18.5417],[-96.9746,18.5437],[-96.9738,18.5368],[-96.9848,18.5312],[-96.9962,18.5285],[-96.9989,18.5319],[-96.9839,18.5465],[-96.9772,18.5453],[-96.9744,18.5534],[-96.9549,18.5603],[-96.9522,18.563],[-96.9441,18.5549],[-96.939,18.5602],[-96.9428,18.5678],[-96.9324,18.574],[-96.9348,18.5815],[-96.9286,18.5865],[-96.9356,18.5933],[-96.9343,18.6027],[-96.9372,18.6129],[-96.9441,18.6221],[-96.954,18.6239],[-96.949,18.6317],[-96.9493,18.6465],[-96.9586,18.6499],[-96.9622,18.6471],[-96.9744,18.6466],[-96.9769,18.6422],[-96.9582,18.6338],[-96.9629,18.6283],[-96.9738,18.6292],[-96.9746,18.6348],[-96.9816,18.6365],[-96.9847,18.632],[-96.9951,18.626],[-97.0083,18.6364],[-97.0149,18.6344],[-97.0202,18.6509],[-97.0243,18.6726],[-97.0227,18.6774],[-97.0079,18.6866],[-97.0146,18.6954],[-97.0139,18.7032],[-97.0041,18.7003],[-96.9935,18.7039],[-96.9859,18.7271],[-96.9741,18.7342],[-96.9645,18.7462],[-96.9586,18.7477],[-96.9525,18.7542],[-96.9614,18.7613],[-96.9628,18.7707],[-96.9546,18.7772],[-96.9408,18.7783],[-96.937,18.7816],[-96.9281,18.7807],[-96.9278,18.7739],[-96.9312,18.766],[-96.9374,18.7667],[-96.9375,18.7551],[-96.9259,18.7567],[-96.9153,18.761]]]},properties:{id:"30201",COUNTYID:"201",COUNTY:"Zongolica",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30201"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-95.3887,18.1779],[-95.3811,18.1662],[-95.3767,18.1761],[-95.3688,18.1696],[-95.3586,18.1709],[-95.3519,18.1593],[-95.3385,18.1518],[-95.3365,18.1463],[-95.3297,18.1476],[-95.3235,18.1408],[-95.3246,18.1325],[-95.3088,18.1308],[-95.3088,18.1246],[-95.3027,18.1237],[-95.2809,18.1279],[-95.2741,18.1243],[-95.2834,18.1182],[-95.2824,18.1147],[-95.2722,18.112],[-95.2642,18.1217],[-95.2599,18.1235],[-95.2493,18.1047],[-95.2328,18.0943],[-95.227,18.0853],[-95.234,18.0769],[-95.235,18.0718],[-95.2282,18.0625],[-95.2318,18.0586],[-95.2385,18.0636],[-95.2451,18.061],[-95.2414,18.0519],[-95.2342,18.0488],[-95.2223,18.0507],[-95.2216,18.0433],[-95.2134,18.0307],[-95.2083,18.0308],[-95.2084,18.0404],[-95.2005,18.0403],[-95.1972,18.0343],[-95.2077,18.0194],[-95.2085,18.0149],[-95.2033,18.0013],[-95.1976,17.9962],[-95.1959,17.9854],[-95.1995,17.9814],[-95.2082,17.9859],[-95.213,17.981],[-95.2176,17.9712],[-95.2301,17.9743],[-95.2371,17.9816],[-95.2443,17.9784],[-95.2395,17.9686],[-95.2399,17.9481],[-95.2386,17.9355],[-95.2462,17.9298],[-95.2437,17.9236],[-95.2474,17.9201],[-95.2416,17.9137],[-95.2461,17.9014],[-95.2343,17.8886],[-95.237,17.8758],[-95.2442,17.8776],[-95.2557,17.8771],[-95.2599,17.8807],[-95.2741,17.8763],[-95.2792,17.8717],[-95.2776,17.8656],[-95.2774,17.847],[-95.2832,17.8405],[-95.2789,17.8332],[-95.2793,17.8148],[-95.2853,17.8082],[-95.3016,17.7964],[-95.3101,17.7952],[-95.3058,17.8086],[-95.3178,17.8121],[-95.322,17.8111],[-95.3286,17.8172],[-95.3477,17.817],[-95.3512,17.8028],[-95.3501,17.7982],[-95.3634,17.7998],[-95.362,17.7905],[-95.3729,17.7957],[-95.3983,17.7873],[-95.4,17.7839],[-95.4121,17.7834],[-95.4202,17.7782],[-95.421,17.771],[-95.4292,17.7642],[-95.4344,17.7531],[-95.4384,17.7558],[-95.4394,17.7638],[-95.4459,17.7735],[-95.4562,17.77],[-95.4686,17.7736],[-95.4725,17.7827],[-95.475,17.802],[-95.4726,17.8043],[-95.4724,17.8177],[-95.4752,17.8282],[-95.4811,17.8353],[-95.4921,17.8328],[-95.4976,17.8352],[-95.4949,17.8441],[-95.4804,17.8443],[-95.4775,17.8575],[-95.4817,17.8609],[-95.4889,17.8726],[-95.4959,17.8733],[-95.5018,17.8777],[-95.5132,17.8771],[-95.5222,17.8882],[-95.5229,17.8984],[-95.5164,17.9016],[-95.5042,17.9017],[-95.4998,17.908],[-95.4915,17.9101],[-95.479,17.908],[-95.4751,17.9136],[-95.4769,17.9193],[-95.4671,17.9288],[-95.4591,17.9215],[-95.4435,17.9406],[-95.4506,17.94],[-95.4503,17.9502],[-95.4423,17.9499],[-95.434,17.9572],[-95.4378,17.9698],[-95.4465,17.9731],[-95.4349,17.9843],[-95.4345,17.9898],[-95.4414,17.9933],[-95.4392,18.0047],[-95.4326,18.0099],[-95.4307,18.0204],[-95.4466,18.0278],[-95.4693,18.0587],[-95.482,18.0736],[-95.4986,18.0904],[-95.5006,18.1016],[-95.5137,18.1117],[-95.5181,18.1177],[-95.5173,18.128],[-95.5109,18.1429],[-95.5108,18.1506],[-95.506,18.1591],[-95.4954,18.166],[-95.4905,18.1741],[-95.4879,18.1856],[-95.48,18.1933],[-95.4583,18.1739],[-95.4467,18.1559],[-95.4317,18.1591],[-95.4231,18.1629],[-95.4165,18.1714],[-95.4045,18.1699],[-95.3984,18.1788],[-95.3887,18.1779]]]},properties:{id:"30094",COUNTYID:"094",COUNTY:"Juan Rodríguez Clara",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30094"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-94.4241,18.098],[-94.4161,18.0825],[-94.4143,18.0684],[-94.4221,18.0524],[-94.4276,18.0503],[-94.4449,18.0562],[-94.4569,18.0492],[-94.4595,18.0404],[-94.4601,18.0285],[-94.4703,18.0284],[-94.4861,18.0202],[-94.5032,18.0322],[-94.5029,18.0415],[-94.4959,18.0475],[-94.5033,18.0525],[-94.516,18.0687],[-94.551,18.0708],[-94.5665,18.092],[-94.5757,18.0888],[-94.5798,18.0819],[-94.5757,18.0696],[-94.5757,18.0616],[-94.5715,18.0533],[-94.5715,18.0321],[-94.5781,18.0266],[-94.5703,18.0221],[-94.5649,18.0131],[-94.5532,18.0205],[-94.5556,18.0241],[-94.5357,18.0308],[-94.5328,18.0284],[-94.5582,18.0018],[-94.567,18.0044],[-94.574,18.0103],[-94.5847,18.0075],[-94.5871,17.9894],[-94.5946,17.9822],[-94.5775,17.9649],[-94.5643,17.9609],[-94.5686,17.9516],[-94.5657,17.9406],[-94.5747,17.922],[-94.5765,17.9139],[-94.5857,17.9064],[-94.5889,17.8964],[-94.5992,17.8994],[-94.6121,17.8995],[-94.6223,17.902],[-94.6228,17.8952],[-94.6198,17.8853],[-94.6375,17.8773],[-94.6466,17.8699],[-94.6591,17.8748],[-94.6669,17.8724],[-94.6738,17.8747],[-94.6795,17.8811],[-94.6896,17.8867],[-94.6819,17.8916],[-94.6802,17.8993],[-94.6874,17.9053],[-94.6898,17.9181],[-94.685,17.9359],[-94.6811,17.9422],[-94.6741,17.9404],[-94.6714,17.9557],[-94.6663,17.9485],[-94.6569,17.9481],[-94.6526,17.9401],[-94.6437,17.9336],[-94.6372,17.9329],[-94.6285,17.9247],[-94.6225,17.9237],[-94.6184,17.9302],[-94.6086,17.9346],[-94.615,17.9506],[-94.6134,17.9646],[-94.6213,17.966],[-94.6224,17.9609],[-94.6318,17.9659],[-94.6362,17.9717],[-94.647,17.9633],[-94.6543,17.9717],[-94.6591,17.9781],[-94.6527,17.9856],[-94.6497,18.0054],[-94.651,18.0175],[-94.6189,18.0387],[-94.6116,18.0534],[-94.6041,18.0598],[-94.6037,18.0731],[-94.5959,18.0748],[-94.5879,18.0907],[-94.5942,18.0963],[-94.5879,18.1047],[-94.5898,18.1083],[-94.5849,18.1216],[-94.5775,18.1228],[-94.5668,18.1278],[-94.5567,18.1363],[-94.5459,18.1377],[-94.5369,18.1419],[-94.5284,18.1334],[-94.5165,18.1292],[-94.5134,18.1169],[-94.5169,18.112],[-94.5247,18.1119],[-94.5232,18.1043],[-94.5092,18.1011],[-94.4961,18.1071],[-94.4838,18.1095],[-94.4778,18.1079],[-94.4701,18.1119],[-94.4656,18.1034],[-94.4532,18.1065],[-94.4456,18.1026],[-94.4427,18.1093],[-94.4369,18.1097],[-94.437,18.096],[-94.4305,18.0935],[-94.4241,18.098]]]},properties:{id:"30048",COUNTYID:"048",COUNTY:"Cosoleacaque",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30048"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-98.2249,20.9066],[-98.2229,20.8974],[-98.2119,20.8978],[-98.206,20.8903],[-98.1985,20.8856],[-98.1951,20.8989],[-98.1883,20.9042],[-98.1678,20.8968],[-98.1661,20.8917],[-98.1573,20.8838],[-98.1459,20.8823],[-98.1384,20.8848],[-98.133,20.8925],[-98.1246,20.8946],[-98.1288,20.8795],[-98.1185,20.8808],[-98.1135,20.8736],[-98.1097,20.8632],[-98.1141,20.8533],[-98.1165,20.8396],[-98.121,20.8361],[-98.1211,20.8274],[-98.1288,20.8274],[-98.1296,20.8201],[-98.1344,20.8156],[-98.134,20.8087],[-98.1279,20.8088],[-98.1263,20.8009],[-98.1152,20.8052],[-98.1126,20.7995],[-98.0999,20.7969],[-98.1023,20.7921],[-98.1111,20.7908],[-98.0985,20.7789],[-98.088,20.7774],[-98.0931,20.7602],[-98.1009,20.7525],[-98.1029,20.7604],[-98.1096,20.7616],[-98.1136,20.7469],[-98.1129,20.7413],[-98.1045,20.7368],[-98.1097,20.7274],[-98.1297,20.7288],[-98.1382,20.7339],[-98.1428,20.7428],[-98.1551,20.741],[-98.1721,20.7358],[-98.1794,20.7405],[-98.1848,20.7392],[-98.1928,20.7382],[-98.2046,20.7464],[-98.1975,20.7542],[-98.1961,20.7606],[-98.2033,20.7614],[-98.2076,20.757],[-98.2196,20.7553],[-98.226,20.7588],[-98.2318,20.7672],[-98.238,20.7869],[-98.2424,20.7923],[-98.248,20.7894],[-98.2489,20.7964],[-98.243,20.8006],[-98.2363,20.7968],[-98.2269,20.8162],[-98.2394,20.8179],[-98.2538,20.8228],[-98.2521,20.8278],[-98.2589,20.834],[-98.2623,20.8469],[-98.2546,20.849],[-98.2588,20.8551],[-98.2562,20.859],[-98.2654,20.8664],[-98.2608,20.8715],[-98.251,20.8973],[-98.2324,20.9001],[-98.2249,20.9066]]]},properties:{id:"30027",COUNTYID:"027",COUNTY:"Benito Juárez",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30027"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-98.1595,21.7115],[-98.1554,21.7071],[-98.1581,21.6966],[-98.1546,21.6895],[-98.1481,21.6926],[-98.1463,21.6841],[-98.1485,21.679],[-98.1363,21.6671],[-98.1279,21.6643],[-98.1277,21.6596],[-98.1098,21.6538],[-98.1072,21.6481],[-98.0995,21.6465],[-98.0879,21.6412],[-98.0829,21.6334],[-98.0898,21.6322],[-98.094,21.6357],[-98.1022,21.631],[-98.1076,21.6233],[-98.1061,21.6113],[-98.1095,21.6015],[-98.1093,21.5941],[-98.1189,21.5924],[-98.1245,21.5946],[-98.1364,21.5879],[-98.1485,21.5886],[-98.1473,21.5803],[-98.1573,21.574],[-98.1582,21.5684],[-98.1743,21.5724],[-98.179,21.5707],[-98.184,21.5807],[-98.1889,21.5821],[-98.2027,21.5797],[-98.2321,21.5638],[-98.2274,21.5547],[-98.2401,21.5525],[-98.2444,21.5462],[-98.2422,21.5416],[-98.2524,21.5324],[-98.2496,21.5174],[-98.2551,21.5075],[-98.2433,21.4968],[-98.2446,21.4883],[-98.2377,21.4824],[-98.2412,21.4723],[-98.249,21.478],[-98.2576,21.4717],[-98.2441,21.4633],[-98.2446,21.4582],[-98.2673,21.4569],[-98.2662,21.4771],[-98.2595,21.4875],[-98.2622,21.4946],[-98.27,21.5033],[-98.2854,21.4908],[-98.2939,21.4804],[-98.3074,21.4758],[-98.3155,21.4678],[-98.3201,21.4713],[-98.3189,21.4786],[-98.3293,21.4765],[-98.3249,21.469],[-98.3245,21.4625],[-98.3359,21.468],[-98.3459,21.459],[-98.3416,21.4479],[-98.3334,21.4384],[-98.3292,21.4253],[-98.3317,21.4195],[-98.3389,21.4141],[-98.3517,21.3921],[-98.3591,21.39],[-98.3648,21.3947],[-98.3655,21.4013],[-98.3766,21.4087],[-98.3827,21.4136],[-98.3952,21.4156],[-98.397,21.4103],[-98.4063,21.4025],[-98.4065,21.3891],[-98.4137,21.3837],[-98.4262,21.3897],[-98.4381,21.3929],[-98.4475,21.3998],[-98.457,21.3968],[-98.4589,21.3911],[-98.4497,21.3847],[-98.4529,21.379],[-98.4644,21.3812],[-98.4674,21.3786],[-98.4693,21.3882],[-98.4729,21.3912],[-98.4806,21.3882],[-98.4798,21.3966],[-98.4941,21.3875],[-98.5015,21.3856],[-98.5079,21.3919],[-98.511,21.4007],[-98.5209,21.4041],[-98.5193,21.4155],[-98.5224,21.437],[-98.5199,21.4465],[-98.5205,21.4575],[-98.5169,21.4607],[-98.5266,21.4782],[-98.5334,21.4868],[-98.5359,21.4939],[-98.5323,21.5011],[-98.5425,21.51],[-98.543,21.5138],[-98.5538,21.5161],[-98.5575,21.522],[-98.5678,21.5223],[-98.5949,21.5379],[-98.6007,21.5388],[-98.6001,21.5544],[-98.6078,21.5558],[-98.6058,21.5654],[-98.6095,21.5748],[-98.6182,21.5788],[-98.622,21.5912],[-98.6194,21.6025],[-98.6192,21.6151],[-98.6211,21.6278],[-98.6262,21.6304],[-98.6359,21.6264],[-98.6437,21.6313],[-98.6373,21.6354],[-98.6337,21.6426],[-98.6332,21.6539],[-98.6227,21.6526],[-98.6174,21.6556],[-98.6092,21.6682],[-98.6131,21.6721],[-98.6231,21.6718],[-98.6259,21.6756],[-98.622,21.6824],[-98.6167,21.6839],[-98.6106,21.6775],[-98.597,21.6687],[-98.5799,21.6718],[-98.5695,21.6823],[-98.5617,21.6829],[-98.5583,21.6877],[-98.5508,21.6915],[-98.5365,21.6463],[-98.5302,21.6481],[-98.5162,21.6438],[-98.5149,21.6478],[-98.4894,21.6586],[-98.481,21.67],[-98.448,21.6778],[-98.4423,21.6758],[-98.4302,21.666],[-98.4222,21.6639],[-98.4185,21.657],[-98.374,21.6618],[-98.3667,21.6675],[-98.3257,21.6719],[-98.324,21.6868],[-98.313,21.6894],[-98.2599,21.7013],[-98.2433,21.7029],[-98.2424,21.7057],[-98.2274,21.7036],[-98.2252,21.7143],[-98.2102,21.712],[-98.2051,21.7218],[-98.1956,21.7201],[-98.1904,21.715],[-98.1595,21.7115]]]},properties:{id:"30161",COUNTYID:"161",COUNTY:"Tempoal",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30161"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-97.1478,19.4478],[-97.1397,19.4349],[-97.1345,19.4227],[-97.1152,19.4221],[-97.1105,19.4196],[-97.0983,19.4227],[-97.0906,19.4172],[-97.0821,19.4156],[-97.0657,19.4006],[-97.0574,19.3949],[-97.0474,19.3964],[-97.0306,19.3916],[-97.0278,19.3857],[-97.0418,19.3827],[-97.0479,19.3772],[-97.0421,19.3711],[-97.0468,19.3633],[-97.0353,19.3565],[-97.0354,19.3528],[-97.0281,19.3443],[-97.0345,19.3361],[-97.0303,19.3252],[-97.0242,19.3189],[-97.0072,19.3183],[-97.0003,19.3063],[-96.9807,19.2898],[-96.9715,19.2898],[-96.9857,19.28],[-96.9938,19.2878],[-97.0005,19.2908],[-97.0035,19.2964],[-97.0194,19.2969],[-97.0242,19.2944],[-97.031,19.2973],[-97.0345,19.3068],[-97.0418,19.3123],[-97.0466,19.3198],[-97.0551,19.3122],[-97.0679,19.3214],[-97.0838,19.3103],[-97.0883,19.3119],[-97.098,19.3041],[-97.1059,19.3064],[-97.1152,19.3048],[-97.1296,19.3092],[-97.1362,19.3224],[-97.1485,19.3202],[-97.1447,19.3313],[-97.1374,19.3433],[-97.131,19.3481],[-97.1326,19.363],[-97.1264,19.3756],[-97.1401,19.3846],[-97.1482,19.399],[-97.1582,19.4056],[-97.1674,19.4043],[-97.1688,19.4129],[-97.1749,19.4234],[-97.1722,19.4315],[-97.1696,19.4514],[-97.1651,19.4583],[-97.1544,19.4651],[-97.1478,19.4478]]]},properties:{id:"30079",COUNTYID:"079",COUNTY:"Ixhuacán de los Reyes",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30079"},{type:"Feature",geometry:{type:"MultiPolygon",coordinates:[[[[-97.5601,21.3838],[-97.5669,21.3883],[-97.5743,21.383],[-97.5856,21.3906],[-97.5909,21.3998],[-97.5984,21.4],[-97.5961,21.4131],[-97.581,21.4046],[-97.5621,21.4129],[-97.5715,21.4186],[-97.5702,21.4351],[-97.5643,21.4427],[-97.57,21.4608],[-97.5692,21.4639],[-97.5796,21.4737],[-97.5845,21.4831],[-97.5903,21.4808],[-97.6064,21.4992],[-97.6117,21.4721],[-97.6175,21.4827],[-97.6236,21.4888],[-97.6322,21.4918],[-97.6465,21.4837],[-97.6458,21.4722],[-97.6543,21.471],[-97.6658,21.465],[-97.675,21.4652],[-97.6892,21.4719],[-97.6906,21.468],[-97.7051,21.4694],[-97.7116,21.4665],[-97.723,21.4655],[-97.7289,21.4554],[-97.741,21.4493],[-97.751,21.4517],[-97.7593,21.4488],[-97.7559,21.4658],[-97.7516,21.4655],[-97.7449,21.4731],[-97.7404,21.4837],[-97.7474,21.4869],[-97.7573,21.4836],[-97.7687,21.4893],[-97.7704,21.4959],[-97.7518,21.5001],[-97.747,21.5113],[-97.7502,21.5169],[-97.7503,21.5289],[-97.7491,21.5365],[-97.7336,21.5445],[-97.7269,21.5451],[-97.7271,21.5539],[-97.7204,21.5561],[-97.7132,21.5654],[-97.7166,21.5708],[-97.7259,21.5736],[-97.7209,21.5805],[-97.7212,21.5857],[-97.7277,21.5894],[-97.7228,21.5971],[-97.7243,21.6042],[-97.7166,21.6054],[-97.7049,21.6117],[-97.697,21.6183],[-97.688,21.6132],[-97.6793,21.6131],[-97.6734,21.6068],[-97.667,21.6053],[-97.6634,21.6112],[-97.6507,21.6195],[-97.6452,21.6276],[-97.5305,21.5809],[-97.5196,21.5006],[-97.5131,21.467],[-97.5199,21.4589],[-97.5212,21.4409],[-97.5255,21.4358],[-97.5251,21.4265],[-97.5415,21.4252],[-97.5436,21.4193],[-97.5284,21.4189],[-97.5275,21.4136],[-97.5204,21.4097],[-97.5261,21.403],[-97.5383,21.4071],[-97.5409,21.4032],[-97.5539,21.3974],[-97.5565,21.3845],[-97.5601,21.3838]]],[[[-97.79,21.3323],[-97.7946,21.3265],[-97.8085,21.3205],[-97.8097,21.324],[-97.8213,21.3255],[-97.8174,21.3432],[-97.8189,21.3504],[-97.7992,21.3634],[-97.7959,21.3669],[-97.7747,21.3622],[-97.7882,21.3465],[-97.7923,21.3384],[-97.79,21.3323]]],[[[-97.752,21.4148],[-97.7621,21.4065],[-97.7691,21.4074],[-97.78,21.4153],[-97.7998,21.4236],[-97.7874,21.4306],[-97.7816,21.4358],[-97.7724,21.4397],[-97.7634,21.4341],[-97.7549,21.4381],[-97.7478,21.4373],[-97.7549,21.4266],[-97.7598,21.4234],[-97.752,21.4148]]]]},properties:{id:"30150",COUNTYID:"150",COUNTY:"Tamalín",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30150"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-96.8534,19.2884],[-96.8591,19.2809],[-96.8697,19.273],[-96.8795,19.2608],[-96.8892,19.2588],[-96.8983,19.2512],[-96.898,19.2428],[-96.9143,19.2331],[-96.9111,19.2285],[-96.8941,19.224],[-96.887,19.217],[-96.8778,19.2188],[-96.8569,19.2266],[-96.836,19.2397],[-96.8339,19.2457],[-96.8258,19.2467],[-96.831,19.2393],[-96.8256,19.2329],[-96.8183,19.2334],[-96.8145,19.2269],[-96.8065,19.2258],[-96.8073,19.2196],[-96.8067,19.21],[-96.8189,19.2028],[-96.8365,19.2006],[-96.8479,19.2011],[-96.8522,19.1952],[-96.863,19.1945],[-96.8582,19.1865],[-96.8634,19.182],[-96.8604,19.1756],[-96.8655,19.1755],[-96.8733,19.1807],[-96.8831,19.1809],[-96.8871,19.187],[-96.8989,19.1915],[-96.9091,19.1932],[-96.9136,19.1997],[-96.9215,19.1988],[-96.9237,19.1934],[-96.942,19.1977],[-96.9468,19.2024],[-96.9592,19.1853],[-96.9649,19.1895],[-96.9668,19.1957],[-96.9697,19.2046],[-96.9743,19.2054],[-96.9797,19.2165],[-96.9761,19.2237],[-96.9686,19.2229],[-96.9617,19.2335],[-96.9525,19.2389],[-96.9447,19.2485],[-96.9358,19.2554],[-96.9344,19.2616],[-96.9237,19.2674],[-96.9146,19.2767],[-96.8875,19.2834],[-96.8737,19.2893],[-96.8613,19.2867],[-96.8534,19.2884]]]},properties:{id:"30188",COUNTYID:"188",COUNTY:"Totutla",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30188"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-96.9596,19.7224],[-96.9513,19.7171],[-96.9417,19.7035],[-96.9334,19.6968],[-96.9295,19.6858],[-96.9295,19.6762],[-96.9147,19.6707],[-96.9141,19.6632],[-96.9164,19.656],[-96.9152,19.6395],[-96.9171,19.6351],[-96.9197,19.6341],[-96.9418,19.6392],[-96.9509,19.64],[-96.9627,19.6372],[-96.9685,19.6437],[-96.9666,19.6498],[-96.9729,19.6648],[-96.9717,19.6676],[-96.9748,19.684],[-96.9725,19.6892],[-96.9798,19.7141],[-96.9887,19.7171],[-96.9898,19.7255],[-96.9799,19.726],[-96.9667,19.7191],[-96.9596,19.7224]]]},properties:{id:"30036",COUNTYID:"036",COUNTY:"Coacoatzintla",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30036"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-96.022,18.9406],[-96.0193,18.9344],[-96.0268,18.9272],[-96.0318,18.9126],[-96.0329,18.9],[-96.0226,18.8856],[-96.0037,18.8858],[-95.9975,18.8834],[-95.9863,18.8851],[-95.986,18.8751],[-95.9823,18.8673],[-95.9819,18.8547],[-95.985,18.8365],[-95.9825,18.8337],[-95.9985,18.8268],[-95.996,18.8023],[-95.9805,18.7986],[-95.9767,18.7931],[-95.984,18.7853],[-95.9889,18.784],[-95.9957,18.7761],[-95.9968,18.7603],[-96,18.7538],[-96.0147,18.7606],[-96.0281,18.7641],[-96.0281,18.7533],[-96.0219,18.7524],[-96.0193,18.7383],[-96.0367,18.7384],[-96.0368,18.7288],[-96.044,18.7294],[-96.045,18.7211],[-96.0409,18.7175],[-96.0409,18.7055],[-96.0491,18.7056],[-96.0495,18.6895],[-96.0364,18.6896],[-96.0369,18.6731],[-96.0479,18.6726],[-96.0573,18.6556],[-96.0491,18.6477],[-96.0427,18.646],[-96.0409,18.6307],[-96.0374,18.6285],[-96.0297,18.6166],[-96.0311,18.6055],[-96.036,18.5954],[-96.0445,18.5995],[-96.052,18.5973],[-96.0615,18.602],[-96.0728,18.602],[-96.0754,18.6093],[-96.0823,18.6123],[-96.1029,18.6118],[-96.103,18.6089],[-96.1197,18.6083],[-96.1198,18.6028],[-96.1342,18.607],[-96.1414,18.6267],[-96.155,18.6354],[-96.16,18.6441],[-96.1677,18.6509],[-96.1791,18.6533],[-96.199,18.6464],[-96.2027,18.6392],[-96.2079,18.6437],[-96.2252,18.652],[-96.2417,18.647],[-96.2459,18.6548],[-96.2632,18.6604],[-96.2664,18.6644],[-96.2766,18.6662],[-96.2948,18.6618],[-96.3096,18.668],[-96.3243,18.6672],[-96.3347,18.6739],[-96.3524,18.6913],[-96.364,18.6955],[-96.3764,18.6873],[-96.3821,18.6915],[-96.3897,18.6914],[-96.3945,18.6866],[-96.4039,18.6889],[-96.4252,18.6848],[-96.4304,18.6865],[-96.4361,18.6948],[-96.4361,18.7033],[-96.4255,18.7035],[-96.4305,18.7126],[-96.4361,18.7154],[-96.4348,18.7367],[-96.42,18.7402],[-96.4234,18.7502],[-96.4053,18.7461],[-96.4007,18.7491],[-96.3993,18.7564],[-96.4108,18.7587],[-96.4163,18.7678],[-96.4118,18.776],[-96.3916,18.7841],[-96.3824,18.784],[-96.3717,18.7877],[-96.3677,18.7857],[-96.3588,18.7921],[-96.3399,18.7878],[-96.339,18.796],[-96.3314,18.7967],[-96.3275,18.7901],[-96.3215,18.7923],[-96.3127,18.7897],[-96.3055,18.7842],[-96.2957,18.7858],[-96.2846,18.7824],[-96.2714,18.7884],[-96.267,18.8007],[-96.2691,18.8102],[-96.2628,18.8147],[-96.2456,18.8228],[-96.2412,18.8277],[-96.2286,18.8309],[-96.224,18.8276],[-96.2175,18.8298],[-96.2154,18.8381],[-96.2036,18.8381],[-96.2001,18.8327],[-96.1906,18.8401],[-96.1839,18.8425],[-96.1804,18.8455],[-96.1651,18.8462],[-96.1567,18.8396],[-96.146,18.8422],[-96.1407,18.8572],[-96.1324,18.8595],[-96.1204,18.897],[-96.1081,18.8948],[-96.1016,18.8992],[-96.1002,18.9137],[-96.093,18.917],[-96.0862,18.9303],[-96.0716,18.9512],[-96.0664,18.946],[-96.0711,18.9387],[-96.065,18.937],[-96.055,18.9485],[-96.0502,18.9457],[-96.0542,18.9396],[-96.0479,18.9295],[-96.0375,18.9256],[-96.032,18.9391],[-96.022,18.9406]]]},properties:{id:"30181",COUNTYID:"181",COUNTY:"Tlalixcoyan",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30181"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-97.01,20.2754],[-97.0064,20.2696],[-97.0015,20.2483],[-97.0164,20.2287],[-97.0198,20.2093],[-97.0146,20.187],[-97.006,20.1765],[-96.9993,20.1746],[-96.9936,20.1662],[-96.9856,20.1635],[-96.9874,20.1561],[-96.9857,20.1462],[-96.9706,20.1446],[-96.9622,20.1493],[-96.9494,20.1465],[-96.9431,20.1349],[-96.9687,20.1283],[-96.9746,20.1251],[-96.9802,20.1076],[-96.98,20.0998],[-96.9841,20.0956],[-96.9832,20.0877],[-96.9927,20.08],[-96.9849,20.0715],[-96.9864,20.0568],[-96.9759,20.0503],[-96.971,20.0426],[-96.9761,20.0357],[-96.9835,20.0415],[-96.9856,20.0285],[-96.9828,20.0107],[-96.98,20.0078],[-96.9577,20.0037],[-96.957,19.9927],[-96.9805,19.9912],[-96.9879,19.9813],[-96.9877,19.9767],[-96.9962,19.9687],[-96.9931,19.9621],[-97.0018,19.9587],[-97.0121,19.9648],[-97.0071,19.9745],[-97.0334,19.9797],[-97.0389,19.9851],[-97.0529,19.991],[-97.0544,20.0073],[-97.0618,20.0335],[-97.0555,20.0435],[-97.0502,20.0309],[-97.0403,20.0337],[-97.0413,20.0481],[-97.0492,20.05],[-97.0589,20.0485],[-97.0651,20.0509],[-97.0717,20.049],[-97.078,20.0537],[-97.083,20.0516],[-97.0918,20.0688],[-97.1004,20.0691],[-97.1167,20.0803],[-97.1199,20.0866],[-97.1081,20.0996],[-97.1199,20.1104],[-97.116,20.1201],[-97.1314,20.1187],[-97.1406,20.1198],[-97.1234,20.1352],[-97.1312,20.1399],[-97.1394,20.1399],[-97.1472,20.1361],[-97.1527,20.139],[-97.1567,20.1469],[-97.15,20.1606],[-97.1433,20.1717],[-97.1412,20.1867],[-97.136,20.2006],[-97.1322,20.2022],[-97.1252,20.217],[-97.1312,20.2211],[-97.1323,20.23],[-97.1235,20.2363],[-97.1251,20.2467],[-97.1126,20.2544],[-97.1038,20.2562],[-97.0989,20.2601],[-97.0956,20.2692],[-97.0864,20.2743],[-97.0796,20.2687],[-97.0738,20.2689],[-97.0596,20.26],[-97.0428,20.2657],[-97.0479,20.2704],[-97.043,20.2773],[-97.0233,20.2796],[-97.01,20.2754]]]},properties:{id:"30102",COUNTYID:"102",COUNTY:"Martínez de la Torre",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30102"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-97.4059,20.7279],[-97.4062,20.7105],[-97.3958,20.7052],[-97.3952,20.6998],[-97.3848,20.6898],[-97.381,20.6994],[-97.3741,20.6936],[-97.3661,20.6782],[-97.3721,20.678],[-97.3707,20.6689],[-97.3738,20.659],[-97.3796,20.6548],[-97.3805,20.649],[-97.3866,20.6483],[-97.4009,20.6341],[-97.3995,20.6278],[-97.4041,20.6224],[-97.4119,20.6259],[-97.4121,20.6156],[-97.4191,20.6133],[-97.4237,20.6037],[-97.437,20.6015],[-97.4404,20.5968],[-97.4388,20.5901],[-97.4468,20.5861],[-97.4488,20.5795],[-97.441,20.5763],[-97.4494,20.5598],[-97.4548,20.5532],[-97.4656,20.5496],[-97.4822,20.5379],[-97.4783,20.5265],[-97.4867,20.5146],[-97.4881,20.5075],[-97.4957,20.4975],[-97.5013,20.5003],[-97.5105,20.498],[-97.5139,20.5029],[-97.5201,20.4955],[-97.5201,20.4907],[-97.531,20.4841],[-97.5418,20.4885],[-97.5726,20.5322],[-97.5789,20.5387],[-97.577,20.545],[-97.59,20.5561],[-97.6026,20.5593],[-97.6101,20.5639],[-97.6256,20.5635],[-97.627,20.5584],[-97.6367,20.5537],[-97.6375,20.5587],[-97.6506,20.565],[-97.6577,20.5555],[-97.6562,20.5455],[-97.6755,20.555],[-97.6834,20.5547],[-97.6806,20.5675],[-97.6856,20.5729],[-97.6942,20.5707],[-97.7012,20.5742],[-97.697,20.5968],[-97.7048,20.6017],[-97.7105,20.6087],[-97.7127,20.6204],[-97.7048,20.6296],[-97.7023,20.6411],[-97.6932,20.6429],[-97.6819,20.637],[-97.6653,20.6414],[-97.6655,20.648],[-97.6585,20.6566],[-97.6462,20.6578],[-97.6432,20.6555],[-97.6319,20.656],[-97.6307,20.663],[-97.6216,20.6677],[-97.6084,20.6711],[-97.6123,20.6783],[-97.6096,20.6959],[-97.6009,20.6965],[-97.6061,20.7036],[-97.6025,20.7096],[-97.6005,20.7361],[-97.5964,20.7439],[-97.5918,20.7451],[-97.5912,20.7531],[-97.586,20.7559],[-97.5882,20.7618],[-97.5859,20.7739],[-97.577,20.7992],[-97.5858,20.802],[-97.5877,20.812],[-97.5767,20.8122],[-97.5721,20.8173],[-97.5568,20.8204],[-97.5424,20.8183],[-97.5414,20.8219],[-97.5303,20.8233],[-97.522,20.8315],[-97.5204,20.8385],[-97.5295,20.8466],[-97.5284,20.8577],[-97.5138,20.8594],[-97.5076,20.8516],[-97.5065,20.8461],[-97.4958,20.8412],[-97.4913,20.8505],[-97.4918,20.8662],[-97.4805,20.8664],[-97.47,20.8627],[-97.4684,20.8541],[-97.4571,20.8478],[-97.4577,20.8337],[-97.4639,20.8287],[-97.4735,20.8391],[-97.4782,20.8413],[-97.4842,20.8341],[-97.4951,20.8319],[-97.4976,20.8196],[-97.4794,20.8202],[-97.4779,20.8065],[-97.4798,20.7988],[-97.474,20.7918],[-97.4761,20.7869],[-97.4609,20.772],[-97.46,20.7687],[-97.468,20.7588],[-97.4589,20.7599],[-97.4424,20.7452],[-97.4377,20.7508],[-97.4317,20.7422],[-97.4188,20.736],[-97.4146,20.7415],[-97.4086,20.7392],[-97.4059,20.7279]]]},properties:{id:"30175",COUNTYID:"175",COUNTY:"Tihuatlán",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30175"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-96.9941,19.785],[-97,19.7756],[-97.0111,19.7791],[-97.0181,19.7874],[-97.0259,19.78],[-97.0366,19.7812],[-97.0565,19.7709],[-97.0588,19.7639],[-97.0656,19.7686],[-97.0711,19.7661],[-97.0794,19.756],[-97.0779,19.7462],[-97.1113,19.7401],[-97.1169,19.7442],[-97.1274,19.7602],[-97.1334,19.7562],[-97.1439,19.7396],[-97.1532,19.7386],[-97.1686,19.72],[-97.1692,19.7146],[-97.1791,19.7076],[-97.1833,19.6994],[-97.1822,19.6944],[-97.1887,19.6857],[-97.1992,19.6833],[-97.1957,19.6783],[-97.2099,19.683],[-97.2203,19.6827],[-97.2282,19.6786],[-97.2503,19.6879],[-97.2562,19.6881],[-97.2597,19.6811],[-97.2556,19.6779],[-97.2476,19.6626],[-97.2364,19.657],[-97.238,19.6368],[-97.2616,19.6456],[-97.2679,19.638],[-97.2713,19.6507],[-97.278,19.6675],[-97.2809,19.6861],[-97.2702,19.6977],[-97.2714,19.7169],[-97.2815,19.7245],[-97.2831,19.7315],[-97.2804,19.7568],[-97.2685,19.7691],[-97.2598,19.7758],[-97.2651,19.78],[-97.2604,19.7891],[-97.249,19.7855],[-97.2503,19.7787],[-97.2335,19.7784],[-97.2288,19.7727],[-97.2198,19.7785],[-97.2103,19.782],[-97.1992,19.7624],[-97.1888,19.7569],[-97.1803,19.7726],[-97.1853,19.7869],[-97.1735,19.7939],[-97.1627,19.7929],[-97.155,19.8033],[-97.1378,19.8155],[-97.1346,19.8257],[-97.1301,19.8262],[-97.115,19.8451],[-97.1081,19.8412],[-97.0964,19.8539],[-97.0816,19.8482],[-97.0729,19.8496],[-97.068,19.8558],[-97.0578,19.8441],[-97.054,19.8519],[-97.0397,19.8621],[-97.0324,19.8652],[-97.0175,19.8569],[-97.0085,19.8583],[-97.0099,19.8674],[-97.0041,19.8751],[-97.0036,19.8827],[-96.9879,19.8865],[-96.9745,19.8821],[-96.9563,19.893],[-96.9556,19.8762],[-96.9504,19.8677],[-96.9564,19.8617],[-96.9581,19.855],[-96.9689,19.8498],[-96.9748,19.841],[-96.9819,19.838],[-96.9733,19.8288],[-96.9732,19.8233],[-96.9649,19.8242],[-96.96,19.8148],[-96.9683,19.8081],[-96.9754,19.7969],[-96.9875,19.7956],[-96.9931,19.791],[-96.9941,19.785]]]},properties:{id:"30010",COUNTYID:"010",COUNTY:"Altotonga",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30010"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-98.1297,20.7288],[-98.1385,20.7242],[-98.1349,20.7203],[-98.141,20.7129],[-98.1482,20.6986],[-98.1289,20.6881],[-98.12,20.678],[-98.1275,20.6659],[-98.1201,20.661],[-98.1254,20.657],[-98.1298,20.6473],[-98.1297,20.6393],[-98.1208,20.6265],[-98.1197,20.6202],[-98.1112,20.6162],[-98.108,20.6121],[-98.1237,20.5921],[-98.1298,20.5909],[-98.1321,20.582],[-98.1496,20.5628],[-98.1529,20.5528],[-98.1575,20.5512],[-98.1606,20.5426],[-98.1725,20.5301],[-98.1856,20.5276],[-98.1896,20.5233],[-98.1972,20.5267],[-98.2121,20.5285],[-98.2194,20.523],[-98.2287,20.5208],[-98.2341,20.5062],[-98.2399,20.5014],[-98.2551,20.5004],[-98.2637,20.4914],[-98.278,20.4954],[-98.286,20.502],[-98.2878,20.5076],[-98.287,20.5197],[-98.2687,20.5317],[-98.2642,20.5301],[-98.2544,20.5356],[-98.2547,20.5409],[-98.2417,20.5537],[-98.2385,20.5612],[-98.2422,20.565],[-98.2377,20.5913],[-98.2372,20.5998],[-98.2309,20.6053],[-98.2314,20.6118],[-98.227,20.6179],[-98.2221,20.6349],[-98.2104,20.6356],[-98.2113,20.6466],[-98.1994,20.6598],[-98.2012,20.6735],[-98.2048,20.6726],[-98.2099,20.6826],[-98.2031,20.6863],[-98.201,20.6989],[-98.1927,20.7017],[-98.1811,20.7165],[-98.1824,20.7238],[-98.1888,20.7317],[-98.1848,20.7392],[-98.1794,20.7405],[-98.1721,20.7358],[-98.1551,20.741],[-98.1428,20.7428],[-98.1382,20.7339],[-98.1297,20.7288]]]},properties:{id:"30180",COUNTYID:"180",COUNTY:"Tlachichilco",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30180"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-96.7845,20.2435],[-96.7854,20.2418],[-96.8037,20.2472],[-96.8158,20.2422],[-96.8241,20.2484],[-96.8306,20.2573],[-96.8436,20.2609],[-96.8496,20.267],[-96.8539,20.2782],[-96.8611,20.2802],[-96.8675,20.2772],[-96.8731,20.2798],[-96.8765,20.272],[-96.888,20.2707],[-96.8969,20.2764],[-96.9054,20.2887],[-96.9198,20.2975],[-96.927,20.2943],[-96.9346,20.2978],[-96.941,20.2933],[-96.9494,20.2818],[-96.9601,20.2807],[-96.9613,20.2758],[-96.9739,20.2738],[-96.9768,20.2842],[-96.9971,20.2962],[-97.0085,20.2896],[-97.0059,20.28],[-97.01,20.2754],[-97.0233,20.2796],[-97.043,20.2773],[-97.0479,20.2704],[-97.0428,20.2657],[-97.0596,20.26],[-97.0738,20.2689],[-97.0796,20.2687],[-97.0864,20.2743],[-97.0956,20.2692],[-97.0989,20.2601],[-97.1038,20.2562],[-97.1013,20.2634],[-97.1044,20.2709],[-97.1023,20.2764],[-97.103,20.2883],[-97.11,20.296],[-97.1095,20.3014],[-97.1224,20.3049],[-97.133,20.3022],[-97.1379,20.3042],[-97.1356,20.3112],[-97.1448,20.3134],[-97.1555,20.3291],[-97.1409,20.3449],[-97.1416,20.3528],[-97.1464,20.3591],[-97.1436,20.3631],[-97.1417,20.3761],[-97.129,20.3721],[-97.1223,20.3775],[-97.1114,20.3797],[-97.105,20.3882],[-97.1065,20.3949],[-97.0961,20.3963],[-97.0865,20.3872],[-97.0797,20.3916],[-97.0813,20.4013],[-97.0737,20.4018],[-97.0696,20.407],[-97.0565,20.406],[-97.0373,20.4099],[-97.0329,20.4253],[-97.0341,20.4323],[-97.0283,20.4338],[-97.023,20.4435],[-97.0305,20.4498],[-97.0275,20.4611],[-97.0203,20.4619],[-97.0196,20.4731],[-97.0426,20.4681],[-97.0528,20.4674],[-97.077,20.4823],[-97.0707,20.4895],[-97.0639,20.4933],[-97.1042,20.5307],[-97.1114,20.5262],[-97.1136,20.521],[-97.1275,20.5215],[-97.1335,20.5124],[-97.1513,20.507],[-97.1689,20.5052],[-97.1763,20.5078],[-97.1749,20.5164],[-97.1819,20.5228],[-97.2074,20.5281],[-97.2156,20.5274],[-97.2106,20.5386],[-97.2027,20.5389],[-97.1889,20.5436],[-97.1833,20.5523],[-97.1926,20.5651],[-97.1874,20.5725],[-97.1811,20.5746],[-97.1679,20.5859],[-97.1611,20.5855],[-97.1587,20.5954],[-97.1484,20.5944],[-97.1443,20.5987],[-97.1316,20.5998],[-97.1044,20.5705],[-97.0575,20.5237],[-97.0247,20.494],[-96.9989,20.4726],[-96.9857,20.4638],[-96.9774,20.4523],[-96.9587,20.4226],[-96.9504,20.4112],[-96.9241,20.382],[-96.9091,20.3662],[-96.8596,20.3172],[-96.8494,20.3063],[-96.8139,20.2729],[-96.7845,20.2435]]]},properties:{id:"30158",COUNTYID:"158",COUNTY:"Tecolutla",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30158"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-97.5961,21.4131],[-97.5984,21.4],[-97.5909,21.3998],[-97.5856,21.3906],[-97.5743,21.383],[-97.5669,21.3883],[-97.5601,21.3838],[-97.5587,21.3745],[-97.5658,21.3718],[-97.5674,21.367],[-97.5763,21.3599],[-97.5847,21.3591],[-97.5855,21.3517],[-97.5889,21.3471],[-97.5983,21.3479],[-97.601,21.3439],[-97.6012,21.3296],[-97.6169,21.332],[-97.6336,21.3439],[-97.6437,21.3479],[-97.6515,21.3433],[-97.6581,21.35],[-97.6666,21.3548],[-97.6803,21.3586],[-97.6849,21.3621],[-97.6974,21.3575],[-97.6963,21.3491],[-97.7033,21.342],[-97.7221,21.343],[-97.7317,21.3389],[-97.7317,21.3336],[-97.7453,21.3347],[-97.7556,21.3442],[-97.7679,21.3472],[-97.7768,21.3468],[-97.7716,21.3577],[-97.7747,21.3622],[-97.7662,21.3724],[-97.751,21.3862],[-97.7644,21.4047],[-97.7621,21.4065],[-97.752,21.4148],[-97.7389,21.4171],[-97.7309,21.4148],[-97.7022,21.391],[-97.6843,21.3917],[-97.6785,21.4064],[-97.6807,21.4095],[-97.6638,21.4146],[-97.6503,21.4109],[-97.6457,21.4125],[-97.6473,21.4218],[-97.6412,21.424],[-97.6308,21.4215],[-97.6225,21.4159],[-97.6119,21.4201],[-97.6075,21.4165],[-97.5961,21.4131]]]},properties:{id:"30060",COUNTYID:"060",COUNTY:"Chinampa de Gorostiza",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30060"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-96.7854,20.2418],[-96.7775,20.2284],[-96.7763,20.2205],[-96.779,20.2132],[-96.7887,20.2032],[-96.7996,20.2019],[-96.8092,20.2104],[-96.8137,20.2115],[-96.822,20.1995],[-96.8243,20.1838],[-96.8341,20.1764],[-96.842,20.1839],[-96.854,20.1895],[-96.856,20.1957],[-96.8657,20.1982],[-96.8664,20.1915],[-96.8618,20.1856],[-96.8549,20.1852],[-96.85,20.1764],[-96.8514,20.1671],[-96.859,20.1631],[-96.8579,20.1517],[-96.8716,20.1559],[-96.8765,20.1507],[-96.8761,20.1401],[-96.8838,20.1355],[-96.8835,20.1414],[-96.8903,20.1495],[-96.8977,20.1512],[-96.9023,20.1466],[-96.9216,20.1447],[-96.9346,20.1306],[-96.9431,20.1349],[-96.9494,20.1465],[-96.9622,20.1493],[-96.9706,20.1446],[-96.9857,20.1462],[-96.9874,20.1561],[-96.9856,20.1635],[-96.9936,20.1662],[-96.9993,20.1746],[-97.006,20.1765],[-97.0146,20.187],[-97.0198,20.2093],[-97.0164,20.2287],[-97.0015,20.2483],[-97.0064,20.2696],[-97.01,20.2754],[-97.0059,20.28],[-97.0085,20.2896],[-96.9971,20.2962],[-96.9768,20.2842],[-96.9739,20.2738],[-96.9613,20.2758],[-96.9601,20.2807],[-96.9494,20.2818],[-96.941,20.2933],[-96.9346,20.2978],[-96.927,20.2943],[-96.9198,20.2975],[-96.9054,20.2887],[-96.8969,20.2764],[-96.888,20.2707],[-96.8765,20.272],[-96.8731,20.2798],[-96.8675,20.2772],[-96.8611,20.2802],[-96.8539,20.2782],[-96.8496,20.267],[-96.8436,20.2609],[-96.8306,20.2573],[-96.8241,20.2484],[-96.8158,20.2422],[-96.8037,20.2472],[-96.7854,20.2418]]]},properties:{id:"30211",COUNTYID:"211",COUNTY:"San Rafael",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30211"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-98.248,20.7894],[-98.2424,20.7923],[-98.238,20.7869],[-98.2318,20.7672],[-98.226,20.7588],[-98.2196,20.7553],[-98.2076,20.757],[-98.2033,20.7614],[-98.1961,20.7606],[-98.1975,20.7542],[-98.2046,20.7464],[-98.1928,20.7382],[-98.1848,20.7392],[-98.1888,20.7317],[-98.1824,20.7238],[-98.1811,20.7165],[-98.1927,20.7017],[-98.201,20.6989],[-98.2031,20.6863],[-98.2099,20.6826],[-98.2137,20.6866],[-98.2218,20.6787],[-98.2355,20.6817],[-98.2386,20.6759],[-98.2553,20.6771],[-98.2597,20.6826],[-98.2765,20.6778],[-98.2766,20.6715],[-98.2864,20.6709],[-98.2946,20.6818],[-98.304,20.6875],[-98.2948,20.6954],[-98.3027,20.6989],[-98.3169,20.698],[-98.3213,20.6925],[-98.3312,20.6895],[-98.3359,20.685],[-98.342,20.6888],[-98.362,20.6866],[-98.3882,20.6955],[-98.4031,20.7078],[-98.4292,20.7164],[-98.4335,20.7175],[-98.4248,20.7303],[-98.4215,20.7393],[-98.4255,20.7489],[-98.4147,20.7549],[-98.4022,20.7537],[-98.3935,20.7552],[-98.3927,20.7616],[-98.3981,20.7798],[-98.3877,20.7843],[-98.3643,20.785],[-98.3552,20.7916],[-98.3487,20.8025],[-98.3435,20.7979],[-98.3348,20.7895],[-98.326,20.7842],[-98.3153,20.7887],[-98.3121,20.7977],[-98.3078,20.801],[-98.2978,20.7957],[-98.304,20.7832],[-98.2999,20.7784],[-98.292,20.7855],[-98.2844,20.7867],[-98.2616,20.786],[-98.2564,20.7933],[-98.248,20.7894]]]},properties:{id:"30202",COUNTYID:"202",COUNTY:"Zontecomatlán de López y Fuentes",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30202"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-98.0449,21.6651],[-98.037,21.6581],[-98.0302,21.6397],[-98.0139,21.6392],[-98.0044,21.6269],[-97.9969,21.6248],[-97.9873,21.6161],[-97.9881,21.6029],[-97.9975,21.5944],[-98,21.5836],[-98.0094,21.576],[-98.0177,21.5818],[-98.0213,21.5743],[-98.0294,21.5729],[-98.0288,21.5654],[-98.036,21.556],[-98.0269,21.5544],[-98.025,21.5478],[-98.0269,21.5397],[-98.0222,21.5373],[-98.0236,21.5234],[-98.0217,21.5118],[-98.0277,21.5026],[-98.0257,21.4971],[-98.0291,21.4903],[-98.0443,21.4855],[-98.054,21.4768],[-98.0571,21.4649],[-98.0625,21.465],[-98.0687,21.4505],[-98.0649,21.4467],[-98.0634,21.431],[-98.0542,21.4256],[-98.054,21.42],[-98.0475,21.4105],[-98.0429,21.3959],[-98.0381,21.3896],[-98.0421,21.379],[-98.0381,21.3505],[-98.0424,21.3409],[-98.0468,21.3395],[-98.0532,21.3399],[-98.057,21.3464],[-98.0656,21.3487],[-98.0686,21.3419],[-98.0615,21.3217],[-98.0699,21.3139],[-98.0642,21.2942],[-98.0637,21.2878],[-98.0693,21.2738],[-98.0885,21.2752],[-98.0968,21.261],[-98.098,21.2539],[-98.1046,21.2487],[-98.1135,21.248],[-98.1097,21.2416],[-98.0997,21.243],[-98.0931,21.2382],[-98.08,21.2389],[-98.0754,21.2424],[-98.067,21.2341],[-98.0558,21.23],[-98.0673,21.2223],[-98.0588,21.2168],[-98.0704,21.2088],[-98.061,21.1987],[-98.0554,21.202],[-98.0436,21.1955],[-98.0359,21.1799],[-98.0353,21.1714],[-98.0436,21.1617],[-98.0434,21.1576],[-98.0485,21.1651],[-98.0583,21.1612],[-98.0702,21.1595],[-98.0757,21.1634],[-98.0803,21.1598],[-98.0885,21.16],[-98.0922,21.1648],[-98.1142,21.1586],[-98.1163,21.1503],[-98.1214,21.1449],[-98.1362,21.1455],[-98.1433,21.1378],[-98.1558,21.1392],[-98.1627,21.1256],[-98.1761,21.1109],[-98.1876,21.1108],[-98.2005,21.1058],[-98.2024,21.1109],[-98.1952,21.1204],[-98.206,21.1268],[-98.2042,21.1353],[-98.2081,21.143],[-98.2161,21.144],[-98.2177,21.1518],[-98.2273,21.1504],[-98.2231,21.1567],[-98.2176,21.1579],[-98.2104,21.1537],[-98.2118,21.1695],[-98.2268,21.1754],[-98.2349,21.1894],[-98.2298,21.1927],[-98.2235,21.1861],[-98.2195,21.1988],[-98.2218,21.2029],[-98.2166,21.2082],[-98.2239,21.2131],[-98.2298,21.2053],[-98.2362,21.2102],[-98.238,21.2201],[-98.2516,21.216],[-98.2485,21.2288],[-98.2554,21.231],[-98.2489,21.2441],[-98.2526,21.2502],[-98.2505,21.2605],[-98.2592,21.2762],[-98.2704,21.2742],[-98.2755,21.2769],[-98.2719,21.2848],[-98.2766,21.2885],[-98.286,21.2821],[-98.2892,21.2877],[-98.2957,21.2901],[-98.3027,21.2875],[-98.3228,21.2866],[-98.3263,21.2894],[-98.3398,21.2883],[-98.337,21.294],[-98.3405,21.2989],[-98.3486,21.3006],[-98.3608,21.2955],[-98.363,21.2857],[-98.3679,21.2824],[-98.3801,21.2854],[-98.3758,21.2935],[-98.3684,21.2919],[-98.3651,21.2989],[-98.374,21.3029],[-98.3788,21.3079],[-98.3888,21.3072],[-98.3867,21.3141],[-98.3708,21.3172],[-98.3758,21.3252],[-98.3648,21.3351],[-98.3682,21.3516],[-98.3633,21.3543],[-98.3706,21.3646],[-98.384,21.3681],[-98.398,21.3806],[-98.3982,21.3835],[-98.3867,21.3966],[-98.3855,21.4049],[-98.3766,21.4087],[-98.3655,21.4013],[-98.3648,21.3947],[-98.3591,21.39],[-98.3517,21.3921],[-98.3389,21.4141],[-98.3317,21.4195],[-98.3292,21.4253],[-98.3334,21.4384],[-98.3416,21.4479],[-98.3459,21.459],[-98.3359,21.468],[-98.3245,21.4625],[-98.3249,21.469],[-98.3293,21.4765],[-98.3189,21.4786],[-98.3201,21.4713],[-98.3155,21.4678],[-98.3074,21.4758],[-98.2939,21.4804],[-98.2854,21.4908],[-98.27,21.5033],[-98.2622,21.4946],[-98.2595,21.4875],[-98.2662,21.4771],[-98.2673,21.4569],[-98.2446,21.4582],[-98.2441,21.4633],[-98.2576,21.4717],[-98.249,21.478],[-98.2412,21.4723],[-98.2377,21.4824],[-98.2446,21.4883],[-98.2433,21.4968],[-98.2551,21.5075],[-98.2496,21.5174],[-98.2524,21.5324],[-98.2422,21.5416],[-98.2444,21.5462],[-98.2401,21.5525],[-98.2274,21.5547],[-98.2321,21.5638],[-98.2027,21.5797],[-98.1889,21.5821],[-98.184,21.5807],[-98.179,21.5707],[-98.1743,21.5724],[-98.1582,21.5684],[-98.1573,21.574],[-98.1473,21.5803],[-98.1485,21.5886],[-98.1364,21.5879],[-98.1245,21.5946],[-98.1189,21.5924],[-98.1093,21.5941],[-98.1095,21.6015],[-98.1061,21.6113],[-98.1076,21.6233],[-98.1022,21.631],[-98.094,21.6357],[-98.0898,21.6322],[-98.0829,21.6334],[-98.0879,21.6412],[-98.0995,21.6465],[-98.1,21.6527],[-98.091,21.6653],[-98.0833,21.6675],[-98.0775,21.6633],[-98.0722,21.67],[-98.0578,21.6702],[-98.0449,21.6651]]]},properties:{id:"30155",COUNTYID:"155",COUNTY:"Tantoyuca",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30155"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-97.0529,19.1323],[-97.0574,19.1219],[-97.0545,19.1099],[-97.0665,19.1129],[-97.0799,19.1162],[-97.0888,19.1216],[-97.0916,19.1274],[-97.0992,19.1262],[-97.1093,19.1339],[-97.1203,19.1367],[-97.1203,19.1316],[-97.1405,19.1287],[-97.1451,19.1259],[-97.2014,19.0997],[-97.1983,19.0961],[-97.1971,19.077],[-97.1882,19.074],[-97.18,19.0671],[-97.1745,19.0658],[-97.1925,19.0589],[-97.1948,19.0539],[-97.2147,19.046],[-97.2197,19.0492],[-97.2243,19.0448],[-97.2393,19.0457],[-97.2565,19.0343],[-97.2672,19.0298],[-97.2695,19.0639],[-97.2624,19.0849],[-97.2602,19.0986],[-97.2387,19.1088],[-97.222,19.1284],[-97.2154,19.1385],[-97.2027,19.1413],[-97.1972,19.1466],[-97.2081,19.16],[-97.1899,19.1698],[-97.1815,19.169],[-97.1704,19.1639],[-97.1485,19.165],[-97.1354,19.1612],[-97.1279,19.1683],[-97.1193,19.1663],[-97.1082,19.1675],[-97.0892,19.163],[-97.0751,19.1579],[-97.0645,19.1581],[-97.068,19.1485],[-97.0575,19.1402],[-97.0529,19.1323]]]},properties:{id:"30029",COUNTYID:"029",COUNTY:"Calcahualco",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30029"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-96.6242,19.2039],[-96.6189,19.1971],[-96.6139,19.1967],[-96.6097,19.1892],[-96.5943,19.1822],[-96.5911,19.1748],[-96.5698,19.1717],[-96.5628,19.1657],[-96.546,19.1599],[-96.5394,19.1607],[-96.5159,19.1569],[-96.5105,19.1524],[-96.5003,19.1507],[-96.495,19.1473],[-96.4931,19.1387],[-96.5098,19.1368],[-96.5152,19.1345],[-96.5213,19.1372],[-96.5334,19.1355],[-96.5445,19.1305],[-96.5557,19.1325],[-96.5738,19.133],[-96.5703,19.1189],[-96.5626,19.1193],[-96.5616,19.1121],[-96.5496,19.112],[-96.5515,19.1007],[-96.5677,19.1008],[-96.5695,19.0928],[-96.5654,19.0844],[-96.5688,19.0813],[-96.5797,19.0821],[-96.5925,19.0869],[-96.6076,19.0903],[-96.6251,19.0885],[-96.6309,19.0917],[-96.6316,19.0794],[-96.6501,19.0741],[-96.6598,19.0801],[-96.6844,19.078],[-96.7041,19.0883],[-96.718,19.0875],[-96.7298,19.0917],[-96.7359,19.0895],[-96.7609,19.0962],[-96.7798,19.1024],[-96.7903,19.1118],[-96.7976,19.1135],[-96.8101,19.1266],[-96.815,19.1283],[-96.8235,19.1404],[-96.848,19.1443],[-96.862,19.1506],[-96.8733,19.1505],[-96.886,19.1582],[-96.899,19.1597],[-96.9116,19.1694],[-96.9149,19.1821],[-96.9237,19.1934],[-96.9215,19.1988],[-96.9136,19.1997],[-96.9091,19.1932],[-96.8989,19.1915],[-96.8871,19.187],[-96.8831,19.1809],[-96.8733,19.1807],[-96.8655,19.1755],[-96.8604,19.1756],[-96.8569,19.1698],[-96.8478,19.1713],[-96.8368,19.1658],[-96.8312,19.1671],[-96.819,19.1604],[-96.7995,19.1636],[-96.7872,19.1616],[-96.7794,19.1642],[-96.7709,19.1615],[-96.7596,19.1616],[-96.7464,19.168],[-96.7319,19.1643],[-96.7173,19.1679],[-96.7084,19.1734],[-96.7076,19.1797],[-96.6974,19.1828],[-96.6851,19.1932],[-96.6701,19.2006],[-96.6696,19.2033],[-96.6509,19.209],[-96.6503,19.1982],[-96.6396,19.1987],[-96.6242,19.2039]]]},properties:{id:"30043",COUNTYID:"043",COUNTY:"Comapa",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30043"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-97.9536,21.402],[-97.9451,21.3949],[-97.9423,21.3887],[-97.9347,21.3841],[-97.927,21.3831],[-97.904,21.3719],[-97.9065,21.3532],[-97.9104,21.3438],[-97.9061,21.3363],[-97.9075,21.324],[-97.9026,21.3191],[-97.9065,21.3098],[-97.9033,21.2984],[-97.8954,21.2958],[-97.8911,21.2789],[-97.8858,21.2758],[-97.8807,21.2605],[-97.8794,21.2506],[-97.872,21.2461],[-97.8709,21.2381],[-97.8876,21.2318],[-97.8952,21.2209],[-97.9035,21.2165],[-97.9093,21.2047],[-97.9153,21.1979],[-97.9326,21.1971],[-97.9366,21.1997],[-97.9515,21.1947],[-97.9554,21.1862],[-97.9612,21.1864],[-97.9612,21.211],[-97.9476,21.207],[-97.9326,21.2047],[-97.929,21.2162],[-97.9362,21.2217],[-97.9372,21.2333],[-97.9493,21.2393],[-97.9585,21.2382],[-97.9724,21.2468],[-97.969,21.2554],[-97.9792,21.256],[-97.9916,21.2493],[-97.9994,21.2486],[-98.0045,21.2611],[-98.005,21.2841],[-98.0036,21.2934],[-98.0107,21.308],[-98.0102,21.3135],[-98.0147,21.3258],[-98.0267,21.3286],[-98.0297,21.3249],[-98.0405,21.3246],[-98.0446,21.3301],[-98.0468,21.3395],[-98.0424,21.3409],[-98.0381,21.3505],[-98.0421,21.379],[-98.0381,21.3896],[-98.0429,21.3959],[-98.0475,21.4105],[-98.054,21.42],[-98.0542,21.4256],[-98.0634,21.431],[-98.0649,21.4467],[-98.0687,21.4505],[-98.0625,21.465],[-98.0571,21.4649],[-98.054,21.4768],[-98.0443,21.4855],[-98.0291,21.4903],[-98.0257,21.4971],[-98.0277,21.5026],[-98.0217,21.5118],[-98.0236,21.5234],[-98.0222,21.5373],[-98.0269,21.5397],[-98.025,21.5478],[-98.0269,21.5544],[-98.036,21.556],[-98.0288,21.5654],[-98.0294,21.5729],[-98.0213,21.5743],[-98.0177,21.5818],[-98.0094,21.576],[-98,21.5836],[-97.9975,21.5944],[-97.9881,21.6029],[-97.9873,21.6161],[-97.9969,21.6248],[-98.0044,21.6269],[-98.0139,21.6392],[-98.0302,21.6397],[-98.037,21.6581],[-98.0449,21.6651],[-98.0426,21.6691],[-98.0292,21.6673],[-98.0125,21.6598],[-98.0076,21.6646],[-98.0013,21.6618],[-97.9971,21.6658],[-97.9906,21.6571],[-97.9909,21.6478],[-97.9867,21.6423],[-97.986,21.6334],[-97.9915,21.6282],[-97.9879,21.6203],[-97.9763,21.6166],[-97.9821,21.6075],[-97.9799,21.6018],[-97.9716,21.5984],[-97.9712,21.5881],[-97.9751,21.5822],[-97.9745,21.562],[-97.9806,21.5546],[-97.9831,21.5417],[-97.9803,21.532],[-97.9834,21.5271],[-97.9781,21.5141],[-97.9784,21.5078],[-97.9869,21.4954],[-97.9908,21.4846],[-97.9881,21.4769],[-97.9884,21.4657],[-97.9826,21.4617],[-97.9751,21.4516],[-97.9759,21.4451],[-97.9687,21.4299],[-97.9635,21.4265],[-97.9701,21.4163],[-97.9649,21.4065],[-97.96,21.4077],[-97.9536,21.402]]]},properties:{id:"30063",COUNTYID:"063",COUNTY:"Chontla",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30063"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-97.6466,20.4087],[-97.6364,20.3982],[-97.6481,20.3998],[-97.6527,20.3976],[-97.6549,20.388],[-97.649,20.383],[-97.639,20.368],[-97.6342,20.3672],[-97.6145,20.3496],[-97.6049,20.3483],[-97.5952,20.3503],[-97.5945,20.3539],[-97.5741,20.3503],[-97.5827,20.347],[-97.583,20.3363],[-97.5781,20.3322],[-97.58,20.3235],[-97.5865,20.3173],[-97.6008,20.3204],[-97.6048,20.3134],[-97.6005,20.303],[-97.5928,20.3011],[-97.5828,20.2821],[-97.6022,20.2815],[-97.6056,20.2714],[-97.6013,20.2647],[-97.5881,20.2623],[-97.5819,20.2669],[-97.5751,20.2434],[-97.5908,20.245],[-97.6072,20.2355],[-97.6115,20.2203],[-97.6216,20.2203],[-97.624,20.209],[-97.6354,20.209],[-97.6486,20.2321],[-97.6448,20.2383],[-97.6478,20.2436],[-97.6546,20.2413],[-97.6724,20.2436],[-97.6803,20.2581],[-97.6797,20.2629],[-97.6731,20.2619],[-97.6644,20.2693],[-97.6627,20.2843],[-97.6668,20.2829],[-97.6741,20.2955],[-97.6768,20.3069],[-97.6784,20.3139],[-97.6835,20.314],[-97.6842,20.3257],[-97.6731,20.3366],[-97.6769,20.3392],[-97.6744,20.3472],[-97.6793,20.3499],[-97.6901,20.3336],[-97.6946,20.3352],[-97.6966,20.3199],[-97.7025,20.3255],[-97.7127,20.329],[-97.7278,20.3407],[-97.7347,20.3479],[-97.7429,20.3518],[-97.7442,20.3692],[-97.7482,20.3785],[-97.7649,20.3807],[-97.7626,20.3979],[-97.758,20.3992],[-97.7558,20.413],[-97.7469,20.4222],[-97.7376,20.4403],[-97.7346,20.4513],[-97.7287,20.4573],[-97.7211,20.4536],[-97.7088,20.4548],[-97.7077,20.4481],[-97.7003,20.4446],[-97.6991,20.4346],[-97.6881,20.4274],[-97.68,20.4253],[-97.6726,20.4181],[-97.6739,20.4112],[-97.6658,20.4082],[-97.661,20.413],[-97.6466,20.4087]]]},properties:{id:"30051",COUNTYID:"051",COUNTY:"Coyutla",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30051"},{type:"Feature",geometry:{type:"MultiPolygon",coordinates:[[[[-98.3094,21.185],[-98.3159,21.1869],[-98.3407,21.1698],[-98.3458,21.1801],[-98.3677,21.18],[-98.3786,21.1762],[-98.3728,21.1664],[-98.365,21.1617],[-98.3677,21.1588],[-98.3995,21.1586],[-98.4054,21.1547],[-98.4164,21.155],[-98.424,21.1673],[-98.4224,21.1815],[-98.4263,21.1926],[-98.4292,21.2147],[-98.4523,21.2393],[-98.4457,21.2437],[-98.4327,21.2561],[-98.4144,21.2601],[-98.4088,21.2657],[-98.3975,21.2643],[-98.3814,21.252],[-98.3842,21.2434],[-98.3801,21.239],[-98.372,21.242],[-98.3681,21.233],[-98.3553,21.2306],[-98.3363,21.215],[-98.3392,21.2081],[-98.3337,21.1995],[-98.3201,21.2002],[-98.3136,21.1958],[-98.3094,21.185]]],[[[-98.2273,21.1504],[-98.2292,21.1456],[-98.2425,21.1368],[-98.2491,21.1294],[-98.2647,21.1412],[-98.2822,21.1364],[-98.2812,21.1415],[-98.2955,21.1483],[-98.2954,21.156],[-98.2831,21.164],[-98.2781,21.1745],[-98.2791,21.1928],[-98.2872,21.1943],[-98.2961,21.188],[-98.2918,21.2042],[-98.2879,21.2055],[-98.2554,21.231],[-98.2485,21.2288],[-98.2516,21.216],[-98.238,21.2201],[-98.2362,21.2102],[-98.2298,21.2053],[-98.2239,21.2131],[-98.2166,21.2082],[-98.2218,21.2029],[-98.2195,21.1988],[-98.2235,21.1861],[-98.2298,21.1927],[-98.2349,21.1894],[-98.2268,21.1754],[-98.2118,21.1695],[-98.2104,21.1537],[-98.2176,21.1579],[-98.2231,21.1567],[-98.2273,21.1504]]]]},properties:{id:"30055",COUNTYID:"055",COUNTY:"Chalma",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30055"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-96.8999,19.4855],[-96.9061,19.485],[-96.9066,19.4942],[-96.9172,19.4944],[-96.9224,19.4884],[-96.9353,19.4929],[-96.941,19.505],[-96.9425,19.5143],[-96.9477,19.5142],[-96.9521,19.5234],[-96.9512,19.5298],[-96.9581,19.5334],[-96.9678,19.5337],[-96.9706,19.5384],[-96.9685,19.5478],[-96.9573,19.5509],[-96.9548,19.5673],[-96.9394,19.5765],[-96.9304,19.5793],[-96.9184,19.5792],[-96.9087,19.576],[-96.8972,19.581],[-96.882,19.5787],[-96.874,19.5811],[-96.8709,19.5876],[-96.8585,19.5884],[-96.8512,19.586],[-96.8448,19.5908],[-96.8429,19.5995],[-96.8408,19.5945],[-96.8232,19.5944],[-96.8173,19.5876],[-96.8093,19.5871],[-96.8041,19.5829],[-96.8018,19.5755],[-96.7991,19.5674],[-96.81,19.5593],[-96.8325,19.5631],[-96.8368,19.5558],[-96.8424,19.5528],[-96.8422,19.5469],[-96.8299,19.5421],[-96.8298,19.5339],[-96.8419,19.5395],[-96.8461,19.5378],[-96.8264,19.5233],[-96.8223,19.5144],[-96.8364,19.5137],[-96.8543,19.5209],[-96.8605,19.5092],[-96.869,19.5045],[-96.8762,19.4947],[-96.8826,19.4947],[-96.8903,19.4906],[-96.8994,19.4928],[-96.8999,19.4855]]]},properties:{id:"30087",COUNTYID:"087",COUNTY:"Xalapa",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30087"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-95.4343,18.2449],[-95.4348,18.2482],[-95.45,18.2461],[-95.4584,18.2518],[-95.4553,18.2648],[-95.4626,18.2607],[-95.471,18.2618],[-95.4716,18.2507],[-95.4885,18.2454],[-95.5051,18.2454],[-95.5152,18.2525],[-95.5146,18.2599],[-95.5086,18.2679],[-95.4953,18.2721],[-95.4979,18.2784],[-95.5052,18.2817],[-95.5069,18.2885],[-95.5029,18.2925],[-95.5074,18.3003],[-95.5046,18.3085],[-95.5056,18.3179],[-95.5158,18.3171],[-95.5258,18.3239],[-95.5328,18.3218],[-95.5354,18.3283],[-95.5411,18.331],[-95.5408,18.3366],[-95.527,18.3349],[-95.5228,18.3493],[-95.5232,18.3635],[-95.5135,18.3637],[-95.5131,18.4056],[-95.5038,18.4106],[-95.5069,18.4144],[-95.5149,18.4122],[-95.5179,18.4161],[-95.5102,18.4265],[-95.5172,18.4305],[-95.5204,18.4394],[-95.5179,18.4583],[-95.5251,18.4622],[-95.5322,18.4609],[-95.5343,18.4668],[-95.5288,18.4712],[-95.5334,18.4774],[-95.5419,18.4822],[-95.5342,18.4872],[-95.5268,18.4893],[-95.5152,18.4805],[-95.5098,18.4717],[-95.5031,18.4764],[-95.4911,18.4753],[-95.4813,18.4689],[-95.4752,18.4692],[-95.4703,18.4798],[-95.4645,18.4785],[-95.4609,18.4831],[-95.4524,18.4835],[-95.4456,18.4901],[-95.4461,18.5017],[-95.4271,18.5013],[-95.4265,18.4911],[-95.4073,18.4903],[-95.4018,18.4951],[-95.3889,18.4901],[-95.3804,18.4892],[-95.3799,18.5023],[-95.3661,18.5067],[-95.3496,18.5067],[-95.3486,18.514],[-95.338,18.5187],[-95.3315,18.5187],[-95.3237,18.5388],[-95.3177,18.5466],[-95.3191,18.5537],[-95.3142,18.5592],[-95.3243,18.573],[-95.3183,18.5702],[-95.3018,18.5679],[-95.2996,18.5708],[-95.2842,18.5675],[-95.2845,18.5585],[-95.279,18.5478],[-95.284,18.5402],[-95.2754,18.5374],[-95.2652,18.5304],[-95.2654,18.5208],[-95.2344,18.5175],[-95.2327,18.506],[-95.2541,18.4979],[-95.2567,18.4866],[-95.2672,18.4878],[-95.2688,18.4789],[-95.2675,18.4686],[-95.2615,18.4675],[-95.2717,18.4472],[-95.27,18.4301],[-95.2747,18.4288],[-95.2771,18.4151],[-95.2848,18.4018],[-95.2981,18.4029],[-95.3061,18.3977],[-95.3107,18.3995],[-95.314,18.3921],[-95.3219,18.386],[-95.3315,18.3857],[-95.3317,18.3723],[-95.3254,18.3647],[-95.3364,18.3416],[-95.339,18.327],[-95.3442,18.321],[-95.3404,18.312],[-95.3417,18.3012],[-95.3507,18.2948],[-95.3559,18.2779],[-95.3698,18.2784],[-95.3715,18.2677],[-95.3867,18.2692],[-95.3883,18.2638],[-95.3954,18.2562],[-95.4155,18.2563],[-95.429,18.2576],[-95.4343,18.2449]]]},properties:{id:"30143",COUNTYID:"143",COUNTY:"Santiago Tuxtla",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30143"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-96.6756,19.7473],[-96.666,19.739],[-96.6548,19.7374],[-96.6592,19.7237],[-96.6652,19.7168],[-96.6713,19.7215],[-96.67,19.7293],[-96.6729,19.7371],[-96.6861,19.738],[-96.6931,19.726],[-96.6999,19.7247],[-96.7059,19.7279],[-96.7168,19.7249],[-96.7169,19.7183],[-96.73,19.719],[-96.7413,19.709],[-96.7498,19.7151],[-96.7506,19.7265],[-96.7614,19.7301],[-96.7699,19.7354],[-96.7738,19.7284],[-96.7816,19.7221],[-96.7731,19.7131],[-96.7863,19.7111],[-96.792,19.7133],[-96.7963,19.6995],[-96.8136,19.6989],[-96.8185,19.6995],[-96.8202,19.711],[-96.8345,19.7146],[-96.8389,19.7239],[-96.839,19.7354],[-96.8431,19.7424],[-96.8372,19.7528],[-96.8409,19.7637],[-96.8512,19.7699],[-96.8574,19.7703],[-96.861,19.777],[-96.8543,19.7797],[-96.8483,19.7759],[-96.8399,19.7776],[-96.8373,19.7867],[-96.849,19.8078],[-96.8491,19.8176],[-96.836,19.8178],[-96.8331,19.8165],[-96.8295,19.8033],[-96.8219,19.7947],[-96.8107,19.7983],[-96.8075,19.8055],[-96.7927,19.8038],[-96.7966,19.7959],[-96.8011,19.7937],[-96.7964,19.7853],[-96.783,19.7947],[-96.7769,19.7905],[-96.7674,19.7881],[-96.7635,19.7928],[-96.7541,19.7921],[-96.7471,19.8115],[-96.7411,19.8167],[-96.7361,19.8113],[-96.7419,19.7997],[-96.7495,19.7973],[-96.7469,19.7887],[-96.7359,19.7857],[-96.7319,19.7812],[-96.7191,19.7768],[-96.7187,19.7683],[-96.7094,19.7611],[-96.7072,19.7551],[-96.6939,19.7595],[-96.6938,19.7507],[-96.6839,19.7449],[-96.6756,19.7473]]]},properties:{id:"30057",COUNTYID:"057",COUNTY:"Chiconquiaco",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30057"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-96.8644,19.69],[-96.8616,19.6802],[-96.8544,19.6728],[-96.8498,19.6644],[-96.831,19.6729],[-96.8214,19.6637],[-96.8163,19.6542],[-96.8086,19.6555],[-96.7979,19.6449],[-96.7974,19.638],[-96.793,19.6313],[-96.7954,19.6216],[-96.8092,19.6125],[-96.7966,19.5929],[-96.7833,19.5933],[-96.7776,19.6028],[-96.7708,19.6046],[-96.7664,19.62],[-96.7598,19.6116],[-96.75,19.6016],[-96.7514,19.5881],[-96.7582,19.5796],[-96.7578,19.5753],[-96.7678,19.5653],[-96.7791,19.5658],[-96.7941,19.5703],[-96.8018,19.5755],[-96.8041,19.5829],[-96.8093,19.5871],[-96.8173,19.5876],[-96.8232,19.5944],[-96.8408,19.5945],[-96.8429,19.5995],[-96.8419,19.6038],[-96.8486,19.608],[-96.8637,19.6075],[-96.8699,19.6153],[-96.89,19.6267],[-96.896,19.6272],[-96.9031,19.6324],[-96.9171,19.6351],[-96.9152,19.6395],[-96.9164,19.656],[-96.9141,19.6632],[-96.9039,19.6665],[-96.8926,19.6664],[-96.8945,19.6777],[-96.8978,19.6794],[-96.9004,19.696],[-96.9059,19.7],[-96.9095,19.7077],[-96.9044,19.7118],[-96.9002,19.701],[-96.8949,19.7029],[-96.8881,19.6932],[-96.8725,19.6989],[-96.8644,19.69]]]},properties:{id:"30112",COUNTYID:"112",COUNTY:"Naolinco",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30112"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-94.8933,17.8369],[-94.9,17.8435],[-94.9,17.8518],[-94.9115,17.8512],[-94.9107,17.8602],[-94.925,17.8651],[-94.9297,17.8701],[-94.932,17.8883],[-94.9464,17.8928],[-94.9496,17.8965],[-94.9448,17.903],[-94.92,17.9023],[-94.917,17.9113],[-94.9392,17.91],[-94.9303,17.9214],[-94.9195,17.935],[-94.9137,17.9336],[-94.9015,17.9454],[-94.8905,17.9525],[-94.8565,17.9552],[-94.8567,17.9386],[-94.8479,17.9377],[-94.8465,17.9245],[-94.8553,17.9033],[-94.8629,17.9037],[-94.862,17.8943],[-94.8559,17.8901],[-94.857,17.8834],[-94.8529,17.8776],[-94.8682,17.8634],[-94.8813,17.8632],[-94.8904,17.8604],[-94.8947,17.8539],[-94.8896,17.8438],[-94.8933,17.8369]]]},properties:{id:"30116",COUNTYID:"116",COUNTY:"Oluta",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30116"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-95.3243,18.573],[-95.3142,18.5592],[-95.3191,18.5537],[-95.3177,18.5466],[-95.3237,18.5388],[-95.3315,18.5187],[-95.338,18.5187],[-95.3486,18.514],[-95.3496,18.5067],[-95.3661,18.5067],[-95.3799,18.5023],[-95.3804,18.4892],[-95.3889,18.4901],[-95.4018,18.4951],[-95.4073,18.4903],[-95.4265,18.4911],[-95.4271,18.5013],[-95.4461,18.5017],[-95.4456,18.4901],[-95.4524,18.4835],[-95.4609,18.4831],[-95.4645,18.4785],[-95.4703,18.4798],[-95.4752,18.4692],[-95.4813,18.4689],[-95.4911,18.4753],[-95.5031,18.4764],[-95.4999,18.4838],[-95.5036,18.5009],[-95.5013,18.5034],[-95.4987,18.5189],[-95.5032,18.5241],[-95.4969,18.5278],[-95.4961,18.5385],[-95.488,18.5445],[-95.4862,18.551],[-95.4926,18.554],[-95.4926,18.5593],[-95.4817,18.5635],[-95.4822,18.5555],[-95.4768,18.5516],[-95.469,18.556],[-95.4672,18.5718],[-95.4602,18.5759],[-95.4609,18.5886],[-95.4662,18.5878],[-95.4681,18.6039],[-95.471,18.627],[-95.4683,18.6304],[-95.4707,18.6408],[-95.4672,18.6559],[-95.4596,18.6567],[-95.4585,18.6621],[-95.468,18.672],[-95.4751,18.684],[-95.465,18.6912],[-95.4487,18.6972],[-95.4475,18.7009],[-95.4371,18.7109],[-95.362,18.7106],[-95.3406,18.7122],[-95.2959,18.7135],[-95.2873,18.7153],[-95.2847,18.7075],[-95.2945,18.707],[-95.299,18.6965],[-95.2935,18.6706],[-95.295,18.6653],[-95.2861,18.6641],[-95.2896,18.6468],[-95.2925,18.6473],[-95.2955,18.6325],[-95.2914,18.632],[-95.2938,18.6165],[-95.2874,18.6159],[-95.2886,18.6079],[-95.2842,18.6028],[-95.2679,18.5997],[-95.2678,18.5918],[-95.2798,18.5917],[-95.2875,18.5939],[-95.2985,18.5903],[-95.305,18.5935],[-95.3097,18.5845],[-95.3221,18.5837],[-95.3243,18.573]]]},properties:{id:"30015",COUNTYID:"015",COUNTY:"Angel R. Cabada",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30015"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-97.365,21.0976],[-97.3526,21.0685],[-97.343,21.044],[-97.3283,21.016],[-97.3276,21.0088],[-97.3144,20.9833],[-97.3059,20.972],[-97.3044,20.9629],[-97.2971,20.9464],[-97.2765,20.9057],[-97.2559,20.8691],[-97.2418,20.8477],[-97.228,20.8295],[-97.2246,20.8111],[-97.2181,20.7959],[-97.2269,20.7936],[-97.2283,20.7861],[-97.2423,20.78],[-97.2562,20.778],[-97.2601,20.7862],[-97.2663,20.7921],[-97.2675,20.7975],[-97.2861,20.801],[-97.2977,20.7994],[-97.3039,20.7941],[-97.313,20.794],[-97.3166,20.7828],[-97.3267,20.7676],[-97.337,20.7628],[-97.3368,20.7542],[-97.3452,20.7439],[-97.3537,20.7424],[-97.3654,20.7345],[-97.3904,20.7377],[-97.4059,20.7279],[-97.4086,20.7392],[-97.4146,20.7415],[-97.4188,20.736],[-97.4317,20.7422],[-97.4377,20.7508],[-97.4424,20.7452],[-97.4589,20.7599],[-97.468,20.7588],[-97.46,20.7687],[-97.4609,20.772],[-97.4761,20.7869],[-97.474,20.7918],[-97.4798,20.7988],[-97.4779,20.8065],[-97.4794,20.8202],[-97.4976,20.8196],[-97.4951,20.8319],[-97.4842,20.8341],[-97.4782,20.8413],[-97.4735,20.8391],[-97.4639,20.8287],[-97.4577,20.8337],[-97.4571,20.8478],[-97.4684,20.8541],[-97.47,20.8627],[-97.4805,20.8664],[-97.4918,20.8662],[-97.4913,20.8505],[-97.4958,20.8412],[-97.5065,20.8461],[-97.5076,20.8516],[-97.5071,20.8745],[-97.5015,20.8804],[-97.5026,20.8962],[-97.5015,20.9068],[-97.5076,20.9104],[-97.506,20.9175],[-97.4993,20.9268],[-97.4998,20.933],[-97.5192,20.9341],[-97.5166,20.9446],[-97.5264,20.9539],[-97.5717,20.9501],[-97.5927,20.9717],[-97.5896,20.9769],[-97.5988,20.991],[-97.5999,20.9976],[-97.5794,20.9971],[-97.5737,20.9942],[-97.5668,21.0006],[-97.5732,21.0055],[-97.5801,21.0008],[-97.5893,21.0017],[-97.5947,21.0175],[-97.5918,21.0277],[-97.5764,21.0221],[-97.5706,21.0289],[-97.5617,21.0345],[-97.5488,21.055],[-97.5585,21.0566],[-97.5615,21.0663],[-97.5544,21.0843],[-97.5463,21.0818],[-97.5433,21.0716],[-97.5385,21.07],[-97.528,21.0738],[-97.5169,21.0754],[-97.5071,21.0741],[-97.5116,21.0904],[-97.5088,21.0994],[-97.5214,21.1076],[-97.5324,21.1034],[-97.5428,21.104],[-97.553,21.1076],[-97.5566,21.1054],[-97.5547,21.1132],[-97.538,21.1236],[-97.5291,21.1206],[-97.523,21.1228],[-97.5127,21.1223],[-97.4954,21.1272],[-97.4934,21.133],[-97.4862,21.1375],[-97.4684,21.1394],[-97.4512,21.1366],[-97.4506,21.1321],[-97.4431,21.1258],[-97.435,21.1257],[-97.4343,21.1175],[-97.409,21.1148],[-97.4076,21.1214],[-97.4,21.1257],[-97.4003,21.132],[-97.3858,21.1316],[-97.3847,21.1208],[-97.3779,21.1112],[-97.3721,21.1073],[-97.365,21.0976]]]},properties:{id:"30189",COUNTYID:"189",COUNTY:"Tuxpan",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30189"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-98.2099,20.6826],[-98.2048,20.6726],[-98.2012,20.6735],[-98.1994,20.6598],[-98.2113,20.6466],[-98.2104,20.6356],[-98.2221,20.6349],[-98.227,20.6179],[-98.2314,20.6118],[-98.2491,20.6047],[-98.2568,20.5967],[-98.2723,20.5877],[-98.2844,20.5847],[-98.2968,20.5746],[-98.2973,20.5853],[-98.3066,20.5892],[-98.3168,20.5894],[-98.3234,20.5822],[-98.3216,20.577],[-98.3237,20.5672],[-98.3231,20.5587],[-98.3332,20.5556],[-98.3374,20.5506],[-98.3466,20.5496],[-98.3697,20.5614],[-98.3814,20.558],[-98.3864,20.5459],[-98.3986,20.5417],[-98.4052,20.5445],[-98.4074,20.5504],[-98.4076,20.5631],[-98.3979,20.5716],[-98.3991,20.5858],[-98.4046,20.5982],[-98.4038,20.6041],[-98.3928,20.6054],[-98.3877,20.611],[-98.3768,20.617],[-98.3654,20.6465],[-98.3483,20.6465],[-98.3412,20.6484],[-98.346,20.6595],[-98.3549,20.6679],[-98.3359,20.685],[-98.3312,20.6895],[-98.3213,20.6925],[-98.3169,20.698],[-98.3027,20.6989],[-98.2948,20.6954],[-98.304,20.6875],[-98.2946,20.6818],[-98.2864,20.6709],[-98.2766,20.6715],[-98.2765,20.6778],[-98.2597,20.6826],[-98.2553,20.6771],[-98.2386,20.6759],[-98.2355,20.6817],[-98.2218,20.6787],[-98.2137,20.6866],[-98.2099,20.6826]]]},properties:{id:"30170",COUNTYID:"170",COUNTY:"Texcatepec",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30170"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-96.4069,19.7051],[-96.4064,19.6997],[-96.3949,19.6791],[-96.3986,19.662],[-96.3954,19.6435],[-96.3743,19.6084],[-96.372,19.6019],[-96.3791,19.5897],[-96.3774,19.5736],[-96.3743,19.5617],[-96.361,19.537],[-96.346,19.5168],[-96.3301,19.4975],[-96.3375,19.4901],[-96.3451,19.4908],[-96.3549,19.485],[-96.356,19.4793],[-96.3666,19.4848],[-96.3691,19.4761],[-96.3835,19.4705],[-96.3833,19.4655],[-96.3947,19.4566],[-96.4057,19.4591],[-96.4117,19.4563],[-96.4263,19.4603],[-96.4386,19.4616],[-96.4505,19.4585],[-96.4566,19.4617],[-96.4646,19.4529],[-96.4748,19.4522],[-96.4808,19.4383],[-96.4887,19.4317],[-96.4944,19.4194],[-96.5036,19.4204],[-96.5131,19.4179],[-96.5166,19.4115],[-96.5127,19.4029],[-96.5176,19.3983],[-96.5248,19.4033],[-96.5334,19.4021],[-96.5407,19.3976],[-96.5462,19.4022],[-96.5543,19.4003],[-96.5557,19.4088],[-96.5606,19.4176],[-96.5723,19.4145],[-96.5783,19.4218],[-96.5893,19.4231],[-96.606,19.4203],[-96.6216,19.4279],[-96.6258,19.4323],[-96.6378,19.4343],[-96.6472,19.4418],[-96.655,19.4547],[-96.6705,19.4536],[-96.6781,19.4572],[-96.6899,19.4575],[-96.693,19.4643],[-96.7016,19.4657],[-96.712,19.4743],[-96.707,19.4858],[-96.7242,19.5018],[-96.729,19.5024],[-96.7334,19.5111],[-96.7294,19.5164],[-96.7396,19.521],[-96.7525,19.5214],[-96.7684,19.5296],[-96.7738,19.529],[-96.781,19.5404],[-96.7884,19.5459],[-96.7904,19.5538],[-96.7843,19.5562],[-96.7783,19.5537],[-96.772,19.5571],[-96.7678,19.5653],[-96.7578,19.5753],[-96.7549,19.5723],[-96.7299,19.5711],[-96.7064,19.5646],[-96.7059,19.5586],[-96.6998,19.5547],[-96.6951,19.5473],[-96.6855,19.5413],[-96.6815,19.5335],[-96.6754,19.5331],[-96.6656,19.5398],[-96.6809,19.5578],[-96.6828,19.5691],[-96.6789,19.5828],[-96.6695,19.5834],[-96.6597,19.5896],[-96.6415,19.5807],[-96.6318,19.5784],[-96.6247,19.582],[-96.622,19.588],[-96.6119,19.5852],[-96.6146,19.5928],[-96.6226,19.6007],[-96.6185,19.6124],[-96.6191,19.6191],[-96.6079,19.6143],[-96.5999,19.6164],[-96.5982,19.6215],[-96.5859,19.6175],[-96.5638,19.6202],[-96.5596,19.6192],[-96.5475,19.6384],[-96.5414,19.644],[-96.5394,19.6549],[-96.5307,19.6566],[-96.5265,19.6626],[-96.5219,19.6824],[-96.5152,19.6873],[-96.5096,19.6838],[-96.5007,19.6838],[-96.5,19.6927],[-96.5037,19.7058],[-96.483,19.7121],[-96.4733,19.7116],[-96.4704,19.7188],[-96.46,19.7248],[-96.4481,19.727],[-96.4395,19.719],[-96.4335,19.7086],[-96.4268,19.7166],[-96.4105,19.711],[-96.4069,19.7051]]]},properties:{id:"30004",COUNTYID:"004",COUNTY:"Actopan",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30004"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-96.9997,19.0861],[-97.0038,19.0773],[-97.0089,19.0793],[-97.0179,19.0701],[-97.0099,19.0614],[-97.006,19.0513],[-97.033,19.0494],[-97.0226,19.0409],[-97.0209,19.0353],[-97.0277,19.0335],[-97.032,19.037],[-97.0426,19.0322],[-97.0519,19.0254],[-97.0721,19.0227],[-97.0674,19.0149],[-97.0652,19.0027],[-97.0768,19.0027],[-97.0865,18.9967],[-97.0907,18.9915],[-97.092,18.9838],[-97.0987,18.9911],[-97.1038,18.9899],[-97.1112,18.9891],[-97.1184,18.9946],[-97.1302,18.9976],[-97.1464,19.0044],[-97.1542,19.0055],[-97.158,19.0112],[-97.1651,19.0131],[-97.1707,19.0223],[-97.176,19.0247],[-97.1862,19.0388],[-97.1966,19.0439],[-97.1948,19.0539],[-97.1925,19.0589],[-97.1745,19.0658],[-97.1671,19.0632],[-97.1558,19.0661],[-97.1453,19.0626],[-97.1352,19.0644],[-97.1324,19.0681],[-97.1227,19.0666],[-97.1148,19.0689],[-97.1142,19.0763],[-97.1043,19.0818],[-97.0984,19.0796],[-97.0893,19.0904],[-97.0783,19.0924],[-97.0697,19.0995],[-97.0665,19.1129],[-97.0545,19.1099],[-97.0574,19.1219],[-97.0529,19.1323],[-97.0458,19.128],[-97.0381,19.1343],[-97.0315,19.1267],[-97.0256,19.1241],[-97.0259,19.1157],[-97.0143,19.108],[-97.0075,19.0932],[-96.9997,19.0861]]]},properties:{id:"30047",COUNTYID:"047",COUNTY:"Coscomatepec",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30047"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-97.1063,18.9108],[-97.0988,18.9029],[-97.0991,18.8975],[-97.1081,18.8946],[-97.1057,18.8862],[-97.1108,18.8713],[-97.1142,18.8757],[-97.1271,18.9055],[-97.1333,18.9056],[-97.1477,18.9123],[-97.155,18.9116],[-97.1634,18.9179],[-97.1773,18.9237],[-97.1791,18.9292],[-97.1893,18.9114],[-97.1974,18.9162],[-97.2045,18.9173],[-97.2138,18.9152],[-97.2179,18.9111],[-97.2183,18.911],[-97.2221,18.9208],[-97.2375,18.915],[-97.2419,18.9206],[-97.2472,18.9189],[-97.2509,18.9222],[-97.2553,18.9385],[-97.255,18.9438],[-97.2412,18.9496],[-97.2419,18.959],[-97.2348,18.9633],[-97.2371,18.971],[-97.2297,18.9791],[-97.2198,18.9735],[-97.2172,18.9657],[-97.2018,18.9669],[-97.1817,18.9578],[-97.1714,18.9564],[-97.1681,18.9586],[-97.1497,18.947],[-97.1395,18.9325],[-97.1341,18.921],[-97.1235,18.9214],[-97.1146,18.9302],[-97.1108,18.9265],[-97.1107,18.9186],[-97.1063,18.9108]]]},properties:{id:"30101",COUNTYID:"101",COUNTY:"Mariano Escobedo",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30101"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-96.7371,19.3724],[-96.738,19.3623],[-96.7328,19.3515],[-96.7306,19.3352],[-96.7186,19.3154],[-96.7029,19.3118],[-96.704,19.2956],[-96.7088,19.286],[-96.7002,19.2755],[-96.7044,19.2685],[-96.7253,19.2691],[-96.7256,19.283],[-96.7323,19.2841],[-96.7414,19.2964],[-96.7448,19.3136],[-96.7599,19.3118],[-96.7741,19.3054],[-96.7762,19.3096],[-96.7698,19.3276],[-96.7756,19.3376],[-96.7888,19.3361],[-96.8044,19.344],[-96.8045,19.3591],[-96.797,19.365],[-96.8252,19.379],[-96.8145,19.3859],[-96.8165,19.3953],[-96.8046,19.386],[-96.7836,19.3742],[-96.7797,19.3744],[-96.7789,19.3847],[-96.7817,19.3928],[-96.7662,19.3929],[-96.7577,19.3954],[-96.7469,19.3864],[-96.7371,19.3724]]]},properties:{id:"30088",COUNTYID:"088",COUNTY:"Jalcomulco",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30088"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-95.7583,18.555],[-95.7655,18.547],[-95.7599,18.5438],[-95.7544,18.5348],[-95.7433,18.537],[-95.7289,18.5435],[-95.7247,18.5343],[-95.7166,18.5236],[-95.7121,18.5103],[-95.7042,18.5007],[-95.7056,18.494],[-95.7207,18.4814],[-95.7461,18.4866],[-95.7547,18.4715],[-95.7764,18.4721],[-95.7782,18.4668],[-95.7873,18.4652],[-95.7995,18.468],[-95.8099,18.4816],[-95.8174,18.4787],[-95.827,18.484],[-95.8435,18.489],[-95.8508,18.4938],[-95.8505,18.4989],[-95.8334,18.5037],[-95.8303,18.5122],[-95.8266,18.5395],[-95.8403,18.552],[-95.8498,18.5655],[-95.8675,18.5645],[-95.8655,18.5758],[-95.8803,18.5801],[-95.8755,18.588],[-95.8767,18.5945],[-95.8891,18.6033],[-95.8921,18.6113],[-95.8787,18.6255],[-95.8787,18.6295],[-95.8655,18.6447],[-95.8577,18.6481],[-95.8501,18.648],[-95.8459,18.6539],[-95.8332,18.6546],[-95.8209,18.6453],[-95.8075,18.6455],[-95.8025,18.6396],[-95.8112,18.6174],[-95.8055,18.6153],[-95.7935,18.6154],[-95.7899,18.596],[-95.7835,18.5889],[-95.7863,18.5827],[-95.7775,18.5743],[-95.7754,18.5694],[-95.766,18.5715],[-95.7583,18.555]]]},properties:{id:"30005",COUNTYID:"005",COUNTY:"Acula",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30005"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-96.8258,19.2467],[-96.8339,19.2457],[-96.836,19.2397],[-96.8569,19.2266],[-96.8778,19.2188],[-96.887,19.217],[-96.8941,19.224],[-96.9111,19.2285],[-96.9143,19.2331],[-96.898,19.2428],[-96.8983,19.2512],[-96.8892,19.2588],[-96.8795,19.2608],[-96.8697,19.273],[-96.8591,19.2809],[-96.8534,19.2884],[-96.8318,19.2998],[-96.8196,19.2987],[-96.8134,19.2922],[-96.7927,19.2832],[-96.7911,19.2856],[-96.7775,19.2846],[-96.77,19.2879],[-96.7631,19.2839],[-96.754,19.2733],[-96.7785,19.269],[-96.7819,19.2645],[-96.7993,19.2571],[-96.8224,19.2491],[-96.8258,19.2467]]]},properties:{id:"30162",COUNTYID:"162",COUNTY:"Tenampa",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30162"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-97.0665,19.1129],[-97.0697,19.0995],[-97.0783,19.0924],[-97.0893,19.0904],[-97.0984,19.0796],[-97.1043,19.0818],[-97.1142,19.0763],[-97.1148,19.0689],[-97.1227,19.0666],[-97.1324,19.0681],[-97.1352,19.0644],[-97.1453,19.0626],[-97.1558,19.0661],[-97.1671,19.0632],[-97.1745,19.0658],[-97.18,19.0671],[-97.1882,19.074],[-97.1971,19.077],[-97.1983,19.0961],[-97.2014,19.0997],[-97.1451,19.1259],[-97.1405,19.1287],[-97.1203,19.1316],[-97.1203,19.1367],[-97.1093,19.1339],[-97.0992,19.1262],[-97.0916,19.1274],[-97.0888,19.1216],[-97.0799,19.1162],[-97.0665,19.1129]]]},properties:{id:"30008",COUNTYID:"008",COUNTY:"Alpatláhuac",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30008"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-96.6503,19.9027],[-96.6517,19.8987],[-96.6605,19.8931],[-96.6638,19.884],[-96.6743,19.8721],[-96.6923,19.8721],[-96.702,19.8841],[-96.7154,19.878],[-96.7182,19.8864],[-96.7121,19.8887],[-96.7163,19.9025],[-96.7215,19.9054],[-96.7395,19.9084],[-96.7496,19.8944],[-96.7557,19.8889],[-96.7708,19.9027],[-96.771,19.9048],[-96.7858,19.9246],[-96.7942,19.931],[-96.7936,19.9417],[-96.775,19.9385],[-96.7725,19.9448],[-96.7646,19.9479],[-96.7631,19.9529],[-96.7504,19.9667],[-96.7383,19.977],[-96.7344,19.9881],[-96.73,19.9867],[-96.7316,19.9757],[-96.7265,19.9693],[-96.7219,19.9769],[-96.7096,19.9704],[-96.7029,19.9702],[-96.6909,19.9765],[-96.6826,19.9787],[-96.678,19.9873],[-96.6726,19.9892],[-96.6625,19.9985],[-96.6575,19.9852],[-96.6534,19.9894],[-96.6451,19.9908],[-96.6449,19.9763],[-96.6414,19.9703],[-96.6418,19.961],[-96.6532,19.9479],[-96.6402,19.9462],[-96.6376,19.9419],[-96.6438,19.9355],[-96.6434,19.9248],[-96.6545,19.9156],[-96.6503,19.9027]]]},properties:{id:"30042",COUNTYID:"042",COUNTY:"Colipa",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30042"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-96.5294,19.0438],[-96.5258,19.0457],[-96.5131,19.0405],[-96.5064,19.0403],[-96.4948,19.048],[-96.4852,19.0424],[-96.4825,19.0297],[-96.4903,19.0298],[-96.4919,19.0186],[-96.4896,18.9887],[-96.4938,18.989],[-96.5052,18.9972],[-96.5103,18.9943],[-96.5203,18.9941],[-96.5264,18.9896],[-96.5268,18.9799],[-96.5408,18.9787],[-96.5514,18.9741],[-96.558,18.977],[-96.5572,18.9655],[-96.5399,18.9578],[-96.5439,18.9543],[-96.5557,18.9581],[-96.5783,18.9605],[-96.6003,18.955],[-96.6037,18.9618],[-96.6133,18.9503],[-96.6168,18.9577],[-96.6062,18.9696],[-96.6135,18.9702],[-96.6312,18.9759],[-96.6168,18.9781],[-96.6145,18.9877],[-96.6104,18.9876],[-96.6124,19.0024],[-96.612,19.0163],[-96.6193,19.016],[-96.6199,19.0219],[-96.6357,19.0189],[-96.6419,19.0136],[-96.6556,19.0181],[-96.6678,19.0199],[-96.6626,19.0353],[-96.6554,19.034],[-96.6484,19.0386],[-96.643,19.0479],[-96.6343,19.0469],[-96.6303,19.0427],[-96.6205,19.048],[-96.6161,19.0555],[-96.605,19.0498],[-96.5847,19.0502],[-96.5631,19.0542],[-96.5539,19.0512],[-96.5519,19.0392],[-96.5408,19.0454],[-96.5368,19.0399],[-96.5294,19.0438]]]},properties:{id:"30007",COUNTYID:"007",COUNTY:"Camarón de Tejeda",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30007"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-97.0844,18.8805],[-97.0848,18.875],[-97.0791,18.8662],[-97.0738,18.8664],[-97.068,18.8594],[-97.0702,18.8507],[-97.0836,18.8346],[-97.0871,18.8329],[-97.0985,18.833],[-97.1102,18.832],[-97.1181,18.8429],[-97.1309,18.8447],[-97.1318,18.8537],[-97.148,18.8533],[-97.1576,18.8656],[-97.1517,18.8633],[-97.1384,18.8669],[-97.1293,18.8644],[-97.1188,18.8662],[-97.1108,18.8713],[-97.1057,18.8862],[-97.1009,18.8811],[-97.0904,18.876],[-97.0844,18.8805]]]},properties:{id:"30118",COUNTYID:"118",COUNTY:"Orizaba",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30118"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-94.8122,18.0509],[-94.8107,18.0441],[-94.8051,18.0423],[-94.7931,18.0296],[-94.7913,18.0251],[-94.7821,18.0233],[-94.7695,18.0265],[-94.764,18.02],[-94.765,18.0056],[-94.7718,18.0007],[-94.7813,17.9996],[-94.7805,17.9908],[-94.7834,17.984],[-94.7914,17.9801],[-94.7966,17.9785],[-94.8131,17.9684],[-94.8212,17.9733],[-94.8286,17.9652],[-94.8378,17.9638],[-94.8565,17.9552],[-94.8905,17.9525],[-94.9066,17.9594],[-94.9119,17.9713],[-94.8992,17.9715],[-94.9001,17.9774],[-94.8972,17.988],[-94.8906,17.9949],[-94.8845,17.9951],[-94.8716,17.9871],[-94.8669,17.9933],[-94.8538,17.9919],[-94.8495,17.9985],[-94.8558,18.0078],[-94.8643,18.0262],[-94.8712,18.0314],[-94.8682,18.0419],[-94.8576,18.0432],[-94.8598,18.0526],[-94.8558,18.0559],[-94.8494,18.0537],[-94.8395,18.06],[-94.8205,18.0611],[-94.8122,18.0509]]]},properties:{id:"30145",COUNTYID:"145",COUNTY:"Soconusco",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30145"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-96.2636,19.1333],[-96.272,19.1218],[-96.2637,19.1185],[-96.2609,19.1021],[-96.2631,19.093],[-96.2563,19.0919],[-96.2587,19.0798],[-96.2638,19.0756],[-96.2644,19.0642],[-96.2828,19.0608],[-96.287,19.0527],[-96.2921,19.0522],[-96.299,19.0338],[-96.3036,19.0288],[-96.3125,19.0284],[-96.2954,19.0076],[-96.2999,18.9973],[-96.3066,19.0003],[-96.3131,18.9938],[-96.3155,18.9823],[-96.3039,18.9835],[-96.3052,18.9741],[-96.3144,18.9782],[-96.3246,18.978],[-96.321,18.9884],[-96.3199,18.9994],[-96.3344,19.0029],[-96.3361,19.0108],[-96.3417,19.0167],[-96.3522,19.0153],[-96.3534,19.0202],[-96.3625,19.0192],[-96.3839,19.0253],[-96.3899,19.0251],[-96.3992,19.0323],[-96.3953,19.0374],[-96.3998,19.0447],[-96.3906,19.0477],[-96.3812,19.0656],[-96.3731,19.076],[-96.3813,19.0857],[-96.3787,19.0943],[-96.3918,19.0906],[-96.3971,19.093],[-96.3952,19.1107],[-96.3993,19.136],[-96.4074,19.1339],[-96.4093,19.1472],[-96.4155,19.1495],[-96.4122,19.1589],[-96.4027,19.1719],[-96.4083,19.1725],[-96.4156,19.1682],[-96.4287,19.1731],[-96.4377,19.1701],[-96.4439,19.1765],[-96.4445,19.1863],[-96.4338,19.1837],[-96.4209,19.1894],[-96.4112,19.182],[-96.405,19.186],[-96.392,19.1883],[-96.3846,19.1876],[-96.3798,19.1921],[-96.3677,19.1973],[-96.3642,19.191],[-96.3447,19.1947],[-96.3323,19.1988],[-96.3197,19.1987],[-96.3147,19.1913],[-96.3088,19.192],[-96.3061,19.1857],[-96.31,19.179],[-96.3138,19.1606],[-96.3041,19.1574],[-96.2974,19.1591],[-96.2929,19.1542],[-96.2666,19.1374],[-96.2636,19.1333]]]},properties:{id:"30100",COUNTYID:"100",COUNTY:"Manlio Fabio Altamirano",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30100"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-96.8136,19.6989],[-96.8215,19.6952],[-96.8228,19.6839],[-96.8296,19.6817],[-96.831,19.6729],[-96.8498,19.6644],[-96.8544,19.6728],[-96.8616,19.6802],[-96.8644,19.69],[-96.8619,19.6949],[-96.8544,19.6954],[-96.8558,19.7088],[-96.8482,19.7128],[-96.8345,19.7146],[-96.8202,19.711],[-96.8185,19.6995],[-96.8136,19.6989]]]},properties:{id:"30002",COUNTYID:"002",COUNTY:"Acatlán",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30002"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-97.1038,18.9899],[-97.1113,18.9791],[-97.1235,18.9772],[-97.1277,18.9708],[-97.1239,18.9605],[-97.1203,18.9595],[-97.1208,18.9486],[-97.113,18.9427],[-97.0943,18.937],[-97.0871,18.9195],[-97.1063,18.9108],[-97.1107,18.9186],[-97.1108,18.9265],[-97.1146,18.9302],[-97.1235,18.9214],[-97.1341,18.921],[-97.1395,18.9325],[-97.1497,18.947],[-97.1681,18.9586],[-97.1714,18.9564],[-97.1817,18.9578],[-97.2018,18.9669],[-97.2172,18.9657],[-97.2198,18.9735],[-97.2297,18.9791],[-97.2371,18.971],[-97.2348,18.9633],[-97.2419,18.959],[-97.2412,18.9496],[-97.255,18.9438],[-97.2586,18.9559],[-97.2592,18.9661],[-97.2566,18.9704],[-97.2613,18.9813],[-97.2789,18.9967],[-97.2851,18.9994],[-97.2795,19.0065],[-97.2769,19.0153],[-97.2672,19.0298],[-97.2565,19.0343],[-97.2393,19.0457],[-97.2243,19.0448],[-97.2197,19.0492],[-97.2147,19.046],[-97.1948,19.0539],[-97.1966,19.0439],[-97.1862,19.0388],[-97.176,19.0247],[-97.1707,19.0223],[-97.1651,19.0131],[-97.158,19.0112],[-97.1542,19.0055],[-97.1464,19.0044],[-97.1302,18.9976],[-97.1184,18.9946],[-97.1112,18.9891],[-97.1038,18.9899]]]},properties:{id:"30127",COUNTYID:"127",COUNTY:"La Perla",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30127"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-95.8515,18.1308],[-95.9027,18.1357],[-95.8955,18.1465],[-95.899,18.1512],[-95.9122,18.1534],[-95.9083,18.1618],[-95.9097,18.1702],[-95.9137,18.1711],[-95.9108,18.1849],[-95.8987,18.1903],[-95.89,18.1884],[-95.8789,18.1978],[-95.8818,18.2075],[-95.8896,18.2125],[-95.8938,18.2236],[-95.9116,18.2219],[-95.9111,18.2406],[-95.9197,18.2468],[-95.912,18.2506],[-95.9015,18.2396],[-95.8884,18.2506],[-95.8466,18.2091],[-95.8443,18.2046],[-95.8452,18.1919],[-95.8414,18.1832],[-95.8487,18.1827],[-95.8619,18.1774],[-95.8714,18.1758],[-95.8675,18.1507],[-95.8577,18.1482],[-95.8498,18.1412],[-95.8515,18.1308]]]},properties:{id:"30190",COUNTYID:"190",COUNTY:"Tuxtilla",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30190"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-94.4325,17.4538],[-94.4345,17.4395],[-94.4297,17.4356],[-94.4289,17.428],[-94.3565,17.4513],[-94.3508,17.4365],[-94.3734,17.4296],[-94.3687,17.4272],[-94.3616,17.4143],[-94.36,17.4033],[-94.3495,17.3973],[-94.3335,17.3973],[-94.2557,17.4012],[-94.2163,17.3168],[-94.2082,17.3239],[-94.1783,17.3395],[-94.1431,17.3434],[-94.1279,17.3459],[-94.1176,17.3429],[-94.0869,17.3434],[-94.0872,17.3406],[-94.0444,17.3408],[-94.0352,17.344],[-94.0342,17.325],[-93.9778,17.3248],[-93.9621,17.3183],[-93.9681,17.303],[-93.9523,17.3068],[-93.941,17.3047],[-93.9378,17.3006],[-93.9231,17.2978],[-93.9248,17.291],[-93.931,17.2815],[-93.9317,17.2001],[-94.0019,17.1996],[-94.0016,17.1841],[-94.0901,17.1846],[-94.0856,17.179],[-94.0856,17.1553],[-94.0875,17.1494],[-94.2597,17.159],[-94.3663,17.1648],[-94.5375,17.1739],[-94.7436,17.1847],[-94.7389,17.1939],[-94.7492,17.1958],[-94.7566,17.2136],[-94.7535,17.2172],[-94.7564,17.2274],[-94.7481,17.2547],[-94.7443,17.2596],[-94.7487,17.2686],[-94.7542,17.2708],[-94.7541,17.2791],[-94.7471,17.2863],[-94.7401,17.286],[-94.7278,17.2919],[-94.7259,17.2952],[-94.6997,17.2949],[-94.6964,17.3361],[-94.6775,17.3332],[-94.6649,17.3292],[-94.6553,17.3309],[-94.6488,17.3276],[-94.6481,17.3226],[-94.6389,17.3216],[-94.6323,17.3795],[-94.6233,17.3782],[-94.6087,17.3699],[-94.6095,17.3661],[-94.5995,17.3608],[-94.5954,17.4011],[-94.5849,17.3993],[-94.5271,17.3921],[-94.4942,17.3884],[-94.4847,17.4005],[-94.4971,17.4076],[-94.5051,17.4065],[-94.5112,17.4129],[-94.5232,17.4142],[-94.5296,17.4182],[-94.5325,17.4323],[-94.531,17.4595],[-94.5193,17.4585],[-94.5196,17.4629],[-94.4792,17.4591],[-94.4325,17.4538]]]},properties:{id:"30210",COUNTYID:"210",COUNTY:"Uxpanapa",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30210"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-94.6543,17.9717],[-94.6727,17.9677],[-94.6763,17.9623],[-94.6884,17.9576],[-94.6963,17.9649],[-94.6915,17.9881],[-94.6922,18.0065],[-94.684,18.0122],[-94.6771,18.0096],[-94.6703,18.0138],[-94.6611,18.0123],[-94.651,18.0175],[-94.6497,18.0054],[-94.6527,17.9856],[-94.6591,17.9781],[-94.6543,17.9717]]]},properties:{id:"30120",COUNTYID:"120",COUNTY:"Oteapan",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30120"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-97.1102,18.832],[-97.0985,18.833],[-97.0954,18.8257],[-97.1069,18.817],[-97.1228,18.8124],[-97.1208,18.8074],[-97.1318,18.7964],[-97.1403,18.796],[-97.1576,18.8037],[-97.1664,18.8055],[-97.1667,18.8096],[-97.1574,18.8184],[-97.1528,18.8255],[-97.1503,18.8302],[-97.1348,18.8367],[-97.1266,18.8349],[-97.1167,18.8292],[-97.1102,18.832]]]},properties:{id:"30074",COUNTYID:"074",COUNTY:"Huiloapan de Cuauhtémoc",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30074"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-95.7665,18.3147],[-95.7686,18.3061],[-95.7787,18.3012],[-95.7841,18.291],[-95.7921,18.2857],[-95.7821,18.2816],[-95.7789,18.2688],[-95.774,18.2684],[-95.7717,18.2766],[-95.7638,18.2737],[-95.7581,18.2643],[-95.7546,18.2507],[-95.7482,18.244],[-95.7383,18.2415],[-95.7423,18.2338],[-95.7334,18.2311],[-95.7326,18.2208],[-95.7183,18.2148],[-95.7248,18.2104],[-95.7143,18.2038],[-95.7097,18.2077],[-95.7045,18.2047],[-95.7085,18.1984],[-95.7077,18.1888],[-95.7219,18.1872],[-95.7262,18.1823],[-95.7286,18.164],[-95.7338,18.1634],[-95.7487,18.1548],[-95.7654,18.1506],[-95.765,18.1426],[-95.7705,18.1426],[-95.7695,18.1301],[-95.7758,18.1245],[-95.778,18.1084],[-95.7753,18.1026],[-95.7809,18.093],[-95.7954,18.0883],[-95.8166,18.0851],[-95.8242,18.081],[-95.8332,18.129],[-95.8515,18.1308],[-95.8498,18.1412],[-95.8577,18.1482],[-95.8675,18.1507],[-95.8714,18.1758],[-95.8619,18.1774],[-95.8487,18.1827],[-95.8414,18.1832],[-95.8452,18.1919],[-95.8443,18.2046],[-95.8466,18.2091],[-95.8884,18.2506],[-95.9015,18.2396],[-95.912,18.2506],[-95.9176,18.2663],[-95.9165,18.2702],[-95.9047,18.2769],[-95.8909,18.2744],[-95.881,18.2751],[-95.8563,18.2825],[-95.8493,18.2874],[-95.8454,18.2961],[-95.8458,18.3065],[-95.8507,18.3158],[-95.8462,18.3276],[-95.8396,18.3332],[-95.8301,18.3336],[-95.8219,18.3245],[-95.8124,18.3171],[-95.8022,18.3181],[-95.7912,18.3379],[-95.783,18.3414],[-95.7859,18.3286],[-95.7767,18.318],[-95.7665,18.3147]]]},properties:{id:"30054",COUNTYID:"054",COUNTY:"Chacaltianguis",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30054"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-97.0705,18.7774],[-97.0711,18.7691],[-97.0667,18.7591],[-97.065,18.7552],[-97.0695,18.7472],[-97.0799,18.7576],[-97.1002,18.7483],[-97.1077,18.7507],[-97.1116,18.7569],[-97.1137,18.767],[-97.1217,18.7759],[-97.1208,18.7829],[-97.111,18.7907],[-97.1015,18.7918],[-97.0873,18.796],[-97.0677,18.7874],[-97.0705,18.7774]]]},properties:{id:"30140",COUNTYID:"140",COUNTY:"San Andrés Tenejapan",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30140"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-94.6714,17.9557],[-94.6763,17.9623],[-94.6727,17.9677],[-94.6543,17.9717],[-94.647,17.9633],[-94.6362,17.9717],[-94.6318,17.9659],[-94.6224,17.9609],[-94.6213,17.966],[-94.6134,17.9646],[-94.615,17.9506],[-94.6086,17.9346],[-94.6184,17.9302],[-94.6225,17.9237],[-94.6285,17.9247],[-94.6372,17.9329],[-94.6437,17.9336],[-94.6526,17.9401],[-94.6569,17.9481],[-94.6663,17.9485],[-94.6714,17.9557]]]},properties:{id:"30199",COUNTYID:"199",COUNTY:"Zaragoza",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30199"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-97.1102,18.832],[-97.1167,18.8292],[-97.1266,18.8349],[-97.1348,18.8367],[-97.1503,18.8302],[-97.1528,18.8255],[-97.1611,18.8341],[-97.168,18.8305],[-97.1707,18.8395],[-97.1782,18.8495],[-97.1805,18.8569],[-97.1754,18.8631],[-97.1656,18.8584],[-97.1576,18.8656],[-97.148,18.8533],[-97.1318,18.8537],[-97.1309,18.8447],[-97.1181,18.8429],[-97.1102,18.832]]]},properties:{id:"30138",COUNTYID:"138",COUNTY:"Río Blanco",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30138"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-97.1108,18.8713],[-97.1188,18.8662],[-97.1293,18.8644],[-97.1384,18.8669],[-97.1517,18.8633],[-97.1576,18.8656],[-97.1656,18.8584],[-97.1754,18.8631],[-97.1805,18.8569],[-97.1912,18.8681],[-97.205,18.8723],[-97.2029,18.8767],[-97.2125,18.8963],[-97.2179,18.9111],[-97.2138,18.9152],[-97.2045,18.9173],[-97.1974,18.9162],[-97.1893,18.9114],[-97.1791,18.9292],[-97.1773,18.9237],[-97.1634,18.9179],[-97.155,18.9116],[-97.1477,18.9123],[-97.1333,18.9056],[-97.1271,18.9055],[-97.1142,18.8757],[-97.1108,18.8713]]]},properties:{id:"30081",COUNTYID:"081",COUNTY:"Ixhuatlancillo",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30081"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-98.3359,20.685],[-98.3549,20.6679],[-98.346,20.6595],[-98.3412,20.6484],[-98.3483,20.6465],[-98.3654,20.6465],[-98.3768,20.617],[-98.3877,20.611],[-98.3928,20.6054],[-98.4038,20.6041],[-98.4046,20.5982],[-98.3991,20.5858],[-98.3979,20.5716],[-98.4076,20.5631],[-98.4074,20.5504],[-98.4052,20.5445],[-98.3986,20.5417],[-98.4045,20.5331],[-98.4135,20.5324],[-98.4149,20.538],[-98.4241,20.5359],[-98.4247,20.5238],[-98.429,20.5244],[-98.4304,20.513],[-98.4038,20.4822],[-98.4052,20.4766],[-98.4131,20.4685],[-98.4116,20.462],[-98.4196,20.4545],[-98.4257,20.4448],[-98.4314,20.4418],[-98.4411,20.4303],[-98.4379,20.4218],[-98.4449,20.4168],[-98.4446,20.3998],[-98.4294,20.4001],[-98.414,20.408],[-98.413,20.4007],[-98.4055,20.4031],[-98.4013,20.4093],[-98.3862,20.4027],[-98.4183,20.38],[-98.4333,20.3638],[-98.4604,20.3314],[-98.4663,20.3343],[-98.4804,20.3365],[-98.4864,20.3348],[-98.4963,20.3386],[-98.5195,20.3401],[-98.5343,20.3463],[-98.5389,20.3547],[-98.5474,20.3612],[-98.5431,20.3756],[-98.5459,20.3892],[-98.5502,20.3957],[-98.5496,20.4187],[-98.5513,20.4238],[-98.55,20.4355],[-98.5544,20.4385],[-98.5537,20.4464],[-98.5721,20.4639],[-98.5787,20.4732],[-98.5793,20.4787],[-98.595,20.4911],[-98.5933,20.4994],[-98.5841,20.5044],[-98.5768,20.5043],[-98.5711,20.509],[-98.5581,20.5109],[-98.5541,20.5189],[-98.5456,20.521],[-98.5347,20.5307],[-98.5308,20.5402],[-98.5245,20.5484],[-98.5234,20.5641],[-98.5243,20.575],[-98.5211,20.5844],[-98.5122,20.5942],[-98.5059,20.5962],[-98.4963,20.5895],[-98.4802,20.589],[-98.4785,20.5943],[-98.4895,20.6197],[-98.4904,20.627],[-98.4952,20.6366],[-98.4948,20.6443],[-98.487,20.6501],[-98.486,20.6544],[-98.47,20.6626],[-98.4604,20.6768],[-98.4585,20.6854],[-98.4599,20.6962],[-98.4491,20.7007],[-98.4292,20.7164],[-98.4031,20.7078],[-98.3882,20.6955],[-98.362,20.6866],[-98.342,20.6888],[-98.3359,20.685]]]},properties:{id:"30072",COUNTYID:"072",COUNTY:"Huayacocotla",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30072"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-97.0847,18.6412],[-97.0784,18.6294],[-97.069,18.6145],[-97.0671,18.6069],[-97.0612,18.5983],[-97.0489,18.5884],[-97.0751,18.5821],[-97.0863,18.5823],[-97.0977,18.5777],[-97.1157,18.5762],[-97.1192,18.5719],[-97.1289,18.5758],[-97.1446,18.5709],[-97.1459,18.5822],[-97.1424,18.5933],[-97.1402,18.6176],[-97.1342,18.6285],[-97.1231,18.6357],[-97.1342,18.6422],[-97.1342,18.6481],[-97.1217,18.6486],[-97.1094,18.6554],[-97.0951,18.648],[-97.0894,18.6483],[-97.0847,18.6412]]]},properties:{id:"30184",COUNTYID:"184",COUNTY:"Tlaquilpa",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30184"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-96.8956,19.7676],[-96.9227,19.7609],[-96.9323,19.7552],[-96.9455,19.764],[-96.9565,19.7634],[-96.9649,19.7705],[-96.967,19.7781],[-96.9743,19.7848],[-96.9845,19.7828],[-96.9941,19.785],[-96.9931,19.791],[-96.9875,19.7956],[-96.9754,19.7969],[-96.9683,19.8081],[-96.96,19.8148],[-96.9649,19.8242],[-96.9732,19.8233],[-96.9733,19.8288],[-96.9819,19.838],[-96.9748,19.841],[-96.9689,19.8498],[-96.9581,19.855],[-96.9564,19.8617],[-96.9504,19.8677],[-96.9556,19.8762],[-96.9563,19.893],[-96.9563,19.8952],[-96.9493,19.895],[-96.9307,19.8765],[-96.9121,19.848],[-96.9144,19.8424],[-96.9094,19.8358],[-96.9052,19.8236],[-96.9008,19.8199],[-96.8992,19.807],[-96.8956,19.8011],[-96.8974,19.7908],[-96.8933,19.7841],[-96.9011,19.7816],[-96.9026,19.777],[-96.8956,19.7676]]]},properties:{id:"30163",COUNTYID:"163",COUNTY:"Tenochtitlán",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30163"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-96.7263,18.7442],[-96.7157,18.7455],[-96.6895,18.7445],[-96.6658,18.7499],[-96.6621,18.7452],[-96.6548,18.7515],[-96.6485,18.7461],[-96.6275,18.742],[-96.5936,18.7383],[-96.5887,18.7418],[-96.5768,18.7388],[-96.5867,18.7371],[-96.5874,18.7319],[-96.5789,18.7307],[-96.58,18.7246],[-96.5674,18.7189],[-96.5669,18.7077],[-96.5767,18.7036],[-96.5914,18.7053],[-96.5985,18.7018],[-96.5986,18.6929],[-96.5904,18.6898],[-96.5918,18.6801],[-96.6132,18.676],[-96.6179,18.6611],[-96.6119,18.6546],[-96.6272,18.6356],[-96.6282,18.6319],[-96.6402,18.6378],[-96.6557,18.6516],[-96.6592,18.6505],[-96.6699,18.6614],[-96.6833,18.6693],[-96.681,18.6484],[-96.6841,18.6443],[-96.7082,18.6582],[-96.7217,18.6727],[-96.7235,18.6796],[-96.7332,18.6877],[-96.7441,18.6925],[-96.7605,18.6933],[-96.7646,18.6972],[-96.7723,18.6939],[-96.7862,18.7122],[-96.7929,18.7143],[-96.8056,18.7256],[-96.8124,18.7388],[-96.8205,18.7365],[-96.8283,18.7446],[-96.8358,18.7463],[-96.8429,18.7526],[-96.8472,18.7439],[-96.8617,18.7469],[-96.8717,18.7523],[-96.8822,18.7486],[-96.8849,18.7449],[-96.893,18.7421],[-96.8957,18.7506],[-96.902,18.7514],[-96.9153,18.761],[-96.9072,18.7714],[-96.9086,18.781],[-96.9043,18.7861],[-96.8939,18.7805],[-96.888,18.7804],[-96.8769,18.7732],[-96.87,18.7626],[-96.8538,18.7583],[-96.846,18.7661],[-96.8228,18.7629],[-96.8128,18.7559],[-96.7994,18.7506],[-96.7803,18.7508],[-96.7679,18.7473],[-96.753,18.7462],[-96.7323,18.7396],[-96.7263,18.7442]]]},properties:{id:"30117",COUNTYID:"117",COUNTY:"Omealca",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30117"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-96.9628,18.7707],[-96.9614,18.7613],[-96.9525,18.7542],[-96.9586,18.7477],[-96.9645,18.7462],[-96.9741,18.7342],[-96.9859,18.7271],[-96.9935,18.7039],[-97.0041,18.7003],[-97.0139,18.7032],[-97.0345,18.7082],[-97.0398,18.7052],[-97.0447,18.7118],[-97.0542,18.7118],[-97.0492,18.704],[-97.0622,18.7063],[-97.0696,18.7032],[-97.076,18.7031],[-97.0747,18.7131],[-97.0855,18.716],[-97.0864,18.7083],[-97.1019,18.7062],[-97.1077,18.7109],[-97.114,18.7028],[-97.1212,18.7015],[-97.1281,18.7244],[-97.1322,18.7303],[-97.1355,18.737],[-97.1329,18.7543],[-97.1355,18.7616],[-97.1307,18.7663],[-97.1284,18.767],[-97.1177,18.757],[-97.1116,18.7569],[-97.1077,18.7507],[-97.1002,18.7483],[-97.0799,18.7576],[-97.0695,18.7472],[-97.065,18.7552],[-97.0667,18.7591],[-97.0583,18.7598],[-97.0468,18.7475],[-97.0284,18.7532],[-97.0221,18.7626],[-97.0142,18.7556],[-97.0113,18.7576],[-97.0093,18.7689],[-97.0033,18.7721],[-96.9959,18.7699],[-96.9839,18.7791],[-96.9876,18.7941],[-96.9748,18.7988],[-96.9804,18.7936],[-96.9751,18.7797],[-96.9628,18.7707]]]},properties:{id:"30168",COUNTYID:"168",COUNTY:"Tequila",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30168"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-97.0259,19.78],[-97.0233,19.7751],[-97.0268,19.7648],[-97.0223,19.7585],[-97.0317,19.7543],[-97.0296,19.7474],[-97.0342,19.7345],[-97.0292,19.7259],[-97.0309,19.7192],[-97.0367,19.7153],[-97.0442,19.706],[-97.0476,19.7056],[-97.0659,19.6938],[-97.0683,19.685],[-97.0787,19.684],[-97.0748,19.675],[-97.0797,19.6674],[-97.087,19.6669],[-97.0911,19.6568],[-97.1032,19.656],[-97.1059,19.6592],[-97.1154,19.6582],[-97.1158,19.6512],[-97.151,19.6463],[-97.1452,19.6554],[-97.1402,19.6711],[-97.1475,19.6866],[-97.1337,19.6874],[-97.141,19.6966],[-97.1352,19.6996],[-97.1166,19.7149],[-97.1126,19.7215],[-97.1027,19.7267],[-97.1113,19.7401],[-97.0779,19.7462],[-97.0794,19.756],[-97.0711,19.7661],[-97.0656,19.7686],[-97.0588,19.7639],[-97.0565,19.7709],[-97.0366,19.7812],[-97.0259,19.78]]]},properties:{id:"30156",COUNTYID:"156",COUNTY:"Tatatila",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30156"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-97.1113,19.7401],[-97.1027,19.7267],[-97.1126,19.7215],[-97.1166,19.7149],[-97.1352,19.6996],[-97.141,19.6966],[-97.1337,19.6874],[-97.1475,19.6866],[-97.1402,19.6711],[-97.1452,19.6554],[-97.151,19.6463],[-97.1665,19.6589],[-97.1957,19.6783],[-97.1992,19.6833],[-97.1887,19.6857],[-97.1822,19.6944],[-97.1833,19.6994],[-97.1791,19.7076],[-97.1692,19.7146],[-97.1686,19.72],[-97.1532,19.7386],[-97.1439,19.7396],[-97.1334,19.7562],[-97.1274,19.7602],[-97.1169,19.7442],[-97.1113,19.7401]]]},properties:{id:"30107",COUNTYID:"107",COUNTY:"Las Minas",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30107"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-94.8351,18.3242],[-94.8349,18.3071],[-94.8227,18.2836],[-94.821,18.2734],[-94.814,18.2695],[-94.8144,18.265],[-94.8248,18.2668],[-94.8268,18.2622],[-94.8436,18.2625],[-94.8511,18.2595],[-94.8528,18.2482],[-94.8592,18.2427],[-94.8548,18.2259],[-94.8608,18.2245],[-94.8546,18.2126],[-94.8494,18.1941],[-94.8417,18.1943],[-94.8394,18.1786],[-94.8457,18.1768],[-94.8435,18.1604],[-94.8317,18.1618],[-94.8247,18.1563],[-94.8162,18.16],[-94.8121,18.1559],[-94.7973,18.1552],[-94.7982,18.1463],[-94.7962,18.1266],[-94.8154,18.1292],[-94.8187,18.1171],[-94.8332,18.124],[-94.8365,18.1145],[-94.8438,18.1078],[-94.8428,18.0998],[-94.8526,18.1016],[-94.8543,18.0943],[-94.8425,18.086],[-94.8042,18.0865],[-94.8002,18.082],[-94.8001,18.0741],[-94.7952,18.0722],[-94.8122,18.0509],[-94.8205,18.0611],[-94.8395,18.06],[-94.8494,18.0537],[-94.8558,18.0559],[-94.8598,18.0526],[-94.8743,18.0654],[-94.8809,18.0864],[-94.8806,18.0945],[-94.8855,18.0976],[-94.8841,18.1071],[-94.8987,18.1141],[-94.9113,18.1154],[-94.9184,18.1187],[-94.9177,18.1289],[-94.923,18.1346],[-94.9346,18.1354],[-94.9376,18.1411],[-94.9437,18.1375],[-94.9752,18.115],[-94.9895,18.1064],[-94.9926,18.1104],[-94.9894,18.1261],[-94.9919,18.1274],[-94.9799,18.1365],[-94.9799,18.1421],[-94.9709,18.1489],[-94.966,18.1495],[-94.9624,18.1621],[-94.965,18.1654],[-94.9653,18.1821],[-94.9598,18.1872],[-94.9582,18.1939],[-94.9639,18.1957],[-94.9649,18.2041],[-94.9619,18.2171],[-94.964,18.2338],[-94.973,18.2298],[-94.9802,18.234],[-94.9805,18.2468],[-94.9849,18.2464],[-94.9881,18.2544],[-94.9851,18.2614],[-94.9964,18.2683],[-94.992,18.2842],[-94.9975,18.2856],[-94.9978,18.2941],[-95.0019,18.3064],[-94.9904,18.3081],[-94.9872,18.3116],[-94.994,18.3178],[-94.9977,18.3268],[-95.0105,18.3241],[-95.0179,18.32],[-95.0317,18.3265],[-95.026,18.3375],[-95.015,18.3404],[-95.0086,18.3457],[-94.9992,18.3477],[-94.9919,18.3442],[-94.9854,18.3468],[-94.973,18.3639],[-94.9569,18.3635],[-94.9516,18.361],[-94.9449,18.365],[-94.9399,18.3579],[-94.9348,18.3559],[-94.9201,18.3588],[-94.9164,18.354],[-94.9078,18.3599],[-94.8971,18.3566],[-94.8954,18.3686],[-94.8803,18.3718],[-94.8771,18.38],[-94.8692,18.3896],[-94.8616,18.3926],[-94.8567,18.3997],[-94.8333,18.4039],[-94.8341,18.3897],[-94.8288,18.3908],[-94.8226,18.3723],[-94.8278,18.3565],[-94.8329,18.3506],[-94.8345,18.3432],[-94.8324,18.3356],[-94.8368,18.3304],[-94.8351,18.3242]]]},properties:{id:"30149",COUNTYID:"149",COUNTY:"Soteapan",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30149"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-95.0075,17.9299],[-95.0166,17.9156],[-95.0219,17.9036],[-95.0215,17.8963],[-95.0341,17.8884],[-95.0328,17.8748],[-95.0268,17.8612],[-95.0286,17.8521],[-95.0368,17.8411],[-95.0278,17.8336],[-95.0277,17.825],[-95.0407,17.824],[-95.0483,17.8206],[-95.0471,17.8047],[-95.0522,17.8037],[-95.0565,17.7949],[-95.0637,17.7864],[-95.0728,17.7864],[-95.0631,17.7726],[-95.0503,17.7723],[-95.0479,17.7638],[-95.0364,17.768],[-95.0378,17.7728],[-95.0294,17.7816],[-95.0238,17.7761],[-95.0383,17.7515],[-95.0049,17.7332],[-94.9937,17.7299],[-94.9851,17.725],[-94.9857,17.7215],[-94.9722,17.7207],[-94.9724,17.7162],[-94.9613,17.7157],[-94.9616,17.7117],[-94.9526,17.7084],[-94.9419,17.7086],[-94.9381,17.699],[-94.9469,17.6966],[-94.9526,17.6901],[-94.9484,17.6784],[-94.941,17.6762],[-94.9392,17.6812],[-94.9161,17.6895],[-94.9077,17.6867],[-94.9042,17.6813],[-94.9082,17.6479],[-94.9123,17.6404],[-94.9116,17.627],[-94.9062,17.6212],[-94.889,17.6238],[-94.8857,17.6151],[-94.8789,17.6145],[-94.88,17.6031],[-94.8905,17.5937],[-94.8995,17.5963],[-94.9075,17.6056],[-94.9064,17.6141],[-94.914,17.6215],[-94.9215,17.6217],[-94.9345,17.6312],[-94.9621,17.6352],[-94.9696,17.6547],[-94.9979,17.6582],[-94.9993,17.6689],[-95.0117,17.6713],[-95.0145,17.6763],[-95.0131,17.6907],[-95.0196,17.6907],[-95.0232,17.6856],[-95.0289,17.7158],[-95.0584,17.7198],[-95.0647,17.7013],[-95.0563,17.7004],[-95.0583,17.6917],[-95.0538,17.6837],[-95.0486,17.683],[-95.0446,17.6749],[-95.0463,17.6643],[-95.0324,17.6651],[-95.0258,17.6555],[-95.0066,17.6518],[-95.0117,17.6349],[-95.0346,17.646],[-95.0342,17.6493],[-95.0527,17.6519],[-95.0621,17.6453],[-95.0669,17.646],[-95.0709,17.6319],[-95.0743,17.6075],[-95.0761,17.5785],[-95.0664,17.5762],[-95.0604,17.5717],[-95.0638,17.5683],[-95.0819,17.5732],[-95.0886,17.569],[-95.1046,17.5656],[-95.1136,17.5611],[-95.1245,17.5595],[-95.1381,17.5629],[-95.1518,17.5627],[-95.1635,17.5566],[-95.1722,17.5569],[-95.1763,17.546],[-95.1921,17.5448],[-95.1978,17.5459],[-95.2046,17.5387],[-95.2536,17.602],[-95.2561,17.6088],[-95.2675,17.6035],[-95.2713,17.6247],[-95.2615,17.6246],[-95.253,17.6334],[-95.2532,17.6421],[-95.2482,17.646],[-95.2423,17.6413],[-95.2425,17.635],[-95.2184,17.6393],[-95.2115,17.6445],[-95.2091,17.6525],[-95.1988,17.6479],[-95.1924,17.6549],[-95.1881,17.6507],[-95.1879,17.6692],[-95.1815,17.6858],[-95.1829,17.6915],[-95.1903,17.692],[-95.2389,17.7393],[-95.2393,17.7367],[-95.2603,17.7301],[-95.2624,17.7383],[-95.2697,17.7396],[-95.2632,17.7255],[-95.265,17.718],[-95.28,17.7157],[-95.2912,17.7163],[-95.2991,17.7206],[-95.3014,17.7129],[-95.3102,17.7074],[-95.3069,17.697],[-95.3156,17.6979],[-95.3172,17.6915],[-95.3231,17.6848],[-95.3287,17.6858],[-95.3336,17.6756],[-95.3394,17.6739],[-95.3438,17.6837],[-95.3512,17.6782],[-95.3642,17.6759],[-95.3693,17.6829],[-95.3793,17.6826],[-95.3831,17.6905],[-95.3985,17.6904],[-95.4032,17.6952],[-95.4114,17.6942],[-95.412,17.7029],[-95.418,17.708],[-95.4117,17.7122],[-95.4177,17.7217],[-95.4258,17.7262],[-95.4238,17.7314],[-95.4283,17.7374],[-95.429,17.7482],[-95.4344,17.7531],[-95.4292,17.7642],[-95.421,17.771],[-95.4202,17.7782],[-95.4121,17.7834],[-95.4,17.7839],[-95.3983,17.7873],[-95.3729,17.7957],[-95.362,17.7905],[-95.3634,17.7998],[-95.3501,17.7982],[-95.3512,17.8028],[-95.3477,17.817],[-95.3286,17.8172],[-95.322,17.8111],[-95.3178,17.8121],[-95.3058,17.8086],[-95.3101,17.7952],[-95.3016,17.7964],[-95.2853,17.8082],[-95.2793,17.8148],[-95.2789,17.8332],[-95.2832,17.8405],[-95.2774,17.847],[-95.2776,17.8656],[-95.2792,17.8717],[-95.2741,17.8763],[-95.2599,17.8807],[-95.2557,17.8771],[-95.2442,17.8776],[-95.237,17.8758],[-95.2343,17.8886],[-95.2461,17.9014],[-95.2416,17.9137],[-95.2474,17.9201],[-95.2437,17.9236],[-95.2462,17.9298],[-95.2386,17.9355],[-95.2399,17.9481],[-95.2395,17.9686],[-95.2443,17.9784],[-95.2371,17.9816],[-95.2301,17.9743],[-95.2176,17.9712],[-95.213,17.981],[-95.2082,17.9859],[-95.1995,17.9814],[-95.1959,17.9854],[-95.189,17.982],[-95.1813,17.9858],[-95.1718,17.9838],[-95.1664,17.9777],[-95.1698,17.9662],[-95.1648,17.9549],[-95.1548,17.953],[-95.1454,17.9435],[-95.1327,17.95],[-95.1348,17.9652],[-95.1234,17.9651],[-95.1189,17.959],[-95.1017,17.9587],[-95.0967,17.9572],[-95.097,17.9728],[-95.0583,17.9743],[-95.0583,17.9637],[-95.0455,17.9599],[-95.0396,17.962],[-95.0249,17.9618],[-95.0101,17.9643],[-95.0044,17.9587],[-95.0102,17.953],[-95.0104,17.9299],[-95.0075,17.9299]]]},properties:{id:"30142",COUNTYID:"142",COUNTY:"San Juan Evangelista",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30142"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-94.9303,17.9214],[-94.9392,17.91],[-94.917,17.9113],[-94.92,17.9023],[-94.9448,17.903],[-94.9496,17.8965],[-94.9464,17.8928],[-94.932,17.8883],[-94.9297,17.8701],[-94.925,17.8651],[-94.9107,17.8602],[-94.9115,17.8512],[-94.9,17.8518],[-94.9,17.8435],[-94.8933,17.8369],[-94.8839,17.8369],[-94.884,17.8307],[-94.8925,17.8161],[-94.8904,17.808],[-94.891,17.798],[-94.8784,17.7894],[-94.8755,17.7803],[-94.8674,17.7759],[-94.8546,17.7746],[-94.8497,17.7789],[-94.8418,17.7779],[-94.8396,17.7702],[-94.8412,17.7628],[-94.8527,17.7582],[-94.8697,17.7649],[-94.8769,17.7629],[-94.8794,17.7499],[-94.8704,17.7473],[-94.8659,17.7399],[-94.8583,17.7437],[-94.8435,17.7379],[-94.8302,17.7371],[-94.82,17.7268],[-94.8261,17.7236],[-94.8266,17.711],[-94.8295,17.7062],[-94.8246,17.6947],[-94.8182,17.6923],[-94.8146,17.6857],[-94.8099,17.6855],[-94.8087,17.6694],[-94.8035,17.6634],[-94.8042,17.6384],[-94.8065,17.6187],[-94.8004,17.618],[-94.8049,17.5834],[-94.811,17.5885],[-94.8186,17.5893],[-94.8282,17.5868],[-94.8333,17.5908],[-94.8412,17.5904],[-94.852,17.5846],[-94.8625,17.5835],[-94.8667,17.5799],[-94.8729,17.584],[-94.8812,17.5804],[-94.8909,17.5816],[-94.9137,17.5744],[-94.9236,17.5686],[-94.9312,17.5699],[-94.9395,17.5785],[-94.9595,17.5779],[-94.9639,17.5745],[-94.981,17.5772],[-94.9947,17.5736],[-95.0002,17.5794],[-95.0078,17.573],[-95.0131,17.5723],[-95.024,17.5637],[-95.0375,17.5658],[-95.0481,17.5743],[-95.0604,17.5717],[-95.0664,17.5762],[-95.0761,17.5785],[-95.0743,17.6075],[-95.0709,17.6319],[-95.0669,17.646],[-95.0621,17.6453],[-95.0527,17.6519],[-95.0342,17.6493],[-95.0346,17.646],[-95.0117,17.6349],[-95.0066,17.6518],[-95.0258,17.6555],[-95.0324,17.6651],[-95.0463,17.6643],[-95.0446,17.6749],[-95.0486,17.683],[-95.0538,17.6837],[-95.0583,17.6917],[-95.0563,17.7004],[-95.0647,17.7013],[-95.0584,17.7198],[-95.0289,17.7158],[-95.0232,17.6856],[-95.0196,17.6907],[-95.0131,17.6907],[-95.0145,17.6763],[-95.0117,17.6713],[-94.9993,17.6689],[-94.9979,17.6582],[-94.9696,17.6547],[-94.9621,17.6352],[-94.9345,17.6312],[-94.9215,17.6217],[-94.914,17.6215],[-94.9064,17.6141],[-94.9075,17.6056],[-94.8995,17.5963],[-94.8905,17.5937],[-94.88,17.6031],[-94.8789,17.6145],[-94.8857,17.6151],[-94.889,17.6238],[-94.9062,17.6212],[-94.9116,17.627],[-94.9123,17.6404],[-94.9082,17.6479],[-94.9042,17.6813],[-94.9077,17.6867],[-94.9161,17.6895],[-94.9392,17.6812],[-94.941,17.6762],[-94.9484,17.6784],[-94.9526,17.6901],[-94.9469,17.6966],[-94.9381,17.699],[-94.9419,17.7086],[-94.9526,17.7084],[-94.9616,17.7117],[-94.9613,17.7157],[-94.9724,17.7162],[-94.9722,17.7207],[-94.9857,17.7215],[-94.9851,17.725],[-94.9937,17.7299],[-95.0049,17.7332],[-95.0383,17.7515],[-95.0238,17.7761],[-95.0294,17.7816],[-95.0378,17.7728],[-95.0364,17.768],[-95.0479,17.7638],[-95.0503,17.7723],[-95.0631,17.7726],[-95.0728,17.7864],[-95.0637,17.7864],[-95.0565,17.7949],[-95.0522,17.8037],[-95.0471,17.8047],[-95.0483,17.8206],[-95.0407,17.824],[-95.0277,17.825],[-95.0278,17.8336],[-95.0368,17.8411],[-95.0286,17.8521],[-95.0268,17.8612],[-95.0328,17.8748],[-95.0341,17.8884],[-95.0215,17.8963],[-95.0219,17.9036],[-95.0166,17.9156],[-95.0075,17.9299],[-94.9919,17.9302],[-94.9862,17.9258],[-94.9825,17.9077],[-94.9662,17.921],[-94.9602,17.9283],[-94.9548,17.9285],[-94.9479,17.9213],[-94.9303,17.9214]]]},properties:{id:"30144",COUNTYID:"144",COUNTY:"Sayula de Alemán",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30144"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-97.7503,21.5289],[-97.7502,21.5169],[-97.747,21.5113],[-97.7518,21.5001],[-97.7704,21.4959],[-97.7687,21.4893],[-97.7573,21.4836],[-97.7474,21.4869],[-97.7404,21.4837],[-97.7449,21.4731],[-97.7516,21.4655],[-97.7559,21.4658],[-97.7593,21.4488],[-97.751,21.4517],[-97.741,21.4493],[-97.7289,21.4554],[-97.723,21.4655],[-97.7116,21.4665],[-97.7051,21.4694],[-97.6906,21.468],[-97.6892,21.4719],[-97.675,21.4652],[-97.6658,21.465],[-97.6543,21.471],[-97.6458,21.4722],[-97.6465,21.4837],[-97.6322,21.4918],[-97.6236,21.4888],[-97.6175,21.4827],[-97.6117,21.4721],[-97.6064,21.4992],[-97.5903,21.4808],[-97.5845,21.4831],[-97.5796,21.4737],[-97.5692,21.4639],[-97.57,21.4608],[-97.5643,21.4427],[-97.5702,21.4351],[-97.5715,21.4186],[-97.5621,21.4129],[-97.581,21.4046],[-97.5961,21.4131],[-97.6075,21.4165],[-97.6119,21.4201],[-97.6225,21.4159],[-97.6308,21.4215],[-97.6412,21.424],[-97.6473,21.4218],[-97.6457,21.4125],[-97.6503,21.4109],[-97.6638,21.4146],[-97.6807,21.4095],[-97.6785,21.4064],[-97.6843,21.3917],[-97.7022,21.391],[-97.7309,21.4148],[-97.7389,21.4171],[-97.752,21.4148],[-97.7598,21.4234],[-97.7549,21.4266],[-97.7478,21.4373],[-97.7549,21.4381],[-97.7634,21.4341],[-97.7724,21.4397],[-97.7816,21.4358],[-97.7874,21.4306],[-97.7998,21.4236],[-97.78,21.4153],[-97.7691,21.4074],[-97.7621,21.4065],[-97.7644,21.4047],[-97.751,21.3862],[-97.7662,21.3724],[-97.7747,21.3622],[-97.7959,21.3669],[-97.7992,21.3634],[-97.8189,21.3504],[-97.8174,21.3432],[-97.8213,21.3255],[-97.8097,21.324],[-97.8085,21.3205],[-97.816,21.3131],[-97.8247,21.3143],[-97.8273,21.3076],[-97.8347,21.3001],[-97.8443,21.2975],[-97.8418,21.3054],[-97.8484,21.3127],[-97.858,21.3182],[-97.8615,21.3421],[-97.8642,21.3483],[-97.862,21.3596],[-97.8516,21.3713],[-97.8523,21.3787],[-97.86,21.3824],[-97.8902,21.4079],[-97.8935,21.4034],[-97.889,21.3865],[-97.8915,21.3788],[-97.8971,21.3764],[-97.9105,21.3885],[-97.9307,21.4186],[-97.9321,21.4276],[-97.915,21.4402],[-97.9085,21.4425],[-97.9018,21.4347],[-97.8885,21.4346],[-97.8775,21.4437],[-97.8706,21.4362],[-97.8638,21.438],[-97.8614,21.4326],[-97.8525,21.4302],[-97.8422,21.4343],[-97.8422,21.4417],[-97.8354,21.4527],[-97.837,21.4585],[-97.8339,21.47],[-97.8248,21.4749],[-97.8137,21.4848],[-97.8087,21.496],[-97.8006,21.4989],[-97.8013,21.5057],[-97.792,21.5028],[-97.7962,21.5216],[-97.791,21.5251],[-97.7794,21.5214],[-97.7799,21.5271],[-97.7667,21.5308],[-97.761,21.5279],[-97.7503,21.5289]]]},properties:{id:"30154",COUNTYID:"154",COUNTY:"Tantima",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30154"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-96.5281,18.8646],[-96.5212,18.8624],[-96.5163,18.8558],[-96.5075,18.8529],[-96.4967,18.8409],[-96.4875,18.8371],[-96.4797,18.8209],[-96.4666,18.8141],[-96.4718,18.802],[-96.4647,18.7971],[-96.4658,18.786],[-96.4738,18.7771],[-96.4797,18.7746],[-96.4842,18.7799],[-96.4894,18.7755],[-96.4974,18.7749],[-96.4992,18.7663],[-96.5078,18.7638],[-96.5135,18.7564],[-96.5233,18.754],[-96.528,18.7576],[-96.5418,18.7547],[-96.5638,18.7619],[-96.5936,18.7602],[-96.6012,18.7653],[-96.613,18.7697],[-96.631,18.7727],[-96.6391,18.7721],[-96.647,18.7665],[-96.6571,18.7683],[-96.666,18.7736],[-96.6849,18.7773],[-96.6877,18.8025],[-96.7001,18.8053],[-96.6989,18.8165],[-96.6879,18.8142],[-96.689,18.8534],[-96.668,18.8476],[-96.6621,18.8559],[-96.6456,18.8508],[-96.642,18.8606],[-96.636,18.8603],[-96.6446,18.8739],[-96.6354,18.8781],[-96.6255,18.8799],[-96.6174,18.8874],[-96.6006,18.8884],[-96.5909,18.8766],[-96.5858,18.8792],[-96.573,18.8767],[-96.5695,18.8818],[-96.5581,18.8825],[-96.548,18.8787],[-96.5424,18.8723],[-96.5366,18.8713],[-96.5281,18.8646]]]},properties:{id:"30031",COUNTYID:"031",COUNTY:"Carrillo Puerto",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30031"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-96.5578,19.8284],[-96.5664,19.8209],[-96.5668,19.8096],[-96.5765,19.805],[-96.5814,19.7919],[-96.5925,19.7857],[-96.6153,19.7813],[-96.625,19.7844],[-96.6398,19.7747],[-96.6468,19.7743],[-96.6486,19.7558],[-96.6582,19.7538],[-96.6611,19.7501],[-96.6756,19.7473],[-96.6839,19.7449],[-96.6938,19.7507],[-96.6939,19.7595],[-96.7072,19.7551],[-96.7094,19.7611],[-96.7187,19.7683],[-96.7191,19.7768],[-96.7319,19.7812],[-96.7359,19.7857],[-96.7469,19.7887],[-96.7495,19.7973],[-96.7419,19.7997],[-96.7361,19.8113],[-96.7411,19.8167],[-96.7426,19.8245],[-96.7351,19.8343],[-96.7305,19.8349],[-96.7202,19.845],[-96.7272,19.8466],[-96.7223,19.8544],[-96.7241,19.8593],[-96.7186,19.8699],[-96.7062,19.8764],[-96.702,19.8841],[-96.6923,19.8721],[-96.6743,19.8721],[-96.6638,19.884],[-96.6605,19.8931],[-96.6517,19.8987],[-96.6503,19.9027],[-96.6499,19.8924],[-96.6305,19.8791],[-96.6313,19.8765],[-96.6237,19.8641],[-96.599,19.8485],[-96.5874,19.8444],[-96.5792,19.8438],[-96.5717,19.8314],[-96.5578,19.8284]]]},properties:{id:"30095",COUNTYID:"095",COUNTY:"Juchique de Ferrer",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30095"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-94.0902,17.9683],[-94.0915,17.9604],[-94.0871,17.9584],[-94.0874,17.9512],[-94.0913,17.9366],[-94.0899,17.9269],[-94.085,17.9142],[-94.0874,17.905],[-94.0818,17.8999],[-94.0798,17.8921],[-94.0833,17.8822],[-94.0834,17.8699],[-94.0649,17.8646],[-94.0537,17.8676],[-94.0517,17.8708],[-94.0375,17.8627],[-94.0276,17.8454],[-94.0176,17.8394],[-94.0159,17.8444],[-94.0078,17.8403],[-93.9961,17.8444],[-93.9918,17.8409],[-93.9853,17.8508],[-93.9785,17.8517],[-93.9683,17.8453],[-93.9561,17.8341],[-93.9639,17.8306],[-93.9634,17.8127],[-93.957,17.8111],[-93.9596,17.8031],[-93.9531,17.7921],[-93.9561,17.7817],[-93.9492,17.773],[-93.9489,17.7689],[-93.9411,17.7655],[-93.9384,17.7525],[-93.9291,17.7533],[-93.9201,17.7497],[-93.9101,17.7547],[-93.9043,17.7501],[-93.8994,17.7536],[-93.8904,17.7523],[-93.8774,17.7565],[-93.8715,17.753],[-93.8705,17.7441],[-93.8735,17.7349],[-93.8808,17.7267],[-93.8759,17.7239],[-93.87,17.7135],[-93.8651,17.7211],[-93.848,17.7187],[-93.8434,17.7114],[-93.8342,17.7166],[-93.8237,17.7085],[-93.8195,17.6993],[-93.8125,17.7069],[-93.8052,17.7034],[-93.8072,17.6978],[-93.8052,17.6894],[-93.7875,17.6944],[-93.7853,17.691],[-93.768,17.6873],[-93.7607,17.6835],[-93.7573,17.6782],[-93.7412,17.6781],[-93.7471,17.6684],[-93.7448,17.6571],[-93.7409,17.6494],[-93.7327,17.6492],[-93.73,17.6419],[-93.7372,17.6374],[-93.7379,17.6319],[-93.7296,17.6294],[-93.7154,17.6209],[-93.7085,17.6234],[-93.7097,17.6116],[-93.7007,17.6106],[-93.6997,17.5964],[-93.6872,17.5937],[-93.6854,17.5871],[-93.6732,17.5768],[-93.6712,17.5696],[-93.6592,17.5655],[-93.6485,17.5553],[-93.6418,17.5578],[-93.6311,17.5567],[-93.6295,17.5494],[-93.6215,17.5447],[-93.6273,17.5317],[-93.625,17.5146],[-93.6346,17.5072],[-93.6244,17.4932],[-93.6312,17.4869],[-93.6366,17.4749],[-93.6356,17.4684],[-93.6404,17.4588],[-93.6401,17.4499],[-93.6452,17.442],[-93.6382,17.4361],[-93.6491,17.4326],[-93.6541,17.4196],[-93.669,17.4202],[-93.6734,17.4123],[-93.679,17.411],[-93.6835,17.3956],[-93.6918,17.3905],[-93.6901,17.3795],[-93.6857,17.3724],[-93.6668,17.3603],[-93.6357,17.3384],[-93.6452,17.3307],[-93.6413,17.3179],[-93.6274,17.3128],[-93.6244,17.3225],[-93.6186,17.3217],[-93.6079,17.3149],[-93.6381,17.2909],[-93.6644,17.2862],[-93.6627,17.2563],[-93.6899,17.2553],[-93.6957,17.2472],[-93.7175,17.2493],[-93.7244,17.2471],[-93.7368,17.2475],[-93.7462,17.2437],[-93.7542,17.2436],[-93.7636,17.2394],[-93.7724,17.2458],[-93.788,17.2338],[-93.7976,17.242],[-93.8059,17.2302],[-93.8038,17.2249],[-93.8188,17.202],[-93.8201,17.1953],[-93.8267,17.1893],[-93.8271,17.1725],[-93.839,17.1729],[-93.844,17.1686],[-93.8609,17.1637],[-93.8623,17.1515],[-93.8701,17.1466],[-93.8674,17.137],[-94.0875,17.1494],[-94.0856,17.1553],[-94.0856,17.179],[-94.0901,17.1846],[-94.0016,17.1841],[-94.0019,17.1996],[-93.9317,17.2001],[-93.931,17.2815],[-93.9248,17.291],[-93.9231,17.2978],[-93.9378,17.3006],[-93.941,17.3047],[-93.9523,17.3068],[-93.9681,17.303],[-93.9621,17.3183],[-93.9778,17.3248],[-94.0342,17.325],[-94.0352,17.344],[-94.0444,17.3408],[-94.0872,17.3406],[-94.0869,17.3434],[-94.1176,17.3429],[-94.1279,17.3459],[-94.1431,17.3434],[-94.1783,17.3395],[-94.2082,17.3239],[-94.2108,17.3408],[-94.2153,17.348],[-94.2165,17.3574],[-94.2059,17.3701],[-94.1988,17.3759],[-94.1979,17.3807],[-94.1857,17.3906],[-94.1854,17.411],[-94.19,17.4133],[-94.1983,17.4099],[-94.2013,17.4191],[-94.2101,17.4286],[-94.2192,17.4425],[-94.2254,17.4483],[-94.2313,17.4694],[-94.2281,17.4909],[-94.2172,17.4984],[-94.2092,17.4885],[-94.2035,17.491],[-94.2076,17.499],[-94.197,17.5052],[-94.2042,17.5176],[-94.2098,17.5087],[-94.218,17.5111],[-94.2293,17.5107],[-94.2273,17.5179],[-94.2295,17.5244],[-94.2364,17.5312],[-94.2344,17.5373],[-94.2236,17.5469],[-94.2112,17.5415],[-94.2041,17.5404],[-94.198,17.5472],[-94.205,17.5535],[-94.2204,17.5549],[-94.2252,17.5593],[-94.2207,17.564],[-94.2234,17.5729],[-94.2201,17.5815],[-94.213,17.5822],[-94.2055,17.5784],[-94.2028,17.5865],[-94.1969,17.5862],[-94.1941,17.5809],[-94.1906,17.5649],[-94.1802,17.5711],[-94.1768,17.582],[-94.1687,17.5835],[-94.1657,17.5731],[-94.1597,17.5747],[-94.152,17.5818],[-94.1436,17.5748],[-94.1373,17.577],[-94.126,17.5853],[-94.1227,17.5907],[-94.1278,17.5954],[-94.144,17.5989],[-94.1506,17.6068],[-94.1648,17.5994],[-94.169,17.6045],[-94.1583,17.6273],[-94.1466,17.632],[-94.1463,17.6369],[-94.1593,17.6399],[-94.1691,17.6497],[-94.1688,17.6589],[-94.1807,17.6525],[-94.2015,17.6565],[-94.1967,17.6659],[-94.1879,17.672],[-94.1787,17.6756],[-94.1796,17.6821],[-94.1903,17.6924],[-94.1909,17.6983],[-94.1832,17.705],[-94.1866,17.7129],[-94.1983,17.7251],[-94.2109,17.733],[-94.2255,17.7324],[-94.2185,17.7423],[-94.2179,17.7502],[-94.2255,17.7616],[-94.2175,17.7747],[-94.2099,17.7821],[-94.2003,17.7859],[-94.1996,17.793],[-94.2076,17.7989],[-94.2144,17.7971],[-94.2221,17.7988],[-94.2176,17.8121],[-94.1998,17.8419],[-94.1996,17.8514],[-94.2069,17.8588],[-94.2157,17.8579],[-94.241,17.8409],[-94.2494,17.8447],[-94.2595,17.8373],[-94.2635,17.8498],[-94.2722,17.85],[-94.282,17.8433],[-94.2932,17.8422],[-94.2971,17.8385],[-94.3081,17.8411],[-94.3128,17.8496],[-94.2943,17.852],[-94.3023,17.8639],[-94.2906,17.8711],[-94.2856,17.8637],[-94.2951,17.8616],[-94.2903,17.8559],[-94.2791,17.8646],[-94.2719,17.8624],[-94.2679,17.869],[-94.2714,17.8735],[-94.2672,17.8878],[-94.2585,17.8891],[-94.2505,17.8983],[-94.2504,17.902],[-94.2414,17.9097],[-94.2414,17.9155],[-94.2347,17.9166],[-94.2292,17.9287],[-94.2228,17.9378],[-94.2113,17.9439],[-94.208,17.95],[-94.2094,17.9588],[-94.2178,17.9642],[-94.2146,17.9724],[-94.2089,17.9732],[-94.1973,17.9897],[-94.1803,17.9892],[-94.1761,17.9787],[-94.1548,17.9839],[-94.1402,17.9778],[-94.1334,17.9787],[-94.118,17.9678],[-94.1079,17.9661],[-94.0976,17.9697],[-94.0902,17.9683]]]},properties:{id:"30061",COUNTYID:"061",COUNTY:"Las Choapas",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30061"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-96.9738,18.6292],[-96.9754,18.6182],[-96.985,18.6236],[-96.9912,18.6181],[-96.9899,18.6132],[-97.0003,18.6085],[-97.0095,18.6144],[-97.018,18.6124],[-97.0191,18.5993],[-97.0121,18.6003],[-97.0098,18.5924],[-97.0192,18.5925],[-97.0187,18.5869],[-97.0336,18.5888],[-97.0415,18.5855],[-97.0481,18.5814],[-97.0489,18.5884],[-97.0612,18.5983],[-97.0671,18.6069],[-97.069,18.6145],[-97.0784,18.6294],[-97.0688,18.6331],[-97.0522,18.6447],[-97.0416,18.6487],[-97.0379,18.6456],[-97.0202,18.6509],[-97.0149,18.6344],[-97.0083,18.6364],[-96.9951,18.626],[-96.9847,18.632],[-96.9816,18.6365],[-96.9746,18.6348],[-96.9738,18.6292]]]},properties:{id:"30171",COUNTYID:"171",COUNTY:"Texhuacán",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30171"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-96.9548,19.5673],[-96.9573,19.5509],[-96.9685,19.5478],[-96.9706,19.5384],[-96.9678,19.5337],[-96.9581,19.5334],[-96.9512,19.5298],[-96.9521,19.5234],[-96.9477,19.5142],[-96.9549,19.5104],[-96.9686,19.5076],[-96.9704,19.5134],[-96.9804,19.5147],[-96.9964,19.5105],[-97.0025,19.5113],[-97.0142,19.5218],[-97.018,19.5262],[-97.0019,19.5332],[-97.0106,19.5352],[-97.0183,19.5516],[-97.0048,19.5557],[-96.9984,19.5654],[-97,19.5734],[-96.996,19.5783],[-96.9888,19.5791],[-96.9674,19.5752],[-96.9624,19.5667],[-96.9548,19.5673]]]},properties:{id:"30182",COUNTYID:"182",COUNTY:"Tlalnelhuayocan",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30182"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-96.7477,18.8457],[-96.7666,18.8081],[-96.7589,18.8048],[-96.7564,18.7987],[-96.7693,18.7928],[-96.7755,18.7985],[-96.7802,18.7924],[-96.7667,18.7831],[-96.7804,18.7788],[-96.7774,18.7686],[-96.7871,18.7629],[-96.788,18.7683],[-96.7985,18.7756],[-96.8107,18.7727],[-96.8288,18.776],[-96.8377,18.7859],[-96.8352,18.7991],[-96.848,18.807],[-96.8317,18.8244],[-96.8205,18.8177],[-96.8223,18.8434],[-96.8359,18.8521],[-96.8515,18.8645],[-96.8503,18.8695],[-96.8406,18.8758],[-96.8248,18.8822],[-96.7993,18.8753],[-96.7902,18.878],[-96.7809,18.8738],[-96.7651,18.8596],[-96.7615,18.8513],[-96.755,18.8516],[-96.7477,18.8457]]]},properties:{id:"30196",COUNTYID:"196",COUNTY:"Yanga",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30196"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-94.9919,18.1274],[-94.9963,18.1311],[-94.9978,18.1385],[-94.9933,18.1455],[-95.0005,18.1484],[-95.003,18.1375],[-95.0024,18.1259],[-95.0065,18.1257],[-95.007,18.1362],[-95.0165,18.14],[-95.0204,18.1362],[-95.0206,18.1216],[-95.0332,18.1213],[-95.0418,18.1153],[-95.0503,18.1181],[-95.0504,18.1257],[-95.0596,18.1325],[-95.0566,18.1399],[-95.0621,18.1433],[-95.0737,18.1354],[-95.0789,18.1401],[-95.0869,18.1424],[-95.0968,18.1309],[-95.1028,18.1276],[-95.1205,18.1334],[-95.1278,18.129],[-95.1287,18.1223],[-95.1388,18.1086],[-95.1478,18.1029],[-95.1502,18.0978],[-95.1597,18.0891],[-95.1557,18.085],[-95.1599,18.0767],[-95.1674,18.0792],[-95.1728,18.0745],[-95.1828,18.0744],[-95.1865,18.0636],[-95.1925,18.0685],[-95.1921,18.0765],[-95.2027,18.0796],[-95.2045,18.0851],[-95.2128,18.0924],[-95.2258,18.0987],[-95.2251,18.1122],[-95.2328,18.1128],[-95.2434,18.1087],[-95.2518,18.1216],[-95.2599,18.1235],[-95.2642,18.1217],[-95.2722,18.112],[-95.2824,18.1147],[-95.2834,18.1182],[-95.2741,18.1243],[-95.2809,18.1279],[-95.3027,18.1237],[-95.3088,18.1246],[-95.3088,18.1308],[-95.3246,18.1325],[-95.3235,18.1408],[-95.3297,18.1476],[-95.3365,18.1463],[-95.3385,18.1518],[-95.3519,18.1593],[-95.3586,18.1709],[-95.3688,18.1696],[-95.3767,18.1761],[-95.3811,18.1662],[-95.3887,18.1779],[-95.3906,18.1853],[-95.3986,18.1841],[-95.4049,18.1881],[-95.4122,18.2],[-95.4021,18.2151],[-95.3929,18.2117],[-95.3853,18.2177],[-95.3881,18.222],[-95.3817,18.2264],[-95.3761,18.2234],[-95.3726,18.2287],[-95.3537,18.2318],[-95.3581,18.2372],[-95.3497,18.2405],[-95.3459,18.2364],[-95.3305,18.2333],[-95.3271,18.2383],[-95.3185,18.2341],[-95.3152,18.2292],[-95.3221,18.2214],[-95.312,18.2155],[-95.3055,18.2204],[-95.2959,18.2122],[-95.289,18.2125],[-95.2839,18.2171],[-95.2919,18.2451],[-95.2854,18.2433],[-95.263,18.2426],[-95.2615,18.2377],[-95.2507,18.2382],[-95.2504,18.2322],[-95.2397,18.2328],[-95.2384,18.2266],[-95.2314,18.2294],[-95.2309,18.2356],[-95.2179,18.2375],[-95.2099,18.2445],[-95.2129,18.2506],[-95.2336,18.2572],[-95.237,18.2634],[-95.2442,18.2637],[-95.245,18.272],[-95.2374,18.2793],[-95.2268,18.2691],[-95.2229,18.2586],[-95.2049,18.2564],[-95.1955,18.2689],[-95.1879,18.2863],[-95.19,18.2942],[-95.1757,18.3012],[-95.1695,18.2981],[-95.1614,18.3039],[-95.1544,18.3031],[-95.1431,18.2985],[-95.1436,18.2891],[-95.1335,18.2916],[-95.1224,18.2987],[-95.1218,18.3059],[-95.1153,18.3105],[-95.0981,18.3037],[-95.0787,18.3094],[-95.0766,18.2992],[-95.0676,18.2994],[-95.0702,18.2905],[-95.0632,18.277],[-95.0423,18.2712],[-95.0352,18.2811],[-95.0283,18.2851],[-95.021,18.2844],[-95.023,18.2981],[-95.0303,18.2991],[-95.0303,18.3097],[-95.0211,18.3142],[-95.0179,18.32],[-95.0105,18.3241],[-94.9977,18.3268],[-94.994,18.3178],[-94.9872,18.3116],[-94.9904,18.3081],[-95.0019,18.3064],[-94.9978,18.2941],[-94.9975,18.2856],[-94.992,18.2842],[-94.9964,18.2683],[-94.9851,18.2614],[-94.9881,18.2544],[-94.9849,18.2464],[-94.9805,18.2468],[-94.9802,18.234],[-94.973,18.2298],[-94.964,18.2338],[-94.9619,18.2171],[-94.9649,18.2041],[-94.9639,18.1957],[-94.9582,18.1939],[-94.9598,18.1872],[-94.9653,18.1821],[-94.965,18.1654],[-94.9624,18.1621],[-94.966,18.1495],[-94.9709,18.1489],[-94.9799,18.1421],[-94.9799,18.1365],[-94.9919,18.1274]]]},properties:{id:"30073",COUNTYID:"073",COUNTY:"Hueyapan de Ocampo",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30073"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-96.9684,19.5967],[-96.9583,19.5874],[-96.9793,19.5855],[-96.9888,19.5791],[-96.996,19.5783],[-96.9976,19.5843],[-96.9966,19.6136],[-97.0025,19.617],[-96.9875,19.6207],[-96.9802,19.6205],[-96.9744,19.6132],[-96.9754,19.6046],[-96.9684,19.5967]]]},properties:{id:"30136",COUNTYID:"136",COUNTY:"Rafael Lucio",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30136"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-95.7786,18.3999],[-95.7913,18.4173],[-95.7801,18.4179],[-95.774,18.4269],[-95.7745,18.4312],[-95.7693,18.4389],[-95.7572,18.4388],[-95.7507,18.4285],[-95.7364,18.4243],[-95.7406,18.4193],[-95.681,18.3873],[-95.6522,18.3746],[-95.6449,18.3618],[-95.6397,18.3563],[-95.654,18.3511],[-95.643,18.3404],[-95.6522,18.3354],[-95.6556,18.3299],[-95.6553,18.3191],[-95.6631,18.3162],[-95.6615,18.3084],[-95.6424,18.3045],[-95.6412,18.2955],[-95.6447,18.281],[-95.6574,18.2768],[-95.654,18.262],[-95.683,18.2507],[-95.6825,18.2377],[-95.6971,18.2371],[-95.7036,18.2291],[-95.7183,18.2148],[-95.7326,18.2208],[-95.7334,18.2311],[-95.7423,18.2338],[-95.7383,18.2415],[-95.7482,18.244],[-95.7546,18.2507],[-95.7581,18.2643],[-95.7638,18.2737],[-95.7717,18.2766],[-95.774,18.2684],[-95.7789,18.2688],[-95.7821,18.2816],[-95.7921,18.2857],[-95.7841,18.291],[-95.7787,18.3012],[-95.7686,18.3061],[-95.7665,18.3147],[-95.7655,18.3186],[-95.7767,18.3306],[-95.7794,18.3418],[-95.7769,18.3598],[-95.7707,18.36],[-95.7786,18.3739],[-95.7786,18.3999]]]},properties:{id:"30208",COUNTYID:"208",COUNTY:"Carlos A. Carrillo",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30208"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-97.3254,18.7665],[-97.3308,18.7639],[-97.337,18.7684],[-97.3402,18.7784],[-97.3523,18.7752],[-97.3548,18.7794],[-97.352,18.7929],[-97.3445,18.8003],[-97.3378,18.7991],[-97.3325,18.8079],[-97.3258,18.813],[-97.312,18.8107],[-97.2922,18.7864],[-97.2969,18.7785],[-97.3118,18.7767],[-97.3169,18.7709],[-97.3254,18.7665]]]},properties:{id:"30018",COUNTYID:"018",COUNTY:"Aquila",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30018"},{type:"Feature",geometry:{type:"Polygon",coordinates:[[[-94.5942,18.0963],[-94.5879,18.0907],[-94.5959,18.0748],[-94.6037,18.0731],[-94.6041,18.0598],[-94.6116,18.0534],[-94.6189,18.0387],[-94.651,18.0175],[-94.6611,18.0123],[-94.6703,18.0138],[-94.6771,18.0096],[-94.684,18.0122],[-94.6922,18.0065],[-94.698,18.0043],[-94.7053,18.017],[-94.7695,18.0265],[-94.7821,18.0233],[-94.7913,18.0251],[-94.7931,18.0296],[-94.8051,18.0423],[-94.8107,18.0441],[-94.8122,18.0509],[-94.7952,18.0722],[-94.8001,18.0741],[-94.8002,18.082],[-94.7989,18.0857],[-94.7886,18.0828],[-94.7868,18.0882],[-94.7773,18.0848],[-94.7596,18.0854],[-94.7497,18.0821],[-94.7441,18.0833],[-94.7426,18.0923],[-94.7365,18.1019],[-94.7437,18.1055],[-94.74,18.1186],[-94.7112,18.1102],[-94.7089,18.1059],[-94.6995,18.0999],[-94.6944,18.1024],[-94.6843,18.098],[-94.6779,18.0978],[-94.6624,18.0915],[-94.6526,18.0896],[-94.6458,18.0949],[-94.6389,18.0924],[-94.6287,18.0936],[-94.6267,18.0999],[-94.6129,18.0986],[-94.6057,18.1011],[-94.5942,18.0963]]]},properties:{id:"30059",COUNTYID:"059",COUNTY:"Chinameca",STATEID:"30",STATE:"Veracruz de Ignacio de la Llave",CNTRY:"Mexico"},id:"30059"}]};window.am4geodata_region_mexico_verHigh=r}},["1Xpg"]); //# sourceMappingURL=verHigh.js.map
16,570.619048
347,333
0.639221
05b406d111ecdd59d8661c0bfeb23ed074056114
973
js
JavaScript
src/components/Layout/styles.js
applgeekam/trello-frontend
d92588238890b6623a3ed782307e3b4c5c0ecf2a
[ "MIT" ]
null
null
null
src/components/Layout/styles.js
applgeekam/trello-frontend
d92588238890b6623a3ed782307e3b4c5c0ecf2a
[ "MIT" ]
null
null
null
src/components/Layout/styles.js
applgeekam/trello-frontend
d92588238890b6623a3ed782307e3b4c5c0ecf2a
[ "MIT" ]
null
null
null
import { makeStyles } from "@material-ui/styles"; import {viewportSize} from "../../Module/biblio"; let image = "https://source.unsplash.com/" + viewportSize().width + "x" + viewportSize().height + "/?africa,evening,smile,joy,world" export default makeStyles((theme) => ({ root: { display: "flex", flexDirection:"column", maxWidth: "100vw", overflowX: "hidden", backgroundPosition: 'center', backgroundSize: 'cover', backgroundRepeat: 'no-repeat', height:"100vh", backgroundImage: props => props.backgroundImage, backgroundColor: "rgb(27 19 19 / 65%)", }, content: { flexGrow: 1, display:"flex", backgroundColor: "#ffffff1a" }, link: { '&:not(:first-child)': { paddingLeft: 15 } }, notificationBottom:{ marginTop:theme.spacing(1), display: "flex", flexDirection:"row", justifyContent:"flex-end", }, notificationBottomButton:{ marginRight: theme.spacing(1.5) } }));
23.731707
132
0.63001
05b42334cc70a7f7fc3e053fc653227b70e996aa
73
js
JavaScript
app/mods/mod218.js
MirekSz/webpack-es6-ts
bbb1977c4e19195c99798add8c365516ec17c820
[ "0BSD" ]
null
null
null
app/mods/mod218.js
MirekSz/webpack-es6-ts
bbb1977c4e19195c99798add8c365516ec17c820
[ "0BSD" ]
null
null
null
app/mods/mod218.js
MirekSz/webpack-es6-ts
bbb1977c4e19195c99798add8c365516ec17c820
[ "0BSD" ]
null
null
null
import mod217 from './mod217'; var value=mod217+1; export default value;
18.25
30
0.753425
05b4614cb4811e911d187b7ce788bc2d27982285
683
js
JavaScript
src/tests/actions/users.test.js
jeffbernst/simplefolio-client
3f064dd5346ee55044d03b488a024bd6de90fa3d
[ "MIT" ]
2
2018-09-20T05:41:47.000Z
2020-02-13T17:54:41.000Z
src/tests/actions/users.test.js
jeffbernst/simplefolio-client
3f064dd5346ee55044d03b488a024bd6de90fa3d
[ "MIT" ]
2
2018-06-12T23:19:11.000Z
2018-06-12T23:21:57.000Z
src/tests/actions/users.test.js
jeffbernst/simplefolio-client
3f064dd5346ee55044d03b488a024bd6de90fa3d
[ "MIT" ]
1
2018-09-20T05:41:47.000Z
2018-09-20T05:41:47.000Z
import { registerUser } from '../../actions/users' import { REACT_APP_API_BASE_URL } from '../../config' describe('fetchBoard', () => { it('Should dispatch fetchBoardSuccess', () => { const board = { lists: [] } global.fetch = jest.fn().mockImplementation(() => Promise.resolve({ ok: true, json () { return board } }) ) const dispatch = jest.fn() return registerUser()(dispatch).then(() => { expect(fetch).toHaveBeenCalledWith(`${REACT_APP_API_BASE_URL}/users`, { 'body': undefined, 'headers': {'content-type': 'application/json'}, 'method': 'POST' }) }) }) })
24.392857
77
0.543192
05b4752d5f771346349a81c7410b97ed89c30714
208
js
JavaScript
src/Link.js
koba04/react-suspense-demo
3d49141bdf93819d236bb531883e0f8ed8d7ad4a
[ "MIT" ]
16
2018-05-29T17:32:20.000Z
2021-05-30T03:40:20.000Z
src/Link.js
koba04/react-suspense-demo
3d49141bdf93819d236bb531883e0f8ed8d7ad4a
[ "MIT" ]
null
null
null
src/Link.js
koba04/react-suspense-demo
3d49141bdf93819d236bb531883e0f8ed8d7ad4a
[ "MIT" ]
2
2018-07-28T10:39:11.000Z
2019-11-12T23:12:27.000Z
import React from "react"; const Link = ({ onClick, children }) => ( <a href="" onClick={e => { e.preventDefault(); onClick(); }} > {children} </a> ); export default Link;
13
41
0.504808
05b4ca0f44dd0566c4128b826e960428a2da815a
5,604
js
JavaScript
js/script.js
Agneskoinange/Ghanian-Akan-Names
caabcc8d2a2480fa2096c1354cdf2f471efaf08f
[ "MIT" ]
null
null
null
js/script.js
Agneskoinange/Ghanian-Akan-Names
caabcc8d2a2480fa2096c1354cdf2f471efaf08f
[ "MIT" ]
null
null
null
js/script.js
Agneskoinange/Ghanian-Akan-Names
caabcc8d2a2480fa2096c1354cdf2f471efaf08f
[ "MIT" ]
null
null
null
//arrays of days of the week, male names and female names var daysOfTheWeek = ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"]; var akanMaleNames = ["Kwasi","Kwadwo","Kwabena","Kwaku","Yaw", "Kofi","Kwame"]; var akanFemaleNames = ["Akosua","Adwoa","Abenaa","Akua"," Yaa","Afua","Ama"]; //variables var YY= yearOfBirth var MM= monthOfBirth var DD= dayOfBirth var CC= centuryDigits var ValidMonth= monthValidator(); var ValidDay= dayValidator(); var d= daysOfTheWeek.slice(); function generateAkanName() { monthOfBirth = parseInt(document.getElementById("month").value); dayOfBirth = parseInt(document.getElementById("day").value); centuryDigits = parseInt(document.getElementById("year").value).slice(0,2) yearOfBirth = parseInt(document.getElementById("year").value).slice(2,4) // how to calculate the day of the week that one is born return d = ( ( (CC/4) -2*CC-1) + ((5*YY/4) ) + ((26*(MM+1)/10)) + DD ) % 7 } //Therefore if (gender == "famale") { let akanMaleNames =("You were born on"+ "d" +"So Your name Ghanian Akan name is" + akanMaleNames) } else if (gender == "famale") { let akanFemaleNames =("You were born on"+ "d" +"So Your name Ghanian Akan name is" + akanFemaleNames) }else { alert("Please select gender") } if (day > 31 || day <1){ alert ("Invalid day") } // var validDay= dayValidator(); else { console.log (validDay) } if (month > 12 || month < 1){ alert ("Invalid month") } // var validMonth= monthValidator(); else { console.log (validMonth) } function checkName(){ var daysOfTheWeek = ["Sunday, Monday, Tuesday, Wednesday, Thursday, Friday, Saturday"]; var akanMaleNames = ["Kwasi","Kwadwo","Kwabena","Kwaku","Yaw", "Kofi","Kwame"]; if (gender == "male" && validDay && validMonth && daysOfTheWeek[0]) { alert (document.getElementById("male").innerHTML ="You were born on"+ daysOfTheWeek[0] +"So Your name Ghanian Akan name is" + akanMaleNames[0]); } else if (gender == "male" && validDay && validMonth && daysOfTheWeek[1]) { alert (document.getElementById("male").innerHTML ="You were born on"+ daysOfTheWeek[1] +"So Your name Ghanian Akan name is" + akanMaleNames[1]); } else if (gender == "male" && validDay && validMonth && daysOfTheWeek[2]) { alert (document.getElementById("male").innerHTML ="You were born on"+ daysOfTheWeek[2] +"So Your name Ghanian Akan name is" + akanMaleNames[2]); } else if (gender == "male" && validDay && validMonth && daysOfTheWeek[3]) { alert (document.getElementById("male").innerHTML ="You were born on"+ daysOfTheWeek[3] +"So Your name Ghanian Akan name is" + akanMaleNames[3]); } else if (gender == "male" && validDay && validMonth && daysOfTheWeek[4]) { alert (document.getElementById("male").innerHTML ="You were born on"+ daysOfTheWeek[4] +"So Your name Ghanian Akan name is" + akanMaleNames[4]); } else if (gender == "male" && validDay && validMonth && daysOfTheWeek[5]) { alert (document.getElementById("male").innerHTML ="You were born on"+ daysOfTheWeek[5] +"So Your name Ghanian Akan name is" + akanMaleNames[5]); } else if (gender == "male" && validDay && validMonth && daysOfTheWeek[6]) { alert (document.getElementById("male").innerHTML ="You were born on"+ daysOfTheWeek[6] +"So Your name Ghanian Akan name is" + akanMaleNames[6]); } else { alert("Input your details again"); } var daysOfTheWeek = ["Sunday, Monday, Tuesday, Wednesday, Thursday, Friday, Saturday" ]; var akanFemaleNames = ["Akosua","Adwoa","Abenaa","Akua"," Yaa","Afua","Ama"]; if (gender == "female" && validDay && validMonth && daysOfTheWeek[0]) { alert (document.getElementById("female").innerHTML ="You were born on"+ daysOfTheWeek[0] +"So Your name Ghanian Akan name is" + akanFemaleNames[0]); }else if (gender == "female" && validDay && validMonth && daysOfTheWeek[1]) { alert (document.getElementById("female").innerHTML ="You were born on"+ daysOfTheWeek[1] +"So Your name Ghanian Akan name is" + akanFemaleNames[1]); }else if (gender == "female" && validDay && validMonth && daysOfTheWeek[2]) { alert (document.getElementById("female").innerHTML ="You were born on"+ daysOfTheWeek[2] +"So Your name Ghanian Akan name is" + akanFemaleNames[2]); }else if (gender == "female" && validDay && validMonth && daysOfTheWeek[3]) { alert (document.getElementById("female").innerHTML ="You were born on"+ daysOfTheWeek[3] +"So Your name Ghanian Akan name is" + akanFemaleNames[3]); }else if (gender == "female" && validDay && validMonth && daysOfTheWeek[4]) { alert (document.getElementById("female").innerHTML ="You were born on"+ daysOfTheWeek[4] +"So Your name Ghanian Akan name is" + akanFemaleNames[4]); }else if (gender == "female" && validDay && validMonth && daysOfTheWeek[5]) { alert (document.getElementById("female").innerHTML ="You were born on"+ daysOfTheWeek[5] +"So Your name Ghanian Akan name is" + akanFemaleNames[5]); } else if (gender == "female" && validDay && validMonth && daysOfTheWeek[6]) { alert (document.getElementById("female").innerHTML)= ("You were born on"+ daysOfTheWeek[6] +"So Your name Ghanian Akan name is" + akanFemaleNames[6]); } else { alert("Input your details again") } } function resetButton(){ document.getElementById("myForm").reset(); }
41.205882
156
0.64454
05b52603bed39abd8acf65bcc5c137742d5327c2
405
js
JavaScript
control/dirfiles.js
whatisand/marktopdf
ce9a8e30e65703d7625e84a0c1abbd8b22963975
[ "MIT" ]
1
2016-11-12T03:31:12.000Z
2016-11-12T03:31:12.000Z
control/dirfiles.js
whatisand/marktopdf
ce9a8e30e65703d7625e84a0c1abbd8b22963975
[ "MIT" ]
null
null
null
control/dirfiles.js
whatisand/marktopdf
ce9a8e30e65703d7625e84a0c1abbd8b22963975
[ "MIT" ]
null
null
null
var fs = require("fs"); var mdtopdf = require("markdown-pdf"); //var sleep = require("sleep"); var path = '../convert/to'; fs.readdir(path, function(err, files) { if(err) throw err; files.forEach(function(file) { if (file.indexOf('.pdf') == -1) { mdtopdf().from(path+"/"+file).to(path+"/"+file+".pdf"); console.log(file+" done"); } })//각각의 파일을 바로 pdf로 변환함 });//디랙토리에서 파일 찾는 부분
25.3125
61
0.587654
05b5c768c1db9e554791b4b6231a0e8b95f84d2c
639
js
JavaScript
solutions/day-01.js
Mesko89/advent-of-code-2018
00d0ab5c7869621cdf86be0d7f1f4a50a3d247cd
[ "0BSD" ]
null
null
null
solutions/day-01.js
Mesko89/advent-of-code-2018
00d0ab5c7869621cdf86be0d7f1f4a50a3d247cd
[ "0BSD" ]
null
null
null
solutions/day-01.js
Mesko89/advent-of-code-2018
00d0ab5c7869621cdf86be0d7f1f4a50a3d247cd
[ "0BSD" ]
null
null
null
function sumFrequencyChanges(frequencies) { return frequencies.reduce((a, b) => a + b, 0); } function findFirstRepeatedFrequency(frequencies) { const foundFrequencies = new Set(); let currentFrequency = 0; let i = 0; do { foundFrequencies.add(currentFrequency); currentFrequency += frequencies[i]; i = (i + 1) % frequencies.length; } while (!foundFrequencies.has(currentFrequency)); return currentFrequency; } module.exports = { part1: inputLines => sumFrequencyChanges(inputLines.map(v => parseInt(v, 10))), part2: inputLines => findFirstRepeatedFrequency(inputLines.map(v => parseInt(v, 10))), };
27.782609
69
0.701095