hexsha
stringlengths
40
40
size
int64
5
1.05M
ext
stringclasses
98 values
lang
stringclasses
21 values
max_stars_repo_path
stringlengths
3
945
max_stars_repo_name
stringlengths
4
118
max_stars_repo_head_hexsha
stringlengths
40
78
max_stars_repo_licenses
listlengths
1
10
max_stars_count
int64
1
368k
max_stars_repo_stars_event_min_datetime
stringlengths
24
24
max_stars_repo_stars_event_max_datetime
stringlengths
24
24
max_issues_repo_path
stringlengths
3
945
max_issues_repo_name
stringlengths
4
118
max_issues_repo_head_hexsha
stringlengths
40
78
max_issues_repo_licenses
listlengths
1
10
max_issues_count
int64
1
134k
max_issues_repo_issues_event_min_datetime
stringlengths
24
24
max_issues_repo_issues_event_max_datetime
stringlengths
24
24
max_forks_repo_path
stringlengths
3
945
max_forks_repo_name
stringlengths
4
135
max_forks_repo_head_hexsha
stringlengths
40
78
max_forks_repo_licenses
listlengths
1
10
max_forks_count
int64
1
105k
max_forks_repo_forks_event_min_datetime
stringlengths
24
24
max_forks_repo_forks_event_max_datetime
stringlengths
24
24
content
stringlengths
5
1.05M
avg_line_length
float64
1
1.03M
max_line_length
int64
2
1.03M
alphanum_fraction
float64
0
1
2a11929e942da5bd2cee0bcae4160c19dc3908c4
517
java
Java
src/main/java/org/gooru/nucleus/converter/processors/command/executor/convert/ConvertExecutorFactory.java
sheebans/ss-nucleus-converter
234ad027ad09d26da69cbf1f9b8f9879882343c8
[ "Apache-2.0" ]
null
null
null
src/main/java/org/gooru/nucleus/converter/processors/command/executor/convert/ConvertExecutorFactory.java
sheebans/ss-nucleus-converter
234ad027ad09d26da69cbf1f9b8f9879882343c8
[ "Apache-2.0" ]
null
null
null
src/main/java/org/gooru/nucleus/converter/processors/command/executor/convert/ConvertExecutorFactory.java
sheebans/ss-nucleus-converter
234ad027ad09d26da69cbf1f9b8f9879882343c8
[ "Apache-2.0" ]
null
null
null
package org.gooru.nucleus.converter.processors.command.executor.convert; import org.gooru.nucleus.converter.processors.command.executor.Executor; public final class ConvertExecutorFactory { public static Executor ConvertHtmlToPdfExecutor() { return ConvertHtmlToPdfExecutor.getInstance(); } public static Executor ConvertHtmlToExcelExecutor() { return ConvertHtmlToExcelExecutor.getInstance(); } private ConvertExecutorFactory() { throw new AssertionError(); } }
25.85
72
0.752418
993ccb05e084963a4ea46c10da9a859047073ff7
3,120
h
C
MdeModulePkg/Include/Ppi/DelayedDispatch.h
mapaig/mu_basecore
d5b1e572a527a64e0a23ee6bbe63de4f600f39a9
[ "Python-2.0", "Zlib", "BSD-2-Clause", "MIT", "BSD-2-Clause-Patent", "BSD-3-Clause" ]
76
2019-05-25T19:36:48.000Z
2022-03-17T08:29:45.000Z
MdeModulePkg/Include/Ppi/DelayedDispatch.h
mapaig/mu_basecore
d5b1e572a527a64e0a23ee6bbe63de4f600f39a9
[ "Python-2.0", "Zlib", "BSD-2-Clause", "MIT", "BSD-2-Clause-Patent", "BSD-3-Clause" ]
35
2019-06-06T04:43:46.000Z
2022-03-30T02:31:36.000Z
MdeModulePkg/Include/Ppi/DelayedDispatch.h
mapaig/mu_basecore
d5b1e572a527a64e0a23ee6bbe63de4f600f39a9
[ "Python-2.0", "Zlib", "BSD-2-Clause", "MIT", "BSD-2-Clause-Patent", "BSD-3-Clause" ]
58
2019-05-08T08:42:47.000Z
2022-03-25T02:44:09.000Z
/** PPI that allows a Pei module to request a callback after a minumum delay. Copyright (c) Microsoft Corporation. All rights reserved. SPDX-License-Identifier: BSD-2-Clause-Patent **/ #ifndef __EFI_DELAYED_DISPATCH_PPI_H__ #define __EFI_DELAYED_DISPATCH_PPI_H__ #define EFI_DELAYED_DISPATCH_PPI_GUID \ { \ 0x869c711d, 0x649c, 0x44fe, { 0x8b, 0x9e, 0x2c, 0xbb, 0x29, 0x11, 0xc3, 0xe6} } \ } #define GET_TIME_IN_US() ((UINT32)DivU64x32(GetTimeInNanoSecond(GetPerformanceCounter ()), 1000)) #define UNREGISTER_DISPATCH (0) #define DELAY_DISPATCH_IN_MS(t) ((t) * 1000) /** Delayed Dispatch function. This routine is called sometime after the required delay. At entry, NewDelay will be 0. Upon return, if NewDelay is still 0, the function is unregistered. If NewDelay is not zero, this routine will be called again after the new delay period. @param[in,out] Context Pointer to Context. Can be updated by routine. @param[out] NewDelay The new delay in us. Leave at 0 to unregister callback. **/ typedef VOID (EFIAPI *EFI_DELAYED_DISPATCH_FUNCTION) ( IN OUT UINT64 *Context, OUT UINT32 *NewDelay ); /// /// Forward declaration for the EFI_DELAYED_DISPATCH PPI. /// typedef struct _EFI_DELAYED_DISPATCH_PPI EFI_DELAYED_DISPATCH_PPI; /** Register a callback to be called after a minimum delay has occurred. @param[in] This The Delayed Dispatch PPI pointer. @param[in] Function The function to be called when the delay has expired. @param[in] Context 64 bit Context to pass to delay function. @param[in] UniqueId GUID for this Delayed Dispatch request. @param[in] Delay Delay in microseconds (us) @retval EFI_SUCCESS The operation succeeds. @retval EFI_INVALID_PARAMETER The parameters are invalid. @retval EFI_OUT_OF_RESOURCES Too many requests for delayed dispatch. **/ typedef EFI_STATUS (EFIAPI *EFI_DELAYED_DISPATCH_REGISTER)( IN EFI_DELAYED_DISPATCH_PPI *This, IN EFI_DELAYED_DISPATCH_FUNCTION Function, IN UINT64 Context, IN EFI_GUID *UniqueId OPTIONAL, IN UINT32 Delay ); /** Wait on a registered Delayed Dispatch unit that has a UniqueId. Continue to dispatch all registered delayed dispatch entries until *ALL* entries with UniqueId have completed. @param[in] This The Delayed Dispatch PPI pointer. @param[in] UniqueId UniqueId of delayed dispatch entry. @retval EFI_SUCCESS The operation succeeds. @retval EFI_INVALID_PARAMETER The parameters are invalid. **/ typedef EFI_STATUS (EFIAPI *EFI_DELAYED_DISPATCH_WAIT_ON_EVENT)( IN EFI_DELAYED_DISPATCH_PPI *This, IN EFI_GUID *UniqueId ); /// /// This PPI contains a set of services to delay dispatch of functionality. /// struct _EFI_DELAYED_DISPATCH_PPI { EFI_DELAYED_DISPATCH_REGISTER Register; EFI_DELAYED_DISPATCH_WAIT_ON_EVENT WaitOnEvent; }; extern EFI_GUID gEfiDelayedDispatchPpiGuid; #endif
30.891089
98
0.704808
dd7eb20f48d3bc4c1b04f5685bb36cb6f23577ef
739
php
PHP
module/Application/src/Model/SurveyResponseTable.php
backjack/classroom
6b4e63616ade09d83ba8cbbb72722b73667472b1
[ "BSD-3-Clause" ]
null
null
null
module/Application/src/Model/SurveyResponseTable.php
backjack/classroom
6b4e63616ade09d83ba8cbbb72722b73667472b1
[ "BSD-3-Clause" ]
null
null
null
module/Application/src/Model/SurveyResponseTable.php
backjack/classroom
6b4e63616ade09d83ba8cbbb72722b73667472b1
[ "BSD-3-Clause" ]
null
null
null
<?php namespace Application\Model; use Intermatics\BaseTable; use Zend\Db\Sql\Select; class SurveyResponseTable extends BaseTable { protected $tableName = 'survey_response'; protected $primary = 'survey_response_id'; public function getTotalForTest($id,$startDate=null,$endDate=null) { $select = new Select($this->tableName); $select->where(['survey_id'=>$id]); if($startDate){ $select->where($this->tableName.'.created_on >= '.$startDate); } if($endDate){ $select->where($this->tableName.'.created_on <= '.$endDate); } $rowset = $this->tableGateway->selectWith($select); $total = $rowset->count(); return $total; } }
25.482759
74
0.608931
7be8be54d5e50955395f5a921d1adc626269ef97
759
rb
Ruby
spec/lib/gitlab/kubernetes/helm/base_command_spec.rb
abdullatif1992/gitlabhq
2de002b3db1bc199755f8be212fa8804fcb80905
[ "MIT" ]
1
2018-07-31T00:12:33.000Z
2018-07-31T00:12:33.000Z
spec/lib/gitlab/kubernetes/helm/base_command_spec.rb
abdullatif1992/gitlabhq
2de002b3db1bc199755f8be212fa8804fcb80905
[ "MIT" ]
5
2021-05-21T00:46:08.000Z
2022-03-02T11:15:45.000Z
spec/lib/gitlab/kubernetes/helm/base_command_spec.rb
abdullatif1992/gitlabhq
2de002b3db1bc199755f8be212fa8804fcb80905
[ "MIT" ]
2
2019-11-28T19:12:40.000Z
2020-11-04T05:29:58.000Z
require 'spec_helper' describe Gitlab::Kubernetes::Helm::BaseCommand do let(:application) { create(:clusters_applications_helm) } let(:base_command) { described_class.new(application.name) } subject { base_command } it_behaves_like 'helm commands' do let(:commands) { '' } end describe '#pod_resource' do subject { base_command.pod_resource } it 'should returns a kubeclient resoure with pod content for application' do is_expected.to be_an_instance_of ::Kubeclient::Resource end end describe '#config_map?' do subject { base_command.config_map? } it { is_expected.to be_falsy } end describe '#pod_name' do subject { base_command.pod_name } it { is_expected.to eq('install-helm') } end end
23
80
0.710145
541dc3f6fe7bf5abd9c6ea7f9629edb0f96ed3b7
1,624
go
Go
pkg/utils/aes.go
cxz66666/xms-go
125b11734cb8b2d58bae08be8513825bb8f60bde
[ "MIT" ]
null
null
null
pkg/utils/aes.go
cxz66666/xms-go
125b11734cb8b2d58bae08be8513825bb8f60bde
[ "MIT" ]
null
null
null
pkg/utils/aes.go
cxz66666/xms-go
125b11734cb8b2d58bae08be8513825bb8f60bde
[ "MIT" ]
null
null
null
package utils import ( "bytes" "crypto/aes" "crypto/cipher" ) //PKCS7Padding use PKCS7 to padding func PKCS7Padding(ciphertext []byte, blockSize int) []byte { padding := blockSize - len(ciphertext) % blockSize padtext := bytes.Repeat([]byte{byte(padding)}, padding) return append(ciphertext, padtext...) } //PKCS7UnPadding use PkCS7 to unpadding func PKCS7UnPadding(origData []byte) []byte { length := len(origData) unpadding := int(origData[length-1]) return origData[:(length - unpadding)] } // AesCBCEncrypt use aes-cbc,pkcs7 padding to encrypt, support AES-128, AES-192, or AES-256. func AesCBCEncrypt(origData []byte, key []byte, iv []byte) ([]byte, error) { newKey:=make([]byte,16) newIv:=make([]byte,16) copy(newKey,key) copy(newIv,iv) block, err := aes.NewCipher(newKey) if err != nil { return nil, err } blockSize := block.BlockSize() origData = PKCS7Padding(origData, blockSize) //使用cbc blocMode := cipher.NewCBCEncrypter(block, newIv) encrypted := make([]byte, len(origData)) blocMode.CryptBlocks(encrypted, origData) return encrypted, nil } // AesCBCDecrypt use decrypt the content, like its name func AesCBCDecrypt(cypted []byte, key []byte, iv []byte) ([]byte, error) { newKey:=make([]byte,16) newIv:=make([]byte,16) copy(newKey,key) copy(newIv,iv) block, err := aes.NewCipher(newKey) if err != nil { return nil, err } //使用key充当偏移量 blockMode := cipher.NewCBCDecrypter(block, newIv) origData := make([]byte, len(cypted)) blockMode.CryptBlocks(origData, cypted) origData = PKCS7UnPadding(origData) if err != nil { return nil, err } return origData, err }
23.2
92
0.704433
388e7f0e3c8f3c942138d25aef5e13ca5eca8800
127
sql
SQL
ibolc/data/mil_components.sql
jschaf/ibolcdb
e890fcf6bdc6219b3464899a99ac0464f6d329fc
[ "BSD-3-Clause" ]
null
null
null
ibolc/data/mil_components.sql
jschaf/ibolcdb
e890fcf6bdc6219b3464899a99ac0464f6d329fc
[ "BSD-3-Clause" ]
null
null
null
ibolc/data/mil_components.sql
jschaf/ibolcdb
e890fcf6bdc6219b3464899a99ac0464f6d329fc
[ "BSD-3-Clause" ]
null
null
null
INSERT INTO mil_component (name, abbreviation) VALUES ('Active Duty', 'AD'), ('National Guard', 'NG'), ('Reserve', 'Reserve');
25.4
53
0.677165
c7f2372f8d8f1bf6eba616475786086ce3bf9d4c
1,505
java
Java
src/main/java/com/github/codeteapot/tools/packer/PackerExecutor.java
codeteapot/packer-maven-plugin
75d6c537b11756e7ce8e6de4b53c8450e45a18e4
[ "Apache-2.0" ]
null
null
null
src/main/java/com/github/codeteapot/tools/packer/PackerExecutor.java
codeteapot/packer-maven-plugin
75d6c537b11756e7ce8e6de4b53c8450e45a18e4
[ "Apache-2.0" ]
1
2021-01-16T23:27:16.000Z
2021-01-16T23:27:16.000Z
src/main/java/com/github/codeteapot/tools/packer/PackerExecutor.java
codeteapot/packer-maven-plugin
75d6c537b11756e7ce8e6de4b53c8450e45a18e4
[ "Apache-2.0" ]
null
null
null
package com.github.codeteapot.tools.packer; import static java.io.File.createTempFile; import static java.lang.ProcessBuilder.Redirect.PIPE; import java.io.File; import java.io.IOException; import java.io.InputStream; import java.util.List; import java.util.concurrent.Executor; class PackerExecutor { private final PackerTerminal terminal; private final PackerProcessBuilderFactory processBuilderFactory; private final Executor terminalTaskExecutor; PackerExecutor( PackerTerminal terminal, PackerProcessBuilderFactory processBuilderFactory, Executor terminalTaskExecutor) { this.terminal = terminal; this.processBuilderFactory = processBuilderFactory; this.terminalTaskExecutor = terminalTaskExecutor; } PackerExecution execute(String command, List<String> args) throws IOException { File errorFile = createTempFile("packer-", ".err"); errorFile.deleteOnExit(); ProcessBuilder processBuilder = processBuilderFactory.getProcessBuilder(command, args) .redirectOutput(PIPE) .redirectInput(PIPE) .redirectError(errorFile); terminal.getWorkingDir() .ifPresent(processBuilder::directory); return new PackerExecutionImpl( processBuilder.start(), this::terminalTaskFactory, errorFile, terminalTaskExecutor); } private PackerTerminalTask terminalTaskFactory(PackerAbortable execution, InputStream input) { return new PackerTerminalTask(terminal, execution, input); } }
32.021277
96
0.762791
98c2e4d0ca51c46097821a853ce724cbe0171a0c
16,629
html
HTML
doc/MB03WD.html
bnavigator/SLICOT-Reference
7b96b6470ee0eaf75519a612d15d5e3e2857407d
[ "BSD-3-Clause" ]
17
2020-11-10T23:47:47.000Z
2022-03-18T04:34:43.000Z
doc/MB03WD.html
bnavigator/SLICOT-Reference
7b96b6470ee0eaf75519a612d15d5e3e2857407d
[ "BSD-3-Clause" ]
3
2021-02-07T22:26:30.000Z
2022-03-30T11:01:07.000Z
doc/MB03WD.html
bnavigator/SLICOT-Reference
7b96b6470ee0eaf75519a612d15d5e3e2857407d
[ "BSD-3-Clause" ]
6
2020-11-26T11:06:38.000Z
2022-03-24T00:37:21.000Z
<HTML> <HEAD><TITLE>MB03WD - SLICOT Library Routine Documentation</TITLE> </HEAD> <BODY> <H2><A Name="MB03WD">MB03WD</A></H2> <H3> Schur decomposition and eigenvalues of a product of matrices in periodic Hessenberg form </H3> <A HREF ="#Specification"><B>[Specification]</B></A> <A HREF ="#Arguments"><B>[Arguments]</B></A> <A HREF ="#Method"><B>[Method]</B></A> <A HREF ="#References"><B>[References]</B></A> <A HREF ="#Comments"><B>[Comments]</B></A> <A HREF ="#Example"><B>[Example]</B></A> <P> <B><FONT SIZE="+1">Purpose</FONT></B> <PRE> To compute the Schur decomposition and the eigenvalues of a product of matrices, H = H_1*H_2*...*H_p, with H_1 an upper Hessenberg matrix and H_2, ..., H_p upper triangular matrices, without evaluating the product. Specifically, the matrices Z_i are computed, such that Z_1' * H_1 * Z_2 = T_1, Z_2' * H_2 * Z_3 = T_2, ... Z_p' * H_p * Z_1 = T_p, where T_1 is in real Schur form, and T_2, ..., T_p are upper triangular. The routine works primarily with the Hessenberg and triangular submatrices in rows and columns ILO to IHI, but optionally applies the transformations to all the rows and columns of the matrices H_i, i = 1,...,p. The transformations can be optionally accumulated. </PRE> <A name="Specification"><B><FONT SIZE="+1">Specification</FONT></B></A> <PRE> SUBROUTINE MB03WD( JOB, COMPZ, N, P, ILO, IHI, ILOZ, IHIZ, H, $ LDH1, LDH2, Z, LDZ1, LDZ2, WR, WI, DWORK, $ LDWORK, INFO ) C .. Scalar Arguments .. CHARACTER COMPZ, JOB INTEGER IHI, IHIZ, ILO, ILOZ, INFO, LDH1, LDH2, LDWORK, $ LDZ1, LDZ2, N, P C .. Array Arguments .. DOUBLE PRECISION DWORK( * ), H( LDH1, LDH2, * ), WI( * ), $ WR( * ), Z( LDZ1, LDZ2, * ) </PRE> <A name="Arguments"><B><FONT SIZE="+1">Arguments</FONT></B></A> <P> <B>Mode Parameters</B> <PRE> JOB CHARACTER*1 Indicates whether the user wishes to compute the full Schur form or the eigenvalues only, as follows: = 'E': Compute the eigenvalues only; = 'S': Compute the factors T_1, ..., T_p of the full Schur form, T = T_1*T_2*...*T_p. COMPZ CHARACTER*1 Indicates whether or not the user wishes to accumulate the matrices Z_1, ..., Z_p, as follows: = 'N': The matrices Z_1, ..., Z_p are not required; = 'I': Z_i is initialized to the unit matrix and the orthogonal transformation matrix Z_i is returned, i = 1, ..., p; = 'V': Z_i must contain an orthogonal matrix Q_i on entry, and the product Q_i*Z_i is returned, i = 1, ..., p. </PRE> <B>Input/Output Parameters</B> <PRE> N (input) INTEGER The order of the matrix H. N &gt;= 0. P (input) INTEGER The number of matrices in the product H_1*H_2*...*H_p. P &gt;= 1. ILO (input) INTEGER IHI (input) INTEGER It is assumed that all matrices H_j, j = 2, ..., p, are already upper triangular in rows and columns 1:ILO-1 and IHI+1:N, and H_1 is upper quasi-triangular in rows and columns 1:ILO-1 and IHI+1:N, with H_1(ILO,ILO-1) = 0 (unless ILO = 1), and H_1(IHI+1,IHI) = 0 (unless IHI = N). The routine works primarily with the Hessenberg submatrix in rows and columns ILO to IHI, but applies the transformations to all the rows and columns of the matrices H_i, i = 1,...,p, if JOB = 'S'. 1 &lt;= ILO &lt;= max(1,N); min(ILO,N) &lt;= IHI &lt;= N. ILOZ (input) INTEGER IHIZ (input) INTEGER Specify the rows of Z to which the transformations must be applied if COMPZ = 'I' or COMPZ = 'V'. 1 &lt;= ILOZ &lt;= ILO; IHI &lt;= IHIZ &lt;= N. H (input/output) DOUBLE PRECISION array, dimension (LDH1,LDH2,P) On entry, the leading N-by-N part of H(*,*,1) must contain the upper Hessenberg matrix H_1 and the leading N-by-N part of H(*,*,j) for j &gt; 1 must contain the upper triangular matrix H_j, j = 2, ..., p. On exit, if JOB = 'S', the leading N-by-N part of H(*,*,1) is upper quasi-triangular in rows and columns ILO:IHI, with any 2-by-2 diagonal blocks corresponding to a pair of complex conjugated eigenvalues, and the leading N-by-N part of H(*,*,j) for j &gt; 1 contains the resulting upper triangular matrix T_j. If JOB = 'E', the contents of H are unspecified on exit. LDH1 INTEGER The first leading dimension of the array H. LDH1 &gt;= max(1,N). LDH2 INTEGER The second leading dimension of the array H. LDH2 &gt;= max(1,N). Z (input/output) DOUBLE PRECISION array, dimension (LDZ1,LDZ2,P) On entry, if COMPZ = 'V', the leading N-by-N-by-P part of this array must contain the current matrix Q of transformations accumulated by SLICOT Library routine MB03VY. If COMPZ = 'I', Z need not be set on entry. On exit, if COMPZ = 'V', or COMPZ = 'I', the leading N-by-N-by-P part of this array contains the transformation matrices which produced the Schur form; the transformations are applied only to the submatrices Z_j(ILOZ:IHIZ,ILO:IHI), j = 1, ..., P. If COMPZ = 'N', Z is not referenced. LDZ1 INTEGER The first leading dimension of the array Z. LDZ1 &gt;= 1, if COMPZ = 'N'; LDZ1 &gt;= max(1,N), if COMPZ = 'I' or COMPZ = 'V'. LDZ2 INTEGER The second leading dimension of the array Z. LDZ2 &gt;= 1, if COMPZ = 'N'; LDZ2 &gt;= max(1,N), if COMPZ = 'I' or COMPZ = 'V'. WR (output) DOUBLE PRECISION array, dimension (N) WI (output) DOUBLE PRECISION array, dimension (N) The real and imaginary parts, respectively, of the computed eigenvalues ILO to IHI are stored in the corresponding elements of WR and WI. If two eigenvalues are computed as a complex conjugate pair, they are stored in consecutive elements of WR and WI, say the i-th and (i+1)th, with WI(i) &gt; 0 and WI(i+1) &lt; 0. If JOB = 'S', the eigenvalues are stored in the same order as on the diagonal of the Schur form returned in H. </PRE> <B>Workspace</B> <PRE> DWORK DOUBLE PRECISION array, dimension (LDWORK) LDWORK INTEGER The length of the array DWORK. LDWORK &gt;= IHI-ILO+P-1. </PRE> <B>Error Indicator</B> <PRE> INFO INTEGER = 0: successful exit; &lt; 0: if INFO = -i, the i-th argument had an illegal value; &gt; 0: if INFO = i, ILO &lt;= i &lt;= IHI, the QR algorithm failed to compute all the eigenvalues ILO to IHI in a total of 30*(IHI-ILO+1) iterations; the elements i+1:IHI of WR and WI contain those eigenvalues which have been successfully computed. </PRE> <A name="Method"><B><FONT SIZE="+1">Method</FONT></B></A> <PRE> A refined version of the QR algorithm proposed in [1] and [2] is used. The elements of the subdiagonal, diagonal, and the first supradiagonal of current principal submatrix of H are computed in the process. </PRE> <A name="References"><B><FONT SIZE="+1">References</FONT></B></A> <PRE> [1] Bojanczyk, A.W., Golub, G. and Van Dooren, P. The periodic Schur decomposition: algorithms and applications. Proc. of the SPIE Conference (F.T. Luk, Ed.), 1770, pp. 31-42, 1992. [2] Sreedhar, J. and Van Dooren, P. Periodic Schur form and some matrix equations. Proc. of the Symposium on the Mathematical Theory of Networks and Systems (MTNS'93), Regensburg, Germany (U. Helmke, R. Mennicken and J. Saurer, Eds.), Vol. 1, pp. 339-362, 1994. </PRE> <A name="Numerical Aspects"><B><FONT SIZE="+1">Numerical Aspects</FONT></B></A> <PRE> The algorithm is numerically stable. </PRE> <A name="Comments"><B><FONT SIZE="+1">Further Comments</FONT></B></A> <PRE> Note that for P = 1, the LAPACK Library routine DHSEQR could be more efficient on some computer architectures than this routine, because DHSEQR uses a block multishift QR algorithm. When P is large and JOB = 'S', it could be more efficient to compute the product matrix H, and use the LAPACK Library routines. </PRE> <A name="Example"><B><FONT SIZE="+1">Example</FONT></B></A> <P> <B>Program Text</B> <PRE> * MB03WD EXAMPLE PROGRAM TEXT * Copyright (c) 2002-2020 NICONET e.V. * * .. Parameters .. INTEGER NIN, NOUT PARAMETER ( NIN = 5, NOUT = 6 ) INTEGER NMAX, PMAX PARAMETER ( NMAX = 20, PMAX = 20 ) INTEGER LDA1, LDA2, LDTAU, LDZ1, LDZ2, LDZTA PARAMETER ( LDA1 = NMAX, LDA2 = NMAX, LDTAU = NMAX-1, $ LDZ1 = NMAX, LDZ2 = NMAX, LDZTA = NMAX ) INTEGER LDWORK PARAMETER ( LDWORK = MAX( NMAX, NMAX + PMAX - 2 ) ) DOUBLE PRECISION ZERO, ONE PARAMETER ( ZERO = 0.0D0, ONE = 1.0D0 ) * .. Local Scalars .. DOUBLE PRECISION SSQ INTEGER I, IHI, IHIZ, ILO, ILOZ, INFO, J, K, KP1, N, P CHARACTER COMPZ, JOB * .. Local Arrays .. DOUBLE PRECISION A(LDA1,LDA2,PMAX), AS(LDA1,LDA2,PMAX), $ DWORK(LDWORK), TAU(LDTAU,PMAX), WI(NMAX), $ WR(NMAX), Z(LDZ1,LDZ2,PMAX), ZTA(LDZTA,NMAX) * .. External Functions .. DOUBLE PRECISION DLANGE, DLAPY2 LOGICAL LSAME EXTERNAL DLANGE, DLAPY2, LSAME * .. External Subroutines .. EXTERNAL DGEMM, DLACPY, MB03VD, MB03VY, MB03WD, MB03WX * .. Intrinsic Functions .. INTRINSIC MAX, MIN * .. Executable Statements .. WRITE (NOUT, FMT = 99999 ) * Skip the heading in the data file and read the data. READ ( NIN, FMT = '()' ) READ ( NIN, FMT = * ) N, P, ILO, IHI, ILOZ, IHIZ, JOB, COMPZ IF ( N.LT.0 .OR. N.GT.MIN( LDA1, LDA2 ) ) THEN WRITE ( NOUT, FMT = 99988 ) N ELSE IF ( P.LE.0 .OR. P.GT.PMAX ) THEN WRITE ( NOUT, FMT = 99987 ) P ELSE * Read matrices A_1, ..., A_p from the input file. DO 10 K = 1, P READ ( NIN, FMT = * ) $ ( ( A(I,J,K), J = 1, N ), I = 1, N ) CALL DLACPY( 'F', N, N, A(1,1,K), LDA1, AS(1,1,K), LDA1 ) 10 CONTINUE * Reduce to the periodic Hessenberg form. CALL MB03VD( N, P, ILO, IHI, A, LDA1, LDA2, TAU, LDTAU, $ DWORK, INFO ) IF ( INFO.NE.0 ) THEN WRITE ( NOUT, FMT = 99997 ) INFO ELSE IF ( LSAME( COMPZ, 'V' ) ) THEN DO 20 K = 1, P CALL DLACPY( 'L', N, N, A(1,1,K), LDA1, Z(1,1,K), $ LDZ1 ) 20 CONTINUE * Accumulate the transformations. CALL MB03VY( N, P, ILO, IHI, Z, LDZ1, LDZ2, TAU, $ LDTAU, DWORK, LDWORK, INFO ) IF ( INFO.NE.0 ) THEN WRITE ( NOUT, FMT = 99996 ) INFO STOP ELSE * Reduce to the periodic Schur form. CALL MB03WD( JOB, COMPZ, N, P, ILO, IHI, ILOZ, $ IHIZ, A, LDA1, LDA2, Z, LDZ1, LDZ2, $ WR, WI, DWORK, LDWORK, INFO ) IF ( INFO.GT.0 ) THEN WRITE ( NOUT, FMT = 99998 ) INFO WRITE ( NOUT, FMT = 99991 ) DO 30 I = MAX( ILO, INFO + 1 ), IHI WRITE ( NOUT, FMT = 99990 ) WR(I), WI(I) 30 CONTINUE STOP END IF IF ( INFO.LT.0 ) THEN WRITE ( NOUT, FMT = 99998 ) INFO ELSE * Store the isolated eigenvalues. CALL MB03WX( ILO-1, P, A, LDA1, LDA2, WR, WI, $ INFO ) IF ( IHI.LT.N ) $ CALL MB03WX( N-IHI, P, A(IHI+1,IHI+1,1), $ LDA1, LDA2, WR(IHI+1), $ WI(IHI+1), INFO ) WRITE ( NOUT, FMT = 99991 ) DO 40 I = 1, N WRITE ( NOUT, FMT = 99990 ) WR(I), WI(I) 40 CONTINUE WRITE ( NOUT, FMT = 99995 ) DO 60 K = 1, P WRITE ( NOUT, FMT = 99994 ) K DO 50 I = 1, N WRITE ( NOUT, FMT = 99993 ) $ ( A(I,J,K), J = 1, N ) 50 CONTINUE 60 CONTINUE WRITE ( NOUT, FMT = 99992 ) DO 80 K = 1, P WRITE ( NOUT, FMT = 99994 ) K DO 70 I = 1, N WRITE ( NOUT, FMT = 99993 ) $ ( Z(I,J,K), J = 1, N ) 70 CONTINUE 80 CONTINUE * Compute error. SSQ = ZERO DO 90 K = 1, P KP1 = K+1 IF( KP1.GT.P ) KP1 = 1 * Compute NORM (Z' * A * Z - Aout) CALL DGEMM( 'T', 'N', N, N, N, ONE, Z(1,1,K), $ LDZ1, AS(1,1,K), LDA1, ZERO, ZTA, $ LDZTA ) CALL DGEMM( 'N', 'N', N, N, N, ONE, ZTA, $ LDZTA, Z(1,1,KP1), LDZ1, -ONE, $ A(1,1,K), LDA1 ) SSQ = DLAPY2( SSQ, $ DLANGE( 'Frobenius', N, N, $ A(1,1,K), LDA1, $ DWORK ) ) 90 CONTINUE WRITE ( NOUT, FMT = 99989 ) SSQ END IF END IF END IF END IF END IF END IF STOP 99999 FORMAT (' MB03WD EXAMPLE PROGRAM RESULTS', /1X) 99998 FORMAT (' INFO on exit from MB03WD = ', I2) 99997 FORMAT (' INFO on exit from MB03VD = ', I2) 99996 FORMAT (' INFO on exit from MB03VY = ', I2) 99995 FORMAT (/' Reduced matrices') 99994 FORMAT (/' K = ', I5) 99993 FORMAT (8F8.4) 99992 FORMAT (/' Transformation matrices') 99991 FORMAT ( ' Computed eigenvalues'/) 99990 FORMAT (4X,'( ', F17.6,' ,', F17.6,' )') 99989 FORMAT (/,' NORM (Z''*A*Z - Aout) = ', 1PD12.5) 99988 FORMAT (/, ' N is out of range.',/' N = ', I5) 99987 FORMAT (/, ' P is out of range.',/' P = ', I5) END </PRE> <B>Program Data</B> <PRE> MB03WD EXAMPLE PROGRAM DATA 4 2 1 4 1 4 S V 1.5 -.7 3.5 -.7 1. 0. 2. 3. 1.5 -.7 2.5 -.3 1. 0. 2. 1. 1.5 -.7 3.5 -.7 1. 0. 2. 3. 1.5 -.7 2.5 -.3 1. 0. 2. 1. </PRE> <B>Program Results</B> <PRE> MB03WD EXAMPLE PROGRAM RESULTS Computed eigenvalues ( 6.449861 , 7.817717 ) ( 6.449861 , -7.817717 ) ( 0.091315 , 0.000000 ) ( 0.208964 , 0.000000 ) Reduced matrices K = 1 2.2112 4.3718 -2.3362 0.8907 -0.9179 2.7688 -0.6570 -2.2426 0.0000 0.0000 0.3022 0.1932 0.0000 0.0000 0.0000 -0.4571 K = 2 2.9169 3.4539 2.2016 1.2367 0.0000 3.4745 1.0209 -2.0720 0.0000 0.0000 0.3022 -0.1932 0.0000 0.0000 0.0000 -0.4571 Transformation matrices K = 1 0.3493 0.6751 -0.6490 0.0327 0.7483 -0.4863 -0.1249 -0.4336 0.2939 0.5504 0.7148 -0.3158 0.4813 -0.0700 0.2286 0.8433 K = 2 0.2372 0.7221 0.6490 0.0327 0.8163 -0.3608 0.1249 -0.4336 0.2025 0.5902 -0.7148 -0.3158 0.4863 0.0076 -0.2286 0.8433 NORM (Z'*A*Z - Aout) = 7.18432D-15 </PRE> <HR> <p> <A HREF=..\libindex.html><B>Return to index</B></A></BODY> </HTML>
38.315668
88
0.506164
d6223e85977abf023b87c46f502841b8581ad49c
1,409
kt
Kotlin
ktor-client/ktor-client-plugins/ktor-client-tracing/ktor-client-tracing-stetho/android/src/io/ktor/client/features/tracing/KtorInterceptorHeaders.kt
IRus/ktor
1bbc7ca522df45c77b390c259566cb64be51304c
[ "Apache-2.0" ]
8,656
2017-10-22T10:35:40.000Z
2022-03-31T18:54:49.000Z
ktor-client/ktor-client-plugins/ktor-client-tracing/ktor-client-tracing-stetho/android/src/io/ktor/client/features/tracing/KtorInterceptorHeaders.kt
ronjunevaldoz/ktor
2410fb825b29ec3e14a530e8a1dfd54a27838233
[ "Apache-2.0" ]
1,993
2017-10-21T20:03:16.000Z
2022-03-31T15:37:54.000Z
ktor-client/ktor-client-plugins/ktor-client-tracing/ktor-client-tracing-stetho/android/src/io/ktor/client/features/tracing/KtorInterceptorHeaders.kt
ronjunevaldoz/ktor
2410fb825b29ec3e14a530e8a1dfd54a27838233
[ "Apache-2.0" ]
912
2017-10-21T16:53:33.000Z
2022-03-28T11:34:43.000Z
/* * Copyright 2014-2021 JetBrains s.r.o and contributors. Use of this source code is governed by the Apache 2.0 license. */ package io.ktor.client.plugin.tracing import com.facebook.stetho.inspector.network.* import io.ktor.http.* import java.util.* /** * Implementation of [NetworkEventReporter.InspectorHeaders] to be reused in [KtorInterceptorRequest] and * [KtorInterceptorResponse]. Uses provided Ktor [Headers] as a source of HTTP headers. */ internal class KtorInterceptorHeaders( private val headers: Headers ) : NetworkEventReporter.InspectorHeaders { /** * Ordered list of header names to be used to get index-based access to headers. */ private val headerNames: List<String> init { headerNames = mutableListOf<String>().apply { headers.forEach { key, _ -> add(key) } } } override fun headerValue(index: Int): String { return headers[headerName(index)]!! } override fun headerName(index: Int): String { return headerNames[index] } override fun headerCount(): Int { return headerNames.size } override fun firstHeaderValue(name: String?): String? { headerNames.forEach { headerName -> if (headerName.toLowerCase(Locale.ROOT) == name?.toLowerCase(Locale.ROOT)) { return headers[headerName] } } return null } }
27.096154
118
0.660752
21d74d9289e4f3410d8cd485d61c632d97dec2bb
66,670
html
HTML
index.html
bothyouandme/love
fe8d9138305bc70e8c7d5041c31339a002767ad8
[ "MIT" ]
1
2021-05-06T13:45:50.000Z
2021-05-06T13:45:50.000Z
index.html
bothyouandme/love
fe8d9138305bc70e8c7d5041c31339a002767ad8
[ "MIT" ]
null
null
null
index.html
bothyouandme/love
fe8d9138305bc70e8c7d5041c31339a002767ad8
[ "MIT" ]
null
null
null
<!DOCTYPE HTML> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <title>献给我最最最爱的温柔善良乖巧细心大方体贴美丽可爱的慕宝贝</title> <meta name="description" content="永久保存您的表白信息,记录您和TA的故事。我们的口号是: 为爱情中得小惊喜而感动" /> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <style type="text/css"> @font-face { font-family: digit; src: url("digital-7_mono.ttf"/*tpa=./digital-7_mono.ttf*/) format("truetype"); } </style> <link href="css/default.css" tppabs="./css/default.css" type="text/css" rel="stylesheet"> <script type="text/javascript" src="js/jquery.js" tppabs="./js/jquery.js"></script> <script type="text/javascript" src="js/garden.js" tppabs="./js/garden.js"></script> <script type="text/javascript" src="js/functions.js" tppabs="./js/functions.js"></script> <body> <audio id="bgmMusic" src="jiu.mp3" preload="preload" type="audio/mp3" autoplay="autoplay" loop="loop">该浏览器不支持audio属性</audio> <div id="mainDiv"> <div id="content"> <div id="code"> <span class="comments">我最最最爱的温柔善良乖巧细心大方体贴美丽可爱的慕宝贝:</span><br /> <span class="space"><span class="comments">我喜欢你</span></span><br /> <span class="space"/><span class="comments">所以啦,宝贝可要小心哦,在我敲动键盘,书写下这封承诺已久的信时,炽热的爱意正在我心头流动,耳畔不时传来几声宝贝的呢喃,宝贝那气鼓鼓的可爱样子,也牢牢印在我的脑海里,所以啦,如果宝贝,忽然嗖的一下被人绑架了,可能就是我克制不住爱意,奔赴宝贝所在,亲手绑的哦。宝贝啦,虽然迟到已久,但趁此良机,就让我亲手给我最爱的宝贝,献上爱情的告白。</span><br /> <span class="space"/><span class="comments">宝贝啦,咱俩在一起,已经快满半周年了哦,半年前,咱俩刚刚在一起,许多事还一知半解,作为一对“傻情侣”,一同探索一同发现一同经历着,这世间千千万万美好的事;经过了半年的磨合,如今,咱俩很多事已经能包容对方,接受对方。回望这半年来与宝贝的一点一滴,我只想说,宝贝实在太好了。宝贝呀,有些小性子,但又不过分,而且逗起来真的可爱,让我陶醉其中,总想多逗一逗;宝贝啦,体贴而且温柔,在我劳累的时候总能迁就我的繁忙,给予我及时的照顾;宝贝呀,独立而又坚强,凭着不服输的性子,不断地再倒下后站起,令我心疼而又骄傲;宝贝呀,深爱着我,为我哭为我笑,让我感动而又愧疚,想把一切好的事物献给宝贝。宝贝,思念你的夜,是那么的漫长,与宝贝在一起的时间,却又是那么的短暂。每次当我晚安告别的时候,总是希望睡前可以吻你,希望睡时可以抱着你,希望醒来可以看到你。悄悄告诉宝贝哦,思念宝贝日益成为我的习惯了。在我结束学习,走在路上的时候,宝贝经常福临心至般出现在我的脑海里。盼你在每一次想你的瞬间,爱你在每一秒呼吸的间隙。有你的日子你就是一切,没你的日子一切都是你,认识你我的生活充满生机,爱上你我的生活充满激情。</span><br /> <span class="space"/><span class="comments">宝贝呀,作为一个理工男,我在不少事上总是傻傻的,很多时候不解风情,不能理解宝贝的想法与潜台词,非要宝贝细说才能明白,不会说浪漫的话,即使是想给宝贝说句好听的话也要想上一会。但我会,会牵着你的手,并陪伴你一路精彩下去,会每一天带着笑脸,和你说早安,会每一晚与你道声晚安再入梦乡,会带你去所有你想去的地方,陪你闹看你笑,会和你一起,发现并珍藏着生活的点点滴滴,愿意为你去做每一件能让你开心快乐的事。那么,宝贝,答应做我的女朋友好么?长长久久的那种哦</span><br /> </div> <div id="loveHeart"> <canvas id="garden"></canvas> <div id="words"> <div id="messages"> 宝贝, 这是我们在一起的第 <div id="elapseClock"></div> </div> <div id="loveu"> 愿一辈子与宝贝不离不弃!<br/> <div class="signature">- 爱你的辉</div> </div> </div> <script type="text/javascript"> var offsetX = $("#loveHeart").width() / 2; var offsetY = $("#loveHeart").height() / 2 - 55; var together = new Date(); together.setFullYear(2020, 10, 07); together.setHours(0); together.setMinutes(0); together.setSeconds(0); together.setMilliseconds(0); if (!document.createElement('canvas').getContext) { var msg = document.createElement("div"); msg.id = "errorMsg"; msg.innerHTML = "宝贝请注意:你的浏览器版本过旧^_^<br/>"+ "推荐使用谷歌浏览器<br/>请先升级你的浏览器,效果很炫哦~~"; document.body.appendChild(msg); $("#code").css("display", "none") $("#copyright").css("position", "absolute"); $("#copyright").css("bottom", "10px"); document.execCommand("stop"); } else { setTimeout(function () { adjustWordsPosition(); startHeartAnimation(); }, 5000); timeElapse(together); setInterval(function () { timeElapse(together); }, 500); adjustCodePosition(); $("#code").typewriter(); } </script> <script> var stop, staticx; var img = new Image(); img.src = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAUgAAAEwCAYAAADVZeifAAAACXBIWXMAAACYAAAAmAGiyIKYAAAHG2lUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS42LWMxNDIgNzkuMTYwOTI0LCAyMDE3LzA3LzEzLTAxOjA2OjM5ICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXBSaWdodHM9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9yaWdodHMvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtbG5zOnN0RXZ0PSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VFdmVudCMiIHhtbG5zOnhtcD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLyIgeG1sbnM6ZGM9Imh0dHA6Ly9wdXJsLm9yZy9kYy9lbGVtZW50cy8xLjEvIiB4bWxuczpwaG90b3Nob3A9Imh0dHA6Ly9ucy5hZG9iZS5jb20vcGhvdG9zaG9wLzEuMC8iIHhtcFJpZ2h0czpNYXJrZWQ9IkZhbHNlIiB4bXBNTTpPcmlnaW5hbERvY3VtZW50SUQ9InhtcC5kaWQ6NDFDMjQxQjYyNjIwNjgxMTgwODNEMjE2MDAzOTU1NDQiIHhtcE1NOkRvY3VtZW50SUQ9ImFkb2JlOmRvY2lkOnBob3Rvc2hvcDozNDVjOWViOC04NDc4LTFkNDctOGRjMi0yZDkyOGNhYTYxZWQiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6YjAzN2ZiMGItNTU5Mi0xYjRkLWJjZGQtOWU4NGExMDJiMGM2IiB4bXA6Q3JlYXRvclRvb2w9IkFkb2JlIFBob3Rvc2hvcCBDQyAoV2luZG93cykiIHhtcDpDcmVhdGVEYXRlPSIyMDE4LTA1LTA5VDE0OjQ5OjM3KzA4OjAwIiB4bXA6TW9kaWZ5RGF0ZT0iMjAxOC0wNS0wOVQxNDo1MToyNSswODowMCIgeG1wOk1ldGFkYXRhRGF0ZT0iMjAxOC0wNS0wOVQxNDo1MToyNSswODowMCIgZGM6Zm9ybWF0PSJpbWFnZS9wbmciIHBob3Rvc2hvcDpDb2xvck1vZGU9IjMiIHBob3Rvc2hvcDpJQ0NQcm9maWxlPSJzUkdCIElFQzYxOTY2LTIuMSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjEyMjVlZWE3LTEyY2QtMTY0NC04ZDAzLWFjOTE2ZTAxZDQ1YyIgc3RSZWY6ZG9jdW1lbnRJRD0idXVpZDoxRDIwNUFGNjZCRDlFNTExOUM5REMwMzg2RjlEQjFGNyIvPiA8eG1wTU06SGlzdG9yeT4gPHJkZjpTZXE+IDxyZGY6bGkgc3RFdnQ6YWN0aW9uPSJzYXZlZCIgc3RFdnQ6aW5zdGFuY2VJRD0ieG1wLmlpZDphYmMzNjIzMy1hOWNkLWNiNDQtODViYi0zZTgyMjEwYmIxMjYiIHN0RXZ0OndoZW49IjIwMTgtMDUtMDlUMTQ6NTE6MjUrMDg6MDAiIHN0RXZ0OnNvZnR3YXJlQWdlbnQ9IkFkb2JlIFBob3Rvc2hvcCBDQyAyMDE4IChXaW5kb3dzKSIgc3RFdnQ6Y2hhbmdlZD0iLyIvPiA8cmRmOmxpIHN0RXZ0OmFjdGlvbj0ic2F2ZWQiIHN0RXZ0Omluc3RhbmNlSUQ9InhtcC5paWQ6YjAzN2ZiMGItNTU5Mi0xYjRkLWJjZGQtOWU4NGExMDJiMGM2IiBzdEV2dDp3aGVuPSIyMDE4LTA1LTA5VDE0OjUxOjI1KzA4OjAwIiBzdEV2dDpzb2Z0d2FyZUFnZW50PSJBZG9iZSBQaG90b3Nob3AgQ0MgMjAxOCAoV2luZG93cykiIHN0RXZ0OmNoYW5nZWQ9Ii8iLz4gPC9yZGY6U2Vx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"; function Sakura(x, y, s, r, fn) { this.x = x; this.y = y; this.s = s; this.r = r; this.fn = fn; } Sakura.prototype.draw = function(cxt) { cxt.save(); var xc = 40 * this.s / 4; cxt.translate(this.x, this.y); cxt.rotate(this.r); cxt.drawImage(img, 0, 0, 40 * this.s, 40 * this.s) cxt.restore(); } Sakura.prototype.update = function() { this.x = this.fn.x(this.x, this.y); this.y = this.fn.y(this.y, this.y); this.r = this.fn.r(this.r); if(this.x > window.innerWidth || this.x < 0 || this.y > window.innerHeight || this.y < 0 ) { this.r = getRandom('fnr'); if(Math.random() > 0.4) { this.x = getRandom('x'); this.y = 0; this.s = getRandom('s'); this.r = getRandom('r'); } else { this.x = window.innerWidth; this.y = getRandom('y'); this.s = getRandom('s'); this.r = getRandom('r'); } } } SakuraList = function() { this.list = []; } SakuraList.prototype.push = function(sakura) { this.list.push(sakura); } SakuraList.prototype.update = function() { for(var i = 0, len = this.list.length; i < len; i++) { this.list[i].update(); } } SakuraList.prototype.draw = function(cxt) { for(var i = 0, len = this.list.length; i < len; i++) { this.list[i].draw(cxt); } } SakuraList.prototype.get = function(i) { return this.list[i]; } SakuraList.prototype.size = function() { return this.list.length; } function getRandom(option) { var ret, random; switch(option) { case 'x': ret = Math.random() * window.innerWidth; break; case 'y': ret = Math.random() * window.innerHeight; break; case 's': ret = Math.random(); break; case 'r': ret = Math.random() * 6; break; case 'fnx': random = -0.5 + Math.random() * 1; ret = function(x, y) { return x + 0.5 * random - 1.7; }; break; case 'fny': random = 1.5 + Math.random() * 0.7 ret = function(x, y) { return y + random; }; break; case 'fnr': random = Math.random() * 0.03; ret = function(r) { return r + random; }; break; } return ret; } function startSakura() { requestAnimationFrame = window.requestAnimationFrame || window.mozRequestAnimationFrame || window.webkitRequestAnimationFrame || window.msRequestAnimationFrame || window.oRequestAnimationFrame; var canvas = document.createElement('canvas'), cxt; staticx = true; canvas.height = window.innerHeight; canvas.width = window.innerWidth; canvas.setAttribute('style', 'position: fixed;left: 0;top: 0;pointer-events: none;'); canvas.setAttribute('id', 'canvas_sakura'); document.getElementsByTagName('body')[0].appendChild(canvas); cxt = canvas.getContext('2d'); var sakuraList = new SakuraList(); for(var i = 0; i < 50; i++) { var sakura, randomX, randomY, randomS, randomR, randomFnx, randomFny; randomX = getRandom('x'); randomY = getRandom('y'); randomR = getRandom('r'); randomS = getRandom('s'); randomFnx = getRandom('fnx'); randomFny = getRandom('fny'); randomFnR = getRandom('fnr'); sakura = new Sakura(randomX, randomY, randomS, randomR, { x: randomFnx, y: randomFny, r: randomFnR }); sakura.draw(cxt); sakuraList.push(sakura); } stop = requestAnimationFrame(function() { cxt.clearRect(0, 0, canvas.width, canvas.height); sakuraList.update(); sakuraList.draw(cxt); stop = requestAnimationFrame(arguments.callee); }) } window.onresize = function() { var canvasSnow = document.getElementById('canvas_snow'); canvasSnow.width = window.innerWidth; canvasSnow.height = window.innerHeight; } img.onload = function() { startSakura(); } function stopp() { if(staticx) { var child = document.getElementById("canvas_sakura"); child.parentNode.removeChild(child); window.cancelAnimationFrame(stop); staticx = false; } else { startSakura(); } } </script> </body> </html>
264.563492
58,603
0.928349
2a6006e21d06ae966cd56a02f3c596cee0ae00ed
876
java
Java
474/D.java
I-See-You/Programming-Solutions
e69d94586b1718256a6ff4d2e67f91bc98c64815
[ "MIT" ]
null
null
null
474/D.java
I-See-You/Programming-Solutions
e69d94586b1718256a6ff4d2e67f91bc98c64815
[ "MIT" ]
null
null
null
474/D.java
I-See-You/Programming-Solutions
e69d94586b1718256a6ff4d2e67f91bc98c64815
[ "MIT" ]
null
null
null
import java.util.Scanner; import java.util.Arrays; public class Test1 { public static void main(String[] args) { Scanner cin = new Scanner (System.in); int t,k; final int mod = 1000000007; int[] dp = new int[100005]; t = cin.nextInt(); k = cin.nextInt(); dp[0] = 1; for(int i=1;i<=100000;i++){ dp[i] = (dp[i] + dp[i-1]) % mod; if(i >= k) dp[i] = (dp[i] + dp[i-k]) % mod; } dp[0] = 0; for(int i=1;i<=100000;i++) dp[i] = (dp[i] + dp[i-1]) % mod; while(t-- > 0){ int x,y; x = cin.nextInt(); y = cin.nextInt(); int ans = dp[y] - dp[x-1]; ans = ans % mod; if(ans < 0) ans += mod; System.out.println(ans); } } }
27.375
68
0.399543
2670c5edc066c6c86b18932f91eb1de9cedbdbe3
1,166
java
Java
app/src/main/java/com/example/googlemap/NearbySearch.java
Banus/Textflow
e8ec120134cb0220769efd913171963c3d81e485
[ "MIT" ]
null
null
null
app/src/main/java/com/example/googlemap/NearbySearch.java
Banus/Textflow
e8ec120134cb0220769efd913171963c3d81e485
[ "MIT" ]
null
null
null
app/src/main/java/com/example/googlemap/NearbySearch.java
Banus/Textflow
e8ec120134cb0220769efd913171963c3d81e485
[ "MIT" ]
null
null
null
package com.example.googlemap; import android.content.Context; import com.google.maps.GeoApiContext; import com.google.maps.PlacesApi; import com.google.maps.errors.ApiException; import com.google.maps.model.PlaceType; import com.google.maps.model.PlacesSearchResponse; import com.google.maps.model.RankBy; import com.google.maps.model.LatLng; import java.io.IOException; class NearbySearch { private String api_key; NearbySearch(Context context) { api_key = context.getString(R.string.google_maps_key); } PlacesSearchResponse run(LatLng location, PlaceType placeType){ PlacesSearchResponse request = new PlacesSearchResponse(); GeoApiContext context = new GeoApiContext.Builder().apiKey(api_key).build(); try { request = PlacesApi.nearbySearchQuery(context, location) .radius(5000) .rankby(RankBy.PROMINENCE) .language("en") .type(placeType) .await(); } catch (ApiException | IOException | InterruptedException e) { e.printStackTrace(); } return request; } }
30.684211
84
0.66295
167290988cbf40ea8b32fa2445fd13cd34c2aae2
967
ts
TypeScript
src/api-modules/user/user-modules/auth/strategies/local.strategy.ts
TishakinNikolay/iminback
0d6401e456e04654be285e969b3b4f937a99efb5
[ "MIT" ]
null
null
null
src/api-modules/user/user-modules/auth/strategies/local.strategy.ts
TishakinNikolay/iminback
0d6401e456e04654be285e969b3b4f937a99efb5
[ "MIT" ]
null
null
null
src/api-modules/user/user-modules/auth/strategies/local.strategy.ts
TishakinNikolay/iminback
0d6401e456e04654be285e969b3b4f937a99efb5
[ "MIT" ]
null
null
null
import {PassportStrategy} from '@nestjs/passport'; import {ExtractJwt, Strategy} from 'passport-jwt'; import {UserErrorEnum} from '../../../enums/user-error.enum'; import {UserFindError} from '../../../errors/user-find.error'; import {User} from '../../../models/user.entity'; export class LocalStrategy extends PassportStrategy(Strategy, 'jwt') { constructor() { super({ jwtFromRequest: ExtractJwt.fromAuthHeaderAsBearerToken(), secretOrKey: process.env.JWT_SECRET }); } public async validate(payload) { const {userId: id} = payload.context; const user = await User.findOne(id, {relations: ['city', 'city.country']}); if (user) { return user; } else { throw new UserFindError( { type: UserErrorEnum.NOT_FOUND, details: 'Not found user by id: ' + id } ); } } }
32.233333
83
0.562565
c07aaec3924cfdf82a361bf5e009af27d4bf30ec
15,244
sql
SQL
server/controller/src/main/resources/db/migration/V00001__Create_schema.sql
star-whale/starwhale
11cfe86d3a0c2972b508812d101f1b32e4166706
[ "Apache-2.0" ]
13
2022-03-09T15:27:29.000Z
2022-03-29T06:12:47.000Z
server/controller/src/main/resources/db/migration/V00001__Create_schema.sql
star-whale/starwhale
11cfe86d3a0c2972b508812d101f1b32e4166706
[ "Apache-2.0" ]
7
2022-03-14T08:59:39.000Z
2022-03-30T00:50:40.000Z
server/controller/src/main/resources/db/migration/V00001__Create_schema.sql
star-whale/starwhale
11cfe86d3a0c2972b508812d101f1b32e4166706
[ "Apache-2.0" ]
9
2022-03-10T08:12:44.000Z
2022-03-26T15:00:13.000Z
/* * Copyright 2022.1-2022 * StarWhale.ai All right reserved. This software is the confidential and proprietary information of * StarWhale.ai ("Confidential Information"). You shall not disclose such Confidential Information and shall use it only * in accordance with the terms of the license agreement you entered into with StarWhale.ai. */ CREATE DATABASE IF NOT EXISTS starwhale; use starwhale; -- ---------------------------- -- Table structure for agent_info -- ---------------------------- create table if not exists agent_info ( id bigint auto_increment comment 'PK' primary key, agent_ip int unsigned not null, connect_time datetime not null, agent_version varchar(255) not null, agent_status varchar(32) not null, serial_number varchar(255) not null, device_info text not null, created_time datetime default CURRENT_TIMESTAMP not null, modified_time datetime default CURRENT_TIMESTAMP not null on update CURRENT_TIMESTAMP, constraint uk_serial_number unique (serial_number) ); create index idx_agent_version on agent_info (agent_version); -- ---------------------------- -- Table structure for dag_graph -- ---------------------------- create table if not exists dag_graph ( id bigint auto_increment comment 'PK' primary key, job_id bigint not null, created_time datetime default CURRENT_TIMESTAMP not null, modified_time datetime default CURRENT_TIMESTAMP not null on update CURRENT_TIMESTAMP, constraint idx_dag_job_id unique (job_id) ); -- ---------------------------- -- Table structure for dag_graph_edge -- ---------------------------- create table if not exists dag_graph_edge ( id bigint auto_increment comment 'PK' primary key, graph_id bigint not null, from_node bigint not null, to_node bigint not null, content varchar(255) not null, created_time datetime default CURRENT_TIMESTAMP not null, modified_time datetime default CURRENT_TIMESTAMP not null on update CURRENT_TIMESTAMP ); create index idx_dag_edge_from on dag_graph_edge (from_node); create index idx_dag_edge_graph_id on dag_graph_edge (graph_id); create index idx_dag_edge_to on dag_graph_edge (to_node); -- ---------------------------- -- Table structure for dag_graph_node -- ---------------------------- create table if not exists dag_graph_node ( id bigint auto_increment comment 'PK' primary key, graph_id bigint not null, node_type varchar(50) not null, node_group varchar(255) not null, owner_id bigint not null, content varchar(255) not null, created_time datetime default CURRENT_TIMESTAMP not null, modified_time datetime default CURRENT_TIMESTAMP not null on update CURRENT_TIMESTAMP ); create index idx_dag_node_graph_id on dag_graph_node (graph_id); create index idx_dag_node_owner_id on dag_graph_node (owner_id); -- ---------------------------- -- Table structure for dataset_info -- ---------------------------- create table if not exists dataset_info ( id bigint auto_increment comment 'PK' primary key, dataset_name varchar(255) not null, project_id bigint null, owner_id bigint not null, is_deleted tinyint unsigned default '0' not null, created_time datetime default CURRENT_TIMESTAMP not null, modified_time datetime default CURRENT_TIMESTAMP not null on update CURRENT_TIMESTAMP ); create index idx_dataset_name on dataset_info (dataset_name); create index idx_owner_id on dataset_info (owner_id); create index idx_project_id on dataset_info (project_id); -- ---------------------------- -- Table structure for dataset_version -- ---------------------------- create table if not exists dataset_version ( id bigint auto_increment comment 'PK' primary key, dataset_id bigint not null, owner_id bigint not null, version_name varchar(255) not null, version_tag varchar(255) null, version_meta text not null, files_uploaded text null, storage_path text not null, status tinyint unsigned default '0' not null, created_time datetime default CURRENT_TIMESTAMP not null, modified_time datetime default CURRENT_TIMESTAMP not null on update CURRENT_TIMESTAMP, constraint unq_swds_version_name unique (dataset_id, version_name) ); create index idx_dataset_id on dataset_version (dataset_id); create index idx_owner_id on dataset_version (owner_id); -- ---------------------------- -- Table structure for job_dataset_version_rel -- ---------------------------- create table if not exists job_dataset_version_rel ( id bigint auto_increment comment 'PK' primary key, job_id bigint not null, dataset_version_id bigint not null, created_time datetime default CURRENT_TIMESTAMP not null, modified_time datetime default CURRENT_TIMESTAMP not null on update CURRENT_TIMESTAMP ); create index idx_dataset_version_id on job_dataset_version_rel (dataset_version_id); create index idx_job_id on job_dataset_version_rel (job_id); -- ---------------------------- -- Table structure for job_info -- ---------------------------- create table if not exists job_info ( id bigint auto_increment comment 'PK' primary key, job_uuid varchar(255) not null, project_id bigint not null, swmp_version_id bigint not null, owner_id bigint not null, created_time datetime not null, finished_time datetime null, duration_ms bigint not null, job_status varchar(50) not null, job_type varchar(50) not null, swrt_version_id bigint not null, device_type tinyint unsigned not null, device_amount int not null, result_output_path text not null, job_comment text null, is_deleted tinyint unsigned default '0' not null, constraint uk_job_uuid unique (job_uuid) ); create index idx_base_image on job_info (swrt_version_id); create index idx_job_status on job_info (job_status); create index idx_owner_id on job_info (owner_id); create index idx_swmp_version_id on job_info (swmp_version_id); -- ---------------------------- -- Table structure for project_info -- ---------------------------- create table if not exists project_info ( id bigint auto_increment comment 'PK' primary key, project_name varchar(255) not null, owner_id bigint not null, is_default tinyint unsigned default '0' not null, is_deleted tinyint unsigned default '0' not null, created_time datetime default CURRENT_TIMESTAMP not null, modified_time datetime default CURRENT_TIMESTAMP not null on update CURRENT_TIMESTAMP ); create index idx_create_user_id on project_info (owner_id); create index idx_project_name on project_info (project_name); -- ---------------------------- -- Table structure for runtime_info -- ---------------------------- create table if not exists runtime_info ( id bigint auto_increment comment 'PK' primary key, runtime_name varchar(255) not null, project_id bigint not null, owner_id bigint not null, is_deleted tinyint unsigned default '0' not null, created_time datetime default CURRENT_TIMESTAMP not null, modified_time datetime default CURRENT_TIMESTAMP not null on update CURRENT_TIMESTAMP ); create index idx_owner_id on runtime_info (owner_id); create index idx_project_id on runtime_info (project_id); create index idx_runtime_name on runtime_info (runtime_name); -- ---------------------------- -- Table structure for runtime_version -- ---------------------------- create table if not exists runtime_version ( id bigint auto_increment comment 'PK' primary key, runtime_id bigint not null, owner_id bigint not null, version_name varchar(255) not null, version_tag varchar(255) null, version_meta text not null, storage_path text not null, manifest text null, created_time datetime default CURRENT_TIMESTAMP not null, modified_time datetime default CURRENT_TIMESTAMP not null on update CURRENT_TIMESTAMP, constraint unq_runtime_version_name unique (runtime_id, version_name) ); create index idx_owner_id on runtime_version (owner_id); create index idx_runtime_id on runtime_version (runtime_id); -- ---------------------------- -- Table structure for step -- ---------------------------- create table if not exists step ( id bigint auto_increment comment 'PK' primary key, step_uuid varchar(255) not null, step_name varchar(255) not null, job_id bigint not null, last_step_id bigint null, step_status varchar(50) not null, finished_time datetime null, started_time datetime null, created_time datetime default CURRENT_TIMESTAMP not null, modified_time datetime default CURRENT_TIMESTAMP not null on update CURRENT_TIMESTAMP, constraint uk_step_uuid unique (step_uuid) ); create index idx_step_job_id on step (job_id); -- ---------------------------- -- Table structure for swmp_info -- ---------------------------- create table if not exists swmp_info ( id bigint auto_increment comment 'PK' primary key, swmp_name varchar(255) not null, project_id bigint not null, owner_id bigint not null, is_deleted tinyint unsigned default '0' not null, created_time datetime default CURRENT_TIMESTAMP not null, modified_time datetime default CURRENT_TIMESTAMP not null on update CURRENT_TIMESTAMP ); create index idx_owner_id on swmp_info (owner_id); create index idx_project_id on swmp_info (project_id); create index idx_swmp_name on swmp_info (swmp_name); -- ---------------------------- -- Table structure for swmp_version -- ---------------------------- create table if not exists swmp_version ( id bigint auto_increment comment 'PK' primary key, swmp_id bigint not null, owner_id bigint not null, version_name varchar(255) not null, version_tag varchar(255) null, version_meta text not null, storage_path text not null, manifest text null, created_time datetime default CURRENT_TIMESTAMP not null, modified_time datetime default CURRENT_TIMESTAMP not null on update CURRENT_TIMESTAMP, constraint unq_swmp_version_name unique (swmp_id, version_name) ); create index idx_owner_id on swmp_version (owner_id); create index idx_swmp_id on swmp_version (swmp_id); -- ---------------------------- -- Table structure for task_info -- ---------------------------- create table if not exists task_info ( id bigint auto_increment comment 'PK' primary key, task_uuid varchar(255) not null, step_id bigint not null, agent_id bigint null, task_status varchar(50) not null, task_type varchar(50) not null, result_path text not null, task_request longtext null, finished_time datetime null, started_time datetime null, created_time datetime default CURRENT_TIMESTAMP not null, modified_time datetime default CURRENT_TIMESTAMP not null on update CURRENT_TIMESTAMP, constraint uk_task_uuid unique (task_uuid) ); create index idx_agent_id on task_info (agent_id); create index idx_job_id on task_info (step_id); create index idx_task_status on task_info (task_status); create index idx_task_type on task_info (task_type); -- ---------------------------- -- Table structure for user_info -- ---------------------------- create table if not exists user_info ( id bigint auto_increment comment 'PK' primary key, user_name varchar(255) not null, user_pwd varchar(255) not null, user_pwd_salt varchar(255) not null, role_id bigint not null, user_enabled tinyint unsigned default '0' not null, created_time datetime default CURRENT_TIMESTAMP not null, modified_time datetime default CURRENT_TIMESTAMP not null on update CURRENT_TIMESTAMP, constraint uk_user_name unique (user_name) ); -- ---------------------------- -- Table structure for user_role -- ---------------------------- create table if not exists user_role ( id bigint auto_increment comment 'PK' primary key, role_name varchar(32) not null, role_name_en varchar(32) not null, constraint uk_role_name unique (role_name) );
38.788804
120
0.557072
76e56e388d9cbedec699ca672c047cebb2dd284b
51,637
c
C
testsuite/EXP_3/test2656.c
ishiura-compiler/CF3
0718aa176d0303a4ea8a46bd6c794997cbb8fabb
[ "MIT" ]
34
2017-07-04T14:16:12.000Z
2021-04-22T21:04:43.000Z
testsuite/EXP_3/test2656.c
ishiura-compiler/CF3
0718aa176d0303a4ea8a46bd6c794997cbb8fabb
[ "MIT" ]
1
2017-07-06T03:43:44.000Z
2017-07-06T03:43:44.000Z
testsuite/EXP_3/test2656.c
ishiura-compiler/CF3
0718aa176d0303a4ea8a46bd6c794997cbb8fabb
[ "MIT" ]
6
2017-07-04T16:30:42.000Z
2019-10-16T05:37:29.000Z
/* CF3 Copyright (c) 2015 ishiura-lab. Released under the MIT license. https://github.com/ishiura-compiler/CF3/MIT-LICENSE.md */ #include<stdio.h> #include<stdint.h> #include<stdlib.h> #include"test1.h" int8_t x1 = 0; int16_t x4 = INT16_MIN; int16_t x16 = -1; uint16_t x20 = UINT16_MAX; int32_t t4 = 451916; uint32_t x24 = 29325U; int32_t t5 = -11381; static volatile int32_t x27 = INT32_MIN; volatile int32_t x28 = INT32_MIN; int16_t x30 = 5111; static uint16_t x41 = 16255U; uint64_t x46 = 5945558753840LLU; int64_t x61 = 1348LL; int16_t x64 = INT16_MIN; volatile int32_t t15 = 2; static volatile int16_t x68 = INT16_MAX; uint8_t x70 = 4U; volatile int8_t x75 = INT8_MAX; static uint16_t x82 = 10U; static int64_t x83 = INT64_MAX; int32_t x86 = INT32_MIN; volatile int32_t t21 = 86884099; int8_t x95 = 2; int16_t x101 = -1; static uint16_t x102 = UINT16_MAX; static int32_t x105 = -1; uint16_t x106 = UINT16_MAX; int32_t t29 = 16879913; uint64_t x121 = UINT64_MAX; int8_t x125 = INT8_MIN; volatile int32_t x128 = 421029; int8_t x134 = 13; int16_t x137 = INT16_MIN; volatile int8_t x140 = INT8_MAX; int8_t x142 = 1; int32_t t35 = 4; int8_t x151 = 13; volatile int32_t x155 = -1; int32_t x162 = -252543; volatile int64_t x164 = INT64_MAX; volatile int16_t x166 = INT16_MIN; static int32_t x168 = INT32_MAX; volatile int8_t x171 = 0; uint8_t x176 = 12U; int64_t x182 = INT64_MIN; static uint32_t x185 = UINT32_MAX; static int64_t x186 = INT64_MIN; int32_t t46 = 106; uint32_t x189 = UINT32_MAX; int32_t x193 = INT32_MIN; uint16_t x196 = 196U; volatile int32_t t48 = -25640; int64_t x212 = INT64_MIN; static uint8_t x217 = UINT8_MAX; int32_t t54 = -12928227; volatile uint64_t x221 = 234141828652934LLU; static volatile int32_t t56 = -788156057; static volatile int16_t x235 = -1; static int32_t x242 = INT32_MAX; volatile int64_t x243 = 263716197422071137LL; static int32_t x244 = 1; uint32_t x247 = UINT32_MAX; uint8_t x269 = UINT8_MAX; uint16_t x291 = 1U; uint32_t x295 = 1417925726U; int32_t t75 = 1441486; volatile int32_t t77 = -2; static int16_t x314 = INT16_MAX; int64_t x315 = INT64_MIN; int16_t x319 = 2; uint8_t x326 = UINT8_MAX; int64_t x331 = -1LL; int32_t x337 = 0; int32_t t84 = 2; int32_t t85 = -11550747; int32_t x351 = INT32_MIN; uint32_t x353 = 6U; int32_t x355 = INT32_MAX; volatile int32_t t90 = -1132; uint16_t x368 = 910U; int8_t x369 = 37; static int32_t x370 = -1; volatile int32_t t92 = -92; int16_t x381 = INT16_MIN; int8_t x382 = INT8_MAX; volatile int32_t t95 = 874; int8_t x385 = -1; volatile int8_t x391 = 0; static int32_t t98 = 0; int8_t x403 = INT8_MIN; uint64_t x407 = UINT64_MAX; int64_t x419 = INT64_MAX; uint16_t x422 = UINT16_MAX; int8_t x432 = -10; static int8_t x434 = -1; int64_t x442 = INT64_MAX; int8_t x461 = 22; int64_t x464 = -1LL; int32_t t119 = -8808070; int8_t x493 = INT8_MIN; int16_t x494 = INT16_MIN; static volatile int32_t x498 = -1027748; uint8_t x503 = UINT8_MAX; uint32_t x511 = 1345323U; int16_t x513 = INT16_MIN; static int32_t x514 = INT32_MAX; volatile int16_t x521 = INT16_MIN; static volatile uint8_t x540 = 56U; int16_t x546 = -102; volatile int32_t t136 = -77; uint16_t x550 = UINT16_MAX; int8_t x554 = INT8_MAX; volatile uint8_t x559 = UINT8_MAX; int16_t x562 = INT16_MAX; uint64_t x574 = 9648LLU; volatile uint64_t x578 = UINT64_MAX; int8_t x586 = 1; static uint8_t x587 = UINT8_MAX; volatile int32_t t146 = 385; uint8_t x594 = 49U; static int32_t x599 = INT32_MAX; volatile int32_t t150 = -1465; int16_t x606 = -1; uint32_t x612 = 26U; int64_t x613 = -1LL; volatile int32_t x615 = -980; int8_t x617 = -36; int8_t x618 = 27; int64_t x634 = INT64_MIN; uint8_t x639 = UINT8_MAX; int64_t x655 = INT64_MIN; static int32_t t163 = -65124121; static volatile uint64_t x658 = 1LLU; int8_t x662 = -13; static int8_t x664 = -56; int64_t x679 = 33930LL; uint8_t x686 = 1U; static volatile uint8_t x693 = UINT8_MAX; uint16_t x696 = 3613U; uint32_t x700 = UINT32_MAX; static uint8_t x712 = UINT8_MAX; int16_t x714 = INT16_MIN; static int32_t t178 = -60695837; static int32_t x718 = 1608081; volatile uint16_t x719 = UINT16_MAX; int32_t t180 = -14; int8_t x726 = -1; uint16_t x733 = UINT16_MAX; volatile int32_t t183 = -191373; uint32_t x743 = 38171187U; int64_t x744 = -3083LL; uint64_t x755 = UINT64_MAX; volatile int8_t x757 = -1; int64_t x758 = -464146556837LL; int64_t x760 = -511LL; volatile int32_t x761 = INT32_MIN; volatile int32_t t190 = -63; volatile int64_t x772 = INT64_MIN; int32_t t193 = 14; volatile int8_t x784 = -37; void f0(void) { static int64_t x2 = -1LL; volatile uint8_t x3 = 4U; int32_t t0 = 14275181; t0 = ((x1==x2)<=(x3^x4)); if (t0 != 0) { NG(); } else { ; } } void f1(void) { volatile int8_t x5 = -27; int64_t x6 = 210394486636LL; static int8_t x7 = INT8_MAX; int8_t x8 = 7; static volatile int32_t t1 = -1; t1 = ((x5==x6)<=(x7^x8)); if (t1 != 1) { NG(); } else { ; } } void f2(void) { int8_t x9 = -1; static volatile int64_t x10 = INT64_MIN; int32_t x11 = INT32_MIN; static uint32_t x12 = 23530958U; static volatile int32_t t2 = -26; t2 = ((x9==x10)<=(x11^x12)); if (t2 != 1) { NG(); } else { ; } } void f3(void) { int16_t x13 = INT16_MAX; int8_t x14 = INT8_MIN; static uint16_t x15 = 668U; volatile int32_t t3 = 1; t3 = ((x13==x14)<=(x15^x16)); if (t3 != 0) { NG(); } else { ; } } void f4(void) { int8_t x17 = 1; volatile int32_t x18 = 3877; int32_t x19 = INT32_MIN; t4 = ((x17==x18)<=(x19^x20)); if (t4 != 0) { NG(); } else { ; } } void f5(void) { int32_t x21 = INT32_MAX; int8_t x22 = -10; int8_t x23 = -63; t5 = ((x21==x22)<=(x23^x24)); if (t5 != 1) { NG(); } else { ; } } void f6(void) { int64_t x25 = -1LL; static int64_t x26 = -1LL; int32_t t6 = 29727; t6 = ((x25==x26)<=(x27^x28)); if (t6 != 0) { NG(); } else { ; } } void f7(void) { static uint16_t x29 = UINT16_MAX; uint32_t x31 = 704U; int64_t x32 = -1LL; int32_t t7 = 50349; t7 = ((x29==x30)<=(x31^x32)); if (t7 != 0) { NG(); } else { ; } } void f8(void) { int64_t x33 = -13630LL; volatile uint16_t x34 = UINT16_MAX; uint64_t x35 = 1565903LLU; static int32_t x36 = -1; volatile int32_t t8 = -1493; t8 = ((x33==x34)<=(x35^x36)); if (t8 != 1) { NG(); } else { ; } } void f9(void) { uint64_t x37 = 1977271420803361LLU; static uint32_t x38 = 4U; volatile uint16_t x39 = 50U; volatile int16_t x40 = -1; volatile int32_t t9 = -22105; t9 = ((x37==x38)<=(x39^x40)); if (t9 != 0) { NG(); } else { ; } } void f10(void) { static int16_t x42 = INT16_MIN; uint8_t x43 = 1U; int8_t x44 = INT8_MIN; int32_t t10 = 721373; t10 = ((x41==x42)<=(x43^x44)); if (t10 != 0) { NG(); } else { ; } } void f11(void) { int16_t x45 = -1; int32_t x47 = INT32_MIN; static volatile int64_t x48 = -79674LL; static volatile int32_t t11 = -129969; t11 = ((x45==x46)<=(x47^x48)); if (t11 != 1) { NG(); } else { ; } } void f12(void) { int16_t x49 = -1; uint32_t x50 = 1128U; int64_t x51 = INT64_MIN; int16_t x52 = INT16_MIN; static int32_t t12 = 26186004; t12 = ((x49==x50)<=(x51^x52)); if (t12 != 1) { NG(); } else { ; } } void f13(void) { uint8_t x53 = 4U; volatile int8_t x54 = -1; uint8_t x55 = 94U; volatile uint32_t x56 = UINT32_MAX; static int32_t t13 = 0; t13 = ((x53==x54)<=(x55^x56)); if (t13 != 1) { NG(); } else { ; } } void f14(void) { int32_t x57 = -51; static uint16_t x58 = UINT16_MAX; int64_t x59 = -1LL; int32_t x60 = -1; int32_t t14 = -794847144; t14 = ((x57==x58)<=(x59^x60)); if (t14 != 1) { NG(); } else { ; } } void f15(void) { int8_t x62 = 12; volatile int8_t x63 = -2; t15 = ((x61==x62)<=(x63^x64)); if (t15 != 1) { NG(); } else { ; } } void f16(void) { static int64_t x65 = -1LL; static int16_t x66 = -1; int32_t x67 = INT32_MIN; volatile int32_t t16 = 996677947; t16 = ((x65==x66)<=(x67^x68)); if (t16 != 0) { NG(); } else { ; } } void f17(void) { volatile uint64_t x69 = 1159966831311341LLU; uint16_t x71 = UINT16_MAX; int64_t x72 = -1LL; volatile int32_t t17 = -27780719; t17 = ((x69==x70)<=(x71^x72)); if (t17 != 0) { NG(); } else { ; } } void f18(void) { uint32_t x73 = 21758U; static uint64_t x74 = 40671583LLU; int32_t x76 = INT32_MIN; static volatile int32_t t18 = 745968830; t18 = ((x73==x74)<=(x75^x76)); if (t18 != 0) { NG(); } else { ; } } void f19(void) { volatile uint32_t x77 = 116147401U; static int64_t x78 = INT64_MAX; int64_t x79 = -1LL; int8_t x80 = INT8_MAX; static int32_t t19 = 163015; t19 = ((x77==x78)<=(x79^x80)); if (t19 != 0) { NG(); } else { ; } } void f20(void) { static int32_t x81 = INT32_MIN; uint16_t x84 = 0U; volatile int32_t t20 = 12983; t20 = ((x81==x82)<=(x83^x84)); if (t20 != 1) { NG(); } else { ; } } void f21(void) { uint16_t x85 = 0U; static volatile uint8_t x87 = UINT8_MAX; int64_t x88 = -399515LL; t21 = ((x85==x86)<=(x87^x88)); if (t21 != 0) { NG(); } else { ; } } void f22(void) { uint8_t x89 = 39U; static int16_t x90 = INT16_MIN; int16_t x91 = INT16_MAX; uint32_t x92 = UINT32_MAX; int32_t t22 = 1; t22 = ((x89==x90)<=(x91^x92)); if (t22 != 1) { NG(); } else { ; } } void f23(void) { static uint8_t x93 = 1U; int16_t x94 = -210; uint64_t x96 = UINT64_MAX; static int32_t t23 = 12406; t23 = ((x93==x94)<=(x95^x96)); if (t23 != 1) { NG(); } else { ; } } void f24(void) { uint32_t x97 = 9007485U; uint32_t x98 = 4U; uint16_t x99 = 1960U; static uint64_t x100 = 9LLU; int32_t t24 = 265; t24 = ((x97==x98)<=(x99^x100)); if (t24 != 1) { NG(); } else { ; } } void f25(void) { volatile int8_t x103 = -1; int32_t x104 = INT32_MAX; volatile int32_t t25 = 3981; t25 = ((x101==x102)<=(x103^x104)); if (t25 != 0) { NG(); } else { ; } } void f26(void) { volatile int8_t x107 = 44; uint16_t x108 = 4859U; volatile int32_t t26 = 360988506; t26 = ((x105==x106)<=(x107^x108)); if (t26 != 1) { NG(); } else { ; } } void f27(void) { int8_t x109 = INT8_MAX; int8_t x110 = INT8_MIN; int8_t x111 = -1; int16_t x112 = 100; int32_t t27 = -482448151; t27 = ((x109==x110)<=(x111^x112)); if (t27 != 0) { NG(); } else { ; } } void f28(void) { volatile int32_t x113 = 41892857; static uint8_t x114 = 31U; int16_t x115 = INT16_MIN; uint32_t x116 = 34183074U; int32_t t28 = 215; t28 = ((x113==x114)<=(x115^x116)); if (t28 != 1) { NG(); } else { ; } } void f29(void) { int64_t x117 = 127218209LL; static int8_t x118 = INT8_MIN; static int32_t x119 = INT32_MIN; int8_t x120 = 4; t29 = ((x117==x118)<=(x119^x120)); if (t29 != 0) { NG(); } else { ; } } void f30(void) { static int16_t x122 = -1; int32_t x123 = -1; uint32_t x124 = UINT32_MAX; int32_t t30 = 15; t30 = ((x121==x122)<=(x123^x124)); if (t30 != 0) { NG(); } else { ; } } void f31(void) { volatile uint64_t x126 = 31LLU; int32_t x127 = INT32_MIN; int32_t t31 = -1088; t31 = ((x125==x126)<=(x127^x128)); if (t31 != 0) { NG(); } else { ; } } void f32(void) { int16_t x129 = 15948; static volatile int64_t x130 = 2961125432135905LL; int16_t x131 = INT16_MIN; static volatile int8_t x132 = -7; static volatile int32_t t32 = 1; t32 = ((x129==x130)<=(x131^x132)); if (t32 != 1) { NG(); } else { ; } } void f33(void) { static volatile int8_t x133 = INT8_MAX; int8_t x135 = -1; int32_t x136 = 30398634; int32_t t33 = -237995; t33 = ((x133==x134)<=(x135^x136)); if (t33 != 0) { NG(); } else { ; } } void f34(void) { int8_t x138 = -26; int16_t x139 = 1; int32_t t34 = -1426; t34 = ((x137==x138)<=(x139^x140)); if (t34 != 1) { NG(); } else { ; } } void f35(void) { int64_t x141 = INT64_MAX; uint8_t x143 = UINT8_MAX; static int16_t x144 = -90; t35 = ((x141==x142)<=(x143^x144)); if (t35 != 0) { NG(); } else { ; } } void f36(void) { int8_t x145 = INT8_MAX; int8_t x146 = INT8_MIN; static uint8_t x147 = UINT8_MAX; int8_t x148 = INT8_MIN; static int32_t t36 = -16709516; t36 = ((x145==x146)<=(x147^x148)); if (t36 != 0) { NG(); } else { ; } } void f37(void) { static uint32_t x149 = 411064624U; volatile uint32_t x150 = UINT32_MAX; static int16_t x152 = INT16_MIN; int32_t t37 = 83; t37 = ((x149==x150)<=(x151^x152)); if (t37 != 0) { NG(); } else { ; } } void f38(void) { uint64_t x153 = 568118649576228LLU; int32_t x154 = INT32_MIN; int64_t x156 = INT64_MIN; volatile int32_t t38 = -90581647; t38 = ((x153==x154)<=(x155^x156)); if (t38 != 1) { NG(); } else { ; } } void f39(void) { static int8_t x157 = -1; static int32_t x158 = INT32_MIN; volatile int8_t x159 = -1; volatile int32_t x160 = INT32_MIN; static int32_t t39 = -1; t39 = ((x157==x158)<=(x159^x160)); if (t39 != 1) { NG(); } else { ; } } void f40(void) { static int8_t x161 = INT8_MIN; int8_t x163 = INT8_MIN; int32_t t40 = -1341; t40 = ((x161==x162)<=(x163^x164)); if (t40 != 0) { NG(); } else { ; } } void f41(void) { int64_t x165 = -194496LL; int8_t x167 = INT8_MAX; int32_t t41 = -63382146; t41 = ((x165==x166)<=(x167^x168)); if (t41 != 1) { NG(); } else { ; } } void f42(void) { static volatile uint32_t x169 = 1716499U; int8_t x170 = INT8_MIN; int64_t x172 = INT64_MIN; static volatile int32_t t42 = -1; t42 = ((x169==x170)<=(x171^x172)); if (t42 != 0) { NG(); } else { ; } } void f43(void) { uint16_t x173 = UINT16_MAX; static int16_t x174 = INT16_MIN; int32_t x175 = 48598; static volatile int32_t t43 = 37092; t43 = ((x173==x174)<=(x175^x176)); if (t43 != 1) { NG(); } else { ; } } void f44(void) { int32_t x177 = INT32_MIN; uint32_t x178 = 1236267450U; volatile uint16_t x179 = 1141U; static int8_t x180 = -1; volatile int32_t t44 = 169; t44 = ((x177==x178)<=(x179^x180)); if (t44 != 0) { NG(); } else { ; } } void f45(void) { uint8_t x181 = 34U; volatile int64_t x183 = 428LL; int64_t x184 = INT64_MIN; int32_t t45 = 3344203; t45 = ((x181==x182)<=(x183^x184)); if (t45 != 0) { NG(); } else { ; } } void f46(void) { static int32_t x187 = INT32_MIN; volatile int8_t x188 = -26; t46 = ((x185==x186)<=(x187^x188)); if (t46 != 1) { NG(); } else { ; } } void f47(void) { static int8_t x190 = INT8_MIN; int8_t x191 = INT8_MAX; int16_t x192 = INT16_MIN; int32_t t47 = -218; t47 = ((x189==x190)<=(x191^x192)); if (t47 != 0) { NG(); } else { ; } } void f48(void) { uint16_t x194 = UINT16_MAX; static volatile int8_t x195 = INT8_MIN; t48 = ((x193==x194)<=(x195^x196)); if (t48 != 0) { NG(); } else { ; } } void f49(void) { int64_t x197 = INT64_MIN; int32_t x198 = 3461; int32_t x199 = INT32_MAX; static volatile int16_t x200 = -43; volatile int32_t t49 = 17195206; t49 = ((x197==x198)<=(x199^x200)); if (t49 != 0) { NG(); } else { ; } } void f50(void) { uint32_t x201 = UINT32_MAX; volatile int8_t x202 = 56; volatile uint64_t x203 = UINT64_MAX; int64_t x204 = INT64_MIN; volatile int32_t t50 = 70047; t50 = ((x201==x202)<=(x203^x204)); if (t50 != 1) { NG(); } else { ; } } void f51(void) { int32_t x205 = INT32_MAX; static uint64_t x206 = 427843903283LLU; uint8_t x207 = 7U; int64_t x208 = INT64_MAX; int32_t t51 = -437215014; t51 = ((x205==x206)<=(x207^x208)); if (t51 != 1) { NG(); } else { ; } } void f52(void) { volatile int32_t x209 = INT32_MIN; int64_t x210 = -1LL; int8_t x211 = INT8_MIN; volatile int32_t t52 = -3787; t52 = ((x209==x210)<=(x211^x212)); if (t52 != 1) { NG(); } else { ; } } void f53(void) { uint32_t x213 = UINT32_MAX; static int32_t x214 = INT32_MAX; uint16_t x215 = 3U; static int16_t x216 = INT16_MIN; int32_t t53 = -820; t53 = ((x213==x214)<=(x215^x216)); if (t53 != 0) { NG(); } else { ; } } void f54(void) { volatile int32_t x218 = -1; int64_t x219 = INT64_MIN; uint8_t x220 = 0U; t54 = ((x217==x218)<=(x219^x220)); if (t54 != 0) { NG(); } else { ; } } void f55(void) { volatile int16_t x222 = INT16_MIN; int64_t x223 = 10816825067715791LL; uint16_t x224 = 20063U; volatile int32_t t55 = 0; t55 = ((x221==x222)<=(x223^x224)); if (t55 != 1) { NG(); } else { ; } } void f56(void) { int16_t x225 = INT16_MIN; uint16_t x226 = 31U; uint8_t x227 = 2U; int32_t x228 = 193197084; t56 = ((x225==x226)<=(x227^x228)); if (t56 != 1) { NG(); } else { ; } } void f57(void) { static int8_t x229 = INT8_MAX; uint16_t x230 = 320U; int64_t x231 = INT64_MIN; int8_t x232 = INT8_MIN; int32_t t57 = -2819893; t57 = ((x229==x230)<=(x231^x232)); if (t57 != 1) { NG(); } else { ; } } void f58(void) { uint64_t x233 = UINT64_MAX; int64_t x234 = 107884911LL; int8_t x236 = INT8_MIN; volatile int32_t t58 = -16969481; t58 = ((x233==x234)<=(x235^x236)); if (t58 != 1) { NG(); } else { ; } } void f59(void) { uint64_t x237 = 3865133139953088LLU; static volatile int8_t x238 = 0; uint16_t x239 = 221U; static int16_t x240 = INT16_MAX; static int32_t t59 = 0; t59 = ((x237==x238)<=(x239^x240)); if (t59 != 1) { NG(); } else { ; } } void f60(void) { volatile uint8_t x241 = 12U; int32_t t60 = 191863; t60 = ((x241==x242)<=(x243^x244)); if (t60 != 1) { NG(); } else { ; } } void f61(void) { int8_t x245 = INT8_MIN; volatile int8_t x246 = INT8_MAX; uint32_t x248 = UINT32_MAX; int32_t t61 = 813309; t61 = ((x245==x246)<=(x247^x248)); if (t61 != 1) { NG(); } else { ; } } void f62(void) { uint16_t x249 = UINT16_MAX; static int64_t x250 = INT64_MIN; int16_t x251 = INT16_MIN; volatile uint64_t x252 = 8729040334LLU; volatile int32_t t62 = 12854321; t62 = ((x249==x250)<=(x251^x252)); if (t62 != 1) { NG(); } else { ; } } void f63(void) { volatile uint8_t x253 = 0U; int64_t x254 = -1LL; static int64_t x255 = -1LL; int64_t x256 = -1LL; static int32_t t63 = -12309; t63 = ((x253==x254)<=(x255^x256)); if (t63 != 1) { NG(); } else { ; } } void f64(void) { int8_t x257 = -1; int8_t x258 = INT8_MIN; uint32_t x259 = 205610U; uint8_t x260 = UINT8_MAX; volatile int32_t t64 = -144543486; t64 = ((x257==x258)<=(x259^x260)); if (t64 != 1) { NG(); } else { ; } } void f65(void) { static int8_t x261 = -1; int32_t x262 = -1; static uint8_t x263 = 0U; int64_t x264 = -1LL; int32_t t65 = 1324; t65 = ((x261==x262)<=(x263^x264)); if (t65 != 0) { NG(); } else { ; } } void f66(void) { int8_t x265 = 0; uint32_t x266 = 0U; static volatile int16_t x267 = INT16_MIN; static uint32_t x268 = UINT32_MAX; int32_t t66 = -169; t66 = ((x265==x266)<=(x267^x268)); if (t66 != 1) { NG(); } else { ; } } void f67(void) { int16_t x270 = INT16_MAX; int64_t x271 = -1LL; uint32_t x272 = 40004U; int32_t t67 = 75327223; t67 = ((x269==x270)<=(x271^x272)); if (t67 != 0) { NG(); } else { ; } } void f68(void) { int64_t x273 = INT64_MIN; static volatile uint64_t x274 = 4198856437301506LLU; int16_t x275 = -1; int16_t x276 = 8; int32_t t68 = 341; t68 = ((x273==x274)<=(x275^x276)); if (t68 != 0) { NG(); } else { ; } } void f69(void) { int8_t x277 = -1; volatile int64_t x278 = -320577997LL; static volatile uint16_t x279 = UINT16_MAX; static int8_t x280 = 3; int32_t t69 = -183543; t69 = ((x277==x278)<=(x279^x280)); if (t69 != 1) { NG(); } else { ; } } void f70(void) { static int64_t x281 = -8793448LL; uint64_t x282 = 89001205LLU; volatile int32_t x283 = INT32_MIN; int32_t x284 = INT32_MIN; volatile int32_t t70 = 21148449; t70 = ((x281==x282)<=(x283^x284)); if (t70 != 1) { NG(); } else { ; } } void f71(void) { int32_t x285 = 0; int32_t x286 = -818; int64_t x287 = INT64_MIN; int64_t x288 = INT64_MAX; int32_t t71 = 67045500; t71 = ((x285==x286)<=(x287^x288)); if (t71 != 0) { NG(); } else { ; } } void f72(void) { uint32_t x289 = 374044486U; int8_t x290 = INT8_MIN; int16_t x292 = -130; int32_t t72 = -463804039; t72 = ((x289==x290)<=(x291^x292)); if (t72 != 0) { NG(); } else { ; } } void f73(void) { uint32_t x293 = UINT32_MAX; uint32_t x294 = UINT32_MAX; uint32_t x296 = 155898687U; int32_t t73 = 45580232; t73 = ((x293==x294)<=(x295^x296)); if (t73 != 1) { NG(); } else { ; } } void f74(void) { int32_t x297 = INT32_MIN; uint64_t x298 = UINT64_MAX; uint16_t x299 = 2149U; volatile int64_t x300 = 1711650294444653805LL; volatile int32_t t74 = -343; t74 = ((x297==x298)<=(x299^x300)); if (t74 != 1) { NG(); } else { ; } } void f75(void) { volatile int16_t x301 = INT16_MIN; int32_t x302 = INT32_MIN; int16_t x303 = INT16_MAX; uint16_t x304 = UINT16_MAX; t75 = ((x301==x302)<=(x303^x304)); if (t75 != 1) { NG(); } else { ; } } void f76(void) { uint64_t x305 = 1227644033869276858LLU; int32_t x306 = 689; int32_t x307 = INT32_MIN; int16_t x308 = INT16_MAX; volatile int32_t t76 = -4; t76 = ((x305==x306)<=(x307^x308)); if (t76 != 0) { NG(); } else { ; } } void f77(void) { uint32_t x309 = UINT32_MAX; int32_t x310 = -1; uint16_t x311 = UINT16_MAX; int64_t x312 = -47LL; t77 = ((x309==x310)<=(x311^x312)); if (t77 != 0) { NG(); } else { ; } } void f78(void) { int16_t x313 = -1; static uint8_t x316 = 1U; volatile int32_t t78 = 6; t78 = ((x313==x314)<=(x315^x316)); if (t78 != 0) { NG(); } else { ; } } void f79(void) { uint64_t x317 = 695152104LLU; static int32_t x318 = -18; static int32_t x320 = -1; int32_t t79 = 310359; t79 = ((x317==x318)<=(x319^x320)); if (t79 != 0) { NG(); } else { ; } } void f80(void) { int16_t x321 = INT16_MIN; int64_t x322 = INT64_MIN; int16_t x323 = INT16_MAX; int8_t x324 = INT8_MIN; int32_t t80 = 181; t80 = ((x321==x322)<=(x323^x324)); if (t80 != 0) { NG(); } else { ; } } void f81(void) { int8_t x325 = INT8_MIN; static int16_t x327 = INT16_MIN; uint8_t x328 = 6U; volatile int32_t t81 = 1994; t81 = ((x325==x326)<=(x327^x328)); if (t81 != 0) { NG(); } else { ; } } void f82(void) { uint64_t x329 = 248279810709316LLU; int16_t x330 = INT16_MIN; static int8_t x332 = INT8_MIN; int32_t t82 = -9299035; t82 = ((x329==x330)<=(x331^x332)); if (t82 != 1) { NG(); } else { ; } } void f83(void) { static int32_t x333 = INT32_MIN; int16_t x334 = INT16_MIN; int64_t x335 = -458757707715478443LL; volatile uint16_t x336 = UINT16_MAX; volatile int32_t t83 = -440437816; t83 = ((x333==x334)<=(x335^x336)); if (t83 != 0) { NG(); } else { ; } } void f84(void) { uint16_t x338 = 0U; uint16_t x339 = 35U; int32_t x340 = INT32_MAX; t84 = ((x337==x338)<=(x339^x340)); if (t84 != 1) { NG(); } else { ; } } void f85(void) { uint8_t x341 = UINT8_MAX; int16_t x342 = 11683; static uint32_t x343 = UINT32_MAX; int8_t x344 = 1; t85 = ((x341==x342)<=(x343^x344)); if (t85 != 1) { NG(); } else { ; } } void f86(void) { int32_t x345 = INT32_MIN; int64_t x346 = INT64_MAX; uint64_t x347 = UINT64_MAX; static uint8_t x348 = 28U; static int32_t t86 = 5645; t86 = ((x345==x346)<=(x347^x348)); if (t86 != 1) { NG(); } else { ; } } void f87(void) { int32_t x349 = -64199440; int32_t x350 = INT32_MIN; int32_t x352 = INT32_MAX; int32_t t87 = -16316249; t87 = ((x349==x350)<=(x351^x352)); if (t87 != 0) { NG(); } else { ; } } void f88(void) { uint32_t x354 = UINT32_MAX; volatile uint32_t x356 = 0U; int32_t t88 = 6503022; t88 = ((x353==x354)<=(x355^x356)); if (t88 != 1) { NG(); } else { ; } } void f89(void) { static volatile int64_t x357 = INT64_MIN; uint32_t x358 = 7888U; int32_t x359 = INT32_MIN; int16_t x360 = INT16_MAX; int32_t t89 = -122079; t89 = ((x357==x358)<=(x359^x360)); if (t89 != 0) { NG(); } else { ; } } void f90(void) { int16_t x361 = 1; int64_t x362 = -114174694935LL; int16_t x363 = INT16_MIN; int8_t x364 = 15; t90 = ((x361==x362)<=(x363^x364)); if (t90 != 0) { NG(); } else { ; } } void f91(void) { int64_t x365 = INT64_MIN; static uint64_t x366 = 1002LLU; static int32_t x367 = INT32_MAX; int32_t t91 = 2; t91 = ((x365==x366)<=(x367^x368)); if (t91 != 1) { NG(); } else { ; } } void f92(void) { int64_t x371 = 14069927LL; static int16_t x372 = 3653; t92 = ((x369==x370)<=(x371^x372)); if (t92 != 1) { NG(); } else { ; } } void f93(void) { int16_t x373 = INT16_MAX; volatile uint16_t x374 = 8159U; static int16_t x375 = -2; int16_t x376 = INT16_MAX; static int32_t t93 = 275480; t93 = ((x373==x374)<=(x375^x376)); if (t93 != 0) { NG(); } else { ; } } void f94(void) { uint8_t x377 = UINT8_MAX; int8_t x378 = INT8_MIN; uint16_t x379 = UINT16_MAX; uint32_t x380 = UINT32_MAX; int32_t t94 = 69336; t94 = ((x377==x378)<=(x379^x380)); if (t94 != 1) { NG(); } else { ; } } void f95(void) { uint16_t x383 = 584U; static volatile int64_t x384 = INT64_MIN; t95 = ((x381==x382)<=(x383^x384)); if (t95 != 0) { NG(); } else { ; } } void f96(void) { volatile uint32_t x386 = 194115U; int64_t x387 = INT64_MAX; int8_t x388 = INT8_MIN; int32_t t96 = 18653261; t96 = ((x385==x386)<=(x387^x388)); if (t96 != 0) { NG(); } else { ; } } void f97(void) { uint16_t x389 = 6759U; static uint16_t x390 = 49U; uint64_t x392 = UINT64_MAX; int32_t t97 = -39; t97 = ((x389==x390)<=(x391^x392)); if (t97 != 1) { NG(); } else { ; } } void f98(void) { int32_t x393 = -1; int32_t x394 = INT32_MAX; uint64_t x395 = UINT64_MAX; uint8_t x396 = 32U; t98 = ((x393==x394)<=(x395^x396)); if (t98 != 1) { NG(); } else { ; } } void f99(void) { volatile int32_t x397 = INT32_MIN; int64_t x398 = INT64_MIN; uint16_t x399 = 151U; static volatile uint64_t x400 = 24167889061234165LLU; static volatile int32_t t99 = 11923674; t99 = ((x397==x398)<=(x399^x400)); if (t99 != 1) { NG(); } else { ; } } void f100(void) { static uint32_t x401 = UINT32_MAX; int32_t x402 = -106; volatile int16_t x404 = INT16_MIN; volatile int32_t t100 = -4163; t100 = ((x401==x402)<=(x403^x404)); if (t100 != 1) { NG(); } else { ; } } void f101(void) { volatile int8_t x405 = -1; static int8_t x406 = INT8_MAX; static int32_t x408 = INT32_MAX; int32_t t101 = 143; t101 = ((x405==x406)<=(x407^x408)); if (t101 != 1) { NG(); } else { ; } } void f102(void) { uint32_t x409 = UINT32_MAX; static uint32_t x410 = 125U; static int16_t x411 = INT16_MIN; uint16_t x412 = 12U; int32_t t102 = 1924; t102 = ((x409==x410)<=(x411^x412)); if (t102 != 0) { NG(); } else { ; } } void f103(void) { int64_t x413 = INT64_MIN; int8_t x414 = -1; volatile uint32_t x415 = 1U; volatile int64_t x416 = -3491LL; volatile int32_t t103 = 876; t103 = ((x413==x414)<=(x415^x416)); if (t103 != 0) { NG(); } else { ; } } void f104(void) { int32_t x417 = INT32_MIN; volatile int16_t x418 = INT16_MIN; static volatile uint32_t x420 = UINT32_MAX; int32_t t104 = -2512146; t104 = ((x417==x418)<=(x419^x420)); if (t104 != 1) { NG(); } else { ; } } void f105(void) { int64_t x421 = INT64_MIN; int16_t x423 = INT16_MIN; volatile uint64_t x424 = UINT64_MAX; int32_t t105 = -6; t105 = ((x421==x422)<=(x423^x424)); if (t105 != 1) { NG(); } else { ; } } void f106(void) { int32_t x425 = 1; volatile uint32_t x426 = UINT32_MAX; static int8_t x427 = 1; static int32_t x428 = -8561; int32_t t106 = 99; t106 = ((x425==x426)<=(x427^x428)); if (t106 != 0) { NG(); } else { ; } } void f107(void) { int8_t x429 = INT8_MIN; uint64_t x430 = UINT64_MAX; int32_t x431 = INT32_MIN; volatile int32_t t107 = 19; t107 = ((x429==x430)<=(x431^x432)); if (t107 != 1) { NG(); } else { ; } } void f108(void) { volatile int64_t x433 = INT64_MAX; uint32_t x435 = 94741U; volatile int64_t x436 = INT64_MIN; static int32_t t108 = 23; t108 = ((x433==x434)<=(x435^x436)); if (t108 != 0) { NG(); } else { ; } } void f109(void) { static int64_t x437 = INT64_MIN; uint64_t x438 = UINT64_MAX; int16_t x439 = 1; int16_t x440 = INT16_MAX; static volatile int32_t t109 = -114285; t109 = ((x437==x438)<=(x439^x440)); if (t109 != 1) { NG(); } else { ; } } void f110(void) { int8_t x441 = -1; volatile int16_t x443 = 2110; static uint8_t x444 = UINT8_MAX; volatile int32_t t110 = 0; t110 = ((x441==x442)<=(x443^x444)); if (t110 != 1) { NG(); } else { ; } } void f111(void) { int16_t x445 = 1; int32_t x446 = -1; int16_t x447 = INT16_MIN; uint8_t x448 = UINT8_MAX; int32_t t111 = -14435822; t111 = ((x445==x446)<=(x447^x448)); if (t111 != 0) { NG(); } else { ; } } void f112(void) { int8_t x449 = -1; static int16_t x450 = -1; int64_t x451 = INT64_MIN; int8_t x452 = -1; int32_t t112 = 235415; t112 = ((x449==x450)<=(x451^x452)); if (t112 != 1) { NG(); } else { ; } } void f113(void) { volatile uint32_t x453 = 26U; static int64_t x454 = 7802LL; int64_t x455 = -1LL; int16_t x456 = -1; int32_t t113 = -7135060; t113 = ((x453==x454)<=(x455^x456)); if (t113 != 1) { NG(); } else { ; } } void f114(void) { uint64_t x457 = UINT64_MAX; static uint32_t x458 = 16297U; uint64_t x459 = 25926LLU; int8_t x460 = INT8_MIN; int32_t t114 = -202; t114 = ((x457==x458)<=(x459^x460)); if (t114 != 1) { NG(); } else { ; } } void f115(void) { int8_t x462 = -1; uint64_t x463 = 0LLU; volatile int32_t t115 = -14819; t115 = ((x461==x462)<=(x463^x464)); if (t115 != 1) { NG(); } else { ; } } void f116(void) { volatile uint64_t x465 = 8069916214LLU; int8_t x466 = -1; int16_t x467 = 4; int16_t x468 = INT16_MIN; int32_t t116 = -106971886; t116 = ((x465==x466)<=(x467^x468)); if (t116 != 0) { NG(); } else { ; } } void f117(void) { uint64_t x469 = 86570157400LLU; int8_t x470 = INT8_MIN; static uint32_t x471 = UINT32_MAX; uint8_t x472 = 28U; volatile int32_t t117 = -42360; t117 = ((x469==x470)<=(x471^x472)); if (t117 != 1) { NG(); } else { ; } } void f118(void) { static int16_t x473 = INT16_MIN; int8_t x474 = INT8_MAX; static uint16_t x475 = UINT16_MAX; static uint16_t x476 = 7U; int32_t t118 = -12296602; t118 = ((x473==x474)<=(x475^x476)); if (t118 != 1) { NG(); } else { ; } } void f119(void) { int8_t x477 = INT8_MAX; int16_t x478 = INT16_MIN; static volatile int32_t x479 = INT32_MAX; int8_t x480 = INT8_MIN; t119 = ((x477==x478)<=(x479^x480)); if (t119 != 0) { NG(); } else { ; } } void f120(void) { uint64_t x481 = 102079921332961LLU; static volatile uint8_t x482 = 1U; static uint32_t x483 = UINT32_MAX; int64_t x484 = INT64_MIN; int32_t t120 = -5014; t120 = ((x481==x482)<=(x483^x484)); if (t120 != 0) { NG(); } else { ; } } void f121(void) { int8_t x485 = INT8_MIN; uint16_t x486 = 7779U; volatile int32_t x487 = -41; uint8_t x488 = 1U; int32_t t121 = 9; t121 = ((x485==x486)<=(x487^x488)); if (t121 != 0) { NG(); } else { ; } } void f122(void) { int8_t x489 = 4; int8_t x490 = INT8_MIN; int8_t x491 = -4; int16_t x492 = INT16_MIN; int32_t t122 = -250; t122 = ((x489==x490)<=(x491^x492)); if (t122 != 1) { NG(); } else { ; } } void f123(void) { int32_t x495 = 1; int16_t x496 = 349; volatile int32_t t123 = -11224216; t123 = ((x493==x494)<=(x495^x496)); if (t123 != 1) { NG(); } else { ; } } void f124(void) { int8_t x497 = -1; int8_t x499 = 0; static volatile int8_t x500 = INT8_MIN; int32_t t124 = -11767; t124 = ((x497==x498)<=(x499^x500)); if (t124 != 0) { NG(); } else { ; } } void f125(void) { int8_t x501 = INT8_MAX; uint64_t x502 = 58LLU; volatile uint32_t x504 = UINT32_MAX; volatile int32_t t125 = -488993; t125 = ((x501==x502)<=(x503^x504)); if (t125 != 1) { NG(); } else { ; } } void f126(void) { static int32_t x505 = 53379166; int16_t x506 = INT16_MIN; volatile int32_t x507 = -1; static volatile int32_t x508 = -1; int32_t t126 = -8023; t126 = ((x505==x506)<=(x507^x508)); if (t126 != 1) { NG(); } else { ; } } void f127(void) { volatile int32_t x509 = INT32_MIN; int8_t x510 = INT8_MIN; int32_t x512 = INT32_MAX; int32_t t127 = 1; t127 = ((x509==x510)<=(x511^x512)); if (t127 != 1) { NG(); } else { ; } } void f128(void) { uint64_t x515 = 2939LLU; static volatile int32_t x516 = INT32_MIN; volatile int32_t t128 = -14839; t128 = ((x513==x514)<=(x515^x516)); if (t128 != 1) { NG(); } else { ; } } void f129(void) { int32_t x517 = INT32_MIN; uint8_t x518 = 6U; static uint8_t x519 = 2U; uint16_t x520 = 2U; static int32_t t129 = -2; t129 = ((x517==x518)<=(x519^x520)); if (t129 != 1) { NG(); } else { ; } } void f130(void) { uint8_t x522 = UINT8_MAX; uint8_t x523 = 125U; uint8_t x524 = 24U; volatile int32_t t130 = 460471653; t130 = ((x521==x522)<=(x523^x524)); if (t130 != 1) { NG(); } else { ; } } void f131(void) { static uint64_t x525 = UINT64_MAX; static uint16_t x526 = 14U; static int32_t x527 = -1; static int64_t x528 = -1LL; volatile int32_t t131 = 13375147; t131 = ((x525==x526)<=(x527^x528)); if (t131 != 1) { NG(); } else { ; } } void f132(void) { int64_t x529 = INT64_MAX; int64_t x530 = -6LL; static int64_t x531 = -430796369874LL; int32_t x532 = -1; volatile int32_t t132 = 107059; t132 = ((x529==x530)<=(x531^x532)); if (t132 != 1) { NG(); } else { ; } } void f133(void) { int16_t x533 = -1; int64_t x534 = -1LL; uint8_t x535 = 63U; volatile int32_t x536 = -550355; int32_t t133 = -15; t133 = ((x533==x534)<=(x535^x536)); if (t133 != 0) { NG(); } else { ; } } void f134(void) { int32_t x537 = INT32_MAX; int8_t x538 = -1; uint16_t x539 = 255U; int32_t t134 = 397; t134 = ((x537==x538)<=(x539^x540)); if (t134 != 1) { NG(); } else { ; } } void f135(void) { volatile int16_t x541 = INT16_MAX; int64_t x542 = INT64_MIN; int64_t x543 = INT64_MAX; int8_t x544 = INT8_MAX; volatile int32_t t135 = -645; t135 = ((x541==x542)<=(x543^x544)); if (t135 != 1) { NG(); } else { ; } } void f136(void) { uint8_t x545 = 38U; volatile uint64_t x547 = 766557LLU; int8_t x548 = 41; t136 = ((x545==x546)<=(x547^x548)); if (t136 != 1) { NG(); } else { ; } } void f137(void) { uint8_t x549 = 64U; uint32_t x551 = 15878U; volatile uint64_t x552 = 2792747567LLU; volatile int32_t t137 = 33; t137 = ((x549==x550)<=(x551^x552)); if (t137 != 1) { NG(); } else { ; } } void f138(void) { uint8_t x553 = 1U; static uint8_t x555 = 0U; uint8_t x556 = UINT8_MAX; int32_t t138 = -12; t138 = ((x553==x554)<=(x555^x556)); if (t138 != 1) { NG(); } else { ; } } void f139(void) { uint8_t x557 = 14U; int16_t x558 = INT16_MIN; static uint32_t x560 = UINT32_MAX; static volatile int32_t t139 = -69251712; t139 = ((x557==x558)<=(x559^x560)); if (t139 != 1) { NG(); } else { ; } } void f140(void) { static int16_t x561 = INT16_MIN; int16_t x563 = 2356; uint8_t x564 = 127U; int32_t t140 = 57033439; t140 = ((x561==x562)<=(x563^x564)); if (t140 != 1) { NG(); } else { ; } } void f141(void) { static volatile uint32_t x565 = UINT32_MAX; int32_t x566 = INT32_MIN; int32_t x567 = -546657; uint32_t x568 = 2334U; int32_t t141 = 75; t141 = ((x565==x566)<=(x567^x568)); if (t141 != 1) { NG(); } else { ; } } void f142(void) { static int8_t x569 = -1; volatile uint64_t x570 = UINT64_MAX; static int64_t x571 = INT64_MAX; int8_t x572 = -6; int32_t t142 = 21742; t142 = ((x569==x570)<=(x571^x572)); if (t142 != 0) { NG(); } else { ; } } void f143(void) { uint64_t x573 = UINT64_MAX; int8_t x575 = 10; static int16_t x576 = 0; int32_t t143 = 29; t143 = ((x573==x574)<=(x575^x576)); if (t143 != 1) { NG(); } else { ; } } void f144(void) { static int32_t x577 = 167690360; uint32_t x579 = UINT32_MAX; int64_t x580 = -1LL; volatile int32_t t144 = -3215; t144 = ((x577==x578)<=(x579^x580)); if (t144 != 0) { NG(); } else { ; } } void f145(void) { volatile int64_t x581 = INT64_MAX; static volatile uint16_t x582 = 90U; static int16_t x583 = INT16_MAX; int16_t x584 = INT16_MIN; int32_t t145 = -933093; t145 = ((x581==x582)<=(x583^x584)); if (t145 != 0) { NG(); } else { ; } } void f146(void) { int32_t x585 = -1; volatile uint8_t x588 = 0U; t146 = ((x585==x586)<=(x587^x588)); if (t146 != 1) { NG(); } else { ; } } void f147(void) { int8_t x589 = 22; static uint64_t x590 = 1845684059236LLU; int64_t x591 = INT64_MAX; int8_t x592 = INT8_MIN; int32_t t147 = 526839199; t147 = ((x589==x590)<=(x591^x592)); if (t147 != 0) { NG(); } else { ; } } void f148(void) { static volatile int8_t x593 = -1; int16_t x595 = -129; uint32_t x596 = 316918027U; static int32_t t148 = 583; t148 = ((x593==x594)<=(x595^x596)); if (t148 != 1) { NG(); } else { ; } } void f149(void) { static int64_t x597 = INT64_MIN; volatile uint32_t x598 = 2893U; static int64_t x600 = -14702987191194310LL; static int32_t t149 = -416178525; t149 = ((x597==x598)<=(x599^x600)); if (t149 != 0) { NG(); } else { ; } } void f150(void) { int64_t x601 = INT64_MAX; volatile int64_t x602 = INT64_MIN; uint16_t x603 = 0U; int16_t x604 = 38; t150 = ((x601==x602)<=(x603^x604)); if (t150 != 1) { NG(); } else { ; } } void f151(void) { int32_t x605 = INT32_MIN; uint32_t x607 = UINT32_MAX; uint8_t x608 = UINT8_MAX; static int32_t t151 = 0; t151 = ((x605==x606)<=(x607^x608)); if (t151 != 1) { NG(); } else { ; } } void f152(void) { volatile uint8_t x609 = UINT8_MAX; uint64_t x610 = 66813503681LLU; volatile int8_t x611 = INT8_MIN; int32_t t152 = 275984; t152 = ((x609==x610)<=(x611^x612)); if (t152 != 1) { NG(); } else { ; } } void f153(void) { volatile uint8_t x614 = 6U; uint64_t x616 = 853218039199638LLU; static volatile int32_t t153 = 127794; t153 = ((x613==x614)<=(x615^x616)); if (t153 != 1) { NG(); } else { ; } } void f154(void) { static uint64_t x619 = 2327728LLU; static volatile uint8_t x620 = 30U; int32_t t154 = -835197511; t154 = ((x617==x618)<=(x619^x620)); if (t154 != 1) { NG(); } else { ; } } void f155(void) { volatile uint32_t x621 = 3U; static int8_t x622 = -1; uint8_t x623 = UINT8_MAX; volatile int8_t x624 = INT8_MIN; int32_t t155 = 0; t155 = ((x621==x622)<=(x623^x624)); if (t155 != 0) { NG(); } else { ; } } void f156(void) { volatile int64_t x625 = 16682806087LL; int32_t x626 = -1; uint8_t x627 = 10U; int64_t x628 = 394360LL; volatile int32_t t156 = 633; t156 = ((x625==x626)<=(x627^x628)); if (t156 != 1) { NG(); } else { ; } } void f157(void) { int32_t x629 = INT32_MIN; static int64_t x630 = -1LL; int64_t x631 = INT64_MIN; uint8_t x632 = 42U; int32_t t157 = 5717; t157 = ((x629==x630)<=(x631^x632)); if (t157 != 0) { NG(); } else { ; } } void f158(void) { int32_t x633 = INT32_MAX; uint16_t x635 = 6160U; int64_t x636 = -521LL; volatile int32_t t158 = -217053; t158 = ((x633==x634)<=(x635^x636)); if (t158 != 0) { NG(); } else { ; } } void f159(void) { int8_t x637 = -1; int32_t x638 = -1; int64_t x640 = INT64_MIN; volatile int32_t t159 = -83865; t159 = ((x637==x638)<=(x639^x640)); if (t159 != 0) { NG(); } else { ; } } void f160(void) { int32_t x641 = INT32_MIN; int16_t x642 = INT16_MAX; int32_t x643 = INT32_MIN; uint16_t x644 = UINT16_MAX; volatile int32_t t160 = 1479212; t160 = ((x641==x642)<=(x643^x644)); if (t160 != 0) { NG(); } else { ; } } void f161(void) { volatile uint8_t x645 = 118U; static volatile int64_t x646 = -1LL; int32_t x647 = INT32_MIN; uint16_t x648 = 957U; volatile int32_t t161 = 9066083; t161 = ((x645==x646)<=(x647^x648)); if (t161 != 0) { NG(); } else { ; } } void f162(void) { static int32_t x649 = 1; int64_t x650 = INT64_MIN; int16_t x651 = INT16_MIN; volatile uint8_t x652 = 5U; static volatile int32_t t162 = 16107537; t162 = ((x649==x650)<=(x651^x652)); if (t162 != 0) { NG(); } else { ; } } void f163(void) { int8_t x653 = -1; uint16_t x654 = UINT16_MAX; int64_t x656 = INT64_MIN; t163 = ((x653==x654)<=(x655^x656)); if (t163 != 1) { NG(); } else { ; } } void f164(void) { int16_t x657 = 30; uint32_t x659 = 3U; int32_t x660 = -1; int32_t t164 = 17; t164 = ((x657==x658)<=(x659^x660)); if (t164 != 1) { NG(); } else { ; } } void f165(void) { int64_t x661 = -12922LL; int32_t x663 = -1; volatile int32_t t165 = -166; t165 = ((x661==x662)<=(x663^x664)); if (t165 != 1) { NG(); } else { ; } } void f166(void) { static uint32_t x665 = UINT32_MAX; uint16_t x666 = 122U; uint16_t x667 = UINT16_MAX; static int32_t x668 = 4; volatile int32_t t166 = 791634399; t166 = ((x665==x666)<=(x667^x668)); if (t166 != 1) { NG(); } else { ; } } void f167(void) { int8_t x669 = INT8_MIN; int16_t x670 = INT16_MAX; volatile int64_t x671 = -1LL; volatile uint32_t x672 = UINT32_MAX; int32_t t167 = 22878; t167 = ((x669==x670)<=(x671^x672)); if (t167 != 0) { NG(); } else { ; } } void f168(void) { static volatile int32_t x673 = INT32_MAX; uint64_t x674 = UINT64_MAX; int16_t x675 = INT16_MIN; volatile uint16_t x676 = 6U; int32_t t168 = -454666601; t168 = ((x673==x674)<=(x675^x676)); if (t168 != 0) { NG(); } else { ; } } void f169(void) { uint16_t x677 = 825U; volatile int64_t x678 = INT64_MIN; static uint64_t x680 = UINT64_MAX; int32_t t169 = -5747; t169 = ((x677==x678)<=(x679^x680)); if (t169 != 1) { NG(); } else { ; } } void f170(void) { static int16_t x681 = -54; static uint32_t x682 = 662443U; int16_t x683 = INT16_MAX; static int32_t x684 = INT32_MAX; int32_t t170 = -126; t170 = ((x681==x682)<=(x683^x684)); if (t170 != 1) { NG(); } else { ; } } void f171(void) { int16_t x685 = 13; volatile int16_t x687 = INT16_MIN; static volatile int8_t x688 = 0; static int32_t t171 = 263227; t171 = ((x685==x686)<=(x687^x688)); if (t171 != 0) { NG(); } else { ; } } void f172(void) { int8_t x689 = INT8_MAX; static int16_t x690 = INT16_MAX; int64_t x691 = INT64_MIN; int64_t x692 = -1LL; volatile int32_t t172 = -151958708; t172 = ((x689==x690)<=(x691^x692)); if (t172 != 1) { NG(); } else { ; } } void f173(void) { static int32_t x694 = -1; int32_t x695 = INT32_MIN; static volatile int32_t t173 = 7152; t173 = ((x693==x694)<=(x695^x696)); if (t173 != 0) { NG(); } else { ; } } void f174(void) { static volatile int16_t x697 = 269; uint32_t x698 = 400424U; int64_t x699 = 23163618584LL; int32_t t174 = 3546025; t174 = ((x697==x698)<=(x699^x700)); if (t174 != 1) { NG(); } else { ; } } void f175(void) { uint64_t x701 = 17956898LLU; int64_t x702 = INT64_MIN; uint32_t x703 = UINT32_MAX; int32_t x704 = INT32_MIN; int32_t t175 = -513712016; t175 = ((x701==x702)<=(x703^x704)); if (t175 != 1) { NG(); } else { ; } } void f176(void) { int8_t x705 = INT8_MIN; uint8_t x706 = 6U; uint8_t x707 = 21U; volatile int64_t x708 = INT64_MIN; int32_t t176 = 246993506; t176 = ((x705==x706)<=(x707^x708)); if (t176 != 0) { NG(); } else { ; } } void f177(void) { static int8_t x709 = 15; int16_t x710 = -1; volatile uint16_t x711 = 28U; static volatile int32_t t177 = 1050953928; t177 = ((x709==x710)<=(x711^x712)); if (t177 != 1) { NG(); } else { ; } } void f178(void) { int16_t x713 = INT16_MAX; int64_t x715 = INT64_MIN; int64_t x716 = INT64_MIN; t178 = ((x713==x714)<=(x715^x716)); if (t178 != 1) { NG(); } else { ; } } void f179(void) { int8_t x717 = -1; int8_t x720 = INT8_MAX; volatile int32_t t179 = 50; t179 = ((x717==x718)<=(x719^x720)); if (t179 != 1) { NG(); } else { ; } } void f180(void) { static int64_t x721 = INT64_MIN; static int64_t x722 = -2083226018941LL; volatile int64_t x723 = INT64_MAX; int32_t x724 = INT32_MAX; t180 = ((x721==x722)<=(x723^x724)); if (t180 != 1) { NG(); } else { ; } } void f181(void) { int8_t x725 = INT8_MAX; static int64_t x727 = INT64_MIN; volatile int32_t x728 = -518411; int32_t t181 = -474676; t181 = ((x725==x726)<=(x727^x728)); if (t181 != 1) { NG(); } else { ; } } void f182(void) { int32_t x729 = -788590; int8_t x730 = INT8_MAX; int8_t x731 = -1; uint32_t x732 = UINT32_MAX; int32_t t182 = -6; t182 = ((x729==x730)<=(x731^x732)); if (t182 != 1) { NG(); } else { ; } } void f183(void) { volatile int64_t x734 = 304649LL; int8_t x735 = INT8_MIN; int8_t x736 = INT8_MIN; t183 = ((x733==x734)<=(x735^x736)); if (t183 != 1) { NG(); } else { ; } } void f184(void) { volatile uint8_t x737 = 1U; uint16_t x738 = UINT16_MAX; int32_t x739 = -8003; static int8_t x740 = INT8_MIN; int32_t t184 = 160906395; t184 = ((x737==x738)<=(x739^x740)); if (t184 != 1) { NG(); } else { ; } } void f185(void) { int32_t x741 = -1; uint8_t x742 = 2U; int32_t t185 = 4; t185 = ((x741==x742)<=(x743^x744)); if (t185 != 0) { NG(); } else { ; } } void f186(void) { static volatile int16_t x745 = INT16_MIN; static int32_t x746 = 2999; volatile int8_t x747 = INT8_MAX; volatile int8_t x748 = 0; volatile int32_t t186 = -632947902; t186 = ((x745==x746)<=(x747^x748)); if (t186 != 1) { NG(); } else { ; } } void f187(void) { int16_t x749 = -989; int32_t x750 = 141478198; int8_t x751 = -14; static int64_t x752 = INT64_MIN; int32_t t187 = -1; t187 = ((x749==x750)<=(x751^x752)); if (t187 != 1) { NG(); } else { ; } } void f188(void) { static volatile uint64_t x753 = 3406LLU; int32_t x754 = 1511; static int16_t x756 = -14887; int32_t t188 = 0; t188 = ((x753==x754)<=(x755^x756)); if (t188 != 1) { NG(); } else { ; } } void f189(void) { static uint8_t x759 = UINT8_MAX; static int32_t t189 = 241129885; t189 = ((x757==x758)<=(x759^x760)); if (t189 != 0) { NG(); } else { ; } } void f190(void) { static int64_t x762 = 292013420369LL; uint16_t x763 = 42U; uint16_t x764 = UINT16_MAX; t190 = ((x761==x762)<=(x763^x764)); if (t190 != 1) { NG(); } else { ; } } void f191(void) { uint8_t x765 = 2U; static uint16_t x766 = 632U; int16_t x767 = INT16_MIN; int32_t x768 = -7643226; volatile int32_t t191 = 59846; t191 = ((x765==x766)<=(x767^x768)); if (t191 != 1) { NG(); } else { ; } } void f192(void) { volatile uint32_t x769 = UINT32_MAX; int64_t x770 = -1LL; uint64_t x771 = 1822241LLU; int32_t t192 = 347; t192 = ((x769==x770)<=(x771^x772)); if (t192 != 1) { NG(); } else { ; } } void f193(void) { int32_t x773 = -1; int8_t x774 = INT8_MIN; uint32_t x775 = 463549U; volatile int64_t x776 = -1LL; t193 = ((x773==x774)<=(x775^x776)); if (t193 != 0) { NG(); } else { ; } } void f194(void) { uint16_t x777 = 121U; int32_t x778 = INT32_MIN; int32_t x779 = INT32_MIN; volatile uint8_t x780 = 1U; int32_t t194 = 1880; t194 = ((x777==x778)<=(x779^x780)); if (t194 != 0) { NG(); } else { ; } } void f195(void) { int8_t x781 = -1; int64_t x782 = -1LL; volatile int8_t x783 = -1; int32_t t195 = 492015; t195 = ((x781==x782)<=(x783^x784)); if (t195 != 1) { NG(); } else { ; } } void f196(void) { int64_t x785 = 200LL; int16_t x786 = INT16_MIN; int32_t x787 = -1; uint16_t x788 = UINT16_MAX; volatile int32_t t196 = -180; t196 = ((x785==x786)<=(x787^x788)); if (t196 != 0) { NG(); } else { ; } } void f197(void) { int8_t x789 = INT8_MIN; volatile int16_t x790 = -1; volatile uint8_t x791 = 0U; int32_t x792 = 1614658; int32_t t197 = -43049011; t197 = ((x789==x790)<=(x791^x792)); if (t197 != 1) { NG(); } else { ; } } void f198(void) { uint64_t x793 = 403970921LLU; volatile uint16_t x794 = UINT16_MAX; volatile uint16_t x795 = UINT16_MAX; uint64_t x796 = 4192445203LLU; volatile int32_t t198 = 469; t198 = ((x793==x794)<=(x795^x796)); if (t198 != 1) { NG(); } else { ; } } void f199(void) { uint16_t x797 = 1007U; int16_t x798 = -1; volatile int16_t x799 = INT16_MAX; uint8_t x800 = 62U; int32_t t199 = 59388; t199 = ((x797==x798)<=(x799^x800)); if (t199 != 1) { NG(); } else { ; } } int main(void) { f0(); f1(); f2(); f3(); f4(); f5(); f6(); f7(); f8(); f9(); f10(); f11(); f12(); f13(); f14(); f15(); f16(); f17(); f18(); f19(); f20(); f21(); f22(); f23(); f24(); f25(); f26(); f27(); f28(); f29(); f30(); f31(); f32(); f33(); f34(); f35(); f36(); f37(); f38(); f39(); f40(); f41(); f42(); f43(); f44(); f45(); f46(); f47(); f48(); f49(); f50(); f51(); f52(); f53(); f54(); f55(); f56(); f57(); f58(); f59(); f60(); f61(); f62(); f63(); f64(); f65(); f66(); f67(); f68(); f69(); f70(); f71(); f72(); f73(); f74(); f75(); f76(); f77(); f78(); f79(); f80(); f81(); f82(); f83(); f84(); f85(); f86(); f87(); f88(); f89(); f90(); f91(); f92(); f93(); f94(); f95(); f96(); f97(); f98(); f99(); f100(); f101(); f102(); f103(); f104(); f105(); f106(); f107(); f108(); f109(); f110(); f111(); f112(); f113(); f114(); f115(); f116(); f117(); f118(); f119(); f120(); f121(); f122(); f123(); f124(); f125(); f126(); f127(); f128(); f129(); f130(); f131(); f132(); f133(); f134(); f135(); f136(); f137(); f138(); f139(); f140(); f141(); f142(); f143(); f144(); f145(); f146(); f147(); f148(); f149(); f150(); f151(); f152(); f153(); f154(); f155(); f156(); f157(); f158(); f159(); f160(); f161(); f162(); f163(); f164(); f165(); f166(); f167(); f168(); f169(); f170(); f171(); f172(); f173(); f174(); f175(); f176(); f177(); f178(); f179(); f180(); f181(); f182(); f183(); f184(); f185(); f186(); f187(); f188(); f189(); f190(); f191(); f192(); f193(); f194(); f195(); f196(); f197(); f198(); f199(); return 0; }
18.285057
54
0.573581
2a29e970f4c8919b09eba35b445b32234369acbe
4,118
java
Java
src/main/java/com/lbs/vaadin/bootstrap/Col.java
logobs/vaadstrap
6f74a183ff53f5c0d21e5ed0bef0d5b4ac1a6802
[ "MIT" ]
null
null
null
src/main/java/com/lbs/vaadin/bootstrap/Col.java
logobs/vaadstrap
6f74a183ff53f5c0d21e5ed0bef0d5b4ac1a6802
[ "MIT" ]
null
null
null
src/main/java/com/lbs/vaadin/bootstrap/Col.java
logobs/vaadstrap
6f74a183ff53f5c0d21e5ed0bef0d5b4ac1a6802
[ "MIT" ]
null
null
null
package com.lbs.vaadin.bootstrap; import javax.validation.constraints.Max; import javax.validation.constraints.Min; import com.vaadin.ui.Component; import com.vaadin.ui.CssLayout; import java.util.Arrays; import java.util.HashMap; import java.util.Map; /** * @author seb */ public class Col extends CssLayout { private Style childrenStyle; private Map<Threshold, Integer> styleMap; public Col() { } public Col(Style... styles){ this(); addStyles(styles); } public Col(@Min(1) @Max(12) int sm, @Min(1) @Max(12) int md) { this(); addStyles(ColMod.get(Threshold.SM, sm), ColMod.get(Threshold.MD, md)); } public Col(@Min(1) @Max(12) int xs, @Min(1) @Max(12) int sm, @Min(1) @Max(12) int md, @Min(1) @Max(12) int lg) { this(); addStyles(ColMod.get(Threshold.XS, xs), ColMod.get(Threshold.SM, sm), ColMod.get(Threshold.MD, md), ColMod.get(Threshold.LG, lg)); } public Col clearStyles() { setStyleName(""); return this; } public Col addStyles(Style... styles) { for (Style style : styles) { addStyleName(style.getStyleName()); } return this; } /** * @param childrenStyle children style to apply, this is usually some margin, with {@link MarginMod}. * @return this object */ public Col setChildrenStyle(Style childrenStyle) { return setChildrenStyle(childrenStyle, false); } /** * @param childrenStyle children style to apply, this is usually some margin, with {@link MarginMod}. * @param applyToExisting if true, applies given style to all existing children * @return this object */ public Col setChildrenStyle(Style childrenStyle, boolean applyToExisting) { this.childrenStyle = childrenStyle; if (applyToExisting) { for (int i = 0; i < getComponentCount(); i++) { Component component = getComponent(i); component.addStyleName(childrenStyle.getStyleName()); } } return this; } /** * Add components with builder pattern * @param components components to add * @return this */ public Col add(Component... components){ addComponents(components); return this; } @Override public void addComponent(Component c) { c.setWidth(100, Unit.PERCENTAGE); if (childrenStyle != null) { c.addStyleName(childrenStyle.getStyleName()); } super.addComponent(c); } @Override public void addComponentAsFirst(Component c) { c.setWidth(100, Unit.PERCENTAGE); if (childrenStyle != null) { c.addStyleName(childrenStyle.getStyleName()); } super.addComponentAsFirst(c); } private Map<Threshold,Integer> extractStyles(String style) { styleMap = new HashMap<>(); //TODO refactor if(style.contains(" ")) { String[] styles = style.split(" "); for(int i = 0; i< styles.length ; i++) { if(styles[i].startsWith("col-")){ String extractedStyle = styles[i].substring(4); if(extractedStyle.contains("-")){ String[] thresholdAnRatio = extractedStyle.split("-"); Threshold threshold = null; if(thresholdAnRatio[0].equals("lg")){ threshold = Threshold.LG; } else if(thresholdAnRatio[0].equals("md")){ threshold = Threshold.MD; } else if(thresholdAnRatio[0].equals("sm")){ threshold = Threshold.SM; } else if(thresholdAnRatio[0].equals("xs")){ threshold = Threshold.XS; } if(threshold != null){ try { Integer ratio = Integer.valueOf(thresholdAnRatio[1]); styleMap.put(threshold, ratio); }catch (Exception e) { //TODO implement } } } } } } return styleMap; } public Integer getThresholdRatio(Threshold threshold){ if(!styleMap.containsKey(threshold)) return 0; return styleMap.get(threshold); } public String generateStyleString(int lgRatio, int mdRatio, int smRatio, int xsRatio, String additionalStyles) { return "col-lg-" + (lgRatio > 12 ? 12 : lgRatio) + " col-md-" + (mdRatio > 12 ? 12 : mdRatio) + " col-sm-" + (smRatio > 12 ? 12 : smRatio) + " col-xs-" + (xsRatio > 12 ? 12 : xsRatio)+ " " + additionalStyles; } }
23.531429
111
0.647402
66c9fa3c94c75063842a28f06477816d0fe369dd
3,520
htm
HTML
interface/web/sites/templates/web_vhost_domain_stats.htm
milindsalwe/ispconfig
922b2803302b184692ee7484c31c122929fbc8ad
[ "BSD-3-Clause" ]
11
2018-05-08T14:17:59.000Z
2021-12-03T04:57:16.000Z
interface/web/sites/templates/web_vhost_domain_stats.htm
milindsalwe/ispconfig
922b2803302b184692ee7484c31c122929fbc8ad
[ "BSD-3-Clause" ]
null
null
null
interface/web/sites/templates/web_vhost_domain_stats.htm
milindsalwe/ispconfig
922b2803302b184692ee7484c31c122929fbc8ad
[ "BSD-3-Clause" ]
6
2020-02-15T19:50:50.000Z
2022-01-24T19:55:11.000Z
<div class='page-header'> <h1><tmpl_var name="list_head_txt"></h1> </div> <p><tmpl_var name="list_desc_txt"></p> <tmpl_if name="config_error_msg"> <div style="background: #ffdfdf; border: 1px solid #df7d7d; border-width: 1px 0; margin: 1.5em 0 1.5em 0; padding: 7px;"> <p style="font-face:bold">{tmpl_var name='configuration_error_txt'}</p> <div> <div style="float:left;width:150px;">{tmpl_var name='config_error_tstamp'} :&nbsp;</div><div style="padding-left:150px;">{tmpl_var name='config_error_msg'}</div> </div> </div> </tmpl_if> <div class="form-group"> <label class="col-sm-3 control-label">{tmpl_var name='stats_user_txt'}</label> <div class="col-sm-9"><div class="checkbox">&nbsp; &nbsp;admin</div></div> </div> <div class="form-group"> <label for="stats_password" class="col-sm-3 control-label">{tmpl_var name='stats_password_txt'}</label> <div class="col-sm-9"> <div class="input-group"> <input type="password" name="stats_password" id="stats_password" value="{tmpl_var name='stats_password'}" class="form-control" autocomplete="off" onkeyup="pass_check(this.value);checkPassMatch('stats_password','repeat_password');" /> <span class="input-group-btn"> <button class="btn btn-default" type="button" onclick="generatePassword('stats_password','repeat_password');">{tmpl_var name='generate_password_txt'}</button> </span> </div> </div> </div> <div class="form-group"> <label class="col-sm-3 control-label">{tmpl_var name='password_strength_txt'}</label> <div class="col-sm-9 checkbox"> <div id="passBar"></div> <span id="passText">&nbsp;</span> </div> </div> <div class="form-group"> <label for="repeat_password" class="col-sm-3 control-label">{tmpl_var name='repeat_password_txt'}</label> <div class="col-sm-9"><input type="password" name="repeat_password" id="repeat_password" value="" autocomplete="off" class="form-control" onkeyup="checkPassMatch('stats_password','repeat_password');" /></div></div> <div class="form-group"> <div class="col-sm-offset-3 col-sm-9"> <div id="confirmpasswordError" style="display:none;" class="confirmpassworderror">{tmpl_var name='password_mismatch_txt'}</div> <div id="confirmpasswordOK" style="display:none;" class="confirmpasswordok">{tmpl_var name='password_match_txt'}</div> </div> </div> <div class="form-group"> <label for="stats_type" class="col-sm-3 control-label">{tmpl_var name='stats_type_txt'}</label> <div class="col-sm-9"><select name="stats_type" id="stats_type" class="form-control" > {tmpl_var name='stats_type'} </select></div> </div> <input type="hidden" name="id" value="{tmpl_var name='id'}"> <div class="clear"><div class="right"> <button class="btn btn-default formbutton-success" type="button" value="{tmpl_var name='btn_save_txt'}" data-submit-form="pageForm" data-form-action="sites/web_vhost_domain_edit.php">{tmpl_var name='btn_save_txt'}</button> <button class="btn btn-default formbutton-default" type="button" value="{tmpl_var name='btn_cancel_txt'}" data-load-content="sites/web_vhost_domain_list.php">{tmpl_var name='btn_cancel_txt'}</button> </div></div>
59.661017
238
0.630114
c33d6f99166643d0eed9f7e2d296002a998231ad
247
kt
Kotlin
src/main/kotlin/com/eny/i18n/plugin/ide/completion/VueCompletionContributor.kt
nyavro/i18nPlugin
d1bb8397ef103d359df6b0007f9e5266406e494d
[ "MIT" ]
53
2019-11-21T08:48:56.000Z
2022-03-31T10:12:30.000Z
src/main/kotlin/com/eny/i18n/plugin/ide/completion/VueCompletionContributor.kt
nyavro/i18nPlugin
d1bb8397ef103d359df6b0007f9e5266406e494d
[ "MIT" ]
111
2019-11-14T14:32:33.000Z
2022-02-27T23:35:25.000Z
src/main/kotlin/com/eny/i18n/plugin/ide/completion/VueCompletionContributor.kt
nyavro/i18nPlugin
d1bb8397ef103d359df6b0007f9e5266406e494d
[ "MIT" ]
11
2020-02-02T12:14:43.000Z
2021-10-12T11:32:51.000Z
package com.eny.i18n.plugin.ide.completion import com.eny.i18n.plugin.language.vue.VueLanguageFactory /** * Completion contributor for Vue */ class VueCompletionContributor: CompositeKeyCompletionContributor(VueLanguageFactory().callContext())
30.875
101
0.82996
d2903aa24d8d2e792cdef0d02d37d2c452ad1b9a
3,154
php
PHP
public/linkAdd.php
ciniki/customers
d9d4c38c9da5d14613c9599aa100073839d53382
[ "MIT" ]
null
null
null
public/linkAdd.php
ciniki/customers
d9d4c38c9da5d14613c9599aa100073839d53382
[ "MIT" ]
null
null
null
public/linkAdd.php
ciniki/customers
d9d4c38c9da5d14613c9599aa100073839d53382
[ "MIT" ]
null
null
null
<?php // // Description // ----------- // This function will add a new customer link to a customer. // // Arguments // --------- // api_key: // auth_token: // tnid: The ID of the tenant the customer belongs to. // customer_id: The ID of the customer to add the link to. // name: (optional) The name for the link. // url: The url for the link. // description: (optional) The description for the link. // // Returns // ------- // <rsp stat='ok' id='34' /> // function ciniki_customers_linkAdd(&$ciniki) { // // Find all the required and optional arguments // ciniki_core_loadMethod($ciniki, 'ciniki', 'core', 'private', 'prepareArgs'); $rc = ciniki_core_prepareArgs($ciniki, 'no', array( 'tnid'=>array('required'=>'yes', 'blank'=>'no', 'name'=>'Tenant'), 'customer_id'=>array('required'=>'yes', 'blank'=>'no', 'name'=>'Customer'), 'name'=>array('required'=>'no', 'default'=>'', 'blank'=>'yes', 'name'=>'Name'), 'url'=>array('required'=>'yes', 'blank'=>'no', 'name'=>'URL'), 'webflags'=>array('required'=>'no', 'default'=>'0', 'blank'=>'no', 'name'=>'Webflags'), 'description'=>array('required'=>'no', 'default'=>'', 'blank'=>'yes', 'name'=>'Description'), )); if( $rc['stat'] != 'ok' ) { return $rc; } $args = $rc['args']; // // Make sure this module is activated, and // check permission to run this function for this tenant // ciniki_core_loadMethod($ciniki, 'ciniki', 'customers', 'private', 'checkAccess'); $rc = ciniki_customers_checkAccess($ciniki, $args['tnid'], 'ciniki.customers.linkAdd', 0); if( $rc['stat'] != 'ok' ) { return $rc; } // // Add the link // ciniki_core_loadMethod($ciniki, 'ciniki', 'core', 'private', 'objectAdd'); $rc = ciniki_core_objectAdd($ciniki, $args['tnid'], 'ciniki.customers.link', $args, 0x07); if( $rc['stat'] != 'ok' ) { return $rc; } // // Update the short_description // ciniki_core_loadMethod($ciniki, 'ciniki', 'customers', 'private', 'customerUpdateShortDescription'); $rc = ciniki_customers_customerUpdateShortDescription($ciniki, $args['tnid'], $args['customer_id'], 0x07); if( $rc['stat'] != 'ok' ) { return $rc; } // // Update the web index if enabled // ciniki_core_loadMethod($ciniki, 'ciniki', 'core', 'private', 'hookExec'); ciniki_core_hookExec($ciniki, $args['tnid'], 'ciniki', 'web', 'indexObject', array('object'=>'ciniki.customers.customer', 'object_id'=>$args['customer_id'])); ciniki_core_hookExec($ciniki, $args['tnid'], 'ciniki', 'web', 'indexObject', array('object'=>'ciniki.customers.members', 'object_id'=>$args['customer_id'])); ciniki_core_hookExec($ciniki, $args['tnid'], 'ciniki', 'web', 'indexObject', array('object'=>'ciniki.customers.dealers', 'object_id'=>$args['customer_id'])); ciniki_core_hookExec($ciniki, $args['tnid'], 'ciniki', 'web', 'indexObject', array('object'=>'ciniki.customers.distributors', 'object_id'=>$args['customer_id'])); return array('stat'=>'ok'); } ?>
39.924051
166
0.590679
3e8171bf79b850ff4eb76779b1faf4c05f6192a4
5,210
h
C
public/matchmaking/igametypes.h
Ochii/source-sdk-csgo
c95b57ce390dcc36d078efc680a3963b27de2f41
[ "Unlicense" ]
4
2018-11-27T23:11:55.000Z
2019-07-23T14:27:08.000Z
public/matchmaking/igametypes.h
Ochii/source-sdk-csco
c95b57ce390dcc36d078efc680a3963b27de2f41
[ "Unlicense" ]
null
null
null
public/matchmaking/igametypes.h
Ochii/source-sdk-csco
c95b57ce390dcc36d078efc680a3963b27de2f41
[ "Unlicense" ]
2
2019-06-01T15:24:29.000Z
2019-07-23T14:27:09.000Z
//===== Copyright c 1996-2009, Valve Corporation, All rights reserved. ======// // // Purpose: // // $NoKeywords: $ //===========================================================================// #ifndef IGAMETYPES_H #define IGAMETYPES_H #ifdef _WIN32 #pragma once #endif namespace ELOGameType { enum GameType { INVALID = -1, CLASSIC_CASUAL, CLASSIC_COMPETITIVE, GUNGAME_PROGRESSIVE, GUNGAME_BOMB, COUNT }; } typedef ELOGameType::GameType ELOGameType_t; namespace ELOCalcMode { enum CalcMode { INVALID = -1, TEAM_VS_TEAM, FREE_FOR_ALL, COUNT }; } typedef ELOCalcMode::CalcMode ELOCalcMode_t; #define VENGINE_GAMETYPES_VERSION "VENGINE_GAMETYPES_VERSION002" abstract_class IGameTypes { public: class WeaponProgression { public: CUtlString m_Name; int m_Kills; }; public: virtual ~IGameTypes() {} virtual bool Initialize( bool force ) = 0; virtual bool IsInitialized() const = 0; virtual bool SetGameTypeAndMode( const char *gameType, const char *gameMode ) = 0; // Gets the game type and mode mapped to an alias. // Currently available aliases at time of doc: competitive, comp, casual, armsrace, arms, gungame, gg, // demolition, demo, deathmatch, dm, training, custom, default, auto. virtual bool GetGameTypeAndModeFromAlias( const char *alias, int &gameType, int &gameMode ) = 0; virtual bool SetGameTypeAndMode( int gameType, int gameMode ) = 0; virtual void SetAndParseExtendedServerInfo( KeyValues *pExtendedServerInfo ) = 0; virtual bool CheckShouldSetDefaultGameModeAndType( const char *mapName ) = 0; virtual int GetCurrentGameType() const = 0; virtual int GetCurrentGameMode() const = 0; virtual const char *GetCurrentMapName() = 0; virtual const char *GetCurrentGameTypeNameID() = 0; virtual const char *GetCurrentGameModeNameID() = 0; virtual bool ApplyConvarsForCurrentMode( bool isMultiplayer ) = 0; virtual void DisplayConvarsForCurrentMode() = 0; virtual const CUtlVector< WeaponProgression > *GetWeaponProgressionForCurrentModeCT() = 0; virtual const CUtlVector< WeaponProgression > *GetWeaponProgressionForCurrentModeT() = 0; virtual int GetNoResetVoteThresholdForCurrentModeCT() = 0; virtual int GetNoResetVoteThresholdForCurrentModeT() = 0; virtual const char *GetGameTypeFromInt( int gameType ) = 0; virtual const char *GetGameModeFromInt( int gameType, int gameMode ) = 0; virtual bool GetGameModeAndTypeIntsFromStrings( const char *szGameType, const char *szGameMode, int &iOutGameType, int &iOutGameMode ) = 0; virtual bool GetGameModeAndTypeNameIdsFromStrings( const char *szGameType, const char *szGameMode, const char * &szOutGameTypeNameId, const char * &szOutGameModeNameId ) = 0; // mapGroup here is also the Workshop Collection ID (as a string) virtual void CreateOrUpdateWorkshopMapGroup( const char *mapGroup, const CUtlStringList &mapList) = 0; virtual bool IsWorkshopMapGroup( const char *mapGroup ) = 0; virtual const char *GetRandomMapGroup( const char *gameType, const char *gameMode ) = 0; virtual const char *GetFirstMap( const char *mapGroup ) = 0; virtual const char *GetRandomMap( const char *mapGroup ) = 0; virtual const char *GetNextMap( const char *mapGroup, const char *mapName ) = 0; virtual int GetMaxPlayersForTypeAndMode( int iType, int iMode ) = 0; virtual bool IsValidMapGroupName( const char *mapGroup ) = 0; virtual bool IsValidMapInMapGroup( const char *mapGroup, const char *mapName ) = 0; virtual bool IsValidMapGroupForTypeAndMode( const char *mapGroup, const char *gameType, const char *gameMode ) = 0; virtual bool ApplyConvarsForMap( const char *mapName, bool isMultiplayer ) = 0; virtual bool GetMapInfo( const char *mapName, unsigned int &richPresence ) = 0; virtual const CUtlStringList *GetTModelsForMap( const char *mapName ) = 0; virtual const CUtlStringList *GetCTModelsForMap( const char *mapName ) = 0; virtual const CUtlStringList *GetHostageModelsForMap( const char *mapName ) = 0; virtual int GetDefaultGameTypeForMap( const char *mapName ) = 0; virtual int GetDefaultGameModeForMap( const char *mapName ) = 0; virtual const char *GetTViewModelArmsForMap( const char *mapName ) = 0; virtual const char *GetCTViewModelArmsForMap( const char *mapName ) = 0; virtual const char *GetRequiredAttrForMap( const char *mapName ) = 0; virtual int GetRequiredAttrValueForMap( const char *mapName ) = 0; virtual const char *GetRequiredAttrRewardForMap( const char *mapName ) = 0; virtual int GetRewardDropListForMap( const char *mapName ) = 0; virtual const CUtlStringList *GetMapGroupMapList( const char *mapGroup ) = 0; virtual bool GetRunMapWithDefaultGametype() = 0; virtual void SetRunMapWithDefaultGameType( bool bUseDefault ) = 0; virtual bool GetLoadingScreenDataIsCorrect() = 0; virtual void SetLoadingScreenDataIsCorrect( bool bIsCorrect ) = 0; virtual bool SetCustomBotDifficulty( int botDiff ) = 0; virtual int GetCustomBotDifficulty() = 0; virtual int GetCurrentServerNumSlots() = 0; virtual int GetCurrentServerSettingInt(const char *settingName, int defaultValue) = 0; virtual bool GetGameTypeFromMode( const char* modeName, const char **pTypeName ) = 0; }; #endif // IGAMETYPES_H
35.442177
175
0.75048
f073a799e8b36554db301e779cfd3eed55011853
4,727
py
Python
QDeblend/process/host_profiles.py
brandherd/QDeblend3D
4e195ca027cf9fb65962ce66bf5d1f3e119b4f18
[ "MIT" ]
null
null
null
QDeblend/process/host_profiles.py
brandherd/QDeblend3D
4e195ca027cf9fb65962ce66bf5d1f3e119b4f18
[ "MIT" ]
null
null
null
QDeblend/process/host_profiles.py
brandherd/QDeblend3D
4e195ca027cf9fb65962ce66bf5d1f3e119b4f18
[ "MIT" ]
null
null
null
import numpy, math from scipy import special """ The Sersic Profile Formulae for Sersic profile taken from Graham & Driver (2005) bibcode: 2005PASA...22..118G """ class Sersic: def __init__(self, size, x_c, y_c, mag, n, r_e, e=0., theta=0., osfactor=10, osradius=2): self.size = size self.x_c = x_c self.y_c = y_c self.n = n self.r_e = r_e self.e = e self.theta = theta self.osf = osfactor self.osr = osradius flux = 10**(-0.4*mag) self._get_kappa() self.sigma_e = flux/(2*math.pi*(r_e**2)*math.exp(self.kappa)*n* (self.kappa)**(-2.*n)*special.gamma(2.*n)*(1.-e)) self._make_array() def _get_kappa(self): init = 1.9992*self.n - 0.3271 self.kappa = self.__newton_it(init) def __newton_it(self, x0, epsilon=1e-8): for i in range(2000): x0 -= self.__gammainc(x0)[0]/self.__gammainc(x0)[1] if abs(self.__gammainc(x0)[0]) <= epsilon: break if i == 1999: print 'Warning: Iteration failed!' return x0 def __gammainc(self, x): f = special.gammainc(2*self.n, x) - 0.5 df = (math.exp(-x) * x**(2.*self.n - 1.))/special.gamma(2.*self.n) return (f, df) def _make_array(self): self.array = numpy.fromfunction(self._draw, self.size, dtype='float32') if self.osf != 1: csize = ((2*self.osr+1)*self.osf, (2*self.osr+1)*self.osf) x_n = int(round(self.x_c)) y_n = int(round(self.y_c)) self.x_c += (self.osr - round(self.x_c)) self.y_c += (self.osr - round(self.y_c)) self.x_c *= self.osf self.y_c *= self.osf self.x_c += 0.5*(self.osf-1.) self.y_c += 0.5*(self.osf-1.) self.r_e *= self.osf self.sigma_e /= (self.osf)**2 carray = numpy.fromfunction(self._draw, csize, dtype='float32') s1_size = (2*self.osr+1, (2*self.osr+1)*self.osf, self.osf) s2_size = (2*self.osr+1, 2*self.osr+1, self.osf) step1 = numpy.sum(numpy.reshape(carray, s1_size, 'C'), axis=2) step2 = numpy.sum(numpy.reshape(step1, s2_size, 'F'), axis=2) self.array[y_n-self.osr:y_n+self.osr+1, x_n-self.osr:x_n+self.osr+1] = step2 def _draw(self, y, x): u = (x-self.x_c)*math.sin(self.theta)-(y-self.y_c)*math.cos(self.theta) v = (y-self.y_c)*math.sin(self.theta)+(x-self.x_c)*math.cos(self.theta) r = numpy.sqrt(u**2 + (v/(1. - self.e))**2) return self.sigma_e*numpy.exp(-self.kappa*((r/self.r_e)**(1/self.n)-1)) def cut_area(in_array, center, radius, output=''): x_i = round(center[0], 0) y_i = round(center[1], 0) shape = in_array.shape out_array = numpy.zeros((2*radius+1, 2*radius+1), dtype='float32') out_shape = out_array.shape xmin = max(0, int(x_i - radius)) xmax = min(shape[1], int(x_i + radius + 1)) ymin = max(0, int(y_i - radius)) ymax = min(shape[0], int(y_i + radius + 1)) xlo = max(0, int(radius - x_i)) xhi = out_shape[1] - max(0, int(x_i + radius + 1 - shape[1])) ylo = max(0, int(radius - y_i)) yhi = out_shape[0] - max(0, int(y_i + radius + 1 - shape[0])) out_array[ylo:yhi,xlo:xhi] = in_array[ymin:ymax,xmin:xmax] if output == 'full': filled_pix = numpy.zeros(out_shape, dtype='int16') filled_pix[ylo:yhi,xlo:xhi] += 1 return out_array, filled_pix else: return out_array def paste_area(in_array, out_shape, refpix_in, refpix_out, out_array=None): xpix_in = int(round(refpix_in[0], 0)) ypix_in = int(round(refpix_in[1], 0)) xpix_out = int(round(refpix_out[0], 0)) ypix_out = int(round(refpix_out[1], 0)) in_shape = in_array.shape xmin = max(0, xpix_in - xpix_out) xmax = in_shape[1] - max(0, (in_shape[1]-xpix_in) - (out_shape[1]-xpix_out)) ymin = max(0, ypix_in - ypix_out) ymax = in_shape[0] - max(0, (in_shape[0]-ypix_in) - (out_shape[0]-ypix_out)) xlo = max(0, xpix_out - xpix_in) xhi = out_shape[1] - max(0, (out_shape[1]-xpix_out) - (in_shape[1]-xpix_in)) ylo = max(0, ypix_out - ypix_in) yhi = out_shape[0] - max(0, (out_shape[0]-ypix_out) - (in_shape[0]-ypix_in)) if out_array is None: out_array = numpy.zeros(out_shape, dtype='float32') if ylo < out_array.shape[0] and yhi > 0: if xlo < out_array.shape[1] and xhi > 0: out_array[ylo:yhi, xlo:xhi] = in_array[ymin:ymax, xmin:xmax] return out_array
34.757353
80
0.557436
581e87cd8c48edf05cdc294ab309c5b81a052bee
8,429
c
C
model/chem/old/_singh/chem.c
zhanghuanqian/CFDWARP
9340a8526bb263d910f79d79e84dcac7aec211b6
[ "BSD-2-Clause" ]
29
2018-09-13T13:58:18.000Z
2022-03-08T21:44:13.000Z
model/chem/old/_singh/chem.c
zhanghuanqian/CFDWARP
9340a8526bb263d910f79d79e84dcac7aec211b6
[ "BSD-2-Clause" ]
3
2020-11-10T11:28:30.000Z
2021-11-23T09:21:28.000Z
model/chem/old/_singh/chem.c
zhanghuanqian/CFDWARP
9340a8526bb263d910f79d79e84dcac7aec211b6
[ "BSD-2-Clause" ]
20
2018-07-26T08:17:37.000Z
2022-03-04T08:41:55.000Z
// SPDX-License-Identifier: BSD-2-Clause /* Copyright 2001 Giovanni Fusina Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include <model/chem/_chem.h> #include <model/_model.h> #include <model/.active/model.h> #include <model/thermo/_thermo.h> #include <model/metrics/_metrics.h> #define maxreact 30 void write_chem_template(FILE **controlfile){ } void read_and_init_chem_actions(char *action, char **argum, SOAP_codex_t *codex){ } void find_Schem(np_t np, gl_t *gl, flux_t S){ long flux; long k,r,s; double conc[ns]; double T,w[ns],rho,frr[maxreact],Kc[maxreact]; double Gs[ns],dGs[maxreact]; double third; /* FindChemData; */ T=_T(np); for (s=0; s<ns; s++){ w[s]=_w(np,s); } rho=_rho(np); /*Find concentrations: mol/cm3 and Gibbs: J/mol */ for (k=0; k<ns; k++){ Gs[k]=0.0e0; } for (k=0; k<ns; k++){ conc[k] = w[k] * rho / _calM(k) * 1.0e-06; Gs[k]=(_hk_from_T(k,T)-T*_sk_from_T(k,T))*_calM(k); } for (r=0; r<maxreact; r++){ frr[r]=0.0e0; dGs[r]=0.0e0; } /*Difference in Gibbs for each reaction */ dGs[1]=2.0e0*Gs[4]-(Gs[0]+Gs[1]); dGs[2]=(Gs[4]+Gs[3])-(Gs[2]+Gs[1]); dGs[3]=(Gs[4]+Gs[2])-(Gs[3]+Gs[0]); dGs[4]=(Gs[5]+Gs[2])-(Gs[4]+Gs[0]); dGs[5]=(Gs[5]+Gs[3])-(2.0e0*Gs[4]); dGs[6]=Gs[5]-(Gs[2]+Gs[4]); dGs[7]=Gs[0]-2.0e0*Gs[2]; /* Rgas = 8.3144126d0*/ /*determine Kp (storing results in Kc since this is ultimately what is sought here). [Kp] = (atm) ** (n-m)*/ for (r=0; r<maxreact; r++){ Kc[r]=0.0e0; } for (r=1; r<maxreact; r++){ Kc[r]=exp(-dGs[r]/(8.3144126e0*T)); } /* * determine Kc by multiplying Kp by (RT/101325*100**3) ** (m-n) * * [Kc] = (cm**3/mol) ** (m-n) */ Kc[6] = Kc[6] * (82.056872e0 * T); Kc[7] = Kc[7] * (82.056872e0 * T); /* CALCULATE FORWARD REACTION RATE * R = 1.987192004 cal/mol-K * [Kf] = (cm**3/mol) ** (m-1) / sec */ frr[1]=1.7e+13*exp(-48150.0e0/(1.987192004e0*T)); frr[2]=1.42e+14*exp(-16400.0e0/(1.987192004e0*T)); frr[3]=2.07e+14*exp(-13750.0e0/(1.987192004e0*T)); frr[4]=3.16e+07*pow(T,1.8e0)*exp(-3030.0e0/(1.987192004e0*T)); frr[5]=5.50e+13*exp(-7000.0e0/(1.987192004e0*T)); frr[6]=2.21e+22*pow(T,(-2.0e0)); frr[7]=6.53e+17/T; /* * calculate the reaction rates * * * calculate third body efficiencies */ third = conc[0]; for (k=1; k<ns; k++){ third = third + conc[k]; } /* * find the species production rates [kg/s] */ for (flux=0; flux<nf; flux++){ S[flux]=0.0e0; } S[0]=(-frr[1]*(conc[0]*conc[1]-1.0e0/Kc[1]*(conc[4]*conc[4])) -frr[3]*(conc[3]*conc[0]-1.0e0/Kc[3]*(conc[4]*conc[2])) -frr[4]*(conc[4]*conc[0]-1.0e0/Kc[4]*(conc[5]*conc[2])) +frr[7]*(conc[2]*conc[2]-1.0e0/Kc[7]*(conc[0]))*third )*1.0e+06*_calM(0)*_Omega(np,gl); S[1]=(-frr[1]*(conc[0]*conc[1]-1.0e0/Kc[1]*(conc[4]*conc[4])) -frr[2]*(conc[2]*conc[1]-1.0e0/Kc[2]*(conc[4]*conc[3])) )*1.0e+06*_calM(1)*_Omega(np,gl); S[2]=(-frr[2]*(conc[2]*conc[1]-1.0e0/Kc[2]*(conc[4]*conc[3])) +frr[3]*(conc[3]*conc[0]-1.0e0/Kc[3]*(conc[4]*conc[2])) +frr[4]*(conc[4]*conc[0]-1.0e0/Kc[4]*(conc[5]*conc[2])) -frr[6]*(conc[2]*conc[4]-1.0e0/Kc[6]*(conc[5]))*third -2.0e0*frr[7]*(conc[2]*conc[2]-1.0e0/Kc[7]*(conc[0]))*third )*1.0e+06*_calM(2)*_Omega(np,gl); S[3]=(+frr[2]*(conc[2]*conc[1]-1.0e0/Kc[2]*(conc[4]*conc[3])) -frr[3]*(conc[3]*conc[0]-1.0e0/Kc[3]*(conc[4]*conc[2])) +frr[5]*(conc[4]*conc[4]-1.0e0/Kc[5]*(conc[5]*conc[3])) )*1.0e+06*_calM(3)*_Omega(np,gl); S[4]=(+2.0e0*frr[1]*(conc[0]*conc[1]-1.0e0/Kc[1]*(conc[4]*conc[4])) +frr[2]*(conc[2]*conc[1]-1.0e0/Kc[2]*(conc[4]*conc[3])) +frr[3]*(conc[3]*conc[0]-1.0e0/Kc[3]*(conc[4]*conc[2])) -frr[4]*(conc[4]*conc[0]-1.0e0/Kc[4]*(conc[5]*conc[2])) -2.0e0*frr[5]*(conc[4]*conc[4]-1.0e0/Kc[5]*(conc[5]*conc[3])) -frr[6]*(conc[2]*conc[4]-1.0e0/Kc[6]*(conc[5]))*third )*1.0e+06*_calM(4)*_Omega(np,gl); S[5]=(+frr[4]*(conc[4]*conc[0]-1.0e0/Kc[4]*(conc[5]*conc[2])) +frr[5]*(conc[4]*conc[4]-1.0e0/Kc[5]*(conc[5]*conc[3])) +frr[6]*(conc[2]*conc[4]-1.0e0/Kc[6]*(conc[5]))*third )*1.0e+06*_calM(5)*_Omega(np,gl); } void find_prim_fluid_mem_chem(double P, double T, np_t np){ spec_t w; double sum1,rho; long dim,spec; bool ref_flag; assert(is_node_resumed(np)); ref_flag=FALSE; np.wk->Tmem=T; /* np.wk->Pmem=P; */ sum1=0.0e0; for (spec=0; spec<ns; spec++) sum1=sum1+np.bs->U[spec]; assert(sum1!=0.0e0); for (spec=0; spec<ns; spec++) w[spec]=np.bs->U[spec]/sum1; rho=_rho_from_w_P_T(w,P,T); np.wk->rhomem=rho; assert(np.wk->rhomem>0.0e0); /* find Vmem */ assert(rho!=0.0e0); for (dim=0; dim<nd; dim++) np.wk->Vmem[dim]=np.bs->U[ns+dim]/rho; } void find_prim_chem(np_t np){ long dim,spec; double rho,T,P,e,sum,sum1; spec_t w; dim_t V; sum1=0.0e0; for (spec=0; spec<ns; spec++) sum1=sum1+np.bs->U[spec]; assert(sum1!=0.0e0); for (spec=0; spec<ns; spec++) w[spec]=np.bs->U[spec]/sum1; rho=sum1; sum=0.0e0; for (dim=0; dim<nd; dim++){ V[dim]=np.bs->U[ns+dim]/sum1; sum=sum+sqr(V[dim]); } assert(rho!=0.0e0); e=np.bs->U[ns+nd]/sum1-0.5e0*sum -np.bs->U[ns+nd+1]/sum1; T=_T_from_w_e(w,e); np.wk->Tmem=T; P=_P_from_w_rho_T(w,rho,T); find_prim_fluid_mem_chem(P, T, np); } void add_dU_to_Utilde_chem(flux_t dUstar, np_t np, gl_t *gl){ double Omega; long flux; Omega=_Omega(np,gl); assert(Omega>0.0e0); for (flux=0; flux<nf; flux++){ np.bs->U[flux]=np.bs->U[flux]+dUstar[flux]/Omega; } find_prim_chem(np); } void find_numerical_jacobian_chem(void(*FUNCT)(np_t, gl_t *, flux_t), np_t np, gl_t *gl, sqmat_t Ak){ long row,col,flux; flux_t F,Fnew,Ustar,dUstar,dUstar2; for (flux=0; flux<nf; flux++){ Ustar[flux]=np.bs->U[flux]*_Omega(np,gl); dUstar[flux]=Ustar[flux]/100000000.0e0+1.0e-15; /* if(flux<ns){ dUstar[flux]=1.0e-11*_Omega(np)*_rho(np); } else { if(flux<ns+nd){ dUstar[flux]=1.0e-11*_Omega(np)*_rho(np)*_a(np); } else { dUstar[flux]=Ustar[flux]/100000000.0e0+1.0e-12*_Omega(np); } } */ } (*FUNCT)(np,gl,F); for (col=0; col<nf; col++){ for (flux=0; flux<nf; flux++){ np.bs->U[flux]=Ustar[flux]/_Omega(np,gl); dUstar2[flux]=0.0e0; } dUstar2[col]=dUstar[col]; add_dU_to_Utilde_chem(dUstar2,np,gl); find_prim_chem(np); (*FUNCT)(np, gl,Fnew); for (row=0; row<nf; row++){ assert(dUstar[col]!=0.0e0); Ak[row][col]=(Fnew[row]-F[row])/dUstar[col]; } } for (flux=0; flux<nf; flux++){ np.bs->U[flux]=Ustar[flux]/_Omega(np,gl); } find_prim_chem(np); } /*---------------------------------------------------*/ void find_dSchem_dU(np_t np, gl_t *gl, sqmat_t C){ find_numerical_jacobian_chem(&(find_Schem), np, gl, C); /* display_matrix(C);*/ }
26.258567
88
0.57492
892b18c7a3272e67a62f0b74b40bd20d013f6233
2,196
kt
Kotlin
app/src/main/java/com/example/mydaiilynews/Common.kt
singhankit67/NewsProject
e922de952bbf84dae3836c1cef68be1eafcc7cf9
[ "Apache-2.0" ]
null
null
null
app/src/main/java/com/example/mydaiilynews/Common.kt
singhankit67/NewsProject
e922de952bbf84dae3836c1cef68be1eafcc7cf9
[ "Apache-2.0" ]
null
null
null
app/src/main/java/com/example/mydaiilynews/Common.kt
singhankit67/NewsProject
e922de952bbf84dae3836c1cef68be1eafcc7cf9
[ "Apache-2.0" ]
null
null
null
package com.example.mydaiilynews import android.annotation.SuppressLint import retrofit2.create import java.text.ParseException import java.text.SimpleDateFormat import java.util.Date object Common { val API_KEY = "71a46c4dac0f4761becf0206e7d67f1f" val BASE_URL = "https://newsapi.org" //val BASE_URL = "https://api.breakingapi.com" val newsService:NewsService get() = RetrofitClient.getClient(BASE_URL).create(NewsService::class.java)//calling the the string here it concatenates the base url with the fun getNewsApi(source:String):String{ val apiUrl = StringBuilder(" https://newsapi.org/v2/top-headlines?sources=") .append(source) .append("&apiKey=") .append(API_KEY) .toString() return apiUrl } fun getNewsApi1(name:String):String{ val apiUrl1 = StringBuilder("https://newsapi.org/v2/top-headlines?country=in&language=en&category=") .append(name) .append("&apiKey=") .append(API_KEY) .toString() return apiUrl1 } fun getNewsApi2(query1:String):String{ val apiUrl1 = StringBuilder("https://newsapi.org/v2/everything?q=") .append(query1) .append("&language=en") .append("&sortBy=popularity") .append("&apiKey=") .append(API_KEY) .toString() return apiUrl1 } //our api key and stores the source and status in the website class //inShort we implemented the inteface news service here // @SuppressLint("SimpleDateFormat") // @Throws(ParseException::class) // fun parse(input:String):Date { // val df = SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ssz") // var input1: String? = null // if (input1!!.endsWith("Z")) // { // input1 = input.substring(0, input.length - 1) + "GMT-00:00" // } // else // { // val inset = 6 // val s0 = input1.substring(0, input1.length - inset) // val s1 = input1.substring(input1.length - inset, input.length) // input1 = s0 + "GMT" + s1 // } // return df.parse(input1) // } }
36
146
0.602004
856b8b0e4f265e12cdf5bcaf6f9a9ad1849441be
10,294
js
JavaScript
public/js/core/core.js
samucaguimaraes/konsig1
1c3847bdbe7d62f01fadccfac0d8095524e551a4
[ "Apache-2.0" ]
1
2018-09-02T02:03:00.000Z
2018-09-02T02:03:00.000Z
public/js/core/core.js
samucaguimaraes/konsig1
1c3847bdbe7d62f01fadccfac0d8095524e551a4
[ "Apache-2.0" ]
2
2018-09-04T20:31:48.000Z
2018-09-11T18:44:14.000Z
public/js/core/core.js
samucaguimaraes/konsig1
1c3847bdbe7d62f01fadccfac0d8095524e551a4
[ "Apache-2.0" ]
null
null
null
/** * A funçao recebe dados no formato descrito e executa a chamada do ajax via post * var dados = { * objeto: 'NomeDoObjeto', * method: 'metodoDoObjeto', * param1: value, * param2: value, * param3: value, * ... * }; * * @param {array} dados Dados da aplicacao * @return {array | boollean} result */ function AjaxPost(dados) { var result = false; $.ajax({ type: "POST", url: "index.php?c=Request&a=ajaxPost", async: false, data: { dados: dados }, dataType: "json", success: function(retorno) { result = retorno; } }); return result; } /** * A função recebe dados no formato descrito e executa a chamada do ajax via post * var dados = { * session: 'NomeDaSession', * value: 'valorDaSession' * }; * * @param {array} dados Dados da aplicacao * @return {array | boollean} result */ function AjaxSession(dados) { var result = false; $.ajax({ type: "POST", url: "index.php?c=Ajax&a=ajaxSession", async: false, data: { dados: dados }, dataType: "json", success: function(retorno) { result = retorno; } }); return result; } /* * A função instancia o retorno da consulta no selector instanciado * * Nome do selector que receberar o resultado da function * @param {text} selector * Nome do Objeto a qual a função vai pesquisar * @param {text} objeto * Nome do method que será instanciado no objeto * @param {text} method * Dados restantes para completar a url de consulta * @param {text} dados * @returns {void} */ function mountDataTable(selector, objeto, method, dados) { if (typeof dados === 'undefined') { dados = ''; } else { dados = '&' + dados; } $(selector).dataTable({ "bProcessing": true, "bServerSide": true, "destroy": true, "sAjaxSource": "index.php?c=Request&a=ajaxGet&objeto=" + objeto + "&method=" + method + dados, "language": { "sSearch": "<span class=\"mif-filter fg-gray\" style=\"margin-top:-5px;\"></span> Filtrar", "info": "Pagina _PAGE_ de _PAGES_ de _MAX_ resultado(s)", "infoEmpty": "Pagina 0 a 0 de 0 resultado(s)", "infoFiltered": "", "sZeroRecords": "Nenhum resultado que corresponde ao critério foi encontrado", "processing": "<span class=\"mif-spinner4 mif-ani-pulse\"></span> Processando", "emptyTable": "Não existe dados associados", "oPaginate": { "sFirst": "Primeiro", "sPrevious": "Anterior", "sNext": "Próximo", "sLast": "Último" } } }); } /* Retorna a url da pagina atual */ function getUrl() { var url = window.location; return url.toString(); } /* Limpar url deixando só os paravemtros */ function getArrayUrlParams() { var url = getUrl(); var dividirUrl = url.split("?"); dividirUrl.shift(); var arrayParams = dividirUrl[0].split("/"); arrayParams.shift(); arrayParams.shift(); var iUltimorrayParams = arrayParams.length - 1; if (arrayParams[iUltimorrayParams] === "") { arrayParams.pop(); } var params = new Array(); while (arrayParams.length > 1) { params[arrayParams[0]] = arrayParams[1]; arrayParams.shift(); arrayParams.shift(); } return params; } function getUrlParam(param) { var params = getArrayUrlParams(); return params[param]; } function reloadUrl() { document.location.reload(true); } function redirectUrl(href) { window.location.href = href; } function redirectUrlBlank(href) { window.open(href, '_blank'); } /* Monta a lista de option de acordo ao json passado (Modelo para o plugin)*/ function ListSelect2Option(selection, fromObject, AjaxParams) { var options = ''; options += '<option></option>'; if (selection !== '') { var ObjectJson = AjaxPost(AjaxParams); if (ObjectJson) { var tDados = ObjectJson.length; for (var j = 0; j < tDados; j++) { options += '<option value="' + ObjectJson[j].value + '">' + ObjectJson[j].nome + '</option>'; } $(fromObject['id']).html(options).show(); $(fromObject['id']).select2({placeholder: fromObject['msgSuccess']}); } else { $(fromObject['id']).html(options).show(); $(fromObject['id']).select2({placeholder: fromObject['msgError']}); } } else { $(fromObject['id']).html(options).show(); $(fromObject['id']).select2({placeholder: fromObject['msgEmpty']}); } } function Maiusculo(campo) { $(campo).keyup(function() { $(this).val($(this).val().toUpperCase()); }); } function Minusculo(campo) { $(campo).keyup(function() { $(this).val($(this).val().toLowerCase()); }); } function replaceAll(str, de, para) { var pos = str.indexOf(de); while (pos > -1) { str = str.replace(de, para); pos = str.indexOf(de); } return (str); } function formatMonetario(valor) { valor = replaceAll(valor, 'R$ ', ''); valor = replaceAll(valor, '.', ''); valor = replaceAll(valor, ',', '.'); valor = parseFloat(valor); if (valor > 0) { return valor.toFixed(2); } else { return '0.00'; } } function apenasNumeros(campo) { $(campo).keyup(function() { // EXPRESSAO REGULAR PARA ACEITAR APENAS NUMEROS INTEIROS var reDigits = /^\d+$/; var valor = $(this).val(); var numeric = reDigits.test(valor); if (!numeric) { var tValor = valor.length; valor = valor.substring(0, tValor - 1); $(this).val(valor); } }); } function float2moeda(num) { x = 0; if (num < 0) { num = Math.abs(num); x = 1; } if (isNaN(num)) num = "0"; cents = Math.floor((num * 100 + 0.5) % 100); num = Math.floor((num * 100 + 0.5) / 100).toString(); if (cents < 10) cents = "0" + cents; for (var i = 0; i < Math.floor((num.length - (1 + i)) / 3); i++) num = num.substring(0, num.length - (4 * i + 3)) + '.' + num.substring(num.length - (4 * i + 3)); ret = num + ',' + cents; if (x == 1) ret = ' - ' + ret; return ret; } /* Habilitar um button */ function buttonEnabled(selector) { $(selector).removeAttr("class"); $(selector).attr("class", "button mif-floppy-disk primary"); $(selector).removeAttr("disabled"); } /* Desabilitar um button */ function buttonDisabled(selector) { $(selector).removeAttr("class"); $(selector).attr("class", "button mif-floppy-disk disabled"); $(selector).attr("disabled", "disabled"); } /* Habilitar um item */ function enabled(selector) { $(selector).removeAttr("disabled"); } /* Desabilitar um item */ function disabled(selector) { $(selector).attr("disabled", "disabled"); } /** * Criar uma tela modal com o conteudo de uma pagina<br> * passada pelo atributo url * @param {text} title * @param {text} icon * @param {text} url * @returns {void} */ function dialogFlatIframe(title, icon, url, heigth, width) { heigth = (heigth !== undefined) ? 'height="' + heigth + '"' : 'height="480"'; width = (width !== undefined) ? 'width="' + width + '"' : 'width="768"'; $.Dialog({ overlay: true, shadow: true, flat: true, icon: icon, title: title, content: '', onShow: function(_dialog) { var html = [ '<iframe ' + width + ' ' + heigth + ' src="' + url + '" frameborder="0" allowfullscreen></iframe>' ].join(""); $.Dialog.content(html); } }); } function closeDialogFlatIframe() { $(".btn-close").click(); } /* Não permite duplo clique no submit */ jQuery.fn.preventDoubleSubmit = function() { jQuery(this).submit(function() { if (this.beenSubmitted) return false; else this.beenSubmitted = true; }); }; /** * Retorna data atual no formato yyyymmdd * @returns String yyyymmdd */ function getDataAtualInvertida() { var dataAtual = new Date(); var dd = dataAtual.getDate(); var mm = dataAtual.getMonth() + 1; //January is 0! var yyyy = dataAtual.getFullYear(); if (dd < 10) { dd = '0' + dd; } if (mm < 10) { mm = '0' + mm; } return yyyy + '' + mm + '' + dd; } /** * Inverte e tira as barras de uma data no formato dd/mm/YYYY e converte para YYYYmmdd * @param {string} data * @returns dataInvertida */ function dataNormalToInverse(data) { var arrayData = data.split("/"); return arrayData[2] + '' + arrayData[1] + '' + arrayData[0]; } /** * Maskara para telefone de 8 e 9 digitos * @param {string} id * @returns void */ function maskPhone(id) { $(id).focusout(function() { var phone, element; element = $(this); element.unmask(); phone = element.val().replace(/\D/g, ''); if (phone.length > 10) { element.mask("(99)99999-9999"); } else { element.mask("(99)9999-99999"); } }).trigger('focusout'); } /** * Maskara para cpf e cnpj * @param {string} id * @returns void */ function maskCpfOrCnpj(id) { $(id).focusout(function() { var identificador, element; element = $(this); element.unmask(); identificador = element.val().replace(/\D/g, ''); if (identificador.length > 11) { element.mask("99.999.999/9999-99"); } else { element.mask("999.999.999-99999"); } }).trigger('focusout'); } /** * Formatação para valor Monetario */ function formatMonetario(valor) { valor = replaceAll(valor, 'R$ ', ''); valor = replaceAll(valor, '.', ''); valor = replaceAll(valor, ',', '.'); valor = parseFloat(valor); if (valor > 0) { return valor.toFixed(2); } else { return '0.00'; } }
24.221176
114
0.547406
6e02d35d240ea617e0e941f74c3f61c95b53e591
460
sql
SQL
api/php_includes_bak/php5/strSplit_function.sql
ojalaquellueva/gnrs
316c3884acc6f14bf91fabfb1b93b3fa7eb68b62
[ "MIT" ]
3
2019-02-20T22:49:53.000Z
2022-01-29T07:11:38.000Z
api/php_includes_bak/mysql/strSplit_function.sql
ojalaquellueva/gnrs
316c3884acc6f14bf91fabfb1b93b3fa7eb68b62
[ "MIT" ]
16
2020-04-07T16:38:31.000Z
2022-01-06T20:57:15.000Z
api/php_includes_bak/php5/strSplit_function.sql
ojalaquellueva/gnrs
316c3884acc6f14bf91fabfb1b93b3fa7eb68b62
[ "MIT" ]
null
null
null
-- Custom function strSplit() -- Splits a string in pieces (tokens) at a specified delimiter and returns the requested token CREATE FUNCTION `strSplit`(str varchar(255), delim varchar(12), tokenNo int) RETURNS varchar(255) CHARSET utf8 COMMENT 'Splits the string (str) at all delimiters (delim) and returns token number tokenNo' RETURN replace(SUBSTRING(SUBSTRING_INDEX(str, delim, tokenNo), LENGTH(SUBSTRING_INDEX(str, delim, tokenNo - 1)) + 1), delim, '');
76.666667
129
0.765217
2a05c86ac9f720106575b562d3391fdcc3ca3eeb
294
java
Java
src/main/java/com/jungdam/error/exception/s3/FileConverterException.java
prgrms-web-devcourse/team-angelbaby-jungdam-be
5d9b84fa303ff91efd48bb4647e9ee82ede69f68
[ "Apache-2.0" ]
20
2021-12-03T13:45:48.000Z
2022-02-01T17:43:50.000Z
src/main/java/com/jungdam/error/exception/s3/FileConverterException.java
prgrms-web-devcourse/team-angelbaby-jungdam-be
5d9b84fa303ff91efd48bb4647e9ee82ede69f68
[ "Apache-2.0" ]
177
2021-12-03T06:22:30.000Z
2022-02-04T12:10:29.000Z
src/main/java/com/jungdam/error/exception/s3/FileConverterException.java
jung-dam-diary/team-angelbaby-jungdam-be
2ce7fc0b50ecf688482e5af1d4260334cdeb6ac5
[ "Apache-2.0" ]
1
2021-12-01T07:25:11.000Z
2021-12-01T07:25:11.000Z
package com.jungdam.error.exception.s3; import com.jungdam.error.dto.ErrorMessage; import com.jungdam.error.exception.BusinessException; public class FileConverterException extends BusinessException { public FileConverterException(ErrorMessage message) { super(message); } }
24.5
63
0.789116
01429bf8d1becf7115262ab82d51ed3e5e849674
3,768
sql
SQL
dashboards/sql-page-timeframe/DateConversions.sql
admariner/samples-1
475bcb333ff2f7b486314827142d32d40b934fb5
[ "Apache-2.0" ]
13
2021-06-16T20:49:16.000Z
2022-01-28T22:25:50.000Z
dashboards/sql-page-timeframe/DateConversions.sql
squaredup/samples
475bcb333ff2f7b486314827142d32d40b934fb5
[ "Apache-2.0" ]
14
2021-06-16T20:01:09.000Z
2021-10-18T13:47:07.000Z
dashboards/sql-page-timeframe/DateConversions.sql
admariner/samples-1
475bcb333ff2f7b486314827142d32d40b934fb5
[ "Apache-2.0" ]
12
2021-06-25T15:49:48.000Z
2022-01-28T02:13:43.000Z
IF OBJECT_ID(N'tempdb..#Native') IS NOT NULL DROP TABLE #Native; --Create a temporary table to hold our display values CREATE TABLE #Native ([Description] nvarchar(255) , [strFormatted] nvarchar(255) , [asDateTime] datetime , [timeAgo] datetime , [timeAgoDt] datetime , [timeAgoHowLong] datetime ) --Insert some differnt types of date conversions using native SQL --Current Date and Time INSERT INTO #Native SELECT 'Current Date and Time', FORMAT (GETDATE(), 'yyyy-MM-dd hh:mm:ss tt'), GETDATE(), GETDATE(), GETDATE(), GETDATE() --1 hour INSERT INTO #Native SELECT 'StartDate -1 hour', FORMAT (DATEADD(HOUR, -1, GETDATE()), 'yyyy-MM-dd hh:mm:ss tt'), DATEADD(HOUR, -1, GETDATE()), DATEADD(HOUR, -1, GETDATE()), DATEADD(HOUR, -1, GETDATE()), DATEADD(HOUR, -1, GETDATE()) --12 hours INSERT INTO #Native SELECT 'StartDate -12 hour', FORMAT (DATEADD(HOUR, -12, GETDATE()), 'yyyy-MM-dd hh:mm:ss tt'), DATEADD(HOUR, -12, GETDATE()), DATEADD(HOUR, -12, GETDATE()), DATEADD(HOUR, -12, GETDATE()), DATEADD(HOUR, -12, GETDATE()) --1 day INSERT INTO #Native SELECT 'StartDate -24 hour', FORMAT (DATEADD(HOUR, -24, GETDATE()), 'yyyy-MM-dd hh:mm:ss tt'), DATEADD(HOUR, -24, GETDATE()), DATEADD(HOUR, -24, GETDATE()), DATEADD(HOUR, -24, GETDATE()), DATEADD(HOUR, -24, GETDATE()) --7 days INSERT INTO #Native SELECT 'StartDate -7 days', FORMAT (DATEADD(d, -7, GETDATE()), 'yyyy-MM-dd hh:mm:ss tt'), DATEADD(d, -7, GETDATE()), DATEADD(d, -7, GETDATE()), DATEADD(d, -7, GETDATE()), DATEADD(d, -7, GETDATE()) --30 days INSERT INTO #Native SELECT 'StartDate -30 days', FORMAT (DATEADD(d, -30, GETDATE()), 'yyyy-MM-dd hh:mm:ss tt'), DATEADD(d, -30, GETDATE()), DATEADD(d, -30, GETDATE()), DATEADD(d, -30, GETDATE()), DATEADD(d, -30, GETDATE()) INSERT INTO #Native SELECT 'StartDate -1 months', FORMAT (DATEADD(MM, -1, GETDATE()), 'yyyy-MM-dd hh:mm:ss tt'), DATEADD(MM, -1, GETDATE()), DATEADD(MM, -1, GETDATE()), DATEADD(MM, -1, GETDATE()), DATEADD(MM, -1, GETDATE()) --3 months (90 days) INSERT INTO #Native SELECT 'StartDate -90 days', FORMAT (DATEADD(d, -90, GETDATE()), 'yyyy-MM-dd hh:mm:ss tt'), DATEADD(d, -90, GETDATE()), DATEADD(d, -90, GETDATE()), DATEADD(d, -90, GETDATE()), DATEADD(d, -90, GETDATE()) INSERT INTO #Native SELECT 'StartDate -3 months', FORMAT (DATEADD(MM, -3, GETDATE()), 'yyyy-MM-dd hh:mm:ss tt'), DATEADD(MM, -3, GETDATE()), DATEADD(MM, -3, GETDATE()), DATEADD(MM, -3, GETDATE()), DATEADD(MM, -3, GETDATE()) --6 months (180 days) INSERT INTO #Native SELECT 'StartDate -6 months', FORMAT (DATEADD(MM, -6, GETDATE()), 'yyyy-MM-dd hh:mm:ss tt'), DATEADD(MM, -6, GETDATE()), DATEADD(MM, -6, GETDATE()), DATEADD(MM, -6, GETDATE()), DATEADD(MM, -6, GETDATE()) --12 months (240 days) INSERT INTO #Native SELECT 'StartDate -12 months', FORMAT (DATEADD(MM, -12, GETDATE()), 'yyyy-MM-dd hh:mm:ss tt'), DATEADD(MM, -12, GETDATE()), DATEADD(MM, -12, GETDATE()), DATEADD(MM, -12, GETDATE()), DATEADD(MM, -12, GETDATE()) --all data INSERT INTO #Native SELECT 'StartDate All Days', FORMAT (convert(datetime,0), 'yyyy-MM-dd hh:mm:ss tt'), convert(datetime,0), convert(datetime,0),convert(datetime,0), convert(datetime,0) --End Date INSERT INTO #Native SELECT 'End Date', FORMAT (GETDATE(), 'yyyy-MM-dd hh:mm:ss tt'), GETDATE(), GETDATE(),GETDATE(), GETDATE() --Midnight INSERT INTO #Native SELECT 'Midnight', FORMAT (DATEADD(Day, 0, DATEDIFF(Day, 0, GetDate())), 'yyyy-MM-dd hh:mm:ss tt'), DATEADD(Day, 0, DATEDIFF(Day, 0, GetDate())),DATEADD(Day, 0, DATEDIFF(Day, 0, GetDate())),DATEADD(Day, 0, DATEDIFF(Day, 0, GetDate())),DATEADD(Day, 0, DATEDIFF(Day, 0, GetDate())) --Dump out the table for SquaredUp to display on the dashboard SELECT * FROM #Native
72.461538
299
0.653397
f606d2cef04408943a746d43ce8f73b32573f0e6
5,822
kt
Kotlin
app/src/main/java/com/bruhascended/organiso/ScheduledActivity.kt
ChiragKalra/Organiso
a11504c586b332a476a8496a0f8df995c0dc1e59
[ "Apache-2.0" ]
16
2020-09-04T08:08:23.000Z
2022-03-30T20:57:16.000Z
app/src/main/java/com/bruhascended/organiso/ScheduledActivity.kt
Mahendra-Gohil/Organiso
acc7e6ffc4ee9cd30f69733ff42be0ea340da72d
[ "Apache-2.0" ]
5
2020-10-22T20:24:38.000Z
2022-01-05T10:30:04.000Z
app/src/main/java/com/bruhascended/organiso/ScheduledActivity.kt
Mahendra-Gohil/Organiso
acc7e6ffc4ee9cd30f69733ff42be0ea340da72d
[ "Apache-2.0" ]
3
2020-11-14T16:19:45.000Z
2021-05-10T10:06:43.000Z
package com.bruhascended.organiso import android.content.ClipData import android.content.ClipboardManager import android.content.Context import android.content.Intent import android.os.Bundle import android.view.MenuItem import android.widget.Toast import androidx.appcompat.app.AlertDialog import androidx.appcompat.app.AppCompatActivity import androidx.core.view.isVisible import androidx.recyclerview.widget.LinearLayoutManager import com.bruhascended.core.constants.EXTRA_NUMBER import com.bruhascended.core.data.MainDaoProvider import com.bruhascended.core.db.MessageDatabase import com.bruhascended.core.db.MessageDbFactory import com.bruhascended.core.db.ScheduledMessage import com.bruhascended.organiso.common.getSharable import com.bruhascended.organiso.common.setPrefTheme import com.bruhascended.organiso.common.setupToolbar import com.bruhascended.organiso.services.ScheduledManager import com.bruhascended.organiso.ui.scheduled.ScheduledRecyclerAdapter import com.bruhascended.organiso.ui.scheduled.ScheduledViewHolder import kotlinx.android.synthetic.main.activity_scheduled.* import java.io.File /* Copyright 2020 Chirag Kalra 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. */ class ScheduledActivity : AppCompatActivity() { private val actionCancel = 0 private val actionCopy = 1 private val actionShare = 2 private val mContext = this private val mList = ArrayList<ScheduledMessage>() private lateinit var mActionArray: Array<String> private lateinit var mClipboardManager: ClipboardManager private lateinit var mAdapter: ScheduledRecyclerAdapter private fun actionSelected(holder: ScheduledViewHolder, action: Int) { when(action) { actionCancel -> { MessageDbFactory(mContext).of(holder.message.cleanAddress).apply { ScheduledManager(mContext, manager()).remove(holder.message) close() val ind = mList.indexOf(holder.message) mList.removeAt(ind) mAdapter.notifyItemRemoved(ind) emptyList.isVisible = mList.isEmpty() } Toast.makeText( mContext, mContext.getString(R.string.deleted), Toast.LENGTH_LONG ).show() } actionCopy -> { val clip = ClipData.newPlainText("none", holder.message.text) mClipboardManager.setPrimaryClip(clip) Toast.makeText( mContext, mContext.getString(R.string.copied), Toast.LENGTH_LONG ).show() } actionShare -> { mContext.startActivity( Intent.createChooser( File(holder.message.path!!).getSharable(mContext), mContext.getString(R.string.share) ) ) } } } private fun setupSavedRecycler() { emptyList.isVisible = true recyclerView.apply { layoutManager = LinearLayoutManager(mContext).apply { orientation = LinearLayoutManager.VERTICAL } mAdapter = ScheduledRecyclerAdapter(mContext, mList) adapter = mAdapter mAdapter.setOnItemClickListener { AlertDialog.Builder(mContext).setItems( mActionArray.filter { action -> !(action == mActionArray[actionShare] && it.message.path == null) }.toTypedArray() ) { d, c -> actionSelected(it, c) d.dismiss() }.create().show() } } } private fun addToRecycler(db: MessageDatabase) { val got = db.manager().loadScheduledSync() db.close() if (got.isNotEmpty()) { recyclerView.post { emptyList.isVisible = false val pos = mList.size mList.addAll(got) mAdapter.notifyItemRangeInserted(pos, got.size) } } } override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) setPrefTheme() setContentView(R.layout.activity_scheduled) setupToolbar(toolbar) mActionArray = resources.getStringArray(R.array.scheduled_actions) mClipboardManager = mContext.getSystemService(Context.CLIPBOARD_SERVICE) as ClipboardManager val sender = intent.getStringExtra(EXTRA_NUMBER) setupSavedRecycler() Thread { val daos = MainDaoProvider(mContext).getMainDaos() if (sender == null) { for (dao in daos) { for (con in dao.loadAllSync()) { addToRecycler(MessageDbFactory(mContext).of(con.number)) } } } else { addToRecycler(MessageDbFactory(mContext).of(sender)) } }.start() } override fun onOptionsItemSelected(item: MenuItem): Boolean { return if (item.itemId == android.R.id.home) { onBackPressed() false } else { super.onOptionsItemSelected(item) } } }
36.616352
100
0.627104
41afde83d7fe5fab9e20ebe5866cfadfe8ac4c0d
551
h
C
SobotKit/SobotKit/UI/zcserver/ZCServiceDetailVC.h
ZCSDK/Sobot_iOS_SDK_Source
f9015e54283ba9ed5186deadb1e2e4d89df91e4a
[ "MIT" ]
1
2018-08-23T11:30:21.000Z
2018-08-23T11:30:21.000Z
SobotKit/SobotKit/UI/zcserver/ZCServiceDetailVC.h
ZCSDK/Sobot_iOS_SDK_Source
f9015e54283ba9ed5186deadb1e2e4d89df91e4a
[ "MIT" ]
1
2019-10-15T08:23:54.000Z
2019-10-15T08:23:54.000Z
SobotKit/SobotKit/UI/zcserver/ZCServiceDetailVC.h
ZCSDK/Sobot_iOS_SDK_Source
f9015e54283ba9ed5186deadb1e2e4d89df91e4a
[ "MIT" ]
null
null
null
// // ZCServiceDetailVC.h // SobotKit // // Created by lizhihui on 2019/4/2. // Copyright © 2019 zhichi. All rights reserved. // #import <SobotKit/SobotKit.h> NS_ASSUME_NONNULL_BEGIN @interface ZCServiceDetailVC : ZCUIBaseController @property (nonatomic,copy) NSString * docId; @property (nonatomic,copy) NSString * appId; @property (nonatomic,copy) NSString * questionTitle; @property(nonatomic,strong) void (^OpenZCSDKTypeBlock)(ZCUIBaseController *object); @property (nonatomic,strong) ZCKitInfo * kitInfo; @end NS_ASSUME_NONNULL_END
19.678571
83
0.760436
cae5b7c85bd001755004b66dcdd1b230637303a4
1,538
kt
Kotlin
plugins/network/lib/src/main/java/com/pluto/plugins/network/internal/share/ShareOptionsAdapter.kt
rishabhsinghbisht/pluto
7a07461b6e4db3bc4ded44b97b9b0533c6dadb46
[ "Apache-2.0" ]
60
2022-02-15T09:32:46.000Z
2022-03-31T07:26:22.000Z
plugins/network/lib/src/main/java/com/pluto/plugins/network/internal/share/ShareOptionsAdapter.kt
rishabhsinghbisht/pluto
7a07461b6e4db3bc4ded44b97b9b0533c6dadb46
[ "Apache-2.0" ]
6
2022-02-14T17:48:28.000Z
2022-03-27T10:28:52.000Z
plugins/network/lib/src/main/java/com/pluto/plugins/network/internal/share/ShareOptionsAdapter.kt
rishabhsinghbisht/pluto
7a07461b6e4db3bc4ded44b97b9b0533c6dadb46
[ "Apache-2.0" ]
4
2022-03-01T01:08:13.000Z
2022-03-30T09:03:54.000Z
package com.pluto.plugins.network.internal.share import android.view.ViewGroup import com.pluto.plugin.utilities.list.BaseAdapter import com.pluto.plugin.utilities.list.DiffAwareHolder import com.pluto.plugin.utilities.list.ListItem import com.pluto.plugins.network.internal.share.holders.ShareHeadingHolder import com.pluto.plugins.network.internal.share.holders.ShareOptionHolder import com.pluto.plugins.network.internal.share.holders.ShareResponseOptionHolder internal class ShareOptionsAdapter(private val listener: OnActionListener) : BaseAdapter() { override fun getItemViewType(item: ListItem): Int? { return when (item) { is ShareOptionType.All -> ITEM_TYPE_OPTION is ShareOptionType.CURL -> ITEM_TYPE_OPTION is ShareOptionType.Request -> ITEM_TYPE_OPTION is ShareOptionType.Response -> ITEM_TYPE_OPTION_RESPONSE is ShareOptionType.Header -> ITEM_TYPE_HEADER else -> null } } override fun onViewHolderCreated(parent: ViewGroup, viewType: Int): DiffAwareHolder? { return when (viewType) { ITEM_TYPE_OPTION -> ShareOptionHolder(parent, listener) ITEM_TYPE_OPTION_RESPONSE -> ShareResponseOptionHolder(parent, listener) ITEM_TYPE_HEADER -> ShareHeadingHolder(parent, listener) else -> null } } companion object { const val ITEM_TYPE_OPTION = 1000 const val ITEM_TYPE_OPTION_RESPONSE = 1001 const val ITEM_TYPE_HEADER = 1002 } }
40.473684
92
0.722367
d91a84acaf194629807e96445f9997407cfa580c
875
kt
Kotlin
app/src/main/java/com/example/anticovid/ui/main/MainViewModel.kt
KMoszczyc/Anticovid
b4f11125de1f76406d4f902a64914a5c842fd9bb
[ "MIT" ]
null
null
null
app/src/main/java/com/example/anticovid/ui/main/MainViewModel.kt
KMoszczyc/Anticovid
b4f11125de1f76406d4f902a64914a5c842fd9bb
[ "MIT" ]
null
null
null
app/src/main/java/com/example/anticovid/ui/main/MainViewModel.kt
KMoszczyc/Anticovid
b4f11125de1f76406d4f902a64914a5c842fd9bb
[ "MIT" ]
null
null
null
package com.example.anticovid.ui.main import androidx.lifecycle.LiveData import androidx.lifecycle.MutableLiveData import androidx.lifecycle.ViewModel import com.example.anticovid.data.repository.LoginRepository class MainViewModel : ViewModel() { private val loginRepository = LoginRepository() private val _mainFragmentEnum = MutableLiveData<MainFragmentEnum>() val mainFragmentEnum: LiveData<MainFragmentEnum> = _mainFragmentEnum private val _isUserSignedIn = MutableLiveData<Boolean>() val isUserSignedIn: LiveData<Boolean> = _isUserSignedIn init { _isUserSignedIn.value = loginRepository.isUserSignedIn() } fun onFragmentSwitch(selectedFragment: MainFragmentEnum) { _mainFragmentEnum.value = selectedFragment } fun signOut() { loginRepository.signOut() _isUserSignedIn.value = false } }
29.166667
72
0.76
04159737e97af1a86b6600b63059e5f6036cd015
16,724
js
JavaScript
CoreConceptsJs/2.0/CcObject.js
spatial-ucsb/ConceptsOfSpatialInformation
73d54a37ced14bc5ecb064f9d1ab8b1af8cd3c5a
[ "Apache-2.0" ]
18
2015-03-03T22:57:20.000Z
2020-06-17T10:17:58.000Z
CoreConceptsJs/2.0/CcObject.js
spatial-ucsb/ConceptsOfSpatialInformation
73d54a37ced14bc5ecb064f9d1ab8b1af8cd3c5a
[ "Apache-2.0" ]
1
2017-02-23T20:06:06.000Z
2017-02-23T20:06:06.000Z
CoreConceptsJs/2.0/CcObject.js
spatial-ucsb/ConceptsOfSpatialInformation
73d54a37ced14bc5ecb064f9d1ab8b1af8cd3c5a
[ "Apache-2.0" ]
16
2015-02-13T02:05:36.000Z
2018-09-07T04:02:13.000Z
/** * JavaScript implementation of the core concept 'object'. * The implementation has migrated from ArcGIS JavaScript API 3.x to 4.x * version: 2.0.0 * (c) Liangcun Jiang * latest change: July 27, 2017. * Dev Notes: Use GeometryEngine instead of GeometryService */ define(["dojo/_base/declare", "esri/layers/FeatureLayer", "esri/tasks/support/Query", "esri/tasks/QueryTask", "esri/geometry/Multipoint", "esri/tasks/GeometryService", "esri/geometry/geometryEngine", "esri/tasks/support/BufferParameters" ], function (declare, FeatureLayer, Query, QueryTask, Multipoint, GeometryService, geometryEngine, BufferParameters) { return declare(null, { //CcObject properties layer: null, featureSet: null, /** * CcObject constructor: Constructs an object instance from either a Map Service or Feature Service * @param url: URL to the ArcGIS Server REST resource that represents an feature service. * @param opt: optional parameters (e.g. the SQL where clause to filter features). */ constructor: function (url, opt) { if (url === null || url === "" || url === undefined) { console.error("Please enter a valid URL for the field data"); return; } var featureLayer = new FeatureLayer({ url: url }); this.id = featureLayer.id; this.layer = featureLayer; if (opt !== undefined) { // Set definition expression in constructor to only display features that satisfy the SQL clause. if (opt.SQL !== undefined) { this.layer.definitionExpression = opt.SQL; } } console.log("A CcObject instance was created."); }, /** * CcObject function: returns true if two objects (with same CRS) are in a relationship of type relType. * @param obj: the other CcObject instance * @param relType: The spatial relationship to be tested between the two CcObject. Possible values include: * contains | crosses | disjoint | equals | intersects | overlaps | relate| touches | within * Return type: Promise * Returns true if the relation of the input objects holds. */ relation: function (obj, relType) { //get self CcObject's geometry return this.getGeometry() .then(getObjGeometry) .then(checkRelation); //get obj's geometry function getObjGeometry(g1) { return obj.getGeometry().then(function (g2) { return [g1, g2]; }); } //check if the relationship exists between the two geometries function checkRelation(geoArray) { switch (relType) { case "contains": return geometryEngine.contains(geoArray[0], geoArray[1]); break; case "crosses": // returns TRUE if the intersection results in a geometry that has a dimension // that is one less than the maximum dimension of the two source geometries // and the intersection set is interior to both source geometries. return geometryEngine.crosses(geoArray[0], geoArray[1]); break; case "disjoint": return geometryEngine.disjoint(geoArray[0], geoArray[1]); break; case "equals": return geometryEngine.equals(geoArray[0], geoArray[1]); break; case "intersects": return geometryEngine.intersects(geoArray[0], geoArray[1]); break; case "overlaps": //overlaps returns TRUE only for geometries of the same dimension // and only when their intersection set results in a geometry of the same dimension. return geometryEngine.overlaps(geoArray[0], geoArray[1]); break; case "relate": return geometryEngine.relate(geoArray[0], geoArray[1], "TT*TT****"); break; case "touches": return geometryEngine.touches(geoArray[0], geoArray[1]); break; case "within": return geometryEngine.within(geoArray[0], geoArray[1]); break; default: console.error(relType + " is not a valid value for relType parameter"); return; } } }, /** * CcObject function: gets CcObject's bounds in form of a bounding box(xmin, ymin, xmax, ymax) * Return type: Promise * returns an Extent, which can be accessed using the .then() method once the promise resolves. */ bounds: function () { var query = new Query(); query.where = "1=1"; // Query for all records query.outFields = ["*"]; query.returnGeometry = true; var process = this.layer.queryExtent(query); return process.then(function (extent) { return extent; }); }, /** * CcObject function: returns a property's value * @param prop: the property name * Return type: Promise * returns the value of the property when the promise resolves. */ property: function (prop) { var query = this.layer.createQuery(); query.outFields = ["*"]; return this.layer.queryFeatures(query).then(function (featureSet) { return featureSet.features[0].attributes[prop]; }); }, /** * CcObject function: checks whether two objects are same. * @param obj: the other CcObject instance * Return type: Boolean, returns true if the two objects have the same identity. */ identity: function (obj) { return this.id === obj.id; }, /** * CcObject function: gets CcObject's geometry (can be Point, Curve, Surface, or GeometryCollection) * Return type: Promise * Uses the callback function to receive the object's geometry. */ getGeometry: function () { //var query = new Query(); //if(this.layer.definitionExpression !== null){ // query.where = this.layer.definitionExpression; //}else{ // query.where = "1=1"; // Query for all records //} //query.outFields = ["*"]; //query.returnGeometry = true; //var query = this.layer.createQuery(); var lyr = this.layer; return this.layer.then(function () { return lyr.queryFeatures().then(function (featureSet) { //Subclasses of Geometry in ArcGIS JavaScript API: Extent, Multipoint, Point, Polygon, and Polyline. var geometry; switch (featureSet.geometryType) { case "polygon": //A collection of rings ordered by their containment relationship. //This may refer to Polygon or MultiPolygon in OGC terms geometry = featureSet.features[0].geometry; for (var i = 1; i < featureSet.features.length; i++) { var rings = featureSet.features[i].geometry.rings; for (var r = 0; r < rings.length; r++) { geometry.addRing(rings[r]); } } break; case "polyline": //An ordered collection of paths. //This may refer to LineRing or MultiLineRing in OGC terms geometry = featureSet.features[0].geometry; for (var i = 1; i < featureSet.features.length; i++) { var paths = featureSet.features[i].geometry.paths; for (var p = 0; p < paths.length; p++) { geometry.addPath(paths[p]); } } break; case "multipoint": //An ordered collection of points. geometry = featureSet.features[0].geometry; for (var i = 1; i < featureSet.features.length; i++) { var points = featureSet.features[i].geometry.points; for (var p = 0; p < points.length; p++) { geometry.addPoint(points[p]); } } break; case "point": if (featureSet.features.length > 1) { var mp = new Multipoint(); for (var i = 0; i < featureSet.features.length; i++) { mp.addPoint(featureSet.features[i].geometry); } } else { geometry = featureSet.features[0].geometry; } break; case "extent": //A rectangle indicating the spatial extent of another geometry. break; default: console.log("This FeatureSet does not contain geometry"); return; } return geometry; }); }); }, /** * CcObject function: Creates buffer polygons at a specified distance around the given object. * @param distance: the distance the input object are buffered. * @param unitType: the unit for calculating each buffer distance.(case insensitive: kilometer = Kilometer) * Units can be singular or plural forms: e.g. Foot = feet * Return type: Promise * Uses the callback function to receive the buffered polygon. */ buffer: function (distance, unitType) { //This service provided by ESRI is for development and testing purposes only. //var gsUrl = "https://utility.arcgisonline.com/ArcGIS/rest/services/Geometry/GeometryServer"; var gsUrl = "https://ags-raid.geog.ucsb.edu:6443/arcgis/rest/services/Utilities/Geometry/GeometryServer"; var gs = new GeometryService(gsUrl); //Defines valid unit types here var bufferUnits = { "METER": GeometryService.UNIT_METER, "METERS": GeometryService.UNIT_METER, "KILOMETER": GeometryService.UNIT_KILOMETER, "KILOMETERS": GeometryService.UNIT_KILOMETER, "FOOT": GeometryService.UNIT_FOOT, //International foot (0.3048 meters) "FEET": GeometryService.UNIT_FOOT, "MILE": GeometryService.UNIT_STATUTE_MILE, //Miles (5,280 feet, 1,760 yards, or exactly 1,609.344 meters) "MILES": GeometryService.UNIT_STATUTE_MILE, "NAUTICAL_MILE": GeometryService.UNIT_NAUTICAL_MILE, //Nautical Miles (1,852 meters) "NAUTICAL_MILES": GeometryService.UNIT_NAUTICAL_MILE, "DEGREE": GeometryService.UNIT_DEGREE, "DEGREES": GeometryService.UNIT_DEGREE }; //setup the buffer parameters var params = new BufferParameters(); params.distances = [distance]; params.unit = bufferUnits[unitType.toUpperCase()]; //If true, all geometries buffered at a given distance are unioned into //a single (possibly multipart) polygon, and the unioned geometry is placed in the output array. params.unionResults = true; var process = this.getGeometry(); return process.then(function (geom) { console.log("Doing the buffer..."); //The Geometry Service can not buffer over 12500 (around 14000) features at one time. // The maxBufferCount property establishes the maximum number of features that can be buffered if (geom.type === "polyline" && geom.paths.length > 12500) { var p1 = geom.paths.slice(0, 12500); var g1 = geom.clone(); g1.paths = p1; params.geometries = [g1]; //do the buffer console.log("Buffering part 1..."); return gs.buffer(params).then(function (bufferedGeometries1) { console.log("Buffering part 2..."); var p2 = geom.paths.slice(12500); var g2 = geom.clone(); g2.paths = p2; params.geometries = [g2]; var gs2 = new GeometryService("https://utility.arcgisonline.com/ArcGIS/rest/services/Geometry/GeometryServer"); return gs2.buffer(params).then(function (bufferedGeometries2) { //console.log([bufferedGeometries1, bufferedGeometries2]); //console.log(bufferedGeometries1.concat(bufferedGeometries2)); var gs3 = new GeometryService(gsUrl); //constructs the set-theoretic union of the two buffered geometries console.log("Unifying two parts..."); //union function returns a "<Geometry> geometry" Object, then converts it to an Array[1] return gs3.union(bufferedGeometries1.concat(bufferedGeometries2)).then(function (geoUnion) { console.log("buffer finished!"); return geoUnion; }); }); }); } else { params.geometries = [geom]; //GeometryService buffer function returns a "<Polygon[]> geometries" Array[1], // so just return the first element: "Polygon". return gs.buffer(params).then(function (polygonArray) { return polygonArray[0]; }); } /** * The GeometryEngine has two methods for buffering geometries client-side: buffer and geodesicBuffer. * Use caution when deciding which method to use. As a general rule, (1) use geodesicBuffer if the * input geometries have a spatial reference of either WGS84 (wkid: 4326) or Web Mercator; * (2) use GeometryService.buffer() if you need to buffer geometries * with a geographic coordinate system other than WGS84 (wkid: 4326); * (3) Only use buffer when attempting to buffer geometries * with a projected coordinate system other than Web Mercator. */ //if(geom.spatialReference.isWGS84 || geom.spatialReference.isWebMercator){ // //WGS84 (wkid: 4326) or Web Mercator // return geometryEngine.geodesicBuffer(geom, distance, unitType); //}else if (geom.spatialReference.isGeographic){ // //geometries with a geographic coordinate system other than WGS84 (wkid: 4326) // return gs.buffer(params).then(function (polygonArray) { // return polygonArray[0]; // }); //}else{ // //geometries with a projected coordinate system other than Web Mercator // return geometryEngine.buffer(geom, distance, unitType); //} }); } }); });
50.678788
135
0.509507
bd87b06e23017bba9a8291d1ae6dd1edb575514b
10,857
swift
Swift
TestLBC/Views/DetailsAnnounceViewController.swift
aymen-gazdar/test_lbc
a80e7d586f2d2eda46f84a5648c585b3617486f7
[ "Unlicense" ]
null
null
null
TestLBC/Views/DetailsAnnounceViewController.swift
aymen-gazdar/test_lbc
a80e7d586f2d2eda46f84a5648c585b3617486f7
[ "Unlicense" ]
null
null
null
TestLBC/Views/DetailsAnnounceViewController.swift
aymen-gazdar/test_lbc
a80e7d586f2d2eda46f84a5648c585b3617486f7
[ "Unlicense" ]
null
null
null
// // DetailsAnnounceViewController.swift // TestLBC // // Created by Aymen on 09/03/2021. // import UIKit class DetailsAnnounceViewController: UIViewController { //MARK: var let var announce: Announce? { didSet { self.setupAnnounceInfo() } } static let kPading: CGFloat = 15.0 static let kUrgentImageViewSize: CGFloat = 20.0 //MARK: subviews var scrollView: UIScrollView = UIScrollView() var subView: UIView = UIView() var annouceImageView: UIImageView = UIImageView() var announceUrgentImageView: UIImageView = UIImageView() var announceTitleLabel: UILabel = UILabel() var announceDescriptionLabel: UILabel = UILabel() var announceDescriptionTextLabel: UILabel = UILabel() var priceAnnounceLabel: UILabel = UILabel() var categoryAnnounceLabel: UILabel = UILabel() var creationDateAnnounceLabel: UILabel = UILabel() var siretAnnounceLabel: UILabel = UILabel() //MARK: life cycle methods override func viewDidLoad() { super.viewDidLoad() self.setupUI() } //MARK: private methods private func setupAnnounceInfo(){ guard let announce = self.announce else { return } self.annouceImageView.loadImageAsync(with: announce.imagesUrl.thumb, placeHolder: "lbc_placeholder") self.announceUrgentImageView.isHidden = !announce.isUrgent self.announceTitleLabel.text = announce.title self.announceDescriptionTextLabel.text = announce.description self.priceAnnounceLabel.text = announce.price?.euroFormat self.categoryAnnounceLabel.text = announce.category?.name self.creationDateAnnounceLabel.text = announce.creationDate.stringDate if let siret = announce.siret { self.siretAnnounceLabel.text = "\(NSLocalizedString("SIRET : ", comment: "")) \(siret)" } else { self.siretAnnounceLabel.text = "" } } private func setupUI() { self.view.backgroundColor = .white self.prepareScrollView() self.prepareAnnouceImageView() self.prepareAnnounceUrgentImageView() self.prepareAnnounceTitleLabel() self.preparePriceAnnounceLabel() self.prepareCreationDateAnnounceLabel() self.prepareCategoryAnnounceLabel() self.prepareAnnounceDescriptionLabel() self.prepareAnnounceDescriptionTextLabel() self.prepareSiretAnnounceLabel() } func prepareScrollView(){ self.scrollView.translatesAutoresizingMaskIntoConstraints = false self.subView.translatesAutoresizingMaskIntoConstraints = false self.scrollView.addSubview(self.subView) self.view.addSubview(self.scrollView) NSLayoutConstraint.activate([ self.scrollView.topAnchor.constraint(equalTo: self.view.safeAreaLayoutGuide.topAnchor), self.scrollView.leadingAnchor.constraint(equalTo: self.view.safeAreaLayoutGuide.leadingAnchor), self.scrollView.trailingAnchor.constraint(equalTo: self.view.safeAreaLayoutGuide.trailingAnchor), self.scrollView.bottomAnchor.constraint(equalTo: self.view.bottomAnchor), self.scrollView.widthAnchor.constraint(equalTo: self.view.safeAreaLayoutGuide.widthAnchor), self.subView.topAnchor.constraint(equalTo: self.scrollView.topAnchor), self.subView.leadingAnchor.constraint(equalTo: self.scrollView.leadingAnchor), self.subView.trailingAnchor.constraint(equalTo: self.scrollView.trailingAnchor), self.subView.bottomAnchor.constraint(equalTo: self.scrollView.bottomAnchor), self.subView.widthAnchor.constraint(equalTo: self.view.safeAreaLayoutGuide.widthAnchor) ]) } func prepareAnnouceImageView(){ self.subView.addSubview(self.annouceImageView) self.annouceImageView.contentMode = .scaleAspectFill self.annouceImageView.translatesAutoresizingMaskIntoConstraints = false NSLayoutConstraint.activate([ self.annouceImageView.topAnchor.constraint(equalTo: self.subView.topAnchor), self.annouceImageView.widthAnchor.constraint(equalTo: self.subView.widthAnchor), self.annouceImageView.heightAnchor.constraint(equalTo: self.annouceImageView.widthAnchor) ]) } private func prepareAnnounceUrgentImageView(){ self.subView.addSubview(self.announceUrgentImageView) self.announceUrgentImageView.image = UIImage(named: "lbc_urgent_icon") self.announceUrgentImageView.contentMode = .scaleAspectFit self.announceUrgentImageView.translatesAutoresizingMaskIntoConstraints = false NSLayoutConstraint.activate([ self.announceUrgentImageView.widthAnchor.constraint(equalToConstant: Self.kUrgentImageViewSize), self.announceUrgentImageView.heightAnchor.constraint(equalTo: self.announceUrgentImageView.widthAnchor), self.announceUrgentImageView.topAnchor.constraint(equalTo: self.annouceImageView.bottomAnchor, constant: Self.kPading), self.announceUrgentImageView.trailingAnchor.constraint(equalTo: self.subView.trailingAnchor, constant: -Self.kPading) ]) } private func prepareAnnounceTitleLabel(){ self.subView.addSubview(self.announceTitleLabel) self.announceTitleLabel.textColor = .black self.announceTitleLabel.numberOfLines = 0 self.announceTitleLabel.font = UIFont.boldSystemFont(ofSize: 22) self.announceTitleLabel.translatesAutoresizingMaskIntoConstraints = false NSLayoutConstraint.activate([ self.announceTitleLabel.leadingAnchor.constraint(equalTo:self.subView.leadingAnchor, constant: Self.kPading), self.announceTitleLabel.trailingAnchor.constraint(equalTo: self.announceUrgentImageView.leadingAnchor, constant: -Self.kPading), self.announceTitleLabel.topAnchor.constraint(equalTo: self.annouceImageView.bottomAnchor, constant: Self.kPading) ]) } private func preparePriceAnnounceLabel(){ self.subView.addSubview(self.priceAnnounceLabel) self.priceAnnounceLabel.textColor = .orange self.priceAnnounceLabel.numberOfLines = 1 self.priceAnnounceLabel.font = UIFont.boldSystemFont(ofSize: 22) self.priceAnnounceLabel.translatesAutoresizingMaskIntoConstraints = false NSLayoutConstraint.activate([ self.priceAnnounceLabel.leadingAnchor.constraint(equalTo: self.announceTitleLabel.leadingAnchor), self.priceAnnounceLabel.topAnchor.constraint(equalTo: self.announceTitleLabel.bottomAnchor, constant: Self.kPading) ]) } private func prepareCreationDateAnnounceLabel(){ self.subView.addSubview(self.creationDateAnnounceLabel) self.creationDateAnnounceLabel.textColor = .black self.creationDateAnnounceLabel.numberOfLines = 1 self.creationDateAnnounceLabel.font = UIFont.boldSystemFont(ofSize: 16) self.creationDateAnnounceLabel.textColor = .darkGray self.creationDateAnnounceLabel.translatesAutoresizingMaskIntoConstraints = false NSLayoutConstraint.activate([ self.creationDateAnnounceLabel.leadingAnchor.constraint(equalTo: self.announceTitleLabel.leadingAnchor), self.creationDateAnnounceLabel.topAnchor.constraint(equalTo: self.priceAnnounceLabel.bottomAnchor, constant: Self.kPading/2) ]) } private func prepareCategoryAnnounceLabel(){ self.subView.addSubview(self.categoryAnnounceLabel) self.categoryAnnounceLabel.textColor = .darkGray self.categoryAnnounceLabel.numberOfLines = 1 self.categoryAnnounceLabel.font = UIFont.preferredFont(forTextStyle: .footnote) self.categoryAnnounceLabel.translatesAutoresizingMaskIntoConstraints = false NSLayoutConstraint.activate([ self.categoryAnnounceLabel.leadingAnchor.constraint(equalTo: self.announceTitleLabel.leadingAnchor), self.categoryAnnounceLabel.topAnchor.constraint(equalTo: self.creationDateAnnounceLabel.bottomAnchor, constant: Self.kPading/2) ]) } private func prepareAnnounceDescriptionLabel(){ self.subView.addSubview(self.announceDescriptionLabel) self.announceDescriptionLabel.text = NSLocalizedString("Description", comment: "") self.announceDescriptionLabel.textColor = .black self.announceDescriptionLabel.numberOfLines = 1 self.announceDescriptionLabel.font = UIFont.boldSystemFont(ofSize: 20) self.announceDescriptionLabel.translatesAutoresizingMaskIntoConstraints = false NSLayoutConstraint.activate([ self.announceDescriptionLabel.leadingAnchor.constraint(equalTo: self.announceTitleLabel.leadingAnchor), self.announceDescriptionLabel.topAnchor.constraint(equalTo: self.categoryAnnounceLabel.bottomAnchor, constant: Self.kPading*2) ]) } private func prepareAnnounceDescriptionTextLabel(){ self.subView.addSubview(self.announceDescriptionTextLabel) self.announceDescriptionTextLabel.textColor = .black self.announceDescriptionTextLabel.numberOfLines = 0 self.announceDescriptionTextLabel.font = UIFont.preferredFont(forTextStyle: .body) self.announceDescriptionTextLabel.translatesAutoresizingMaskIntoConstraints = false NSLayoutConstraint.activate([ self.announceDescriptionTextLabel.leadingAnchor.constraint(equalTo: self.announceTitleLabel.leadingAnchor), self.announceDescriptionTextLabel.topAnchor.constraint(equalTo: self.announceDescriptionLabel.bottomAnchor, constant: Self.kPading), self.announceDescriptionTextLabel.trailingAnchor.constraint(equalTo: self.announceUrgentImageView.leadingAnchor, constant: Self.kPading) ]) } private func prepareSiretAnnounceLabel(){ self.subView.addSubview(self.siretAnnounceLabel) self.siretAnnounceLabel.textColor = .gray self.siretAnnounceLabel.numberOfLines = 1 self.siretAnnounceLabel.font = UIFont.italicSystemFont(ofSize: 16) self.siretAnnounceLabel.translatesAutoresizingMaskIntoConstraints = false NSLayoutConstraint.activate([ self.siretAnnounceLabel.leadingAnchor.constraint(equalTo: self.announceTitleLabel.leadingAnchor), self.siretAnnounceLabel.topAnchor.constraint(equalTo: self.announceDescriptionTextLabel.bottomAnchor, constant: Self.kPading*2), self.siretAnnounceLabel.bottomAnchor.constraint(equalTo: self.subView.bottomAnchor, constant: -Self.kPading) ]) } }
45.617647
148
0.725707
1a2be726f0342cdc0c637c8e4d3c28d0ef470c69
3,520
rs
Rust
src/cpu.rs
liushiqi/riscv-simulator
d05f060b2544da61a7ce39ebc9c7035bc3bfbd93
[ "MIT" ]
null
null
null
src/cpu.rs
liushiqi/riscv-simulator
d05f060b2544da61a7ce39ebc9c7035bc3bfbd93
[ "MIT" ]
null
null
null
src/cpu.rs
liushiqi/riscv-simulator
d05f060b2544da61a7ce39ebc9c7035bc3bfbd93
[ "MIT" ]
null
null
null
use std::{ io::{stderr, Write}, ops::Range, path::PathBuf, }; use crate::{ device::{Bus, ReqType}, inst::decode_instruction, isa::{Extension, Isa, XLen}, reg_file::{RegFile, RegIndex}, SimulateResult, }; pub(crate) enum PcLength { Four, #[allow(unused)] Two, } pub struct Cpu { regs: RegFile<u64, false>, pc: u64, pc_len: PcLength, isa: Isa, bus: Bus, debug: bool, } impl Cpu { pub fn new(entry_point: u64, isa: Isa, bus: Bus, debug: bool) -> Self { Self { regs: RegFile::default(), pc: entry_point, pc_len: PcLength::Four, isa, bus, debug, } } pub fn execute(&mut self) { loop { let stderr = stderr(); let prev_pc = self.pc; let instruction = self.read_addr(self.pc, ReqType::Word(0)); if let Ok(ReqType::Word(instruction)) = instruction { let (inst, r#type) = decode_instruction(instruction, self); self.pc_len = r#type; if self.debug { write!( stderr.lock(), "0x{:016x} (0x{:08x}) {}\n", if self.get_xlen() == XLen::Bit32 { self.pc as u32 as u64 } else { self.pc }, instruction, inst ) .unwrap() } inst.exec(self); if self.pc == prev_pc { break } } else { panic!("Instruction load failed.") }; } } } impl Cpu { pub(crate) fn get_xlen(&self) -> XLen { self.isa.get_xlen() } pub(crate) fn get_xlen_num(&self) -> u64 { match self.isa.get_xlen() { XLen::Bit32 => 32, XLen::Bit64 => 64, } } pub(crate) fn have_ext(&self, ext: Extension) -> bool { self.isa.have_ext(ext) } pub(crate) fn get_pc(&self) -> u64 { self.pc } pub(crate) fn get_next_pc(&self) -> u64 { self.pc + match self.pc_len { PcLength::Four => 4, PcLength::Two => 2, } } pub(crate) fn jump_to(&mut self, destination: u64) { self.pc = destination & !1u64 } pub(crate) fn next_pc(&mut self) { self.pc += match self.pc_len { PcLength::Four => 4, PcLength::Two => 2, } } pub(crate) fn read_reg(&self, reg: RegIndex) -> u64 { self.regs.read(reg) } pub(crate) fn read_reg_zext(&self, reg: RegIndex) -> u64 { if self.get_xlen() == XLen::Bit32 { self.regs.read(reg) as u32 as u64 } else { self.regs.read(reg) } } pub(crate) fn write_register(&mut self, reg: RegIndex, data: u64) { if reg.0 != 0 { self.regs.write(reg, if self.get_xlen() == XLen::Bit32 { data as i32 as u64 } else { data }) } } pub(crate) fn read_addr(&mut self, address: u64, size: ReqType) -> SimulateResult<ReqType> { self.bus.read(if self.get_xlen() == XLen::Bit32 { address as u32 as u64 } else { address }, size) } pub(crate) fn write_addr(&mut self, address: u64, data: ReqType) -> SimulateResult<()> { self.bus.write(if self.get_xlen() == XLen::Bit32 { address as u32 as u64 } else { address }, data) } } impl Cpu { #[allow(unused)] pub fn get_data(&self, address: u64) -> u32 { self.bus.get_data(address) } #[allow(unused)] pub fn dump_ram_to_file(&self, to_file: PathBuf) -> SimulateResult<()> { self.bus.dump_ram_to_file(to_file) } #[allow(unused)] pub fn dump_ram_range(&self, range: Range<usize>) -> SimulateResult<Vec<String>> { self.bus.dump_ram_range(range) } pub fn dump_ram_range_to_file(&self, range: Range<usize>, to_file: PathBuf) -> SimulateResult<()> { self.bus.dump_ram_range_to_file(range, to_file) } }
25.693431
117
0.584943
3eea757f6baf4282863b9948b7894240765803ff
299
h
C
magpie/platforms/ios/Magpie.framework/Headers/MagpieAppController.h
Acidburn0zzz/magpie
5cc04b23babfb34b44ea57c4028d73089c6a5a2b
[ "Apache-2.0" ]
8
2015-05-19T09:41:36.000Z
2016-12-09T05:47:48.000Z
magpie/platforms/ios/Magpie.framework/Headers/MagpieAppController.h
floatinghotpot/magpie
5cc04b23babfb34b44ea57c4028d73089c6a5a2b
[ "Apache-2.0" ]
1
2015-11-18T15:07:27.000Z
2015-11-18T15:07:27.000Z
magpie/platforms/ios/Magpie.framework/Headers/MagpieAppController.h
floatinghotpot/magpie
5cc04b23babfb34b44ea57c4028d73089c6a5a2b
[ "Apache-2.0" ]
2
2015-05-19T09:41:37.000Z
2015-06-14T17:38:03.000Z
#import <UIKit/UIKit.h> @interface MagpieAppController : NSObject <UIApplicationDelegate> { } // orientation of the game - (void) setLandscape:(BOOL) landscape; // get window bounds for GL view - (CGRect) getWindowBounds; // add GL view to window - (void) setMainView:(UIView*) theview; @end
16.611111
67
0.722408
f05b7050495370891bf951394304c4e6b993404b
864
py
Python
Algorithms/MostCommonWord/mostCommonWord.py
riddhi-27/HacktoberFest2020-Contributions
0a5c39169723b3ea3b6447d4005896900dd789bc
[ "MIT" ]
null
null
null
Algorithms/MostCommonWord/mostCommonWord.py
riddhi-27/HacktoberFest2020-Contributions
0a5c39169723b3ea3b6447d4005896900dd789bc
[ "MIT" ]
null
null
null
Algorithms/MostCommonWord/mostCommonWord.py
riddhi-27/HacktoberFest2020-Contributions
0a5c39169723b3ea3b6447d4005896900dd789bc
[ "MIT" ]
null
null
null
"""Returns words from the given paragraph which has been repeated most, incase of more than one words, latest most common word is returned. """ import string def mostCommonWord(paragraph: str) -> str: # translate function maps every punctuation in given string to white space words = paragraph.translate(str.maketrans(string.punctuation, ' '*len(string.punctuation))) words = words.lower().split() unique_words = {} highest = 0 res = '' for word in words: if word not in unique_words: unique_words[word] = 0 unique_words[word] += 1 if unique_words[word] >= highest: highest = unique_words[word] res = word return res print(mostCommonWord("HacktoberFest is live! Riddhi is participating in HACKtoBERfEST.Happy Coding.")) #Output: hacktoberfest
34.56
125
0.66088
cfffc6ddf83029fe9f639751f607aa981fcbf46a
2,814
lua
Lua
projects/Phantom.JIT/Phantom.JIT.premake.lua
vlmillet/Phantom.JIT
c3a880ace39f41307325e93f05a55617cddd9b5d
[ "MIT" ]
11
2021-11-16T13:51:16.000Z
2022-03-15T08:11:33.000Z
projects/Phantom.JIT/Phantom.JIT.premake.lua
vlmillet/Phantom.JIT
c3a880ace39f41307325e93f05a55617cddd9b5d
[ "MIT" ]
null
null
null
projects/Phantom.JIT/Phantom.JIT.premake.lua
vlmillet/Phantom.JIT
c3a880ace39f41307325e93f05a55617cddd9b5d
[ "MIT" ]
2
2021-11-16T13:51:18.000Z
2021-11-17T02:33:16.000Z
Phantom_lib("Phantom.JIT", { "Phantom.Code" } -- DEPENDENCIES , function(Vars) -- include public end , function(Vars) -- include private defines { "PHANTOM_LIB_PHANTOM_JIT", "_CRT_SECURE_NO_WARNINGS" } local LLVMRoot = "dependencies/LLVM/" includedirs { LLVMRoot .. "include", } files { LLVMRoot .. "utils/LLVMVisualizers/llvm.natvis" } filter { "action:vs2015" } includedirs { LLVMRoot .. "build/vs2015/include" } filter { "action:vs2017" } includedirs { LLVMRoot .. "build/vs2017/include" } filter { "action:vs2019" } includedirs { LLVMRoot .. "build/vs2019/include" } Phantom_pch() local hauntParams = {} hauntParams["IsHaunted"] = true Phantom_plugin("Phantom.JIT", Vars, hauntParams) filter { "platforms:Win32 or x64" } warnings "Default" removeflags { "FatalWarnings" } filter {} end , function(Vars) -- link if(not Phantom_file_exists("dependencies/LLVM/CMakeLists.txt")) then error("LLVM missing, please mklink to your LLVM repository in Phantom/dependencies folder") return end local LLVMRoot = "dependencies/LLVM/" local LLVMCmakeBuildDir = "dependencies/LLVM/build/" filter { "platforms:Win32 or x64", "configurations:debug", "action:vs2015" } libdirs { LLVMCmakeBuildDir .. "vs2015/debug/lib" } filter { "platforms:Win32 or x64", "configurations:debug", "action:vs2017" } libdirs { LLVMCmakeBuildDir .. "vs2017/debug/lib" } filter { "platforms:Win32 or x64", "configurations:debug", "action:vs2019" } libdirs { LLVMCmakeBuildDir .. "vs2019/debug/lib" } filter { "platforms:Win32 or x64", "configurations:release", "action:vs2015" } libdirs { LLVMCmakeBuildDir .. "vs2015/relwithdebinfo/lib" } filter { "platforms:Win32 or x64", "configurations:release", "action:vs2017" } libdirs { LLVMCmakeBuildDir .. "vs2017/relwithdebinfo/lib" } filter { "platforms:Win32 or x64", "configurations:release", "action:vs2019" } libdirs { LLVMCmakeBuildDir .. "vs2019/relwithdebinfo/lib" } filter {} links { "LLVMJITPDB", "LLVMDemangle", "LLVMProfileData", "LLVMBinaryFormat", "LLVMGlobalISel", "LLVMDebugInfoCodeView", "LLVMDebugInfoMSF", "LLVMDebugInfoPDB", "LLVMDebugInfoDWARF", "LLVMCore", "LLVMOption", "LLVMCodeGen", "LLVMAnalysis", "LLVMTarget", "LLVMScalarOpts", "LLVMInterpreter", "LLVMSelectionDAG", "LLVMSupport", "LLVMTableGen", "LLVMX86CodeGen", "LLVMX86Desc", "LLVMX86Info", "LLVMX86AsmParser", "LLVMX86Disassembler", "LLVMMC", "LLVMMCDisassembler", "LLVMMCParser", "LLVMMCJIT", "LLVMExecutionEngine", "LLVMObject", "LLVMTransformUtils", "LLVMInstrumentation", "LLVMBitReader", "LLVMRuntimeDyld", "LLVMAsmPrinter", "LLVMRemarks", "LLVMBitstreamReader", "LLVMCFGuard", "LLVMTextAPI" } end )
27.861386
699
0.692964
bd2b11ea9992b74f61c053d911dfcaa524bea0f4
34,525
rs
Rust
pic32mx274fxxxb/src/usb.rs
kiffie/pic32-pac
0fffed8d71d1f9c7087ca7ada9141098faeb3401
[ "MIT" ]
2
2020-09-06T13:05:34.000Z
2021-05-24T19:53:51.000Z
pic32mx274fxxxb/src/usb.rs
kiffie/pic32-pac
0fffed8d71d1f9c7087ca7ada9141098faeb3401
[ "MIT" ]
2
2020-09-04T21:25:50.000Z
2020-09-08T18:50:33.000Z
pic32mx2xxfxxxb/src/usb.rs
kiffie/pic32-pac
0fffed8d71d1f9c7087ca7ada9141098faeb3401
[ "MIT" ]
2
2021-08-01T15:10:08.000Z
2021-09-22T21:59:49.000Z
#[doc = r"Register block"] #[repr(C)] pub struct RegisterBlock { #[doc = "0x00 - U1OTGIR register"] pub u1otgir: crate::Reg<u1otgir::U1OTGIR_SPEC>, #[doc = "0x04 - U1OTGIRCLR register"] pub u1otgirclr: crate::Reg<u1otgirclr::U1OTGIRCLR_SPEC>, _reserved2: [u8; 8usize], #[doc = "0x10 - U1OTGIE register"] pub u1otgie: crate::Reg<u1otgie::U1OTGIE_SPEC>, #[doc = "0x14 - U1OTGIECLR register"] pub u1otgieclr: crate::Reg<u1otgieclr::U1OTGIECLR_SPEC>, #[doc = "0x18 - U1OTGIESET register"] pub u1otgieset: crate::Reg<u1otgieset::U1OTGIESET_SPEC>, #[doc = "0x1c - U1OTGIEINV register"] pub u1otgieinv: crate::Reg<u1otgieinv::U1OTGIEINV_SPEC>, #[doc = "0x20 - U1OTGSTAT register"] pub u1otgstat: crate::Reg<u1otgstat::U1OTGSTAT_SPEC>, _reserved7: [u8; 12usize], #[doc = "0x30 - U1OTGCON register"] pub u1otgcon: crate::Reg<u1otgcon::U1OTGCON_SPEC>, #[doc = "0x34 - U1OTGCONCLR register"] pub u1otgconclr: crate::Reg<u1otgconclr::U1OTGCONCLR_SPEC>, #[doc = "0x38 - U1OTGCONSET register"] pub u1otgconset: crate::Reg<u1otgconset::U1OTGCONSET_SPEC>, #[doc = "0x3c - U1OTGCONINV register"] pub u1otgconinv: crate::Reg<u1otgconinv::U1OTGCONINV_SPEC>, #[doc = "0x40 - U1PWRC register"] pub u1pwrc: crate::Reg<u1pwrc::U1PWRC_SPEC>, #[doc = "0x44 - U1PWRCCLR register"] pub u1pwrcclr: crate::Reg<u1pwrcclr::U1PWRCCLR_SPEC>, #[doc = "0x48 - U1PWRCSET register"] pub u1pwrcset: crate::Reg<u1pwrcset::U1PWRCSET_SPEC>, #[doc = "0x4c - U1PWRCINV register"] pub u1pwrcinv: crate::Reg<u1pwrcinv::U1PWRCINV_SPEC>, _reserved15: [u8; 368usize], #[doc = "0x1c0 - U1IR register"] pub u1ir: crate::Reg<u1ir::U1IR_SPEC>, #[doc = "0x1c4 - U1IRCLR register"] pub u1irclr: crate::Reg<u1irclr::U1IRCLR_SPEC>, _reserved17: [u8; 8usize], #[doc = "0x1d0 - U1IE register"] pub u1ie: crate::Reg<u1ie::U1IE_SPEC>, #[doc = "0x1d4 - U1IECLR register"] pub u1ieclr: crate::Reg<u1ieclr::U1IECLR_SPEC>, #[doc = "0x1d8 - U1IESET register"] pub u1ieset: crate::Reg<u1ieset::U1IESET_SPEC>, #[doc = "0x1dc - U1IEINV register"] pub u1ieinv: crate::Reg<u1ieinv::U1IEINV_SPEC>, #[doc = "0x1e0 - U1EIR register"] pub u1eir: crate::Reg<u1eir::U1EIR_SPEC>, #[doc = "0x1e4 - U1EIRCLR register"] pub u1eirclr: crate::Reg<u1eirclr::U1EIRCLR_SPEC>, _reserved23: [u8; 8usize], #[doc = "0x1f0 - U1EIE register"] pub u1eie: crate::Reg<u1eie::U1EIE_SPEC>, #[doc = "0x1f4 - U1EIECLR register"] pub u1eieclr: crate::Reg<u1eieclr::U1EIECLR_SPEC>, #[doc = "0x1f8 - U1EIESET register"] pub u1eieset: crate::Reg<u1eieset::U1EIESET_SPEC>, #[doc = "0x1fc - U1EIEINV register"] pub u1eieinv: crate::Reg<u1eieinv::U1EIEINV_SPEC>, #[doc = "0x200 - U1STAT register"] pub u1stat: crate::Reg<u1stat::U1STAT_SPEC>, _reserved28: [u8; 12usize], #[doc = "0x210 - U1CON register"] pub u1con: crate::Reg<u1con::U1CON_SPEC>, #[doc = "0x214 - U1CONCLR register"] pub u1conclr: crate::Reg<u1conclr::U1CONCLR_SPEC>, #[doc = "0x218 - U1CONSET register"] pub u1conset: crate::Reg<u1conset::U1CONSET_SPEC>, #[doc = "0x21c - U1CONINV register"] pub u1coninv: crate::Reg<u1coninv::U1CONINV_SPEC>, #[doc = "0x220 - U1ADDR register"] pub u1addr: crate::Reg<u1addr::U1ADDR_SPEC>, #[doc = "0x224 - U1ADDRCLR register"] pub u1addrclr: crate::Reg<u1addrclr::U1ADDRCLR_SPEC>, #[doc = "0x228 - U1ADDRSET register"] pub u1addrset: crate::Reg<u1addrset::U1ADDRSET_SPEC>, #[doc = "0x22c - U1ADDRINV register"] pub u1addrinv: crate::Reg<u1addrinv::U1ADDRINV_SPEC>, #[doc = "0x230 - U1BDTP1 register"] pub u1bdtp1: crate::Reg<u1bdtp1::U1BDTP1_SPEC>, #[doc = "0x234 - U1BDTP1CLR register"] pub u1bdtp1clr: crate::Reg<u1bdtp1clr::U1BDTP1CLR_SPEC>, #[doc = "0x238 - U1BDTP1SET register"] pub u1bdtp1set: crate::Reg<u1bdtp1set::U1BDTP1SET_SPEC>, #[doc = "0x23c - U1BDTP1INV register"] pub u1bdtp1inv: crate::Reg<u1bdtp1inv::U1BDTP1INV_SPEC>, #[doc = "0x240 - U1FRML register"] pub u1frml: crate::Reg<u1frml::U1FRML_SPEC>, _reserved41: [u8; 12usize], #[doc = "0x250 - U1FRMH register"] pub u1frmh: crate::Reg<u1frmh::U1FRMH_SPEC>, _reserved42: [u8; 12usize], #[doc = "0x260 - U1TOK register"] pub u1tok: crate::Reg<u1tok::U1TOK_SPEC>, #[doc = "0x264 - U1TOKCLR register"] pub u1tokclr: crate::Reg<u1tokclr::U1TOKCLR_SPEC>, #[doc = "0x268 - U1TOKSET register"] pub u1tokset: crate::Reg<u1tokset::U1TOKSET_SPEC>, #[doc = "0x26c - U1TOKINV register"] pub u1tokinv: crate::Reg<u1tokinv::U1TOKINV_SPEC>, #[doc = "0x270 - U1SOF register"] pub u1sof: crate::Reg<u1sof::U1SOF_SPEC>, #[doc = "0x274 - U1SOFCLR register"] pub u1sofclr: crate::Reg<u1sofclr::U1SOFCLR_SPEC>, #[doc = "0x278 - U1SOFSET register"] pub u1sofset: crate::Reg<u1sofset::U1SOFSET_SPEC>, #[doc = "0x27c - U1SOFINV register"] pub u1sofinv: crate::Reg<u1sofinv::U1SOFINV_SPEC>, #[doc = "0x280 - U1BDTP2 register"] pub u1bdtp2: crate::Reg<u1bdtp2::U1BDTP2_SPEC>, #[doc = "0x284 - U1BDTP2CLR register"] pub u1bdtp2clr: crate::Reg<u1bdtp2clr::U1BDTP2CLR_SPEC>, #[doc = "0x288 - U1BDTP2SET register"] pub u1bdtp2set: crate::Reg<u1bdtp2set::U1BDTP2SET_SPEC>, #[doc = "0x28c - U1BDTP2INV register"] pub u1bdtp2inv: crate::Reg<u1bdtp2inv::U1BDTP2INV_SPEC>, #[doc = "0x290 - U1BDTP3 register"] pub u1bdtp3: crate::Reg<u1bdtp3::U1BDTP3_SPEC>, #[doc = "0x294 - U1BDTP3CLR register"] pub u1bdtp3clr: crate::Reg<u1bdtp3clr::U1BDTP3CLR_SPEC>, #[doc = "0x298 - U1BDTP3SET register"] pub u1bdtp3set: crate::Reg<u1bdtp3set::U1BDTP3SET_SPEC>, #[doc = "0x29c - U1BDTP3INV register"] pub u1bdtp3inv: crate::Reg<u1bdtp3inv::U1BDTP3INV_SPEC>, #[doc = "0x2a0 - U1CNFG1 register"] pub u1cnfg1: crate::Reg<u1cnfg1::U1CNFG1_SPEC>, #[doc = "0x2a4 - U1CNFG1CLR register"] pub u1cnfg1clr: crate::Reg<u1cnfg1clr::U1CNFG1CLR_SPEC>, #[doc = "0x2a8 - U1CNFG1SET register"] pub u1cnfg1set: crate::Reg<u1cnfg1set::U1CNFG1SET_SPEC>, #[doc = "0x2ac - U1CNFG1INV register"] pub u1cnfg1inv: crate::Reg<u1cnfg1inv::U1CNFG1INV_SPEC>, _reserved62: [u8; 16usize], #[doc = "0x2c0 - U1EP0 register"] pub u1ep0: crate::Reg<u1ep0::U1EP0_SPEC>, #[doc = "0x2c4 - U1EP0CLR register"] pub u1ep0clr: crate::Reg<u1ep0clr::U1EP0CLR_SPEC>, #[doc = "0x2c8 - U1EP0SET register"] pub u1ep0set: crate::Reg<u1ep0set::U1EP0SET_SPEC>, #[doc = "0x2cc - U1EP0INV register"] pub u1ep0inv: crate::Reg<u1ep0inv::U1EP0INV_SPEC>, #[doc = "0x2d0 - U1EP1 register"] pub u1ep1: crate::Reg<u1ep1::U1EP1_SPEC>, #[doc = "0x2d4 - U1EP1CLR register"] pub u1ep1clr: crate::Reg<u1ep1clr::U1EP1CLR_SPEC>, #[doc = "0x2d8 - U1EP1SET register"] pub u1ep1set: crate::Reg<u1ep1set::U1EP1SET_SPEC>, #[doc = "0x2dc - U1EP1INV register"] pub u1ep1inv: crate::Reg<u1ep1inv::U1EP1INV_SPEC>, #[doc = "0x2e0 - U1EP2 register"] pub u1ep2: crate::Reg<u1ep2::U1EP2_SPEC>, #[doc = "0x2e4 - U1EP2CLR register"] pub u1ep2clr: crate::Reg<u1ep2clr::U1EP2CLR_SPEC>, #[doc = "0x2e8 - U1EP2SET register"] pub u1ep2set: crate::Reg<u1ep2set::U1EP2SET_SPEC>, #[doc = "0x2ec - U1EP2INV register"] pub u1ep2inv: crate::Reg<u1ep2inv::U1EP2INV_SPEC>, #[doc = "0x2f0 - U1EP3 register"] pub u1ep3: crate::Reg<u1ep3::U1EP3_SPEC>, #[doc = "0x2f4 - U1EP3CLR register"] pub u1ep3clr: crate::Reg<u1ep3clr::U1EP3CLR_SPEC>, #[doc = "0x2f8 - U1EP3SET register"] pub u1ep3set: crate::Reg<u1ep3set::U1EP3SET_SPEC>, #[doc = "0x2fc - U1EP3INV register"] pub u1ep3inv: crate::Reg<u1ep3inv::U1EP3INV_SPEC>, #[doc = "0x300 - U1EP4 register"] pub u1ep4: crate::Reg<u1ep4::U1EP4_SPEC>, #[doc = "0x304 - U1EP4CLR register"] pub u1ep4clr: crate::Reg<u1ep4clr::U1EP4CLR_SPEC>, #[doc = "0x308 - U1EP4SET register"] pub u1ep4set: crate::Reg<u1ep4set::U1EP4SET_SPEC>, #[doc = "0x30c - U1EP4INV register"] pub u1ep4inv: crate::Reg<u1ep4inv::U1EP4INV_SPEC>, #[doc = "0x310 - U1EP5 register"] pub u1ep5: crate::Reg<u1ep5::U1EP5_SPEC>, #[doc = "0x314 - U1EP5CLR register"] pub u1ep5clr: crate::Reg<u1ep5clr::U1EP5CLR_SPEC>, #[doc = "0x318 - U1EP5SET register"] pub u1ep5set: crate::Reg<u1ep5set::U1EP5SET_SPEC>, #[doc = "0x31c - U1EP5INV register"] pub u1ep5inv: crate::Reg<u1ep5inv::U1EP5INV_SPEC>, #[doc = "0x320 - U1EP6 register"] pub u1ep6: crate::Reg<u1ep6::U1EP6_SPEC>, #[doc = "0x324 - U1EP6CLR register"] pub u1ep6clr: crate::Reg<u1ep6clr::U1EP6CLR_SPEC>, #[doc = "0x328 - U1EP6SET register"] pub u1ep6set: crate::Reg<u1ep6set::U1EP6SET_SPEC>, #[doc = "0x32c - U1EP6INV register"] pub u1ep6inv: crate::Reg<u1ep6inv::U1EP6INV_SPEC>, #[doc = "0x330 - U1EP7 register"] pub u1ep7: crate::Reg<u1ep7::U1EP7_SPEC>, #[doc = "0x334 - U1EP7CLR register"] pub u1ep7clr: crate::Reg<u1ep7clr::U1EP7CLR_SPEC>, #[doc = "0x338 - U1EP7SET register"] pub u1ep7set: crate::Reg<u1ep7set::U1EP7SET_SPEC>, #[doc = "0x33c - U1EP7INV register"] pub u1ep7inv: crate::Reg<u1ep7inv::U1EP7INV_SPEC>, #[doc = "0x340 - U1EP8 register"] pub u1ep8: crate::Reg<u1ep8::U1EP8_SPEC>, #[doc = "0x344 - U1EP8CLR register"] pub u1ep8clr: crate::Reg<u1ep8clr::U1EP8CLR_SPEC>, #[doc = "0x348 - U1EP8SET register"] pub u1ep8set: crate::Reg<u1ep8set::U1EP8SET_SPEC>, #[doc = "0x34c - U1EP8INV register"] pub u1ep8inv: crate::Reg<u1ep8inv::U1EP8INV_SPEC>, #[doc = "0x350 - U1EP9 register"] pub u1ep9: crate::Reg<u1ep9::U1EP9_SPEC>, #[doc = "0x354 - U1EP9CLR register"] pub u1ep9clr: crate::Reg<u1ep9clr::U1EP9CLR_SPEC>, #[doc = "0x358 - U1EP9SET register"] pub u1ep9set: crate::Reg<u1ep9set::U1EP9SET_SPEC>, #[doc = "0x35c - U1EP9INV register"] pub u1ep9inv: crate::Reg<u1ep9inv::U1EP9INV_SPEC>, #[doc = "0x360 - U1EP10 register"] pub u1ep10: crate::Reg<u1ep10::U1EP10_SPEC>, #[doc = "0x364 - U1EP10CLR register"] pub u1ep10clr: crate::Reg<u1ep10clr::U1EP10CLR_SPEC>, #[doc = "0x368 - U1EP10SET register"] pub u1ep10set: crate::Reg<u1ep10set::U1EP10SET_SPEC>, #[doc = "0x36c - U1EP10INV register"] pub u1ep10inv: crate::Reg<u1ep10inv::U1EP10INV_SPEC>, #[doc = "0x370 - U1EP11 register"] pub u1ep11: crate::Reg<u1ep11::U1EP11_SPEC>, #[doc = "0x374 - U1EP11CLR register"] pub u1ep11clr: crate::Reg<u1ep11clr::U1EP11CLR_SPEC>, #[doc = "0x378 - U1EP11SET register"] pub u1ep11set: crate::Reg<u1ep11set::U1EP11SET_SPEC>, #[doc = "0x37c - U1EP11INV register"] pub u1ep11inv: crate::Reg<u1ep11inv::U1EP11INV_SPEC>, #[doc = "0x380 - U1EP12 register"] pub u1ep12: crate::Reg<u1ep12::U1EP12_SPEC>, #[doc = "0x384 - U1EP12CLR register"] pub u1ep12clr: crate::Reg<u1ep12clr::U1EP12CLR_SPEC>, #[doc = "0x388 - U1EP12SET register"] pub u1ep12set: crate::Reg<u1ep12set::U1EP12SET_SPEC>, #[doc = "0x38c - U1EP12INV register"] pub u1ep12inv: crate::Reg<u1ep12inv::U1EP12INV_SPEC>, #[doc = "0x390 - U1EP13 register"] pub u1ep13: crate::Reg<u1ep13::U1EP13_SPEC>, #[doc = "0x394 - U1EP13CLR register"] pub u1ep13clr: crate::Reg<u1ep13clr::U1EP13CLR_SPEC>, #[doc = "0x398 - U1EP13SET register"] pub u1ep13set: crate::Reg<u1ep13set::U1EP13SET_SPEC>, #[doc = "0x39c - U1EP13INV register"] pub u1ep13inv: crate::Reg<u1ep13inv::U1EP13INV_SPEC>, #[doc = "0x3a0 - U1EP14 register"] pub u1ep14: crate::Reg<u1ep14::U1EP14_SPEC>, #[doc = "0x3a4 - U1EP14CLR register"] pub u1ep14clr: crate::Reg<u1ep14clr::U1EP14CLR_SPEC>, #[doc = "0x3a8 - U1EP14SET register"] pub u1ep14set: crate::Reg<u1ep14set::U1EP14SET_SPEC>, #[doc = "0x3ac - U1EP14INV register"] pub u1ep14inv: crate::Reg<u1ep14inv::U1EP14INV_SPEC>, #[doc = "0x3b0 - U1EP15 register"] pub u1ep15: crate::Reg<u1ep15::U1EP15_SPEC>, #[doc = "0x3b4 - U1EP15CLR register"] pub u1ep15clr: crate::Reg<u1ep15clr::U1EP15CLR_SPEC>, #[doc = "0x3b8 - U1EP15SET register"] pub u1ep15set: crate::Reg<u1ep15set::U1EP15SET_SPEC>, #[doc = "0x3bc - U1EP15INV register"] pub u1ep15inv: crate::Reg<u1ep15inv::U1EP15INV_SPEC>, } #[doc = "U1OTGIR register accessor: an alias for `Reg<U1OTGIR_SPEC>`"] pub type U1OTGIR = crate::Reg<u1otgir::U1OTGIR_SPEC>; #[doc = "U1OTGIR register"] pub mod u1otgir; #[doc = "U1OTGIRCLR register accessor: an alias for `Reg<U1OTGIRCLR_SPEC>`"] pub type U1OTGIRCLR = crate::Reg<u1otgirclr::U1OTGIRCLR_SPEC>; #[doc = "U1OTGIRCLR register"] pub mod u1otgirclr; #[doc = "U1OTGIE register accessor: an alias for `Reg<U1OTGIE_SPEC>`"] pub type U1OTGIE = crate::Reg<u1otgie::U1OTGIE_SPEC>; #[doc = "U1OTGIE register"] pub mod u1otgie; #[doc = "U1OTGIECLR register accessor: an alias for `Reg<U1OTGIECLR_SPEC>`"] pub type U1OTGIECLR = crate::Reg<u1otgieclr::U1OTGIECLR_SPEC>; #[doc = "U1OTGIECLR register"] pub mod u1otgieclr; #[doc = "U1OTGIESET register accessor: an alias for `Reg<U1OTGIESET_SPEC>`"] pub type U1OTGIESET = crate::Reg<u1otgieset::U1OTGIESET_SPEC>; #[doc = "U1OTGIESET register"] pub mod u1otgieset; #[doc = "U1OTGIEINV register accessor: an alias for `Reg<U1OTGIEINV_SPEC>`"] pub type U1OTGIEINV = crate::Reg<u1otgieinv::U1OTGIEINV_SPEC>; #[doc = "U1OTGIEINV register"] pub mod u1otgieinv; #[doc = "U1OTGSTAT register accessor: an alias for `Reg<U1OTGSTAT_SPEC>`"] pub type U1OTGSTAT = crate::Reg<u1otgstat::U1OTGSTAT_SPEC>; #[doc = "U1OTGSTAT register"] pub mod u1otgstat; #[doc = "U1OTGCON register accessor: an alias for `Reg<U1OTGCON_SPEC>`"] pub type U1OTGCON = crate::Reg<u1otgcon::U1OTGCON_SPEC>; #[doc = "U1OTGCON register"] pub mod u1otgcon; #[doc = "U1OTGCONCLR register accessor: an alias for `Reg<U1OTGCONCLR_SPEC>`"] pub type U1OTGCONCLR = crate::Reg<u1otgconclr::U1OTGCONCLR_SPEC>; #[doc = "U1OTGCONCLR register"] pub mod u1otgconclr; #[doc = "U1OTGCONSET register accessor: an alias for `Reg<U1OTGCONSET_SPEC>`"] pub type U1OTGCONSET = crate::Reg<u1otgconset::U1OTGCONSET_SPEC>; #[doc = "U1OTGCONSET register"] pub mod u1otgconset; #[doc = "U1OTGCONINV register accessor: an alias for `Reg<U1OTGCONINV_SPEC>`"] pub type U1OTGCONINV = crate::Reg<u1otgconinv::U1OTGCONINV_SPEC>; #[doc = "U1OTGCONINV register"] pub mod u1otgconinv; #[doc = "U1PWRC register accessor: an alias for `Reg<U1PWRC_SPEC>`"] pub type U1PWRC = crate::Reg<u1pwrc::U1PWRC_SPEC>; #[doc = "U1PWRC register"] pub mod u1pwrc; #[doc = "U1PWRCCLR register accessor: an alias for `Reg<U1PWRCCLR_SPEC>`"] pub type U1PWRCCLR = crate::Reg<u1pwrcclr::U1PWRCCLR_SPEC>; #[doc = "U1PWRCCLR register"] pub mod u1pwrcclr; #[doc = "U1PWRCSET register accessor: an alias for `Reg<U1PWRCSET_SPEC>`"] pub type U1PWRCSET = crate::Reg<u1pwrcset::U1PWRCSET_SPEC>; #[doc = "U1PWRCSET register"] pub mod u1pwrcset; #[doc = "U1PWRCINV register accessor: an alias for `Reg<U1PWRCINV_SPEC>`"] pub type U1PWRCINV = crate::Reg<u1pwrcinv::U1PWRCINV_SPEC>; #[doc = "U1PWRCINV register"] pub mod u1pwrcinv; #[doc = "U1IR register accessor: an alias for `Reg<U1IR_SPEC>`"] pub type U1IR = crate::Reg<u1ir::U1IR_SPEC>; #[doc = "U1IR register"] pub mod u1ir; #[doc = "U1IRCLR register accessor: an alias for `Reg<U1IRCLR_SPEC>`"] pub type U1IRCLR = crate::Reg<u1irclr::U1IRCLR_SPEC>; #[doc = "U1IRCLR register"] pub mod u1irclr; #[doc = "U1IE register accessor: an alias for `Reg<U1IE_SPEC>`"] pub type U1IE = crate::Reg<u1ie::U1IE_SPEC>; #[doc = "U1IE register"] pub mod u1ie; #[doc = "U1IECLR register accessor: an alias for `Reg<U1IECLR_SPEC>`"] pub type U1IECLR = crate::Reg<u1ieclr::U1IECLR_SPEC>; #[doc = "U1IECLR register"] pub mod u1ieclr; #[doc = "U1IESET register accessor: an alias for `Reg<U1IESET_SPEC>`"] pub type U1IESET = crate::Reg<u1ieset::U1IESET_SPEC>; #[doc = "U1IESET register"] pub mod u1ieset; #[doc = "U1IEINV register accessor: an alias for `Reg<U1IEINV_SPEC>`"] pub type U1IEINV = crate::Reg<u1ieinv::U1IEINV_SPEC>; #[doc = "U1IEINV register"] pub mod u1ieinv; #[doc = "U1EIR register accessor: an alias for `Reg<U1EIR_SPEC>`"] pub type U1EIR = crate::Reg<u1eir::U1EIR_SPEC>; #[doc = "U1EIR register"] pub mod u1eir; #[doc = "U1EIRCLR register accessor: an alias for `Reg<U1EIRCLR_SPEC>`"] pub type U1EIRCLR = crate::Reg<u1eirclr::U1EIRCLR_SPEC>; #[doc = "U1EIRCLR register"] pub mod u1eirclr; #[doc = "U1EIE register accessor: an alias for `Reg<U1EIE_SPEC>`"] pub type U1EIE = crate::Reg<u1eie::U1EIE_SPEC>; #[doc = "U1EIE register"] pub mod u1eie; #[doc = "U1EIECLR register accessor: an alias for `Reg<U1EIECLR_SPEC>`"] pub type U1EIECLR = crate::Reg<u1eieclr::U1EIECLR_SPEC>; #[doc = "U1EIECLR register"] pub mod u1eieclr; #[doc = "U1EIESET register accessor: an alias for `Reg<U1EIESET_SPEC>`"] pub type U1EIESET = crate::Reg<u1eieset::U1EIESET_SPEC>; #[doc = "U1EIESET register"] pub mod u1eieset; #[doc = "U1EIEINV register accessor: an alias for `Reg<U1EIEINV_SPEC>`"] pub type U1EIEINV = crate::Reg<u1eieinv::U1EIEINV_SPEC>; #[doc = "U1EIEINV register"] pub mod u1eieinv; #[doc = "U1STAT register accessor: an alias for `Reg<U1STAT_SPEC>`"] pub type U1STAT = crate::Reg<u1stat::U1STAT_SPEC>; #[doc = "U1STAT register"] pub mod u1stat; #[doc = "U1CON register accessor: an alias for `Reg<U1CON_SPEC>`"] pub type U1CON = crate::Reg<u1con::U1CON_SPEC>; #[doc = "U1CON register"] pub mod u1con; #[doc = "U1CONCLR register accessor: an alias for `Reg<U1CONCLR_SPEC>`"] pub type U1CONCLR = crate::Reg<u1conclr::U1CONCLR_SPEC>; #[doc = "U1CONCLR register"] pub mod u1conclr; #[doc = "U1CONSET register accessor: an alias for `Reg<U1CONSET_SPEC>`"] pub type U1CONSET = crate::Reg<u1conset::U1CONSET_SPEC>; #[doc = "U1CONSET register"] pub mod u1conset; #[doc = "U1CONINV register accessor: an alias for `Reg<U1CONINV_SPEC>`"] pub type U1CONINV = crate::Reg<u1coninv::U1CONINV_SPEC>; #[doc = "U1CONINV register"] pub mod u1coninv; #[doc = "U1ADDR register accessor: an alias for `Reg<U1ADDR_SPEC>`"] pub type U1ADDR = crate::Reg<u1addr::U1ADDR_SPEC>; #[doc = "U1ADDR register"] pub mod u1addr; #[doc = "U1ADDRCLR register accessor: an alias for `Reg<U1ADDRCLR_SPEC>`"] pub type U1ADDRCLR = crate::Reg<u1addrclr::U1ADDRCLR_SPEC>; #[doc = "U1ADDRCLR register"] pub mod u1addrclr; #[doc = "U1ADDRSET register accessor: an alias for `Reg<U1ADDRSET_SPEC>`"] pub type U1ADDRSET = crate::Reg<u1addrset::U1ADDRSET_SPEC>; #[doc = "U1ADDRSET register"] pub mod u1addrset; #[doc = "U1ADDRINV register accessor: an alias for `Reg<U1ADDRINV_SPEC>`"] pub type U1ADDRINV = crate::Reg<u1addrinv::U1ADDRINV_SPEC>; #[doc = "U1ADDRINV register"] pub mod u1addrinv; #[doc = "U1BDTP1 register accessor: an alias for `Reg<U1BDTP1_SPEC>`"] pub type U1BDTP1 = crate::Reg<u1bdtp1::U1BDTP1_SPEC>; #[doc = "U1BDTP1 register"] pub mod u1bdtp1; #[doc = "U1BDTP1CLR register accessor: an alias for `Reg<U1BDTP1CLR_SPEC>`"] pub type U1BDTP1CLR = crate::Reg<u1bdtp1clr::U1BDTP1CLR_SPEC>; #[doc = "U1BDTP1CLR register"] pub mod u1bdtp1clr; #[doc = "U1BDTP1SET register accessor: an alias for `Reg<U1BDTP1SET_SPEC>`"] pub type U1BDTP1SET = crate::Reg<u1bdtp1set::U1BDTP1SET_SPEC>; #[doc = "U1BDTP1SET register"] pub mod u1bdtp1set; #[doc = "U1BDTP1INV register accessor: an alias for `Reg<U1BDTP1INV_SPEC>`"] pub type U1BDTP1INV = crate::Reg<u1bdtp1inv::U1BDTP1INV_SPEC>; #[doc = "U1BDTP1INV register"] pub mod u1bdtp1inv; #[doc = "U1FRML register accessor: an alias for `Reg<U1FRML_SPEC>`"] pub type U1FRML = crate::Reg<u1frml::U1FRML_SPEC>; #[doc = "U1FRML register"] pub mod u1frml; #[doc = "U1FRMH register accessor: an alias for `Reg<U1FRMH_SPEC>`"] pub type U1FRMH = crate::Reg<u1frmh::U1FRMH_SPEC>; #[doc = "U1FRMH register"] pub mod u1frmh; #[doc = "U1TOK register accessor: an alias for `Reg<U1TOK_SPEC>`"] pub type U1TOK = crate::Reg<u1tok::U1TOK_SPEC>; #[doc = "U1TOK register"] pub mod u1tok; #[doc = "U1TOKCLR register accessor: an alias for `Reg<U1TOKCLR_SPEC>`"] pub type U1TOKCLR = crate::Reg<u1tokclr::U1TOKCLR_SPEC>; #[doc = "U1TOKCLR register"] pub mod u1tokclr; #[doc = "U1TOKSET register accessor: an alias for `Reg<U1TOKSET_SPEC>`"] pub type U1TOKSET = crate::Reg<u1tokset::U1TOKSET_SPEC>; #[doc = "U1TOKSET register"] pub mod u1tokset; #[doc = "U1TOKINV register accessor: an alias for `Reg<U1TOKINV_SPEC>`"] pub type U1TOKINV = crate::Reg<u1tokinv::U1TOKINV_SPEC>; #[doc = "U1TOKINV register"] pub mod u1tokinv; #[doc = "U1SOF register accessor: an alias for `Reg<U1SOF_SPEC>`"] pub type U1SOF = crate::Reg<u1sof::U1SOF_SPEC>; #[doc = "U1SOF register"] pub mod u1sof; #[doc = "U1SOFCLR register accessor: an alias for `Reg<U1SOFCLR_SPEC>`"] pub type U1SOFCLR = crate::Reg<u1sofclr::U1SOFCLR_SPEC>; #[doc = "U1SOFCLR register"] pub mod u1sofclr; #[doc = "U1SOFSET register accessor: an alias for `Reg<U1SOFSET_SPEC>`"] pub type U1SOFSET = crate::Reg<u1sofset::U1SOFSET_SPEC>; #[doc = "U1SOFSET register"] pub mod u1sofset; #[doc = "U1SOFINV register accessor: an alias for `Reg<U1SOFINV_SPEC>`"] pub type U1SOFINV = crate::Reg<u1sofinv::U1SOFINV_SPEC>; #[doc = "U1SOFINV register"] pub mod u1sofinv; #[doc = "U1BDTP2 register accessor: an alias for `Reg<U1BDTP2_SPEC>`"] pub type U1BDTP2 = crate::Reg<u1bdtp2::U1BDTP2_SPEC>; #[doc = "U1BDTP2 register"] pub mod u1bdtp2; #[doc = "U1BDTP2CLR register accessor: an alias for `Reg<U1BDTP2CLR_SPEC>`"] pub type U1BDTP2CLR = crate::Reg<u1bdtp2clr::U1BDTP2CLR_SPEC>; #[doc = "U1BDTP2CLR register"] pub mod u1bdtp2clr; #[doc = "U1BDTP2SET register accessor: an alias for `Reg<U1BDTP2SET_SPEC>`"] pub type U1BDTP2SET = crate::Reg<u1bdtp2set::U1BDTP2SET_SPEC>; #[doc = "U1BDTP2SET register"] pub mod u1bdtp2set; #[doc = "U1BDTP2INV register accessor: an alias for `Reg<U1BDTP2INV_SPEC>`"] pub type U1BDTP2INV = crate::Reg<u1bdtp2inv::U1BDTP2INV_SPEC>; #[doc = "U1BDTP2INV register"] pub mod u1bdtp2inv; #[doc = "U1BDTP3 register accessor: an alias for `Reg<U1BDTP3_SPEC>`"] pub type U1BDTP3 = crate::Reg<u1bdtp3::U1BDTP3_SPEC>; #[doc = "U1BDTP3 register"] pub mod u1bdtp3; #[doc = "U1BDTP3CLR register accessor: an alias for `Reg<U1BDTP3CLR_SPEC>`"] pub type U1BDTP3CLR = crate::Reg<u1bdtp3clr::U1BDTP3CLR_SPEC>; #[doc = "U1BDTP3CLR register"] pub mod u1bdtp3clr; #[doc = "U1BDTP3SET register accessor: an alias for `Reg<U1BDTP3SET_SPEC>`"] pub type U1BDTP3SET = crate::Reg<u1bdtp3set::U1BDTP3SET_SPEC>; #[doc = "U1BDTP3SET register"] pub mod u1bdtp3set; #[doc = "U1BDTP3INV register accessor: an alias for `Reg<U1BDTP3INV_SPEC>`"] pub type U1BDTP3INV = crate::Reg<u1bdtp3inv::U1BDTP3INV_SPEC>; #[doc = "U1BDTP3INV register"] pub mod u1bdtp3inv; #[doc = "U1CNFG1 register accessor: an alias for `Reg<U1CNFG1_SPEC>`"] pub type U1CNFG1 = crate::Reg<u1cnfg1::U1CNFG1_SPEC>; #[doc = "U1CNFG1 register"] pub mod u1cnfg1; #[doc = "U1CNFG1CLR register accessor: an alias for `Reg<U1CNFG1CLR_SPEC>`"] pub type U1CNFG1CLR = crate::Reg<u1cnfg1clr::U1CNFG1CLR_SPEC>; #[doc = "U1CNFG1CLR register"] pub mod u1cnfg1clr; #[doc = "U1CNFG1SET register accessor: an alias for `Reg<U1CNFG1SET_SPEC>`"] pub type U1CNFG1SET = crate::Reg<u1cnfg1set::U1CNFG1SET_SPEC>; #[doc = "U1CNFG1SET register"] pub mod u1cnfg1set; #[doc = "U1CNFG1INV register accessor: an alias for `Reg<U1CNFG1INV_SPEC>`"] pub type U1CNFG1INV = crate::Reg<u1cnfg1inv::U1CNFG1INV_SPEC>; #[doc = "U1CNFG1INV register"] pub mod u1cnfg1inv; #[doc = "U1EP0 register accessor: an alias for `Reg<U1EP0_SPEC>`"] pub type U1EP0 = crate::Reg<u1ep0::U1EP0_SPEC>; #[doc = "U1EP0 register"] pub mod u1ep0; #[doc = "U1EP0CLR register accessor: an alias for `Reg<U1EP0CLR_SPEC>`"] pub type U1EP0CLR = crate::Reg<u1ep0clr::U1EP0CLR_SPEC>; #[doc = "U1EP0CLR register"] pub mod u1ep0clr; #[doc = "U1EP0SET register accessor: an alias for `Reg<U1EP0SET_SPEC>`"] pub type U1EP0SET = crate::Reg<u1ep0set::U1EP0SET_SPEC>; #[doc = "U1EP0SET register"] pub mod u1ep0set; #[doc = "U1EP0INV register accessor: an alias for `Reg<U1EP0INV_SPEC>`"] pub type U1EP0INV = crate::Reg<u1ep0inv::U1EP0INV_SPEC>; #[doc = "U1EP0INV register"] pub mod u1ep0inv; #[doc = "U1EP1 register accessor: an alias for `Reg<U1EP1_SPEC>`"] pub type U1EP1 = crate::Reg<u1ep1::U1EP1_SPEC>; #[doc = "U1EP1 register"] pub mod u1ep1; #[doc = "U1EP1CLR register accessor: an alias for `Reg<U1EP1CLR_SPEC>`"] pub type U1EP1CLR = crate::Reg<u1ep1clr::U1EP1CLR_SPEC>; #[doc = "U1EP1CLR register"] pub mod u1ep1clr; #[doc = "U1EP1SET register accessor: an alias for `Reg<U1EP1SET_SPEC>`"] pub type U1EP1SET = crate::Reg<u1ep1set::U1EP1SET_SPEC>; #[doc = "U1EP1SET register"] pub mod u1ep1set; #[doc = "U1EP1INV register accessor: an alias for `Reg<U1EP1INV_SPEC>`"] pub type U1EP1INV = crate::Reg<u1ep1inv::U1EP1INV_SPEC>; #[doc = "U1EP1INV register"] pub mod u1ep1inv; #[doc = "U1EP2 register accessor: an alias for `Reg<U1EP2_SPEC>`"] pub type U1EP2 = crate::Reg<u1ep2::U1EP2_SPEC>; #[doc = "U1EP2 register"] pub mod u1ep2; #[doc = "U1EP2CLR register accessor: an alias for `Reg<U1EP2CLR_SPEC>`"] pub type U1EP2CLR = crate::Reg<u1ep2clr::U1EP2CLR_SPEC>; #[doc = "U1EP2CLR register"] pub mod u1ep2clr; #[doc = "U1EP2SET register accessor: an alias for `Reg<U1EP2SET_SPEC>`"] pub type U1EP2SET = crate::Reg<u1ep2set::U1EP2SET_SPEC>; #[doc = "U1EP2SET register"] pub mod u1ep2set; #[doc = "U1EP2INV register accessor: an alias for `Reg<U1EP2INV_SPEC>`"] pub type U1EP2INV = crate::Reg<u1ep2inv::U1EP2INV_SPEC>; #[doc = "U1EP2INV register"] pub mod u1ep2inv; #[doc = "U1EP3 register accessor: an alias for `Reg<U1EP3_SPEC>`"] pub type U1EP3 = crate::Reg<u1ep3::U1EP3_SPEC>; #[doc = "U1EP3 register"] pub mod u1ep3; #[doc = "U1EP3CLR register accessor: an alias for `Reg<U1EP3CLR_SPEC>`"] pub type U1EP3CLR = crate::Reg<u1ep3clr::U1EP3CLR_SPEC>; #[doc = "U1EP3CLR register"] pub mod u1ep3clr; #[doc = "U1EP3SET register accessor: an alias for `Reg<U1EP3SET_SPEC>`"] pub type U1EP3SET = crate::Reg<u1ep3set::U1EP3SET_SPEC>; #[doc = "U1EP3SET register"] pub mod u1ep3set; #[doc = "U1EP3INV register accessor: an alias for `Reg<U1EP3INV_SPEC>`"] pub type U1EP3INV = crate::Reg<u1ep3inv::U1EP3INV_SPEC>; #[doc = "U1EP3INV register"] pub mod u1ep3inv; #[doc = "U1EP4 register accessor: an alias for `Reg<U1EP4_SPEC>`"] pub type U1EP4 = crate::Reg<u1ep4::U1EP4_SPEC>; #[doc = "U1EP4 register"] pub mod u1ep4; #[doc = "U1EP4CLR register accessor: an alias for `Reg<U1EP4CLR_SPEC>`"] pub type U1EP4CLR = crate::Reg<u1ep4clr::U1EP4CLR_SPEC>; #[doc = "U1EP4CLR register"] pub mod u1ep4clr; #[doc = "U1EP4SET register accessor: an alias for `Reg<U1EP4SET_SPEC>`"] pub type U1EP4SET = crate::Reg<u1ep4set::U1EP4SET_SPEC>; #[doc = "U1EP4SET register"] pub mod u1ep4set; #[doc = "U1EP4INV register accessor: an alias for `Reg<U1EP4INV_SPEC>`"] pub type U1EP4INV = crate::Reg<u1ep4inv::U1EP4INV_SPEC>; #[doc = "U1EP4INV register"] pub mod u1ep4inv; #[doc = "U1EP5 register accessor: an alias for `Reg<U1EP5_SPEC>`"] pub type U1EP5 = crate::Reg<u1ep5::U1EP5_SPEC>; #[doc = "U1EP5 register"] pub mod u1ep5; #[doc = "U1EP5CLR register accessor: an alias for `Reg<U1EP5CLR_SPEC>`"] pub type U1EP5CLR = crate::Reg<u1ep5clr::U1EP5CLR_SPEC>; #[doc = "U1EP5CLR register"] pub mod u1ep5clr; #[doc = "U1EP5SET register accessor: an alias for `Reg<U1EP5SET_SPEC>`"] pub type U1EP5SET = crate::Reg<u1ep5set::U1EP5SET_SPEC>; #[doc = "U1EP5SET register"] pub mod u1ep5set; #[doc = "U1EP5INV register accessor: an alias for `Reg<U1EP5INV_SPEC>`"] pub type U1EP5INV = crate::Reg<u1ep5inv::U1EP5INV_SPEC>; #[doc = "U1EP5INV register"] pub mod u1ep5inv; #[doc = "U1EP6 register accessor: an alias for `Reg<U1EP6_SPEC>`"] pub type U1EP6 = crate::Reg<u1ep6::U1EP6_SPEC>; #[doc = "U1EP6 register"] pub mod u1ep6; #[doc = "U1EP6CLR register accessor: an alias for `Reg<U1EP6CLR_SPEC>`"] pub type U1EP6CLR = crate::Reg<u1ep6clr::U1EP6CLR_SPEC>; #[doc = "U1EP6CLR register"] pub mod u1ep6clr; #[doc = "U1EP6SET register accessor: an alias for `Reg<U1EP6SET_SPEC>`"] pub type U1EP6SET = crate::Reg<u1ep6set::U1EP6SET_SPEC>; #[doc = "U1EP6SET register"] pub mod u1ep6set; #[doc = "U1EP6INV register accessor: an alias for `Reg<U1EP6INV_SPEC>`"] pub type U1EP6INV = crate::Reg<u1ep6inv::U1EP6INV_SPEC>; #[doc = "U1EP6INV register"] pub mod u1ep6inv; #[doc = "U1EP7 register accessor: an alias for `Reg<U1EP7_SPEC>`"] pub type U1EP7 = crate::Reg<u1ep7::U1EP7_SPEC>; #[doc = "U1EP7 register"] pub mod u1ep7; #[doc = "U1EP7CLR register accessor: an alias for `Reg<U1EP7CLR_SPEC>`"] pub type U1EP7CLR = crate::Reg<u1ep7clr::U1EP7CLR_SPEC>; #[doc = "U1EP7CLR register"] pub mod u1ep7clr; #[doc = "U1EP7SET register accessor: an alias for `Reg<U1EP7SET_SPEC>`"] pub type U1EP7SET = crate::Reg<u1ep7set::U1EP7SET_SPEC>; #[doc = "U1EP7SET register"] pub mod u1ep7set; #[doc = "U1EP7INV register accessor: an alias for `Reg<U1EP7INV_SPEC>`"] pub type U1EP7INV = crate::Reg<u1ep7inv::U1EP7INV_SPEC>; #[doc = "U1EP7INV register"] pub mod u1ep7inv; #[doc = "U1EP8 register accessor: an alias for `Reg<U1EP8_SPEC>`"] pub type U1EP8 = crate::Reg<u1ep8::U1EP8_SPEC>; #[doc = "U1EP8 register"] pub mod u1ep8; #[doc = "U1EP8CLR register accessor: an alias for `Reg<U1EP8CLR_SPEC>`"] pub type U1EP8CLR = crate::Reg<u1ep8clr::U1EP8CLR_SPEC>; #[doc = "U1EP8CLR register"] pub mod u1ep8clr; #[doc = "U1EP8SET register accessor: an alias for `Reg<U1EP8SET_SPEC>`"] pub type U1EP8SET = crate::Reg<u1ep8set::U1EP8SET_SPEC>; #[doc = "U1EP8SET register"] pub mod u1ep8set; #[doc = "U1EP8INV register accessor: an alias for `Reg<U1EP8INV_SPEC>`"] pub type U1EP8INV = crate::Reg<u1ep8inv::U1EP8INV_SPEC>; #[doc = "U1EP8INV register"] pub mod u1ep8inv; #[doc = "U1EP9 register accessor: an alias for `Reg<U1EP9_SPEC>`"] pub type U1EP9 = crate::Reg<u1ep9::U1EP9_SPEC>; #[doc = "U1EP9 register"] pub mod u1ep9; #[doc = "U1EP9CLR register accessor: an alias for `Reg<U1EP9CLR_SPEC>`"] pub type U1EP9CLR = crate::Reg<u1ep9clr::U1EP9CLR_SPEC>; #[doc = "U1EP9CLR register"] pub mod u1ep9clr; #[doc = "U1EP9SET register accessor: an alias for `Reg<U1EP9SET_SPEC>`"] pub type U1EP9SET = crate::Reg<u1ep9set::U1EP9SET_SPEC>; #[doc = "U1EP9SET register"] pub mod u1ep9set; #[doc = "U1EP9INV register accessor: an alias for `Reg<U1EP9INV_SPEC>`"] pub type U1EP9INV = crate::Reg<u1ep9inv::U1EP9INV_SPEC>; #[doc = "U1EP9INV register"] pub mod u1ep9inv; #[doc = "U1EP10 register accessor: an alias for `Reg<U1EP10_SPEC>`"] pub type U1EP10 = crate::Reg<u1ep10::U1EP10_SPEC>; #[doc = "U1EP10 register"] pub mod u1ep10; #[doc = "U1EP10CLR register accessor: an alias for `Reg<U1EP10CLR_SPEC>`"] pub type U1EP10CLR = crate::Reg<u1ep10clr::U1EP10CLR_SPEC>; #[doc = "U1EP10CLR register"] pub mod u1ep10clr; #[doc = "U1EP10SET register accessor: an alias for `Reg<U1EP10SET_SPEC>`"] pub type U1EP10SET = crate::Reg<u1ep10set::U1EP10SET_SPEC>; #[doc = "U1EP10SET register"] pub mod u1ep10set; #[doc = "U1EP10INV register accessor: an alias for `Reg<U1EP10INV_SPEC>`"] pub type U1EP10INV = crate::Reg<u1ep10inv::U1EP10INV_SPEC>; #[doc = "U1EP10INV register"] pub mod u1ep10inv; #[doc = "U1EP11 register accessor: an alias for `Reg<U1EP11_SPEC>`"] pub type U1EP11 = crate::Reg<u1ep11::U1EP11_SPEC>; #[doc = "U1EP11 register"] pub mod u1ep11; #[doc = "U1EP11CLR register accessor: an alias for `Reg<U1EP11CLR_SPEC>`"] pub type U1EP11CLR = crate::Reg<u1ep11clr::U1EP11CLR_SPEC>; #[doc = "U1EP11CLR register"] pub mod u1ep11clr; #[doc = "U1EP11SET register accessor: an alias for `Reg<U1EP11SET_SPEC>`"] pub type U1EP11SET = crate::Reg<u1ep11set::U1EP11SET_SPEC>; #[doc = "U1EP11SET register"] pub mod u1ep11set; #[doc = "U1EP11INV register accessor: an alias for `Reg<U1EP11INV_SPEC>`"] pub type U1EP11INV = crate::Reg<u1ep11inv::U1EP11INV_SPEC>; #[doc = "U1EP11INV register"] pub mod u1ep11inv; #[doc = "U1EP12 register accessor: an alias for `Reg<U1EP12_SPEC>`"] pub type U1EP12 = crate::Reg<u1ep12::U1EP12_SPEC>; #[doc = "U1EP12 register"] pub mod u1ep12; #[doc = "U1EP12CLR register accessor: an alias for `Reg<U1EP12CLR_SPEC>`"] pub type U1EP12CLR = crate::Reg<u1ep12clr::U1EP12CLR_SPEC>; #[doc = "U1EP12CLR register"] pub mod u1ep12clr; #[doc = "U1EP12SET register accessor: an alias for `Reg<U1EP12SET_SPEC>`"] pub type U1EP12SET = crate::Reg<u1ep12set::U1EP12SET_SPEC>; #[doc = "U1EP12SET register"] pub mod u1ep12set; #[doc = "U1EP12INV register accessor: an alias for `Reg<U1EP12INV_SPEC>`"] pub type U1EP12INV = crate::Reg<u1ep12inv::U1EP12INV_SPEC>; #[doc = "U1EP12INV register"] pub mod u1ep12inv; #[doc = "U1EP13 register accessor: an alias for `Reg<U1EP13_SPEC>`"] pub type U1EP13 = crate::Reg<u1ep13::U1EP13_SPEC>; #[doc = "U1EP13 register"] pub mod u1ep13; #[doc = "U1EP13CLR register accessor: an alias for `Reg<U1EP13CLR_SPEC>`"] pub type U1EP13CLR = crate::Reg<u1ep13clr::U1EP13CLR_SPEC>; #[doc = "U1EP13CLR register"] pub mod u1ep13clr; #[doc = "U1EP13SET register accessor: an alias for `Reg<U1EP13SET_SPEC>`"] pub type U1EP13SET = crate::Reg<u1ep13set::U1EP13SET_SPEC>; #[doc = "U1EP13SET register"] pub mod u1ep13set; #[doc = "U1EP13INV register accessor: an alias for `Reg<U1EP13INV_SPEC>`"] pub type U1EP13INV = crate::Reg<u1ep13inv::U1EP13INV_SPEC>; #[doc = "U1EP13INV register"] pub mod u1ep13inv; #[doc = "U1EP14 register accessor: an alias for `Reg<U1EP14_SPEC>`"] pub type U1EP14 = crate::Reg<u1ep14::U1EP14_SPEC>; #[doc = "U1EP14 register"] pub mod u1ep14; #[doc = "U1EP14CLR register accessor: an alias for `Reg<U1EP14CLR_SPEC>`"] pub type U1EP14CLR = crate::Reg<u1ep14clr::U1EP14CLR_SPEC>; #[doc = "U1EP14CLR register"] pub mod u1ep14clr; #[doc = "U1EP14SET register accessor: an alias for `Reg<U1EP14SET_SPEC>`"] pub type U1EP14SET = crate::Reg<u1ep14set::U1EP14SET_SPEC>; #[doc = "U1EP14SET register"] pub mod u1ep14set; #[doc = "U1EP14INV register accessor: an alias for `Reg<U1EP14INV_SPEC>`"] pub type U1EP14INV = crate::Reg<u1ep14inv::U1EP14INV_SPEC>; #[doc = "U1EP14INV register"] pub mod u1ep14inv; #[doc = "U1EP15 register accessor: an alias for `Reg<U1EP15_SPEC>`"] pub type U1EP15 = crate::Reg<u1ep15::U1EP15_SPEC>; #[doc = "U1EP15 register"] pub mod u1ep15; #[doc = "U1EP15CLR register accessor: an alias for `Reg<U1EP15CLR_SPEC>`"] pub type U1EP15CLR = crate::Reg<u1ep15clr::U1EP15CLR_SPEC>; #[doc = "U1EP15CLR register"] pub mod u1ep15clr; #[doc = "U1EP15SET register accessor: an alias for `Reg<U1EP15SET_SPEC>`"] pub type U1EP15SET = crate::Reg<u1ep15set::U1EP15SET_SPEC>; #[doc = "U1EP15SET register"] pub mod u1ep15set; #[doc = "U1EP15INV register accessor: an alias for `Reg<U1EP15INV_SPEC>`"] pub type U1EP15INV = crate::Reg<u1ep15inv::U1EP15INV_SPEC>; #[doc = "U1EP15INV register"] pub mod u1ep15inv;
44.837662
78
0.707893
b0a289433f9e30d5c52f6d5529bdd54390017928
1,174
kt
Kotlin
app/src/main/java/com/anangkur/adapterplayground/AppAdapter.kt
sampingantech/adapter-delegate-playground
50db5d39c3d6f4b174c47b2dea2e2c9a12bde9d3
[ "MIT" ]
11
2020-10-08T14:13:17.000Z
2022-01-23T18:00:22.000Z
app/src/main/java/com/anangkur/adapterplayground/AppAdapter.kt
sampingantech/adapter-delegate-playground
50db5d39c3d6f4b174c47b2dea2e2c9a12bde9d3
[ "MIT" ]
null
null
null
app/src/main/java/com/anangkur/adapterplayground/AppAdapter.kt
sampingantech/adapter-delegate-playground
50db5d39c3d6f4b174c47b2dea2e2c9a12bde9d3
[ "MIT" ]
3
2021-07-07T08:17:50.000Z
2022-01-07T17:18:07.000Z
package com.anangkur.adapterplayground import android.view.LayoutInflater import android.view.ViewGroup import androidx.recyclerview.widget.RecyclerView import com.anangkur.adapterplayground.databinding.ItemAppBinding import com.anangkur.adapterplayground.model.App class AppAdapter: RecyclerView.Adapter<AppAdapter.AppViewHolder>() { private val items = ArrayList<App>() override fun onCreateViewHolder(parent: ViewGroup, viewType: Int): AppViewHolder { val binding = ItemAppBinding.inflate(LayoutInflater.from(parent.context), parent, false) return AppViewHolder(binding) } override fun onBindViewHolder(holder: AppViewHolder, position: Int) { holder.bind(items[position]) } override fun getItemCount(): Int { return items.size } inner class AppViewHolder(private val binding: ItemAppBinding): RecyclerView.ViewHolder(binding.root) { fun bind(data: App) { binding.tvTitle.text = data.name binding.tvSize.text = "${data.size} MB" } } fun setItems(data: List<App>) { items.clear() items.addAll(data) notifyDataSetChanged() } }
30.894737
107
0.706985
ab595ca45ca77a0e814607494f3eada4b483edf9
2,096
kt
Kotlin
RecyclerMultiView/app/src/main/java/com/samruddhi/recyclermultiview/GalleryAdapter.kt
MuralikrishnaGS/Android-Jetpack-Components
9bbd4118630966ec6cee9cf8b77bc24840e43065
[ "MIT" ]
null
null
null
RecyclerMultiView/app/src/main/java/com/samruddhi/recyclermultiview/GalleryAdapter.kt
MuralikrishnaGS/Android-Jetpack-Components
9bbd4118630966ec6cee9cf8b77bc24840e43065
[ "MIT" ]
null
null
null
RecyclerMultiView/app/src/main/java/com/samruddhi/recyclermultiview/GalleryAdapter.kt
MuralikrishnaGS/Android-Jetpack-Components
9bbd4118630966ec6cee9cf8b77bc24840e43065
[ "MIT" ]
null
null
null
package com.samruddhi.recyclermultiview import android.content.Context import android.view.LayoutInflater import android.view.View import android.view.ViewGroup import android.widget.ImageView import androidx.recyclerview.widget.RecyclerView import java.util.* class GalleryAdapter(var galleryItemsList: ArrayList<GalleryItem>, var context: Context) : RecyclerView.Adapter<RecyclerView.ViewHolder>() { override fun onCreateViewHolder(parent: ViewGroup, viewType: Int): RecyclerView.ViewHolder { return if (viewType == GALLERY_SMALL_IMAGE) { val view = LayoutInflater.from(context).inflate(R.layout.item_small_photo, parent, false) PhotoSmallViewHolder(view) } else { val view = LayoutInflater.from(context).inflate(R.layout.item_large_photo, parent, false) PhotoLargeViewHolder(view) } } override fun onBindViewHolder(holder: RecyclerView.ViewHolder, position: Int) { val photoGalleryItem = galleryItemsList[position] if (holder is PhotoSmallViewHolder) { holder.ivPhotoSmall.setImageResource(photoGalleryItem.intPhoto) } if (holder is PhotoLargeViewHolder) { holder.ivPhotoLarge.setImageResource(photoGalleryItem.intPhoto) } } override fun getItemCount(): Int { return galleryItemsList.size } override fun getItemViewType(position: Int): Int { return if (galleryItemsList[position].size == "big") { GALLERY_LARGE_IMAGE } else { GALLERY_SMALL_IMAGE } } internal inner class PhotoSmallViewHolder(itemView: View) : RecyclerView.ViewHolder(itemView) { var ivPhotoSmall: ImageView = itemView.findViewById(R.id.img_small_photo) } internal inner class PhotoLargeViewHolder(itemView: View) : RecyclerView.ViewHolder(itemView) { var ivPhotoLarge: ImageView = itemView.findViewById(R.id.img_large_photo) } companion object { private const val GALLERY_LARGE_IMAGE = 0 private const val GALLERY_SMALL_IMAGE = 1 } }
36.137931
101
0.706107
27f787a500b6fc64fbfc4fc9963189e3804ae2fc
469
css
CSS
baoming/webapp/static/css/responsive-table.css
hanxiaoshun/RegistrationSystem
2f7310508fc1725e96fe941b1062ce7f26f265a4
[ "Apache-2.0" ]
null
null
null
baoming/webapp/static/css/responsive-table.css
hanxiaoshun/RegistrationSystem
2f7310508fc1725e96fe941b1062ce7f26f265a4
[ "Apache-2.0" ]
14
2020-06-06T01:24:24.000Z
2022-03-12T00:17:22.000Z
baoming/webapp/static/css/responsive-table.css
hanxiaoshun/RegistrationSystem
2f7310508fc1725e96fe941b1062ce7f26f265a4
[ "Apache-2.0" ]
null
null
null
.scroll_tablex { width: 100%; overflow-y: scroll; } .scroll_tablex table { width: auto; min-width: 100%; border: 1px solid #e4e4e4; border-collapse: collapse; border-spacing: inherit; white-space: nowrap; } .scroll_tablex table tr td { border: 1px solid #e4e4e4; padding: 5px; text-align: center; font-size: 12px; position: relative; height: 32px; border-bottom: 0; border-top: 0; min-width: 60px; }
18.76
30
0.622601
41232623c6eb98b3bfec653c5fbf0f3bf19932d2
2,506
h
C
code/tools/gtkradiant/radiant/select.h
raynorpat/xreal
2fcbf9179fa22dc6e808bb65b879ac2ee7616ebd
[ "BSD-3-Clause" ]
11
2016-06-03T07:46:15.000Z
2021-09-09T19:35:32.000Z
code/tools/gtkradiant/radiant/select.h
raynorpat/xreal
2fcbf9179fa22dc6e808bb65b879ac2ee7616ebd
[ "BSD-3-Clause" ]
1
2016-10-14T23:06:19.000Z
2016-10-14T23:06:19.000Z
code/tools/gtkradiant/radiant/select.h
raynorpat/xreal
2fcbf9179fa22dc6e808bb65b879ac2ee7616ebd
[ "BSD-3-Clause" ]
5
2016-10-13T04:43:58.000Z
2019-08-24T14:03:35.000Z
/* Copyright (C) 1999-2006 Id Software, Inc. and contributors. For a list of contributors, see the accompanying CONTRIBUTORS file. This file is part of GtkRadiant. GtkRadiant is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. GtkRadiant is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with GtkRadiant; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ #if !defined( INCLUDED_SELECT_H ) #define INCLUDED_SELECT_H #include "math/vector.h" void Select_GetBounds( Vector3& mins, Vector3& maxs ); void Select_GetMid( Vector3& mid ); void Select_Delete(); void Select_Invert(); void Select_Inside(); void Select_Touching(); void Scene_ExpandSelectionToEntities(); void Selection_Flipx(); void Selection_Flipy(); void Selection_Flipz(); void Selection_Rotatex(); void Selection_Rotatey(); void Selection_Rotatez(); void Selection_MoveDown(); void Selection_MoveUp(); void Select_AllOfType(); void DoRotateDlg(); void DoScaleDlg(); void Select_SetShader( const char* shader ); class TextureProjection; void Select_SetTexdef( const TextureProjection& projection ); class ContentsFlagsValue; void Select_SetFlags( const ContentsFlagsValue& flags ); void Select_RotateTexture( float amt ); void Select_ScaleTexture( float x, float y ); void Select_ShiftTexture( float x, float y ); void Select_FitTexture( float horizontal = 1, float vertical = 1 ); void FindReplaceTextures( const char* pFind, const char* pReplace, bool bSelected ); void HideSelected(); void Select_ShowAllHidden(); // updating workzone to a given brush (depends on current view) void Selection_construct(); void Selection_destroy(); struct select_workzone_t { // defines the boundaries of the current work area // is used to guess brushes and drop points third coordinate when creating from 2D view Vector3 d_work_min, d_work_max; select_workzone_t() : d_work_min( -64.0f,-64.0f,-64.0f ), d_work_max( 64.0f, 64.0f, 64.0f ) { } }; const select_workzone_t& Select_getWorkZone(); #endif
27.23913
88
0.763767
161fdb798166b24fa467cf6a38ada66759948cdf
301
ts
TypeScript
src/todo/dto/todo.input.ts
Ritvik-Gupta/Todos-List
bedc03cb28b8f775c4f98365297ee6c7d2ed6f92
[ "MIT" ]
1
2021-05-07T11:11:08.000Z
2021-05-07T11:11:08.000Z
src/todo/dto/todo.input.ts
Ritvik-Gupta/Todos-List
bedc03cb28b8f775c4f98365297ee6c7d2ed6f92
[ "MIT" ]
null
null
null
src/todo/dto/todo.input.ts
Ritvik-Gupta/Todos-List
bedc03cb28b8f775c4f98365297ee6c7d2ed6f92
[ "MIT" ]
null
null
null
import { TodoEntity } from "$/entities" import { Field, InputType } from "@nestjs/graphql" import { Length, MinLength } from "class-validator" @InputType() export class TodoInput implements Partial<TodoEntity> { @Field() @Length(5, 100) title: string @Field() @MinLength(10) content: string }
20.066667
55
0.714286
510154bacc89e0529e5ee38ab7be24991604cea9
27,172
h
C
resources/ui/data/im_logo.dat.h
jpcima/cws80
ce37a49caed50a4b7baccfed288c2f5555af91c7
[ "BSL-1.0" ]
4
2019-05-20T19:27:09.000Z
2019-11-03T04:21:53.000Z
resources/ui/data/im_logo.dat.h
jpcima/cws80
ce37a49caed50a4b7baccfed288c2f5555af91c7
[ "BSL-1.0" ]
5
2019-05-21T12:56:22.000Z
2019-06-23T21:33:33.000Z
resources/ui/data/im_logo.dat.h
jpcima/cws80
ce37a49caed50a4b7baccfed288c2f5555af91c7
[ "BSL-1.0" ]
null
null
null
// BEGIN "logo.png" 0x89,0x50,0x4E,0x47,0x0D,0x0A,0x1A,0x0A,0x00,0x00,0x00,0x0D,0x49,0x48,0x44,0x52, 0x00,0x00,0x00,0xB8,0x00,0x00,0x00,0x39,0x08,0x06,0x00,0x00,0x00,0x85,0xDF,0xE1, 0xBA,0x00,0x00,0x00,0x04,0x73,0x42,0x49,0x54,0x08,0x08,0x08,0x08,0x7C,0x08,0x64, 0x88,0x00,0x00,0x00,0x09,0x70,0x48,0x59,0x73,0x00,0x00,0x01,0xE3,0x00,0x00,0x01, 0xE3,0x01,0xA8,0x53,0xBE,0x24,0x00,0x00,0x00,0x19,0x74,0x45,0x58,0x74,0x53,0x6F, 0x66,0x74,0x77,0x61,0x72,0x65,0x00,0x77,0x77,0x77,0x2E,0x69,0x6E,0x6B,0x73,0x63, 0x61,0x70,0x65,0x2E,0x6F,0x72,0x67,0x9B,0xEE,0x3C,0x1A,0x00,0x00,0x14,0x53,0x49, 0x44,0x41,0x54,0x78,0x9C,0xED,0x9D,0x79,0x54,0x14,0x57,0xBA,0xC0,0xBF,0x5B,0x4B, 0x57,0x6F,0xAC,0x02,0xCA,0x62,0x54,0x36,0x97,0x99,0x89,0x89,0xF1,0xE1,0x16,0x0D, 0x41,0x4D,0xF2,0x74,0x48,0xA2,0x89,0x04,0x8D,0xC9,0x71,0x09,0x6E,0x51,0x71,0x01, 0x9C,0x35,0xCF,0x64,0xC6,0x46,0xD6,0x81,0x83,0x0A,0x89,0x66,0x4C,0xDE,0x71,0x34, 0x0F,0x71,0x8C,0x89,0x4B,0xD8,0x19,0x8D,0xE8,0x4C,0x68,0x14,0x1C,0x37,0x12,0x75, 0x10,0x0C,0xFB,0x22,0x4B,0xD3,0x5D,0xDB,0x7D,0x7F,0xC4,0xEE,0xD3,0x20,0x4B,0x37, 0xD0,0x0A,0xA6,0x7E,0xE7,0xF4,0x1F,0xF7,0xBB,0xF7,0x5B,0xAA,0xFA,0xEB,0xAA,0xEA, 0xBA,0x1B,0x9A,0x3F,0x7F,0xFE,0x39,0x8C,0xF1,0x33,0x60,0x63,0x08,0x82,0x38,0x91, 0x95,0x95,0xB5,0xDC,0x58,0x0E,0x0A,0x0A,0xF2,0x21,0x08,0xE2,0x1C,0x00,0xD8,0x59, 0xA0,0xDE,0xC0,0xF3,0xFC,0x74,0x84,0xD0,0x64,0x82,0x20,0xD2,0x11,0x42,0x44,0x0F, 0xED,0x04,0x41,0x10,0x5E,0x23,0x49,0xF2,0x0E,0x42,0xA8,0x10,0x63,0xEC,0xD0,0x97, 0x61,0x84,0x50,0x33,0xC7,0x71,0x33,0x0A,0x0A,0x0A,0x2A,0x8D,0xB2,0x97,0x5E,0x7A, 0xE9,0xB8,0x28,0x8A,0xF3,0x2C,0x88,0x6B,0x40,0x20,0x84,0x0A,0xB3,0xB3,0xB3,0x5F, 0x9E,0x37,0x6F,0xDE,0x46,0x00,0xD8,0xDD,0x5F,0x3B,0x24,0x49,0xEE,0xC9,0xCC,0xCC, 0xFC,0xCD,0xFC,0xF9,0xF3,0x3F,0xC3,0x18,0xBF,0x31,0x88,0x21,0x76,0x0B,0x41,0x10, 0x57,0xB2,0xB2,0xB2,0x66,0x01,0x00,0x06,0x00,0x98,0x3D,0x7B,0xB6,0xAB,0x4C,0x26, 0xBB,0x2C,0x8A,0xA2,0x87,0xAD,0x7D,0x93,0x24,0x19,0x9F,0x93,0x93,0x13,0x69,0x69, 0x7B,0x8A,0xE7,0xF9,0xE7,0xA7,0x4D,0x9B,0x06,0x6E,0x6E,0x6E,0x36,0x0B,0xAA,0xBC, 0xBC,0x1C,0xAE,0x5E,0xBD,0xFA,0xA2,0xB9,0x4C,0x14,0xC5,0x89,0x18,0xE3,0x51,0xC1, 0xC1,0xC1,0xA8,0x37,0x5D,0x8E,0xE3,0xE0,0x9B,0x6F,0xBE,0x51,0x93,0x24,0x39,0x0E, 0x63,0x3C,0xC3,0xCE,0xCE,0x4E,0x31,0x67,0xCE,0x1C,0xBA,0xBB,0xB6,0xB9,0xB9,0xB9, 0x9C,0x4E,0xA7,0x0B,0xE0,0x79,0x9E,0x46,0x08,0x79,0x2E,0x5C,0xB8,0x10,0x08,0xA2, 0xA7,0xDF,0x02,0x80,0x20,0x08,0x70,0xFA,0xF4,0x69,0x35,0x00,0xF8,0x02,0x40,0xA5, 0x99,0x3C,0xF0,0xE9,0xA7,0x9F,0x56,0x8F,0x1E,0x3D,0xDA,0xAA,0xE3,0xB4,0x86,0xAA, 0xAA,0x2A,0xD0,0x6A,0xB5,0x73,0x1E,0xF8,0xB3,0x23,0x49,0x52,0xF1,0xF2,0xCB,0x2F, // 00000200: 0x13,0x24,0x49,0x5A,0x65,0x27,0x3B,0x3B,0x5B,0xD4,0xEB,0xF5,0x6A,0x00,0x00,0x84, 0x50,0xD0,0x84,0x09,0x13,0xD4,0xE3,0xC6,0x8D,0xB3,0x41,0xC4,0x3F,0x51,0x57,0x57, 0x07,0x17,0x2F,0x5E,0x9C,0x11,0x18,0x18,0x48,0x16,0x14,0x14,0xF0,0x00,0x00,0x14, 0x45,0x3D,0x25,0x8A,0xA2,0xC7,0xF4,0xE9,0xD3,0xC1,0xCE,0xCE,0x92,0xEB,0x55,0xFF, 0xB8,0x76,0xED,0x1A,0x54,0x55,0x55,0xBD,0x60,0x8D,0x0E,0x05,0x00,0xE0,0xE9,0xE9, 0x09,0xB6,0x3C,0x29,0x3A,0x9D,0xAE,0x5B,0x39,0x42,0x08,0xFC,0xFD,0xFD,0x7B,0xD5, 0x35,0x18,0x0C,0x9D,0xCA,0x72,0xB9,0x5C,0xF0,0xF7,0xF7,0xEF,0x36,0xC1,0xCF,0x9F, 0x3F,0x2F,0x98,0xFB,0xF2,0xF7,0xF7,0xEF,0x35,0xC1,0x79,0x9E,0xEF,0xB1,0xCE,0xDD, 0xDD,0xBD,0xCF,0xD8,0x06,0x0B,0x8C,0xF1,0x7E,0x8C,0xF1,0x4E,0x84,0x90,0xCC,0x1A, 0x9F,0x15,0x15,0x15,0xA0,0xD7,0xEB,0x11,0xC6,0x78,0x8F,0x51,0xE6,0xE6,0xE6,0x66, 0xD3,0xB8,0x19,0x86,0xE9,0xB1,0xCE,0xDF,0xDF,0x1F,0x5C,0x5D,0x5D,0x6D,0xE6,0xBB, 0xA6,0xA6,0x06,0xAA,0xAA,0xAA,0xAC,0xD2,0xE9,0xF9,0xDB,0x97,0x78,0x64,0x14,0x14, 0x14,0xD4,0x03,0xC0,0xE1,0xA2,0xA2,0x22,0xD6,0x1A,0xBD,0xE2,0xE2,0x62,0x81,0x24, 0xC9,0xDC,0x82,0x82,0x82,0x1B,0x36,0x0A,0x6D,0xD8,0x23,0x25,0xF8,0x10,0x41,0x10, 0x84,0x84,0x9A,0x9A,0x1A,0x59,0x75,0x75,0xB5,0x45,0xED,0x5B,0x5B,0x5B,0xE1,0xF6, 0xED,0xDB,0x48,0x14,0xC5,0x44,0x1B,0x87,0x36,0xAC,0x91,0x12,0x7C,0x88,0x50,0x50, 0x50,0xF0,0x6F,0x92,0x24,0x2F,0x68,0xB5,0x5A,0xC1,0x92,0xF6,0x97,0x2E,0x5D,0x02, 0x82,0x20,0x2A,0xE7,0xCC,0x99,0x93,0x69,0xEB,0xD8,0x86,0x33,0x52,0x82,0x0F,0x21, 0x78,0x9E,0x4F,0x2C,0x2B,0x2B,0x43,0xED,0xED,0xED,0x7D,0xB5,0x83,0x92,0x92,0x12, 0x4E,0x10,0x84,0xF8,0x9D,0x3B,0x77,0x8A,0x8F,0x28,0xBC,0x61,0x89,0x94,0xE0,0x43, 0x08,0x57,0x57,0xD7,0xE3,0x08,0xA1,0xEA,0xD2,0xD2,0xD2,0x5E,0xDB,0x5D,0xBF,0x7E, 0x1D,0x78,0x9E,0xE7,0x19,0x86,0xF9,0xFC,0x11,0x85,0x36,0x6C,0x91,0x12,0x7C,0x08, 0x71,0xF4,0xE8,0x51,0x41,0x10,0x84,0x3D,0x97,0x2F,0x5F,0x66,0x45,0xB1,0xE7,0x0B, 0x73,0x51,0x51,0x11,0x8B,0x31,0x3E,0x70,0xE6,0xCC,0x99,0x96,0x47,0x18,0xDE,0xB0, 0x44,0x4A,0xF0,0x21,0x86,0x4C,0x26,0xFB,0xB8,0xA3,0xA3,0x03,0xDF,0xBC,0x79,0xB3, 0xDB,0xFA,0x8A,0x8A,0x0A,0x68,0x6C,0x6C,0xA4,0x31,0xC6,0x7B,0x1F,0x71,0x68,0xC3, 0x12,0xCA,0xD2,0x86,0x37,0x6E,0xDC,0xC0,0xA5,0xA5,0xA5,0x1C,0x00,0x80,0x8B,0x8B, 0x0B,0x11,0x14,0x14,0x64,0xB1,0xEE,0x93,0x04,0xC7,0x71,0x90,0x99,0x99,0xC9,0xE9, 0x74,0x3A,0x3C,0x10,0x3B,0x3A,0x9D,0x8E,0x80,0x07,0x3D,0x81,0xE6,0x64,0x66,0x66, 0x36,0x06,0x05,0x05,0x1D,0xD6,0x6A,0xB5,0x6F,0x4F,0x9C,0x38,0x51,0xD6,0xB5,0x5E, 0xAB,0xD5,0x0A,0x04,0x41,0xE4,0xE5,0xE6,0xE6,0x76,0xFF,0x0B,0xE8,0x86,0xA6,0xA6, 0x26,0xC8,0xCD,0xCD,0xE5,0x44,0x51,0xB4,0x2A,0xE6,0x99,0x33,0x67,0xCA,0xBC,0xBC, // 00000400: 0xBC,0xAC,0x51,0xB1,0x88,0x3B,0x77,0xEE,0xC0,0xB9,0x73,0xE7,0x78,0x00,0x00,0x3B, 0x3B,0x3B,0x58,0xB8,0x70,0x21,0x25,0x93,0x3D,0x74,0xA8,0x83,0x82,0xC5,0x49,0xAA, 0xD5,0x6A,0xD9,0xEA,0xEA,0x6A,0x2D,0x00,0xFC,0x50,0x51,0x51,0xF1,0xEE,0xCC,0x99, 0x33,0x41,0x2E,0x97,0xDB,0x24,0xA8,0xA1,0x4C,0x6D,0x6D,0x2D,0xDC,0xBC,0x79,0x93, 0x06,0x80,0x44,0x84,0x10,0x37,0x10,0x5B,0x18,0xE3,0x7F,0x75,0x27,0x17,0x45,0x31, 0xB1,0xA6,0xA6,0x66,0x45,0x75,0x75,0x35,0x8C,0x1A,0x35,0xCA,0x24,0x6F,0x69,0x69, 0x81,0x5B,0xB7,0x6E,0x11,0x18,0x63,0xAB,0x5E,0x0D,0xFE,0xF0,0xC3,0x0F,0x50,0x59, 0x59,0xD9,0x26,0x8A,0xE2,0x27,0x56,0xA8,0xBD,0x7E,0xF5,0xEA,0xD5,0xF1,0xB6,0x48, 0xF0,0xD2,0xD2,0x52,0xA8,0xAB,0xAB,0xBB,0x07,0x00,0x85,0x75,0x75,0x75,0x4B,0xAB, 0xAB,0xAB,0xE1,0xA9,0xA7,0x9E,0x1A,0x74,0x3F,0x00,0x56,0x24,0x38,0x00,0x00,0xC6, 0x38,0x8F,0x24,0xC9,0xAF,0x44,0x51,0x7C,0xD7,0x26,0xD1,0x0C,0x23,0x30,0xC6,0xC7, 0x01,0xA0,0x63,0x80,0x36,0xCA,0xBB,0x93,0x17,0x14,0x14,0xFC,0x7B,0xFE,0xFC,0xF9, 0x17,0x8A,0x8B,0x8B,0xA7,0x2D,0x58,0xB0,0xC0,0xD4,0x77,0x7F,0xE9,0xD2,0x25,0x20, 0x49,0xF2,0xEE,0xF3,0xCF,0x3F,0x9F,0x55,0x50,0x50,0x60,0x95,0x2F,0x84,0x50,0x1B, 0xC6,0xF8,0xA8,0x15,0x2A,0x53,0x01,0x60,0xBC,0x55,0x4E,0xAC,0x00,0x63,0x7C,0x05, 0x00,0x7E,0x87,0x10,0x5A,0x6A,0x2B,0x1F,0x00,0x56,0x26,0xB8,0x04,0x80,0x4A,0xA5, 0x02,0x8A,0xA2,0x04,0x9E,0xE7,0xCF,0x0D,0xD4,0x16,0x4D,0xD3,0xFF,0x01,0x80,0x6E, 0xC7,0x48,0xF0,0x3C,0x9F,0x78,0xF3,0xE6,0xCD,0xF4,0x17,0x5E,0x78,0x01,0x54,0x2A, 0x15,0xF0,0x3C,0x0F,0xA5,0xA5,0xA5,0x9C,0x28,0x8A,0x56,0xBF,0x1A,0x74,0x72,0x72, 0x02,0x9E,0xE7,0x47,0x03,0x40,0x91,0x35,0x7A,0x8E,0x8E,0x8E,0xD6,0x34,0x1F,0x92, 0x48,0x09,0x6E,0x25,0x8E,0x8E,0x8E,0x10,0x16,0x16,0x46,0x72,0xDC,0x80,0x9E,0x4E, 0xE0,0xCE,0x9D,0x3B,0x90,0x97,0x97,0x37,0xAA,0xA7,0x7A,0x17,0x17,0x97,0x2F,0x9B, 0x9A,0x9A,0xAA,0x4B,0x4A,0x4A,0x3C,0x66,0xCE,0x9C,0x09,0xD7,0xAE,0x5D,0x33,0xBE, 0x1A,0xFC,0x5F,0x6B,0x7D,0xF9,0xFA,0xFA,0xC2,0x9A,0x35,0x6B,0xA0,0xB7,0x37,0x33, 0xDD,0x61,0x6F,0x6F,0x6F,0xAD,0xAB,0x21,0x47,0xBF,0x13,0x3C,0x3F,0x3F,0x1F,0x28, 0xCA,0x32,0xF5,0x86,0x86,0x86,0xFE,0xBA,0x19,0x92,0x28,0x95,0x4A,0x9B,0xDB,0x38, 0x7A,0xF4,0xA8,0x10,0x14,0x14,0x94,0x52,0x5C,0x5C,0xFC,0x51,0x40,0x40,0x00,0xAD, 0xD5,0x6A,0x59,0x51,0x14,0xF7,0xF7,0xF7,0xD5,0xA0,0x2D,0x47,0xF9,0x0D,0x65,0xAC, 0x4E,0x70,0x99,0x4C,0x56,0x6A,0x30,0x18,0xF6,0x5C,0xBB,0x76,0xCD,0xDD,0x1A,0x3D, 0x84,0xD0,0x49,0x6B,0x7D,0xFD,0xDC,0x41,0x08,0xED,0xE7,0x38,0xEE,0xC3,0xBC,0xBC, 0x3C,0x68,0x6C,0x6C,0xA4,0x05,0x41,0xD8,0xD3,0xB7,0x96,0x84,0x39,0x56,0x27,0xF8, 0x99,0x33,0x67,0x0C,0xC1,0xC1,0xC1,0x3B,0x9A,0x9A,0x9A,0x7A,0x1E,0x37,0xD9,0x9D, // 00000600: 0x23,0x8A,0x6A,0xB5,0xD6,0xD7,0xCF,0x9D,0xDC,0xDC,0xDC,0x86,0xB9,0x73,0xE7,0x1E, 0xBA,0x72,0xE5,0xCA,0x2A,0x92,0x24,0xB3,0xF2,0xF3,0xF3,0xBF,0x7F,0xDC,0x31,0x0D, 0x37,0xAC,0x4E,0xF0,0xC0,0xC0,0x40,0x2F,0x9D,0x4E,0x77,0x8D,0xA6,0x69,0xAB,0xEE, 0x79,0x34,0x4D,0x67,0x03,0xC0,0x4B,0xD6,0xFA,0xFB,0xB9,0xC3,0x71,0x5C,0x12,0xC3, 0x30,0x01,0x82,0x20,0xC4,0x3E,0xEE,0x58,0x86,0x23,0x56,0x27,0x38,0x49,0x92,0xEE, 0xA2,0x28,0xDA,0x2D,0x59,0xB2,0xA4,0xD7,0xC1,0xEF,0xE6,0x94,0x95,0x95,0x81,0x56, 0xAB,0xFD,0x85,0xD5,0xD1,0x49,0xC0,0xD9,0xB3,0x67,0xAF,0x00,0xC0,0xAF,0x1E,0x77, 0x1C,0xC3,0x95,0x7E,0xFF,0xC9,0x74,0x73,0x73,0xB3,0xB8,0xA3,0xC7,0xDA,0x59,0x18, 0x12,0x12,0x83,0x85,0x34,0x16,0x45,0xE2,0x89,0x46,0x4A,0x70,0x89,0x27,0x1A,0xA9, 0xA3,0xA7,0x1B,0x08,0x82,0x68,0xCB,0xCA,0xCA,0xB2,0xCB,0xC9,0xC9,0x19,0xD0,0x64, 0x02,0x86,0x61,0x70,0x68,0x68,0xA8,0xCC,0xC1,0xA1,0xCF,0xD5,0x2B,0x6C,0x4A,0x65, 0x65,0x25,0x7C,0xF9,0xE5,0x97,0x9C,0xB5,0x1D,0x3D,0x73,0xE7,0xCE,0xA5,0x7F,0xF1, 0x8B,0xE1,0xFD,0xD7,0x49,0x4A,0xF0,0x6E,0x30,0x18,0x0C,0x41,0x14,0x45,0x3D,0x63, 0x6D,0x42,0x74,0x85,0xE3,0xB8,0xF4,0xC6,0xC6,0x46,0x78,0xDC,0x09,0x5E,0x55,0x55, 0x05,0x1C,0xC7,0x35,0x60,0x8C,0x37,0x5B,0xAA,0x83,0x31,0xDE,0x56,0x59,0x59,0x39, 0xFD,0x67,0x95,0xE0,0x08,0xA1,0x29,0xA2,0x28,0x5A,0xB7,0x70,0xC7,0x20,0x81,0x31, 0x7E,0x0D,0x00,0x2C,0x39,0xDB,0xD3,0x00,0x60,0x40,0x0B,0xD0,0x10,0x04,0xA1,0xC2, 0x18,0x3B,0x0D,0xC4,0xC6,0x10,0x84,0xB0,0xE6,0x98,0x10,0x42,0xB6,0x19,0xBF,0x6A, 0x0C,0x86,0x20,0x7C,0x00,0x60,0x1D,0xC6,0x03,0x1A,0x75,0xDC,0x27,0x16,0x27,0xB8, 0x9F,0x9F,0x1F,0xD9,0xDA,0xDA,0x1A,0x04,0x00,0x41,0x23,0x46,0x8C,0xD0,0xD3,0x34, 0xFD,0x48,0xC6,0xCA,0xD2,0x34,0x0D,0x63,0xC6,0x8C,0xD1,0xD7,0xD7,0xD7,0x87,0x03, 0x00,0xF8,0xF8,0xF8,0xF4,0x18,0xB3,0x8F,0x8F,0x0F,0x69,0x30,0x18,0x16,0x02,0x00, 0x8C,0x1C,0x39,0xD2,0x80,0x10,0xB2,0xAA,0x33,0xCA,0x08,0x45,0x51,0xDF,0x50,0x14, 0xE5,0x4C,0x51,0x94,0x45,0x13,0x80,0x7B,0x42,0xA1,0x50,0xE8,0x5D,0x5C,0x5C,0x1E, 0xFB,0x98,0x62,0x2F,0x2F,0x2F,0x50,0xAB,0xD5,0x0E,0x82,0x20,0x24,0x5B,0xA3,0x37, 0x76,0xEC,0x58,0x9B,0xC4,0x33,0x76,0xEC,0x58,0xB8,0x7B,0xF7,0xAE,0x1F,0x00,0x6C, 0x57,0x2A,0x95,0x9C,0xB3,0xB3,0x73,0xB7,0xEB,0xDC,0x0C,0x06,0x16,0x27,0x78,0x40, 0x40,0x00,0x15,0x10,0x10,0xF0,0xC8,0x1F,0x69,0x08,0x82,0x80,0x37,0xDF,0x7C,0xD3, 0xA2,0x24,0x99,0x33,0x67,0x0E,0xDD,0xD3,0xAA,0x57,0xD6,0x80,0x31,0x66,0x82,0x82, 0x82,0xE8,0x49,0x93,0x26,0xD9,0xEC,0xC4,0x3F,0x4A,0xDC,0xDD,0xDD,0x21,0x2C,0x2C, 0xAC,0x5F,0x3F,0x76,0x5B,0x30,0x79,0xF2,0x64,0x98,0x3C,0x79,0xF2,0x23,0xC9,0x25, 0xE9,0x2D,0x8A,0xC4,0x13,0x8D,0x94,0xE0,0x12,0x4F,0x34,0x52,0x82,0x4B,0x3C,0xD1, // 00000800: 0x48,0x09,0x2E,0xF1,0x44,0x23,0x25,0xB8,0xC4,0x13,0x8D,0x94,0xE0,0x12,0x4F,0x34, 0x52,0x82,0x4B,0x3C,0xD1,0x50,0x00,0x00,0xF7,0xEF,0xDF,0x87,0x9A,0x9A,0x1A,0x9B, 0x39,0x69,0x6D,0xED,0x7E,0x32,0x0F,0xC6,0xD8,0xA6,0x7E,0xFB,0xA2,0xB7,0xAE,0x78, 0x5B,0x9F,0x93,0xFB,0xF7,0xEF,0xDB,0xC4,0x6E,0x6B,0x6B,0xAB,0x4D,0xE3,0x6E,0x6E, 0x6E,0xEE,0xB1,0xAE,0xA1,0xA1,0xC1,0xEA,0x89,0xCD,0xD6,0xD0,0xD3,0x46,0x0A,0xBD, 0x41,0x91,0x24,0x79,0x37,0x37,0x37,0xD7,0x36,0xAB,0xAE,0x98,0x3B,0xA2,0xA8,0x4E, 0xD3,0xAD,0x10,0x42,0x15,0x08,0x21,0xFE,0xD0,0xA1,0x43,0x8F,0xB5,0x33,0x05,0x21, 0x64,0x20,0x08,0xE2,0x47,0x73,0x19,0x41,0x10,0xB7,0x0A,0x0B,0x0B,0x9F,0x2B,0x2C, 0x2C,0xB4,0xA9,0x6F,0x8A,0xA2,0xFE,0x33,0x98,0xF6,0x30,0xC6,0xDF,0x7F,0xF7,0xDD, 0x77,0xA3,0xBF,0xFB,0xEE,0xBB,0xC1,0x34,0xFB,0x10,0x04,0x41,0x54,0xCE,0x9E,0x3D, 0x5B,0x34,0xAE,0xCD,0x22,0x08,0x42,0x2D,0x45,0x51,0xED,0xA7,0x4E,0x9D,0x52,0xD9, 0xD4,0xF1,0x4F,0xBE,0xCB,0xAC,0x69,0x4F,0xD1,0x34,0xFD,0x2B,0x00,0x70,0xB1,0x51, 0x3C,0x26,0xDA,0xDA,0xDA,0x3A,0xCD,0x7A,0xC8,0xCF,0xCF,0x2F,0x09,0x0C,0x0C,0x7C, 0x8A,0xA2,0xA8,0x81,0x4F,0x51,0x1F,0x00,0x0F,0x46,0x0E,0xD6,0x9A,0xCB,0x10,0x42, 0x2F,0x90,0x24,0x39,0xD2,0xD6,0xBE,0x39,0x8E,0xAB,0xED,0xBB,0x95,0xE5,0xB4,0xB5, 0xB5,0xFD,0x5A,0xA5,0x52,0x59,0x35,0x19,0xBC,0x3F,0xD0,0x34,0x5D,0x6F,0xBE,0x36, 0xCB,0xD9,0xB3,0x67,0x2B,0x02,0x03,0x03,0xC7,0x52,0x14,0x65,0xF3,0x75,0x26,0x9C, 0x9C,0x9C,0x2A,0xFB,0x6E,0x25,0x21,0x21,0x21,0x21,0x21,0x21,0x21,0x21,0x21,0x21, 0x21,0x21,0x21,0x21,0x21,0x21,0x61,0x1D,0x08,0x00,0x20,0x25,0x25,0xE5,0xAD,0x8E, 0x8E,0x8E,0x45,0xE6,0x15,0x0A,0x85,0xE2,0xF8,0xA6,0x4D,0x9B,0xFE,0xAF,0xAB,0x42, 0x42,0x42,0xC2,0x3E,0x4F,0x4F,0xCF,0x94,0xD0,0xD0,0xD0,0xEB,0xD6,0x3A,0x4B,0x4A, 0x4A,0x0A,0x23,0x49,0x92,0xDF,0xB4,0x69,0xD3,0xC1,0xFE,0x87,0xFC,0x30,0x29,0x29, 0x29,0xCB,0x44,0x51,0x74,0x0A,0x0F,0x0F,0xB7,0x78,0x5B,0x8F,0x92,0x92,0x12,0x55, 0x4E,0x4E,0xCE,0xFE,0x29,0x53,0xA6,0xAC,0x7A,0xF1,0xC5,0x17,0xF5,0x46,0xF9,0x81, 0x03,0x07,0xE6,0xB4,0xB4,0xB4,0xBC,0xBC,0x6D,0xDB,0xB6,0xDF,0x0F,0x66,0x8C,0xD6, 0x92,0x98,0x98,0xF8,0x07,0x9E,0xE7,0x7F,0x69,0x2E,0xF3,0xF4,0xF4,0xDC,0xFD,0xF6, 0xDB,0x6F,0x5F,0xB6,0xA5,0xDF,0x84,0x84,0x84,0x83,0xFE,0xFE,0xFE,0xFF,0x13,0x1C, 0x1C,0x7C,0xD7,0x56,0x3E,0xF2,0xF3,0xF3,0xD5,0xC5,0xC5,0xC5,0x9F,0x74,0x3D,0xF7, 0xB6,0x80,0x00,0x00,0x60,0x59,0x76,0x0A,0x00,0x4C,0x22,0x08,0xA2,0xD2,0xF8,0x41, 0x08,0xBD,0xB9,0x6F,0xDF,0xBE,0x25,0x5D,0x15,0xF4,0x7A,0xFD,0xAB,0x1C,0xC7,0xF5, 0x6B,0xD9,0x7F,0x96,0x65,0xA7,0x1B,0x0C,0x86,0x80,0xEE,0xEA,0xE2,0xE3,0xE3,0xF7, 0x7C,0xFE,0xF9,0xE7,0x33,0xFA,0x63,0x57,0xAF,0xD7,0x3F,0x67,0x30,0x18,0x66,0x59, // 00000A00: 0xA9,0x23,0xE7,0x38,0x6E,0xB1,0x42,0xA1,0xE8,0x34,0xF7,0x90,0x65,0x59,0x1F,0xBD, 0x5E,0xFF,0x4A,0x7F,0xE2,0x18,0x2C,0x12,0x13,0x13,0xFF,0xC0,0x30,0xCC,0x78,0xF3, 0xEF,0x83,0x20,0x88,0xCA,0xFA,0xFA,0xFA,0x8F,0xBE,0xF8,0xE2,0x8B,0x5F,0xF6,0x6D, 0xA1,0x6F,0x12,0x12,0x12,0xFE,0x9C,0x96,0x96,0x16,0xDC,0x55,0xCE,0xF3,0xFC,0xEB, 0x2C,0xCB,0xDA,0xB4,0x5F,0xC4,0xCE,0xCE,0x4E,0xCE,0x71,0xDC,0x62,0x9A,0xA6,0x6D, 0xDE,0xC9,0x67,0x9A,0x36,0x84,0x31,0xBE,0x19,0x11,0x11,0x11,0x61,0x2C,0x27,0x27, 0x27,0x2F,0xC3,0x18,0x2F,0x4D,0x4D,0x4D,0x15,0xD7,0xAF,0x5F,0x7F,0xCC,0x28,0xB7, 0xB7,0xB7,0x4F,0x62,0x18,0xC6,0xE2,0xFD,0x61,0xCC,0x51,0x2A,0x95,0xC7,0x01,0xA0, 0xDB,0xBE,0x5C,0x96,0x65,0xE7,0xF2,0x3C,0x7F,0x16,0x00,0x2E,0xF4,0xC7,0xF6,0x93, 0x04,0xC7,0x71,0x33,0x00,0xE0,0x9F,0x11,0x11,0x11,0x1F,0x99,0xCB,0x53,0x52,0x52, 0x22,0x08,0x82,0x18,0x94,0x9D,0xD5,0x58,0x96,0x7D,0x9E,0x61,0x98,0xC6,0xC1,0xB0, 0xD5,0x0F,0xDF,0xED,0x0A,0x85,0x62,0xB7,0x5C,0x2E,0xB7,0xE9,0xD5,0x1B,0xA0,0x97, 0x39,0x99,0xE1,0xE1,0xE1,0x87,0x77,0xEF,0xDE,0xBD,0x5A,0xA1,0x50,0xF8,0x00,0x00, 0xC4,0xC6,0xC6,0x7E,0x2E,0x08,0xC2,0xB8,0xB6,0xB6,0x36,0x70,0x75,0x75,0xCD,0x03, 0x00,0xD3,0x2D,0x2C,0x23,0x23,0xE3,0xE9,0xEF,0xBF,0xFF,0xBE,0xD3,0xD2,0xBE,0x24, 0x49,0x5E,0x8F,0x8A,0x8A,0x5A,0x0B,0x00,0x90,0x9C,0x9C,0xBC,0x4E,0xA7,0xD3,0x2D, 0x6B,0x6D,0x6D,0x05,0x86,0x61,0x8E,0x03,0xC0,0x69,0xF3,0xB6,0x71,0x71,0x71,0x07, 0x58,0x96,0xF5,0x6A,0x6C,0x6C,0xFC,0x5D,0x74,0x74,0xF4,0x46,0x1F,0x1F,0x9F,0xCD, 0x21,0x21,0x21,0x97,0x01,0x00,0x4E,0x9C,0x38,0xE1,0x7B,0xE3,0xC6,0x8D,0x83,0xC6, 0x0D,0x94,0x28,0x8A,0xFA,0x4F,0x64,0x64,0xE4,0x23,0xD9,0x42,0x65,0xEF,0xDE,0xBD, 0xEF,0xB6,0xB4,0xB4,0xBC,0x67,0x2C,0xCB,0xE5,0xF2,0xAF,0xB6,0x6E,0xDD,0x1A,0x6F, 0x2C,0x27,0x24,0x24,0xA4,0x28,0x95,0xCA,0xBC,0xF5,0xEB,0xD7,0x1F,0x7F,0x70,0x1C, 0x19,0x63,0xC6,0x8C,0x89,0x0E,0x09,0x09,0xD1,0x5E,0xBA,0x74,0xC9,0x31,0x3B,0x3B, 0xFB,0x24,0x42,0x08,0x44,0x51,0x14,0x49,0x92,0xAC,0x89,0x88,0x88,0x78,0xE8,0x8E, 0x68,0x0D,0x9B,0x36,0x6D,0x8A,0x4F,0x4F,0x4F,0x27,0x13,0x13,0x13,0xB3,0x27,0x4D, 0x9A,0xF4,0xEE,0x2B,0xAF,0xBC,0x52,0x05,0x00,0xF0,0xB7,0xBF,0xFD,0x2D,0xE0,0xDE, 0xBD,0x7B,0x11,0x51,0x51,0x51,0x21,0xA9,0xA9,0xA9,0xBF,0x6E,0x6E,0x6E,0x8E,0x32, 0xD7,0x53,0x28,0x14,0x39,0x5B,0xB6,0x6C,0x31,0xFD,0x58,0xE2,0xE3,0xE3,0x63,0x59, 0x96,0xFD,0xA5,0x4E,0xA7,0x1B,0x19,0x1D,0x1D,0xFD,0xBA,0xBB,0xBB,0xFB,0x9F,0x57, 0xAC,0x58,0x91,0x65,0xAC,0x2F,0x2F,0x2F,0x4F,0x8D,0x8B,0x8B,0xE3,0x30,0xC6,0x80, 0x10,0x6A,0x89,0x8C,0x8C,0x5C,0x60,0xAC,0x4B,0x4B,0x4B,0x7B,0xAD,0xA9,0xA9,0x69, 0xBB,0xB1,0x4C,0xD3,0xF4,0x3F,0x22,0x22,0x22,0xFE,0x68,0x2C,0x27,0x26,0x26,0xEE, // 00000C00: 0x32,0x18,0x0C,0xB3,0x8D,0x65,0x07,0x07,0x87,0x98,0x0D,0x1B,0x36,0x9C,0x32,0x3B, 0x67,0x99,0xDF,0x7E,0xFB,0xAD,0x8A,0x20,0x08,0x8E,0x65,0xD9,0x18,0x00,0xE0,0x00, 0x00,0x3E,0xFD,0xF4,0xD3,0x17,0x6B,0x6B,0x6B,0x3F,0xEC,0x7A,0xCC,0x32,0x99,0xAC, 0x60,0xFB,0xF6,0xED,0x1F,0x3C,0xD0,0xDD,0xC9,0xB2,0x6C,0x90,0x99,0xED,0xC4,0x0D, 0x1B,0x36,0x7C,0x69,0x2C,0x63,0x8C,0x51,0x52,0x52,0x52,0x26,0xC7,0x71,0x4A,0x00, 0x00,0x92,0x24,0x75,0x16,0x4F,0xFC,0x54,0xAB,0xD5,0xD9,0x82,0x20,0x8C,0x68,0x6D, 0x6D,0xFD,0x23,0xC7,0x71,0x23,0x8C,0xF2,0x93,0x27,0x4F,0x7A,0x97,0x95,0x95,0x7D, 0xA2,0x56,0xAB,0x8F,0x18,0x65,0x24,0x49,0x3E,0x77,0xFF,0xFE,0xFD,0x67,0x8D,0x65, 0x7B,0x7B,0xFB,0xCB,0x04,0x41,0x30,0x1C,0xC7,0x2D,0x12,0x45,0xD1,0xBF,0xAB,0x6D, 0xA5,0x52,0x99,0xCB,0xF3,0xFC,0x2B,0xF6,0xF6,0xF6,0xFF,0x64,0x59,0xF6,0x1A,0x00, 0x54,0x9B,0xD9,0x6A,0x50,0xA9,0x54,0xC7,0xF0,0x83,0xF5,0x05,0x18,0x86,0xF1,0x8D, 0x8D,0x8D,0x3D,0x14,0x15,0x15,0xB5,0xDC,0xD2,0xD8,0xFB,0xE2,0xC8,0x91,0x23,0x53, 0xEF,0xDE,0xBD,0xFB,0xE1,0x8E,0x1D,0x3B,0x16,0x9A,0xCB,0x65,0x32,0xD9,0x55,0xB5, 0x5A,0x6D,0xBA,0x7B,0x21,0x84,0x66,0x26,0x25,0x25,0x6D,0xDF,0xB2,0x65,0x4B,0x02, 0x00,0x00,0xC7,0x71,0xCF,0xF0,0x3C,0x6F,0x1A,0x1B,0xC1,0x71,0xDC,0x34,0xBD,0x5E, 0xEF,0x52,0x58,0x58,0xA8,0xC8,0xCD,0xCD,0xFD,0xC6,0xC9,0xC9,0xE9,0x2B,0x96,0x65, 0x3B,0x30,0xC6,0x58,0xA9,0x54,0x3E,0x15,0x17,0x17,0x77,0x2C,0x32,0x32,0xF2,0x8D, 0xBE,0xE2,0xB1,0xB7,0xB7,0x4F,0x35,0x18,0x0C,0x6B,0xA3,0xA3,0xA3,0x3B,0x6D,0x52, 0xE5,0xE9,0xE9,0xB9,0xCD,0xD5,0xD5,0xF5,0xE2,0x9D,0x3B,0x77,0x66,0xD0,0x34,0x6D, 0x1A,0xE2,0x20,0x08,0x82,0x0B,0xCF,0xF3,0xD3,0x00,0x00,0x44,0x51,0xF4,0x44,0x08, 0xB9,0xAB,0x54,0x2A,0xD3,0x05,0x87,0x20,0x88,0xFF,0x4A,0x4E,0x4E,0xFE,0x63,0x78, 0x78,0xF8,0x9F,0x00,0x00,0xD4,0x6A,0xF5,0xB9,0x96,0x96,0x96,0x85,0x0A,0x85,0xE2, 0x0A,0x00,0x5C,0xD0,0xEB,0xF5,0x77,0xCC,0xFD,0x38,0x3A,0x3A,0xE6,0x77,0x74,0x74, 0xD4,0x60,0x8C,0xB1,0x9D,0x9D,0x9D,0x47,0x4C,0x4C,0xCC,0xE9,0x1D,0x3B,0x76,0x2C, 0xF8,0xF8,0xE3,0x8F,0x17,0xEA,0x74,0xBA,0x0D,0xE6,0xE7,0x84,0x24,0xC9,0xE7,0x12, 0x12,0x12,0x3E,0xDA,0xBE,0x7D,0xFB,0x07,0x89,0x89,0x89,0xBB,0xE4,0x72,0xB9,0x17, 0x4D,0xD3,0xA6,0x7A,0x86,0x61,0x7E,0x30,0xB7,0xCD,0x30,0xCC,0x57,0x0C,0xC3,0x38, 0x34,0x34,0x34,0x7C,0x20,0x8A,0xA2,0x29,0xFF,0x10,0x42,0xE5,0xE6,0x76,0x31,0xC6, 0x81,0x06,0x83,0x61,0x8C,0x4A,0xA5,0x2A,0x04,0xF8,0x29,0xB9,0xE5,0x72,0xB9,0x8F, 0x4C,0x26,0x33,0xB5,0x61,0x59,0x76,0x5D,0x5A,0x5A,0x9A,0xB0,0x6E,0xDD,0xBA,0xAF, 0x01,0x00,0xE2,0xE2,0xE2,0x32,0xDD,0xDC,0xDC,0x2E,0x19,0x87,0x85,0x20,0x84,0x78, 0x8B,0x13,0x7C,0xC3,0x86,0x0D,0x87,0x00,0x00,0x76,0xED,0xDA,0x15,0xD9,0xA5,0x4A, // 00000E00: 0xC9,0xB2,0xEC,0xC4,0x6D,0xDB,0xB6,0x99,0x96,0x24,0xD8,0xB7,0x6F,0xDF,0x1A,0x00, 0x98,0x60,0x2C,0xAF,0x5C,0xB9,0xF2,0x22,0x00,0x5C,0x8C,0x8D,0x8D,0x7D,0x9A,0x20, 0x1E,0x1E,0xA1,0xFB,0xFE,0xFB,0xEF,0x1F,0xD1,0x68,0x34,0x1F,0x50,0x14,0x95,0xBB, 0x76,0xED,0xDA,0x74,0xF3,0x3A,0x96,0x65,0x47,0xB5,0xB7,0xB7,0xBF,0x27,0x08,0x02, 0x06,0x00,0xD0,0xE9,0x74,0x2A,0x41,0x10,0x06,0x75,0x03,0x54,0x51,0x14,0x1D,0x79, 0x9E,0x9F,0xDC,0x55,0x6E,0x30,0x18,0x9E,0x6B,0x6D,0x6D,0x7D,0xCF,0x4C,0x34,0x92, 0x61,0x98,0x3E,0xC7,0x8F,0x18,0x0C,0x06,0x92,0xE3,0xB8,0x67,0x9B,0x9B,0x9B,0xED, 0x30,0xC6,0x58,0x10,0x04,0xDC,0xDE,0xDE,0x2E,0x17,0x04,0xCB,0x56,0xA1,0x58,0xBF, 0x7E,0xFD,0xC9,0x4F,0x3F,0xFD,0x54,0x60,0x18,0xA6,0xD3,0x7F,0x9D,0xBA,0xBA,0xBA, 0x38,0x86,0x61,0x22,0x7A,0xD2,0x33,0x82,0x31,0x6E,0xDA,0xB4,0x69,0x93,0xE9,0xFB, 0x88,0x8F,0x8F,0xDF,0x0B,0x00,0x3E,0xC6,0xF2,0xBA,0x75,0xEB,0xBE,0x8E,0x8E,0x8E, 0xDE,0x8E,0x10,0xFA,0xD7,0xC6,0x8D,0x1B,0x1F,0x5A,0x4A,0xC2,0xC1,0xC1,0x21,0x7D, 0xD5,0xAA,0x55,0xC5,0x00,0x00,0x87,0x0F,0x1F,0x0E,0xE2,0x79,0x7E,0x39,0x00,0x80, 0x20,0x08,0x6E,0x1D,0x1D,0x1D,0xB3,0xC0,0x6C,0xDD,0x19,0x84,0xD0,0x08,0x92,0x24, 0xF3,0x01,0x00,0xD4,0x6A,0x75,0x96,0xC1,0x60,0xD8,0x62,0x7E,0xCE,0xE4,0x72,0xF9, 0x3D,0x00,0x30,0x3D,0xD2,0x6E,0xDC,0xB8,0x71,0x6F,0x51,0x51,0x91,0x4B,0x4E,0x4E, 0xCE,0x07,0xE6,0x3E,0x57,0xAD,0x5A,0x75,0x1B,0x00,0x92,0x01,0x00,0xF6,0xED,0xDB, 0xB7,0x92,0xE3,0x38,0xDA,0xD1,0xD1,0x71,0x47,0x58,0x58,0x58,0xF6,0x03,0xDF,0x3E, 0x2D,0x2D,0x2D,0xF3,0x30,0xC6,0xCF,0x98,0x1D,0xE7,0x58,0x9A,0xA6,0x4D,0x1B,0x6B, 0x09,0x82,0xF0,0xAC,0x9D,0x9D,0xDD,0x87,0x2B,0x56,0xAC,0x38,0x6F,0x94,0x0D,0xE9, 0x95,0xAD,0xB2,0xB2,0xB2,0x3C,0x4A,0x4A,0x4A,0xFE,0xEE,0xEC,0xEC,0x1C,0x2B,0x08, 0x02,0x07,0x00,0x40,0x10,0xC4,0xB4,0xFA,0xFA,0xFA,0xD9,0x7D,0xE9,0x0E,0x94,0xBD, 0x7B,0xF7,0xAE,0xE6,0x38,0x6E,0x91,0xB3,0xB3,0x73,0x8C,0x51,0xA6,0xD7,0xEB,0x57, 0x58,0x9A,0xA4,0x00,0x00,0x1E,0x1E,0x1E,0x7B,0xDA,0xDB,0xDB,0xDB,0x8C,0x8F,0x57, 0x24,0x49,0x5A,0xBC,0x09,0xC0,0xEA,0xD5,0xAB,0xCF,0x74,0x95,0xED,0xDA,0xB5,0x6B, 0xA7,0x20,0x08,0x8F,0x75,0x2F,0x12,0x82,0x20,0xAA,0x1C,0x1D,0x1D,0x63,0xCC,0x65, 0xC6,0xAB,0xF4,0x9A,0x35,0x6B,0xFE,0x91,0x96,0x96,0x86,0x9D,0x9D,0x9D,0x4D,0xA3, 0x53,0xDB,0xDA,0xDA,0x36,0xED,0xDF,0xBF,0x9F,0x0B,0x0B,0x0B,0x3B,0x61,0x89,0xFD, 0xD4,0xD4,0xD4,0x77,0x0C,0x06,0xC3,0x52,0x95,0x4A,0xB5,0x3B,0x2C,0x2C,0x2C,0xCF, 0xBC,0x4E,0xA5,0x52,0xFD,0x4B,0x26,0x93,0x75,0xDA,0x29,0xCE,0xD9,0xD9,0xF9,0x6C, 0x6F,0xF6,0x7A,0x4C,0xF0,0xF8,0xF8,0xF8,0x83,0x6A,0xB5,0xBA,0x4C,0xA9,0x54,0x5A, 0xB3,0xF5,0xDC,0xA0,0x42,0x92,0x24,0x2D,0x08,0xC2,0x18,0x4F,0x4F,0xCF,0xC3,0x0B, // 00001000: 0x16,0x2C,0x30,0x00,0x00,0xA4,0xA6,0xA6,0x52,0x00,0x60,0xF3,0x04,0x17,0x45,0xD1, 0x49,0xAF,0xD7,0x33,0x5B,0xB6,0x6C,0x39,0x64,0x94,0xC5,0xC5,0xC5,0xBD,0x64,0x7E, 0x07,0x72,0x75,0x75,0xFD,0x6D,0x4B,0x4B,0xCB,0xAE,0xB4,0xB4,0xB4,0xFA,0xFB,0xF7, 0xEF,0xAF,0xF7,0xF2,0xF2,0x3A,0x00,0x00,0xA6,0xC7,0x8A,0xB1,0x63,0xC7,0x1E,0x9B, 0x35,0x6B,0x56,0x2D,0x00,0xC0,0xA1,0x43,0x87,0xFE,0xFB,0xDE,0xBD,0x7B,0xBF,0x05, 0x80,0x3E,0xBF,0xE8,0xB8,0xB8,0xB8,0xCF,0x18,0x86,0xB9,0xBC,0x79,0xF3,0xE6,0xA4, 0x41,0x3D,0xA8,0x41,0x40,0x14,0xC5,0xB6,0x75,0xEB,0xD6,0x99,0xCE,0x49,0x52,0x52, 0xD2,0x07,0xED,0xED,0xED,0x01,0x00,0x70,0x31,0x3E,0x3E,0x7E,0x6F,0x47,0x47,0xC7, 0x8F,0x5B,0xB7,0x6E,0xDD,0x65,0xAC,0x8F,0x8E,0x8E,0x8E,0x52,0x28,0x14,0x16,0xFD, 0x28,0x3F,0xF9,0xE4,0x93,0xD0,0xB6,0xB6,0xB6,0x30,0x27,0x27,0xA7,0xDF,0xAF,0x5C, 0xB9,0xF2,0xA1,0x5D,0xEC,0x58,0x96,0x2D,0xDF,0xBC,0x79,0xB3,0xC9,0x77,0x4C,0x4C, 0xCC,0x29,0x82,0x20,0x78,0x30,0xFB,0x3F,0xD8,0x15,0x0A,0xE0,0xA7,0x87,0x73,0x41, 0x10,0x16,0x6A,0x34,0x1A,0xD3,0xED,0x57,0xAD,0x56,0x7F,0xE9,0xEC,0xEC,0x1C,0x1D, 0x12,0x12,0x72,0xF7,0x81,0xB1,0x6F,0x05,0x41,0xF0,0xC7,0x18,0x3B,0x57,0x54,0x54, 0x7C,0x11,0x1B,0x1B,0x2B,0x4E,0x99,0x32,0x65,0x5A,0x45,0x45,0xC5,0x0F,0xBE,0xBE, 0xBE,0x3B,0xCD,0x75,0x9B,0x9B,0x9B,0x69,0x00,0x30,0x3D,0x7B,0x25,0x27,0x27,0xEF, 0x6C,0x6F,0x6F,0xDF,0xC0,0x71,0x9C,0x0A,0x21,0x84,0x35,0x1A,0xCD,0x1B,0x2A,0x95, 0x2A,0x39,0x3C,0x3C,0xDC,0x74,0x22,0x7C,0x7C,0x7C,0xDE,0x2B,0x2F,0x2F,0x4F,0xD5, 0x68,0x34,0x7B,0xFC,0xFC,0xFC,0xDE,0x58,0xB2,0x64,0xC9,0x39,0x07,0x07,0x87,0x1F, 0xBD,0xBD,0xBD,0xB7,0x5F,0xB9,0x72,0xA5,0x52,0xA3,0xD1,0x60,0x00,0x80,0xA6,0xA6, 0x26,0x1A,0x21,0xD4,0x69,0x7F,0xC9,0xD1,0xA3,0x47,0xEF,0x6B,0x68,0x68,0xD8,0xA9, 0xD1,0x68,0x6A,0x15,0x0A,0xC5,0xC1,0xAD,0x5B,0xB7,0xEE,0xE8,0xEB,0x64,0x96,0x97, 0x97,0x37,0xFB,0xFA,0xFA,0xAE,0x3D,0x7B,0xF6,0xEC,0x2D,0x84,0xD0,0xFD,0x71,0xE3, 0xC6,0xED,0xD5,0x68,0x34,0xB5,0x3A,0x9D,0xEE,0xAE,0xB7,0xB7,0xF7,0xFB,0x2A,0x95, 0xAA,0xA2,0xBA,0xBA,0x7A,0xAC,0xF9,0x71,0xB1,0x2C,0xAB,0x92,0xCB,0xE5,0x7F,0x35, 0x96,0x57,0xAF,0x5E,0xFD,0xED,0x91,0x23,0x47,0xA2,0x7E,0xFC,0xF1,0xC7,0x14,0x0F, 0x0F,0x8F,0xD3,0x4A,0xA5,0x32,0x79,0xD1,0xA2,0x45,0xCD,0x18,0x63,0xA2,0xBE,0xBE, 0x7E,0xF9,0xF9,0xF3,0xE7,0xAF,0xC6,0xC6,0xC6,0x02,0xCF,0xF3,0xB8,0xAA,0xAA,0xAA, 0x6E,0xF4,0xE8,0xD1,0x6B,0xFB,0x8A,0x0B,0x00,0x60,0xD4,0xA8,0x51,0x7F,0x69,0x6C, 0x6C,0x8C,0xD7,0x68,0x34,0xBF,0x33,0x97,0x7B,0x7B,0x7B,0x27,0x2A,0x14,0x8A,0xF3, 0x7E,0x7E,0x7E,0x6F,0x6B,0xB5,0xDA,0x6F,0x63,0x62,0x62,0x28,0x8C,0x31,0x54,0x56, 0x56,0x12,0x00,0xD0,0x66,0x89,0x6D,0x23,0x3E,0x3E,0x3E,0xDB,0x2B,0x2B,0x2B,0xFF, // 00001200: 0xA2,0xD1,0x68,0x7E,0xE3,0xE2,0xE2,0xB2,0x79,0xCD,0x9A,0x35,0x5F,0x00,0xFC,0x34, 0x09,0xA5,0x2B,0x08,0x21,0x63,0x5C,0xA7,0x14,0x0A,0xC5,0x78,0xF3,0x73,0x42,0x10, 0xC4,0x05,0x17,0x17,0x97,0xDF,0x02,0x00,0x78,0x78,0x78,0xEC,0xAB,0xAB,0xAB,0x8B, 0x31,0xAF,0x77,0x77,0x77,0x3F,0x20,0x93,0xC9,0xBE,0x31,0x96,0xE3,0xE2,0xE2,0x6E, 0xE7,0xE5,0xE5,0xD9,0x21,0x84,0x64,0x85,0x85,0x85,0xB7,0x63,0x62,0x62,0x1A,0x77, 0xEC,0xD8,0x31,0xFE,0xE0,0xC1,0x83,0x8B,0xAB,0xAA,0xAA,0x52,0x31,0xC6,0x2A,0xBD, 0x5E,0x7F,0x4C,0xA3,0xD1,0x00,0x00,0x00,0x4D,0xD3,0x27,0x23,0x23,0x23,0x57,0x79, 0x78,0x78,0x44,0x37,0x35,0x35,0xED,0x32,0xB7,0xED,0xE6,0xE6,0xF6,0x99,0x83,0x83, 0x83,0xE9,0x2A,0x6F,0x8C,0xD3,0x1C,0x0A,0x00,0x60,0xFC,0xF8,0xF1,0xC9,0x1C,0xC7, 0x7D,0x65,0x5E,0x41,0xD3,0xF4,0x9D,0xE0,0xE0,0xE0,0x7B,0xC6,0xF2,0x98,0x31,0x63, 0x36,0xCB,0x64,0xB2,0x4E,0x63,0xB7,0x1D,0x1D,0x1D,0x2B,0xE6,0xCD,0x9B,0xC7,0x1D, 0x3C,0x78,0x30,0x75,0xC2,0x84,0x09,0xA6,0x51,0xF6,0xAD,0xAD,0xAD,0x0B,0x6B,0x6A, 0x6A,0xE6,0x1B,0xCB,0x5E,0x5E,0x5E,0x07,0x10,0x42,0x39,0x5D,0xED,0x9B,0x97,0xDF, 0x7A,0xEB,0xAD,0xF3,0x27,0x4E,0x9C,0x58,0x25,0x08,0x82,0x9C,0xA6,0xE9,0x62,0x00, 0x80,0xA9,0x53,0xA7,0x72,0xA7,0x4F,0x9F,0xFE,0xAB,0x9F,0x9F,0xDF,0x15,0xF3,0xB6, 0x3C,0xCF,0x77,0xFA,0x32,0x43,0x43,0x43,0x6F,0x9D,0x3A,0x75,0xEA,0x0F,0x06,0x83, 0xE1,0x63,0x86,0x61,0x2A,0x1E,0x3A,0xCA,0x6E,0x08,0x09,0x09,0x11,0x8A,0x8A,0x8A, 0x0E,0x13,0x04,0x71,0x0B,0x63,0xCC,0x53,0x14,0x75,0x75,0xC2,0x84,0x09,0xE7,0x58, 0x96,0xD5,0x85,0x86,0x86,0x16,0x03,0x00,0x1C,0x3B,0x76,0x6C,0xD7,0x88,0x11,0x23, 0xBE,0xE8,0x12,0x77,0xA7,0xAB,0xC5,0xD2,0xA5,0x4B,0xFF,0x99,0x91,0x91,0xB1,0x96, 0x24,0xC9,0x3B,0x8B,0x16,0x2D,0x6A,0x06,0x00,0x40,0x08,0x89,0xE9,0xE9,0xE9,0x7F, 0xF7,0xF5,0xF5,0x35,0x8D,0x81,0xA7,0x28,0xCA,0xF0,0xEA,0xAB,0xAF,0x5A,0x34,0x13, 0xE1,0x9D,0x77,0xDE,0x29,0x49,0x4F,0x4F,0x0F,0xA7,0x28,0xCA,0xD9,0x5C,0x4E,0x92, 0x64,0xC9,0x6B,0xAF,0xBD,0xD6,0x8A,0x31,0xFE,0xFA,0xF8,0xF1,0xE3,0xA6,0xAD,0xEB, 0x38,0x8E,0x9B,0x5E,0x5E,0x5E,0xBE,0x19,0x00,0xC0,0xDD,0xDD,0x3D,0x63,0xE4,0xC8, 0x91,0x9D,0x5E,0xB5,0x4E,0x9C,0x38,0x31,0x16,0x63,0xDC,0x69,0x4D,0xC9,0x90,0x90, 0x10,0x6D,0x7A,0x7A,0xFA,0xFB,0x14,0x45,0x39,0xC8,0x64,0xB2,0xAB,0x46,0xB9,0xBF, 0xBF,0xFF,0x02,0xB9,0x5C,0x6E,0x2A,0xDB,0xD9,0xD9,0x5D,0x9C,0x38,0x71,0xE2,0xEB, 0x00,0x00,0x8B,0x17,0x2F,0xAE,0xFD,0xFA,0xEB,0xAF,0xE3,0x1D,0x1C,0x1C,0x4C,0x1B, 0x8A,0xF1,0x3C,0x5F,0x17,0x12,0x12,0x72,0x13,0x00,0x60,0xD9,0xB2,0x65,0x57,0x33, 0x32,0x32,0x22,0x08,0x82,0x30,0x7F,0x8F,0x7E,0x7D,0xF1,0xE2,0xC5,0xA6,0x58,0xBD, 0xBD,0xBD,0xDF,0x41,0x66,0x99,0x88,0x31,0xE6,0x01,0x00,0x1C,0x1D,0x1D,0xF3,0x1C, // 00001400: 0x1C,0x1C,0x1E,0x7A,0x2F,0x2F,0x8A,0x62,0x0D,0x00,0xC0,0xF2,0xE5,0xCB,0xAF,0x65, 0x64,0x64,0x44,0x79,0x7A,0x7A,0x9A,0xC6,0xE9,0xD3,0x34,0x7D,0x23,0x38,0x38,0xB8, 0xDE,0x58,0xF6,0xF3,0xF3,0x0B,0x6E,0x69,0x69,0xE9,0xD4,0x11,0xF6,0x70,0xCA,0xF7, 0x83,0xF4,0xF4,0x74,0xD2,0xD3,0xD3,0xD3,0xF4,0x66,0xA5,0xAC,0xAC,0x6C,0x79,0x5D, 0x5D,0xDD,0xB2,0xA8,0xA8,0xA8,0xA9,0x83,0x61,0x5F,0xA2,0x33,0x18,0x63,0x54,0x58, 0x58,0xE8,0x6A,0x2C,0x57,0x56,0x56,0xCE,0x2D,0x2F,0x2F,0x8F,0x89,0x8A,0x8A,0xB2, 0xF9,0xCC,0xAC,0xE1,0xC6,0xA0,0xFC,0xC9,0x24,0x49,0x72,0xD6,0xB9,0x73,0xE7,0x4C, 0xEF,0x51,0x29,0x8A,0xBA,0x3E,0x63,0xC6,0x8C,0xA0,0xDE,0x74,0x24,0xFA,0x8F,0x56, 0xAB,0xB5,0xBF,0x70,0xE1,0xC2,0x6D,0x51,0x14,0x8D,0x3D,0x81,0xB5,0x41,0x41,0x41, 0xCF,0xF6,0xAA,0xF4,0x33,0x65,0x50,0xAE,0xE0,0x18,0x63,0x54,0x5A,0x5A,0x6A,0x7A, 0x7C,0x69,0x6F,0x6F,0x17,0x67,0xCE,0x9C,0x39,0xA0,0x7D,0xDC,0x25,0x7A,0xA7,0xA4, 0xA4,0xC4,0x34,0xFF,0x91,0xE3,0x38,0x3C,0x75,0xEA,0x54,0xEB,0x67,0xE4,0xFE,0x0C, 0xF8,0x7F,0x5F,0x8C,0x5A,0x1B,0xF3,0x46,0xDD,0xD2,0x00,0x00,0x00,0x00,0x49,0x45, 0x4E,0x44,0xAE,0x42,0x60,0x82, // END "logo.png"
78.305476
80
0.788974
1f3bfb4eb204916dd683dfaca6414b3bb7610a0a
86,234
css
CSS
public/static/plugins/iconfont/iconfont.css
bidcms/dsmall
f93b85afeb5518213ea04910fea9deb155e0141a
[ "Apache-2.0" ]
1
2020-07-18T10:50:17.000Z
2020-07-18T10:50:17.000Z
public/static/plugins/iconfont/iconfont.css
bidcms/dsmall
f93b85afeb5518213ea04910fea9deb155e0141a
[ "Apache-2.0" ]
1
2022-02-13T08:55:15.000Z
2022-02-13T08:55:15.000Z
public/static/plugins/iconfont/iconfont.css
bidcms/dsmall
f93b85afeb5518213ea04910fea9deb155e0141a
[ "Apache-2.0" ]
1
2021-12-14T16:00:18.000Z
2021-12-14T16:00:18.000Z
@font-face {font-family: "iconfont"; src: url('iconfont.eot?t=1558687386614'); /* IE9 */ src: url('iconfont.eot?t=1558687386614#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('data:application/x-font-woff2;charset=utf-8;base64,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') format('woff2'), url('iconfont.woff?t=1558687386614') format('woff'), url('iconfont.ttf?t=1558687386614') format('truetype'), /* chrome, firefox, opera, Safari, Android, iOS 4.2+ */ url('iconfont.svg?t=1558687386614#iconfont') format('svg'); /* iOS 4.1- */ } .iconfont { font-family: "iconfont" !important; font-size: 16px; font-style: normal; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .icon-shengriliwu:before { content: "\e753"; } .icon-shouji:before { content: "\e601"; } .icon-liebiao:before { content: "\e600"; } .icon-gouwucheman:before { content: "\e602"; } .icon-chuzu:before { content: "\e604"; } .icon-zuanshi:before { content: "\e605"; } .icon-xiexiangbao:before { content: "\e606"; } .icon-jingxuanshichang:before { content: "\e607"; } .icon-zhubaoshipin:before { content: "\e608"; } .icon-jiajujiancai:before { content: "\e609"; } .icon-jiayongdianqi:before { content: "\e60a"; } .icon-shipin1:before { content: "\e60b"; } .icon-muyingwanju:before { content: "\e60d"; } .icon-shumashouji:before { content: "\e60e"; } .icon-xiebao:before { content: "\e60f"; } .icon-nvzhuangneiyi:before { content: "\e610"; } .icon-huwaiyundong:before { content: "\e611"; } .icon-huazhuangpin1:before { content: "\e612"; } .icon-qichepeijian:before { content: "\e613"; } .icon-jiafangjiashi:before { content: "\e614"; } .icon-jujia:before { content: "\e615"; } .icon-yiyaobaojian:before { content: "\e616"; } .icon-tushuyinxiang:before { content: "\e617"; } .icon-qiehuanqiyou:before { content: "\e618"; } .icon-qiehuanqizuo:before { content: "\e619"; } .icon-qitianwuliyoutuihuanhuo:before { content: "\e61a"; } .icon-zhengpinbaozhang:before { content: "\e61b"; } .icon-bangzhuzhongxin:before { content: "\e61c"; } .icon-shuru:before { content: "\e61d"; } .icon-qiehuanqishang:before { content: "\e61e"; } .icon-nanzhuang:before { content: "\e61f"; } .icon-xie:before { content: "\e620"; } .icon-jiafang:before { content: "\e621"; } .icon-diqufucengdanchujinggao:before { content: "\e622"; } .icon-diantileimu:before { content: "\e623"; } .icon-huiliuqujiage:before { content: "\e624"; } .icon-jiantoucu:before { content: "\e625"; } .icon-jiantouxi:before { content: "\e626"; } .icon-chongshuidian:before { content: "\e627"; } .icon-jiajuyongpin:before { content: "\e628"; } .icon-jiatingqingji:before { content: "\e629"; } .icon-jinkoushangpin:before { content: "\e62a"; } .icon-liangyoufushi:before { content: "\e62b"; } .icon-meirongxihu:before { content: "\e62c"; } .icon-muyingchanpin:before { content: "\e62d"; } .icon-shengxianshuiguo:before { content: "\e62e"; } .icon-shipinyinliao:before { content: "\e62f"; } .icon-man88yuanbaoyou:before { content: "\e630"; } .icon-wodezichan:before { content: "\e631"; } .icon-kanguo:before { content: "\e632"; } .icon-gouwurili:before { content: "\e633"; } .icon-woguanzhudepinpai:before { content: "\e634"; } .icon-zhibojian:before { content: "\e635"; } .icon-tianmaochaoshigouwuche:before { content: "\e636"; } .icon-tianmaochaoshilingshi:before { content: "\e637"; } .icon-neiyinanzhuang:before { content: "\e638"; } .icon-nvxie:before { content: "\e639"; } .icon-yundong:before { content: "\e63a"; } .icon-neiyi:before { content: "\e63c"; } .icon-chaoshi:before { content: "\e63d"; } .icon-huwai:before { content: "\e63e"; } .icon-huanyipi:before { content: "\e63f"; } .icon-xiaojiantou:before { content: "\e640"; } .icon-jia:before { content: "\e641"; } .icon-yiguanzhu:before { content: "\e642"; } .icon-weiguanzhu:before { content: "\e643"; } .icon-miaoxiansheng:before { content: "\e644"; } .icon-chilehui:before { content: "\e646"; } .icon-tishi:before { content: "\e647"; } .icon-tixing:before { content: "\e649"; } .icon-yiwen:before { content: "\e64a"; } .icon-chucuo:before { content: "\e64b"; } .icon-jingshi:before { content: "\e64c"; } .icon-zhengque:before { content: "\e64d"; } .icon-pinpaizhuanxiang:before { content: "\e64e"; } .icon-fenqigou:before { content: "\e64f"; } .icon-gouwuche2:before { content: "\e650"; } .icon-gonggao:before { content: "\e651"; } .icon-fenlei:before { content: "\e652"; } .icon-saoyisao:before { content: "\e653"; } .icon-sousuo:before { content: "\e654"; } .icon-chanpincanshu:before { content: "\e657"; } .icon-chiping:before { content: "\e658"; } .icon-diyu:before { content: "\e659"; } .icon-fenxiang:before { content: "\e65a"; } .icon-gaoyu:before { content: "\e65b"; } .icon-goumai:before { content: "\e65c"; } .icon-zhanweitu:before { content: "\e65d"; } .icon-fenlei1:before { content: "\e65e"; } .icon-sousuo1:before { content: "\e65f"; } .icon-baocundaozhuomian:before { content: "\e660"; } .icon-guanzhudianpu:before { content: "\e661"; } .icon-yiguanzhu1:before { content: "\e662"; } .icon-dianpu:before { content: "\e663"; } .icon-guanzhuxuanzhong:before { content: "\e664"; } .icon-guanzhu:before { content: "\e665"; } .icon-huiyuanqia:before { content: "\e666"; } .icon-wo:before { content: "\e667"; } .icon-youhuiquan:before { content: "\e668"; } .icon-biaoqing:before { content: "\e669"; } .icon-gongnengjianyi:before { content: "\e66a"; } .icon-huanyipi1:before { content: "\e66b"; } .icon-shengbo:before { content: "\e66c"; } .icon-shijian:before { content: "\e66d"; } .icon-wentifankui:before { content: "\e66e"; } .icon-xinxi:before { content: "\e66f"; } .icon-xiugaioryijian:before { content: "\e672"; } .icon-zan:before { content: "\e673"; } .icon-chiping1:before { content: "\e674"; } .icon-xiajiang:before { content: "\e675"; } .icon-jinrudianpu:before { content: "\e676"; } .icon-pengyouquan:before { content: "\e677"; } .icon-xinlang:before { content: "\e678"; } .icon-weixin:before { content: "\e679"; } .icon-shangsheng:before { content: "\e67a"; } .icon-mima:before { content: "\e67b"; } .icon-erweima:before { content: "\e67c"; } .icon-lianjie:before { content: "\e67d"; } .icon-dianzan:before { content: "\e67e"; } .icon-fanhui8:before { content: "\e67f"; } .icon-fanhui7:before { content: "\e680"; } .icon-fanhui6:before { content: "\e681"; } .icon-fanhui5:before { content: "\e682"; } .icon-gengduo:before { content: "\e683"; } .icon-shoucangxuanzhong:before { content: "\e684"; } .icon-shoucang:before { content: "\e685"; } .icon-fanhui1:before { content: "\e686"; } .icon-fanhui2:before { content: "\e687"; } .icon-fanhui3:before { content: "\e688"; } .icon-fanhui4:before { content: "\e689"; } .icon-xuanzhuan:before { content: "\e68a"; } .icon-fangxiang2:before { content: "\e68b"; } .icon-tianmaobao:before { content: "\e68c"; } .icon-fangxiang3:before { content: "\e68d"; } .icon-fangxiang4:before { content: "\e68e"; } .icon-fandouer:before { content: "\e68f"; } .icon-sanjiao2:before { content: "\e690"; } .icon-sanjiao1:before { content: "\e691"; } .icon-sanjiao4:before { content: "\e692"; } .icon-sanjiao3:before { content: "\e693"; } .icon-jifen:before { content: "\e694"; } .icon-weixuanzhongyuanquan:before { content: "\e695"; } .icon-shanchu2:before { content: "\e696"; } .icon-dianhua:before { content: "\e697"; } .icon-huidaodingbu:before { content: "\e698"; } .icon-shanchu:before { content: "\e699"; } .icon-gouwuchexuanzhong:before { content: "\e69a"; } .icon-wodexuanzhong:before { content: "\e69b"; } .icon-quanbudingdan:before { content: "\e69c"; } .icon-anzhuoxiala:before { content: "\e69d"; } .icon-daishouhuo:before { content: "\e69e"; } .icon-liebiaomoshi2:before { content: "\e69f"; } .icon-daifahuo:before { content: "\e6a0"; } .icon-daifukuan:before { content: "\e6a1"; } .icon-paishexuanzhong:before { content: "\e6a2"; } .icon-paixing:before { content: "\e6a3"; } .icon-guanyuwo:before { content: "\e6a4"; } .icon-nianhuo:before { content: "\e6a5"; } .icon-nianhuo1:before { content: "\e6a6"; } .icon-chakan:before { content: "\e6a7"; } .icon-shanchu1:before { content: "\e6a8"; } .icon-zanxuanzhong:before { content: "\e6a9"; } .icon-xianshihoumai:before { content: "\e6aa"; } .icon-shouhouwuyou:before { content: "\e6ab"; } .icon-tianmaofenqi:before { content: "\e6ac"; } .icon-shengritequan:before { content: "\e6ad"; } .icon-kefuyouxian:before { content: "\e6ae"; } .icon-jisutuikuan:before { content: "\e6af"; } .icon-pinpaizhuanxiang1:before { content: "\e6b0"; } .icon-tuihuobaozhang:before { content: "\e6b1"; } .icon-biaoqing1:before { content: "\e6b2"; } .icon-tishi1:before { content: "\e6b3"; } .icon-bangzhu:before { content: "\e6b4"; } .icon-biaochi:before { content: "\e6b5"; } .icon-cuowu:before { content: "\e6b6"; } .icon-ban:before { content: "\e754"; } .icon-jifen1:before { content: "\e6b7"; } .icon-zuji:before { content: "\e6b8"; } .icon-jindianzi:before { content: "\e6b9"; } .icon-duoyun:before { content: "\e6ba"; } .icon-mai:before { content: "\e6bb"; } .icon-qing:before { content: "\e6bc"; } .icon-wu:before { content: "\e6bd"; } .icon-xue:before { content: "\e6be"; } .icon-yin:before { content: "\e6bf"; } .icon-yu:before { content: "\e6c0"; } .icon-hongbao:before { content: "\e6c1"; } .icon-tuikuan:before { content: "\e6c2"; } .icon-tuikuan1:before { content: "\e6c3"; } .icon-xiaoxi:before { content: "\e6c4"; } .icon-fenxiang1:before { content: "\e6c5"; } .icon-fenxiang2:before { content: "\e6c6"; } .icon-fenxiang3:before { content: "\e6c7"; } .icon-gengduo1:before { content: "\e6c8"; } .icon-cart:before { content: "\e6c9"; } .icon-home:before { content: "\e6ca"; } .icon-home2:before { content: "\e6cb"; } .icon-camera:before { content: "\e6cc"; } .icon-camera2:before { content: "\e6cd"; } .icon-attention:before { content: "\e6ce"; } .icon-attention2:before { content: "\e6cf"; } .icon-search:before { content: "\e6d0"; } .icon-shuaxin:before { content: "\e6d1"; } .icon-fun:before { content: "\e6d2"; } .icon-new:before { content: "\e6d3"; } .icon-fun1:before { content: "\e6d4"; } .icon-mine:before { content: "\e6d5"; } .icon-mine2:before { content: "\e6d6"; } .icon-tabulation:before { content: "\e6d7"; } .icon-tabulation1:before { content: "\e6d8"; } .icon-liebiao2:before { content: "\e6d9"; } .icon-chakan2:before { content: "\e6da"; } .icon-jia1:before { content: "\e6db"; } .icon-jian:before { content: "\e6dc"; } .icon-iconfontscan:before { content: "\e6dd"; } .icon-quanbudingdan1:before { content: "\e6df"; } .icon-shezhi:before { content: "\e6e0"; } .icon-wodehuiyuanquanyi:before { content: "\e6e1"; } .icon-wodezichan1:before { content: "\e6e2"; } .icon-qichejinrong:before { content: "\e6e3"; } .icon-31shoucangxuanzhong:before { content: "\e6e4"; } .icon-31shoucang:before { content: "\e6e5"; } .icon-31guanbi:before { content: "\e6e6"; } .icon-31xuanze:before { content: "\e6e7"; } .icon-31guanzhudianpu:before { content: "\e6e8"; } .icon-31xuanzhong:before { content: "\e6e9"; } .icon-31yiguanzhudianpu:before { content: "\e6ea"; } .icon-31dianzan:before { content: "\e6eb"; } .icon-31dianpu:before { content: "\e6ec"; } .icon-31fenxiang:before { content: "\e6ed"; } .icon-31zhuanfa:before { content: "\e6ee"; } .icon-31daifahuo:before { content: "\e6ef"; } .icon-31daifukuan:before { content: "\e6f0"; } .icon-31daishouhuo:before { content: "\e6f1"; } .icon-31daipingjia:before { content: "\e6f2"; } .icon-tuikuantuihuo:before { content: "\e6f3"; } .icon-31huiyuanqia:before { content: "\e6f4"; } .icon-31jifen:before { content: "\e6f5"; } .icon-31youhuiquan:before { content: "\e6f6"; } .icon-31tianmaobao:before { content: "\e6f7"; } .icon-31hongbao:before { content: "\e6f8"; } .icon-31fanerxuanzhong:before { content: "\e6f9"; } .icon-31faner:before { content: "\e6fa"; } .icon-31gouwuchexuanzhong:before { content: "\e6fb"; } .icon-31gouwuche:before { content: "\e6fc"; } .icon-31guanzhuxuanzhong:before { content: "\e6fd"; } .icon-31guanzhu:before { content: "\e6fe"; } .icon-31shouyexuanzhong:before { content: "\e6ff"; } .icon-31shouye:before { content: "\e700"; } .icon-31wodexuanzhong:before { content: "\e701"; } .icon-31wode:before { content: "\e702"; } .icon-jiangjia:before { content: "\e703"; } .icon-liwuhuodong:before { content: "\e704"; } .icon-31jiancai:before { content: "\e705"; } .icon-31xuanzhuan:before { content: "\e706"; } .icon-datumoshi:before { content: "\e707"; } .icon-liebiaomoshi:before { content: "\e708"; } .icon-zhongtumoshi:before { content: "\e709"; } .icon-biaochi1:before { content: "\e70a"; } .icon-chakan1:before { content: "\e70b"; } .icon-guanbi:before { content: "\e70c"; } .icon-guanzhu1:before { content: "\e70d"; } .icon-huore:before { content: "\e70e"; } .icon-laba:before { content: "\e70f"; } .icon-lingdang:before { content: "\e710"; } .icon-31paishexuanzhong:before { content: "\e711"; } .icon-31paishe:before { content: "\e712"; } .icon-31qichejinrong:before { content: "\e713"; } .icon-31rexiao:before { content: "\e714"; } .icon-31saoma:before { content: "\e715"; } .icon-31shangxin:before { content: "\e716"; } .icon-31shuaxin:before { content: "\e717"; } .icon-31sousuo:before { content: "\e718"; } .icon-31tishi:before { content: "\e719"; } .icon-31wentifankui:before { content: "\e71a"; } .icon-31xiaoxi:before { content: "\e71b"; } .icon-31yiwen:before { content: "\e71c"; } .icon-31chanpincanshu:before { content: "\e71d"; } .icon-31dianhua:before { content: "\e71e"; } .icon-31dingdan:before { content: "\e71f"; } .icon-31dingwei:before { content: "\e720"; } .icon-31goumaichongzhi:before { content: "\e721"; } .icon-31guanzhu1xuanzhong:before { content: "\e722"; } .icon-31guanzhu1:before { content: "\e723"; } .icon-31huidaodingbu:before { content: "\e724"; } .icon-31shanchu:before { content: "\e725"; } .icon-31zuji:before { content: "\e726"; } .icon-31hongbao1:before { content: "\e727"; } .icon-31leimu:before { content: "\e728"; } .icon-31liebiao:before { content: "\e729"; } .icon-31tuwenxiangqing:before { content: "\e72a"; } .icon-31baocundaozhuomian:before { content: "\e72b"; } .icon-31chiping:before { content: "\e72c"; } .icon-31erweima:before { content: "\e72d"; } .icon-bianji:before { content: "\e72e"; } .icon-31fanhui:before { content: "\e72f"; } .icon-31pinglun:before { content: "\e730"; } .icon-31qiandao:before { content: "\e731"; } .icon-31quanbushangpin:before { content: "\e732"; } .icon-31shangsheng:before { content: "\e733"; } .icon-31shezhi:before { content: "\e734"; } .icon-31shengbo:before { content: "\e735"; } .icon-31shijian:before { content: "\e736"; } .icon-31shoucangdedianpu:before { content: "\e737"; } .icon-31shouqi:before { content: "\e738"; } .icon-31xiajiang:before { content: "\e739"; } .icon-31xiala:before { content: "\e73a"; } .icon-31tishi1:before { content: "\e73b"; } .icon-31fanhui1:before { content: "\e73c"; } .icon-31fanhui2:before { content: "\e73d"; } .icon-31qichejinrong1:before { content: "\e73e"; } .icon-31haoyou:before { content: "\e73f"; } .icon-dingyue:before { content: "\e740"; } .icon-31aichegujia:before { content: "\e741"; } .icon-31dapei:before { content: "\e742"; } .icon-31guanfangzhishou:before { content: "\e743"; } .icon-31moda:before { content: "\e744"; } .icon-31paixingbang:before { content: "\e745"; } .icon-31tianmaojiadian:before { content: "\e746"; } .icon-31weizhangkuaicha:before { content: "\e747"; } .icon-kefu:before { content: "\e750"; } .icon-hekricon24:before { content: "\e648"; } .icon-xiangji:before { content: "\e656"; } .icon-zhifubao:before { content: "\e74d"; } .icon-arrows:before { content: "\e9cf"; } .icon-envelope:before { content: "\ea98"; } .icon-copy:before { content: "\e756"; } .icon-userplus-copy:before { content: "\e76d"; } .icon-weibiaoti11:before { content: "\e749"; } .icon-baojiaquotation:before { content: "\e751"; } .icon-baojiaquotation2:before { content: "\e752"; } .icon-jiadian:before { content: "\e670"; } .icon-jiaju:before { content: "\e671"; } .icon-shipin:before { content: "\e63b"; } .icon-yifu:before { content: "\e645"; } .icon-jiadian1:before { content: "\e60c"; } .icon-xingzhuang42:before { content: "\e603"; } .icon-envelopeo:before { content: "\e75a"; } .icon-print:before { content: "\e7ca"; } .icon-calculator:before { content: "\eb7c"; } .icon-box:before { content: "\e74b"; } .icon-huazhuangpin:before { content: "\e6de"; } .icon-lock:before { content: "\e768"; } .icon-muying:before { content: "\e655"; } .icon-square-o:before { content: "\e762"; } .icon-zhuanfa:before { content: "\e74e"; } .icon-yousuojin:before { content: "\e748"; } .icon-kaiguanguan-open:before { content: "\e76b"; } .icon-kuoda:before { content: "\e7b0"; } .icon-hezuowoshou:before { content: "\e74f"; } .icon-poweroff:before { content: "\e764"; } .icon-jiaohuan:before { content: "\e74a"; } .icon-suojin-jian:before { content: "\e789"; } .icon-xuanzhongkuang:before { content: "\e769"; } .icon-kaiguanguan:before { content: "\e76c"; } .icon-thin-_book_readi:before { content: "\e74c"; } .icon-weixuanzhongkuang:before { content: "\e76a"; } .icon-calendar:before { content: "\e8d6"; } .icon-font:before { content: "\e8ed"; }
59.308116
68,213
0.898659
d2c95a8bdab85a2f2a4277d810c6fbc1f0dc9552
402
php
PHP
app/Models/Kecamatan.php
regesaga/dropdown-KUNINGAN
6382ed07f29e5d12b71780bd5441ae222cd1b79f
[ "MIT" ]
null
null
null
app/Models/Kecamatan.php
regesaga/dropdown-KUNINGAN
6382ed07f29e5d12b71780bd5441ae222cd1b79f
[ "MIT" ]
null
null
null
app/Models/Kecamatan.php
regesaga/dropdown-KUNINGAN
6382ed07f29e5d12b71780bd5441ae222cd1b79f
[ "MIT" ]
null
null
null
<?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; class Kecamatan extends Model { use HasFactory; protected $table = 'tbl_kecamatan'; protected $fillable = [ 'kec_nama', 'kec_kab' ]; protected $primaryKey = 'kec_kode'; public $incrementing = false; protected $keyType = 'string'; }
20.1
54
0.679104
c46ffa56c8f92102caa1eb4574165ea549a3ac35
329
h
C
Kmoji-objc/KMMyEmotionViewController.h
fantaxy/MUA
e713cc4aef8c5dffe33d502b71fa0becacd42f7c
[ "MIT" ]
null
null
null
Kmoji-objc/KMMyEmotionViewController.h
fantaxy/MUA
e713cc4aef8c5dffe33d502b71fa0becacd42f7c
[ "MIT" ]
null
null
null
Kmoji-objc/KMMyEmotionViewController.h
fantaxy/MUA
e713cc4aef8c5dffe33d502b71fa0becacd42f7c
[ "MIT" ]
null
null
null
// // KMSettingViewController.h // Kmoji-objc // // Created by yangx2 on 10/18/14. // Copyright (c) 2014 yang. All rights reserved. // #import <UIKit/UIKit.h> #import "KMEmotionGridView.h" @interface KMMyEmotionViewController : UIViewController <UITableViewDataSource, UITableViewDelegate, KMEmotionGridViewDelegate> @end
21.933333
127
0.759878
1e7136a41392ab8a23145febaaf1925af063b44a
7,549
asm
Assembly
Transynther/x86/_processed/NC/_zr_/i7-7700_9_0x48.log_21829_2247.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
9
2020-08-13T19:41:58.000Z
2022-03-30T12:22:51.000Z
Transynther/x86/_processed/NC/_zr_/i7-7700_9_0x48.log_21829_2247.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
1
2021-04-29T06:29:35.000Z
2021-05-13T21:02:30.000Z
Transynther/x86/_processed/NC/_zr_/i7-7700_9_0x48.log_21829_2247.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
3
2020-07-14T17:07:07.000Z
2022-03-21T01:12:22.000Z
.global s_prepare_buffers s_prepare_buffers: push %r11 push %r13 push %r9 push %rax push %rcx push %rdi push %rdx push %rsi lea addresses_WC_ht+0x1a2c7, %rsi lea addresses_A_ht+0xb967, %rdi nop nop nop nop add %rdx, %rdx mov $34, %rcx rep movsb nop sub $7283, %r9 lea addresses_normal_ht+0xafe7, %r13 nop nop nop inc %rax mov $0x6162636465666768, %r9 movq %r9, (%r13) nop nop and $51268, %r9 lea addresses_WC_ht+0xfd67, %rax clflush (%rax) xor $21961, %rsi movb $0x61, (%rax) cmp $19547, %rax lea addresses_A_ht+0x7137, %r13 nop nop sub %rdx, %rdx movb (%r13), %al nop nop sub $45495, %rcx lea addresses_A_ht+0x86e7, %rsi lea addresses_A_ht+0xd567, %rdi nop cmp $20991, %rdx mov $29, %rcx rep movsl nop nop nop nop sub %rdx, %rdx lea addresses_normal_ht+0x1b487, %r13 nop add %rcx, %rcx mov (%r13), %rsi nop nop nop cmp %rsi, %rsi lea addresses_WT_ht+0x9d77, %rsi lea addresses_WC_ht+0xa967, %rdi nop and %r11, %r11 mov $78, %rcx rep movsw nop nop nop nop cmp $9927, %r11 lea addresses_normal_ht+0xdf37, %rsi lea addresses_normal_ht+0xdbe7, %rdi nop nop nop cmp %rax, %rax mov $23, %rcx rep movsq nop nop nop nop nop and $53612, %rdx lea addresses_A_ht+0xd867, %rsi lea addresses_normal_ht+0x1c28b, %rdi nop nop nop nop nop xor $41311, %r11 mov $47, %rcx rep movsw nop dec %rax lea addresses_UC_ht+0x9d87, %rsi lea addresses_normal_ht+0xc8a7, %rdi nop nop nop sub %r9, %r9 mov $27, %rcx rep movsq add $32812, %rdx lea addresses_WT_ht+0x124b9, %rsi lea addresses_D_ht+0x1a467, %rdi nop and $43197, %rdx mov $17, %rcx rep movsq xor $46688, %r11 lea addresses_UC_ht+0x13b67, %r11 nop xor $41069, %rcx movb (%r11), %al nop nop nop nop sub $45179, %rdx lea addresses_WT_ht+0x1d251, %rsi nop nop sub $35582, %r9 movb $0x61, (%rsi) nop nop nop nop nop sub %rdx, %rdx pop %rsi pop %rdx pop %rdi pop %rcx pop %rax pop %r9 pop %r13 pop %r11 ret .global s_faulty_load s_faulty_load: push %r11 push %r14 push %rax push %rbx push %rdi // Store lea addresses_WT+0x12a7, %rbx nop nop inc %rdi movb $0x51, (%rbx) nop nop add $61913, %rdi // Faulty Load mov $0x26b4320000000d67, %rdi nop and %r11, %r11 vmovups (%rdi), %ymm3 vextracti128 $0, %ymm3, %xmm3 vpextrq $0, %xmm3, %r14 lea oracles, %r11 and $0xff, %r14 shlq $12, %r14 mov (%r11,%r14,1), %r14 pop %rdi pop %rbx pop %rax pop %r14 pop %r11 ret /* <gen_faulty_load> [REF] {'OP': 'LOAD', 'src': {'type': 'addresses_NC', 'AVXalign': False, 'congruent': 0, 'size': 2, 'same': False, 'NT': False}} {'OP': 'STOR', 'dst': {'type': 'addresses_WT', 'AVXalign': True, 'congruent': 6, 'size': 1, 'same': False, 'NT': False}} [Faulty Load] {'OP': 'LOAD', 'src': {'type': 'addresses_NC', 'AVXalign': False, 'congruent': 0, 'size': 32, 'same': True, 'NT': False}} <gen_prepare_buffer> {'OP': 'REPM', 'src': {'type': 'addresses_WC_ht', 'congruent': 5, 'same': False}, 'dst': {'type': 'addresses_A_ht', 'congruent': 10, 'same': False}} {'OP': 'STOR', 'dst': {'type': 'addresses_normal_ht', 'AVXalign': False, 'congruent': 7, 'size': 8, 'same': False, 'NT': False}} {'OP': 'STOR', 'dst': {'type': 'addresses_WC_ht', 'AVXalign': False, 'congruent': 10, 'size': 1, 'same': False, 'NT': False}} {'OP': 'LOAD', 'src': {'type': 'addresses_A_ht', 'AVXalign': True, 'congruent': 3, 'size': 1, 'same': False, 'NT': False}} {'OP': 'REPM', 'src': {'type': 'addresses_A_ht', 'congruent': 7, 'same': False}, 'dst': {'type': 'addresses_A_ht', 'congruent': 10, 'same': False}} {'OP': 'LOAD', 'src': {'type': 'addresses_normal_ht', 'AVXalign': False, 'congruent': 3, 'size': 8, 'same': False, 'NT': False}} {'OP': 'REPM', 'src': {'type': 'addresses_WT_ht', 'congruent': 4, 'same': False}, 'dst': {'type': 'addresses_WC_ht', 'congruent': 10, 'same': False}} {'OP': 'REPM', 'src': {'type': 'addresses_normal_ht', 'congruent': 4, 'same': False}, 'dst': {'type': 'addresses_normal_ht', 'congruent': 7, 'same': False}} {'OP': 'REPM', 'src': {'type': 'addresses_A_ht', 'congruent': 7, 'same': True}, 'dst': {'type': 'addresses_normal_ht', 'congruent': 2, 'same': False}} {'OP': 'REPM', 'src': {'type': 'addresses_UC_ht', 'congruent': 5, 'same': False}, 'dst': {'type': 'addresses_normal_ht', 'congruent': 3, 'same': False}} {'OP': 'REPM', 'src': {'type': 'addresses_WT_ht', 'congruent': 1, 'same': False}, 'dst': {'type': 'addresses_D_ht', 'congruent': 7, 'same': False}} {'OP': 'LOAD', 'src': {'type': 'addresses_UC_ht', 'AVXalign': False, 'congruent': 9, 'size': 1, 'same': False, 'NT': False}} {'OP': 'STOR', 'dst': {'type': 'addresses_WT_ht', 'AVXalign': False, 'congruent': 0, 'size': 1, 'same': False, 'NT': False}} {'00': 21829} 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 */
36.468599
2,999
0.659028
f596926766260f25d11afd3d03cb8e8cc96ff8ea
3,108
kt
Kotlin
src/main/java/net/eduard/api/core/BukkitReplacers.kt
EduardMaster/EduardAPI
e9f5fcff5bcda4ac18d21b739fc0e462a7254cf8
[ "MIT" ]
11
2019-04-11T18:10:43.000Z
2021-08-20T07:19:01.000Z
src/main/java/net/eduard/api/core/BukkitReplacers.kt
EduardMaster/EduardAPI
e9f5fcff5bcda4ac18d21b739fc0e462a7254cf8
[ "MIT" ]
1
2020-11-03T19:10:49.000Z
2020-11-03T19:10:49.000Z
src/main/java/net/eduard/api/core/BukkitReplacers.kt
EduardMaster/EduardAPI
e9f5fcff5bcda4ac18d21b739fc0e462a7254cf8
[ "MIT" ]
7
2019-09-18T19:07:24.000Z
2021-07-16T02:21:54.000Z
package net.eduard.api.core import net.eduard.api.lib.kotlin.format import net.eduard.api.lib.modules.Extra import net.eduard.api.lib.modules.Mine import net.eduard.api.lib.modules.VaultAPI import org.bukkit.Statistic /** * Registrando os replacers mais usados na Displayboard * * @author Eduard */ class BukkitReplacers { init { if (Mine.hasPlugin("Vault")) { Mine.addReplacer("player_group") { VaultAPI.getPermission().getPrimaryGroup(it) } Mine.addReplacer("player_prefix") { Mine.toChatMessage( VaultAPI.getChat().getPlayerPrefix(it)) } Mine.addReplacer("player_suffix") { Mine.toChatMessage( Mine.toChatMessage(VaultAPI.getChat().getPlayerPrefix(it))) } Mine.addReplacer("group_prefix") { Mine.toChatMessage( VaultAPI.getChat().getGroupPrefix("null", VaultAPI.getPermission().getPrimaryGroup(it))) } Mine.addReplacer("group_suffix") { Mine.toChatMessage( VaultAPI.getChat().getGroupSuffix("null", VaultAPI.getPermission().getPrimaryGroup(it))) } Mine.addReplacer("player_money") { if (VaultAPI.hasVault() && VaultAPI.hasEconomy()) { return@addReplacer Extra.MONEY.format(VaultAPI.getEconomy().getBalance(it)) } "0.00" } Mine.addReplacer("player_balance") { if (VaultAPI.hasVault() && VaultAPI.hasEconomy()) { return@addReplacer Extra.formatMoney(VaultAPI.getEconomy().getBalance(it)) } "0.00" } } Mine.addReplacer("players_online") { Mine.getPlayers().size } Mine.addReplacer("player_world") { it.world.name } Mine.addReplacer("player_display_name") { it.displayName } Mine.addReplacer("player_name") { it.name } Mine.addReplacer("player_health") { it.health.format() } Mine.addReplacer("player_max_health") { it.maxHealth.format() } Mine.addReplacer("player_level") { it.level } Mine.addReplacer("player_xp") { it.totalExperience.format()} Mine.addReplacer("player_kills") { it.getStatistic(Statistic.PLAYER_KILLS) } Mine.addReplacer("player_deaths") { it.getStatistic(Statistic.DEATHS) } Mine.addReplacer("player_kdr") { p -> val kill = p.getStatistic(Statistic.PLAYER_KILLS) val death = p.getStatistic(Statistic.DEATHS) if (kill == 0||death == 0) return@addReplacer 0 kill / death } Mine.addReplacer("player_kill/death") { player -> val kill = player.getStatistic(Statistic.PLAYER_KILLS) val death = player.getStatistic(Statistic.DEATHS) if (kill == 0||death == 0) return@addReplacer 0 kill / death } Mine.addReplacer("player_loc_x") { it.location.x } Mine.addReplacer("player_loc_y") { it.location.y } Mine.addReplacer("player_loc_z") { it.location.z } } }
44.4
112
0.606499
2a63c430d936837d21aceee2a65e59f3fe51c1ac
1,002
java
Java
sdk/apimanagement/azure-resourcemanager-apimanagement/src/samples/java/com/azure/resourcemanager/apimanagement/generated/ApiManagementServiceGetDomainOwnershipIdentifierSamples.java
billwert/azure-sdk-for-java
f907d9027d253cdfb37850852cf9cfe500d5c1f6
[ "MIT" ]
1
2022-01-08T06:43:30.000Z
2022-01-08T06:43:30.000Z
sdk/apimanagement/azure-resourcemanager-apimanagement/src/samples/java/com/azure/resourcemanager/apimanagement/generated/ApiManagementServiceGetDomainOwnershipIdentifierSamples.java
billwert/azure-sdk-for-java
f907d9027d253cdfb37850852cf9cfe500d5c1f6
[ "MIT" ]
null
null
null
sdk/apimanagement/azure-resourcemanager-apimanagement/src/samples/java/com/azure/resourcemanager/apimanagement/generated/ApiManagementServiceGetDomainOwnershipIdentifierSamples.java
billwert/azure-sdk-for-java
f907d9027d253cdfb37850852cf9cfe500d5c1f6
[ "MIT" ]
null
null
null
// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. // Code generated by Microsoft (R) AutoRest Code Generator. package com.azure.resourcemanager.apimanagement.generated; import com.azure.core.util.Context; /** Samples for ApiManagementService GetDomainOwnershipIdentifier. */ public final class ApiManagementServiceGetDomainOwnershipIdentifierSamples { /* * x-ms-original-file: specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2021-08-01/examples/ApiManagementServiceGetDomainOwnershipIdentifier.json */ /** * Sample code: ApiManagementServiceGetDomainOwnershipIdentifier. * * @param manager Entry point to ApiManagementManager. */ public static void apiManagementServiceGetDomainOwnershipIdentifier( com.azure.resourcemanager.apimanagement.ApiManagementManager manager) { manager.apiManagementServices().getDomainOwnershipIdentifierWithResponse(Context.NONE); } }
41.75
176
0.787425
ddc34ca1286ef761ff4285a9f64c30c2000cd6a9
2,610
php
PHP
backend/components/tableGenerate_plate.php
NomarZwill/samalco.yii.ru
4c86cf0ff062f55eea747bccd1991802cec53110
[ "BSD-3-Clause" ]
null
null
null
backend/components/tableGenerate_plate.php
NomarZwill/samalco.yii.ru
4c86cf0ff062f55eea747bccd1991802cec53110
[ "BSD-3-Clause" ]
null
null
null
backend/components/tableGenerate_plate.php
NomarZwill/samalco.yii.ru
4c86cf0ff062f55eea747bccd1991802cec53110
[ "BSD-3-Clause" ]
null
null
null
<?php exit; // Запуск скрипта в SSH следующей командой: // /usr/bin/php -f /var/www/samalco.ru/assets/parser/tableGenerate_plate.php $aluFormType = "plates"; $balanceMin = 3; $balanceMax = 100; $balanceIncrement = 1; $priceMin = 110; $priceMax = 150; $priceIncrement = 1; //---------------------- $alloys = array("АД33", "ПАС-2", "ПАС-1", "АБТ-101", "АК4", "1163", "1915", "ВД1", "Д16Ч", "В95", "Д16", "Д1", "АВ", "АМГ5", "АМГ2", "АД1", "А5", "АМЦ", "АД0", "АД", "А6", "А7", "АМГ3", "АМГ6", "АД31", "АД35", "Д19", "Д19ч", "Д20", "В95пч", "В95оч", "АК4-1", "АК4-1ч", "1201", "1105", "1560", "АБТ-102", "5083", "1561", "6061", "7075", "1980", "1933"); $alloys_1 = array("АД31", "АД35", "Д19", "Д19ч", "Д20", "В95пч", "В95оч", "АК4-1", "АК4-1ч", "1201", "1105", "АБТ-101", "АБТ-102", "6061", "7075", "1980", "1933", "ПАС-2", "ПАС-1", "АД33", "АК4", "1163", "1915", "ВД1", "Д16Ч", "В95", "Д16", "Д1", "АВ"); $alloys_2 = array("АД0", "АД", "А6", "А7", "АМГ3", "АМГ6", "АД31", "АД35", "Д19", "Д19ч", "Д20", "В95пч", "В95оч", "АК4-1", "АК4-1ч", "1105", "1560", "1561", "АБТ-102", "5083", "1201", "6061", "7075", "1980", "1933", "АМГ5", "АМГ2", "АД1", "А5", "АМЦ", "АД33", "АК4", "1163", "1915", "ВД1", "Д16Ч", "В95", "Д16", "Д1", "АВ"); $alloys_3 = $alloys; $heatTreatements = array("без т/о", "М", "Т"); $heatTreatements_1 = array("Т"); $heatTreatements_2 = array("М"); $heatTreatements_3 = array("без т/о"); $lengths = array("2000", "2500", "3000", "3500", "4000", "4500", "5000", "5500", "6000", "6500", "7000"); $depths = array("10.5", "13", "15", "17", "20", "25", "30", "35", "40", "45", "50", "60", "70", "80", "90", "100", "110", "120", "130", "140", "150", "160", "170", "180", "190", "200"); $widths = array("1000", "1200", "1500", "2000"); $height = 0; $diameter = 0; $section = ''; $gostTemp = ''; $file = "/var/www/samalco.yii.ru/backend/components/$aluFormType.csv"; //Запись в файл file_put_contents($file, "", LOCK_EX); //предварительно чистим foreach($alloys as $alloy){ foreach($heatTreatements as $heatTreatement){ foreach($depths as $depth){ foreach($widths as $width){ foreach($lengths as $length){ if( (in_array($heatTreatement, $heatTreatements_1) && in_array($alloy, $alloys_1)) || (in_array($heatTreatement, $heatTreatements_2) && in_array($alloy, $alloys_2)) || (in_array($heatTreatement, $heatTreatements_3) && in_array($alloy, $alloys_3)) ) { $stringLine = "$alloy;$heatTreatement;$depth;$width;$height;$length;$diameter;$section;$gostTemp\n"; file_put_contents($file, $stringLine, FILE_APPEND | LOCK_EX); } } } } } }
51.176471
352
0.570115
162a7fbfd370bb87f944ce40d9a011655896b6ec
736
ts
TypeScript
src/shared/components/gameState.ts
MamFarta/haxvolleyball
a3bd6fda1b606abf94d89630b13a854be5bf5e1b
[ "MIT" ]
null
null
null
src/shared/components/gameState.ts
MamFarta/haxvolleyball
a3bd6fda1b606abf94d89630b13a854be5bf5e1b
[ "MIT" ]
null
null
null
src/shared/components/gameState.ts
MamFarta/haxvolleyball
a3bd6fda1b606abf94d89630b13a854be5bf5e1b
[ "MIT" ]
null
null
null
import Player from 'shared/components/player'; import Ball from 'shared/components/ball'; import Net from 'shared/components/net'; export default class GameState { private players:Player[]; private ball?:Ball; private net: Net; constructor(players: Player[]) { this.players = players; this.net = new Net(); } getPlayers(): Player[] { return this.players; } getPlayerById(id:string): Player | undefined { return this.players.find((player) => player.id === id); } addPlayer(player: Player): void { this.players.push(player); } setBall(ball: Ball): void { this.ball = ball; } getBall(): Ball | undefined { return this.ball; } getNet(): Net { return this.net; } }
17.95122
59
0.642663
75082dfbf3470b1fc6fbccd24d99b72bebdca401
365
h
C
Example/Example/Stock/View/FSStockTextCell.h
zhangzhongyan/FSGridView
12a1b7f9178559a8bcd574693fb61b2a447e03c9
[ "MIT" ]
10
2020-06-05T09:29:19.000Z
2022-02-25T10:22:59.000Z
Example/Example/Stock/View/FSStockTextCell.h
zhangzhongyan/FSGridView
12a1b7f9178559a8bcd574693fb61b2a447e03c9
[ "MIT" ]
5
2021-01-10T21:46:01.000Z
2021-10-09T04:26:42.000Z
Example/Example/Stock/View/FSStockTextCell.h
zhangzhongyan/FSGridView
12a1b7f9178559a8bcd574693fb61b2a447e03c9
[ "MIT" ]
1
2022-02-25T10:23:01.000Z
2022-02-25T10:23:01.000Z
// // FSStockTextCell.h // Example // // Created by 张忠燕 on 2020/5/30. // Copyright © 2020 张忠燕. All rights reserved. // #import <UIKit/UIKit.h> NS_ASSUME_NONNULL_BEGIN /// 股票表格右侧文本Cell @interface FSStockTextCell : UICollectionViewCell /// 文本 @property (nonatomic, strong, readonly) UILabel *label; /// 高度 + (CGFloat)cellHeight; @end NS_ASSUME_NONNULL_END
14.6
55
0.715068
b906f59a20b7ecfca4bba4db22dece3ef1a5f075
970
h
C
AliPayForDebug/AliPayForDebug/AlipayWallet_Headers/EmotionCacher.h
ceekay1991/AliPayForDebug
5795e5db31e5b649d4758469b752585e63e84d94
[ "MIT" ]
5
2020-03-29T12:08:37.000Z
2021-05-26T05:20:11.000Z
AliPayForDebug/AliPayForDebug/AlipayWallet_Headers/EmotionCacher.h
ceekay1991/AliPayForDebug
5795e5db31e5b649d4758469b752585e63e84d94
[ "MIT" ]
null
null
null
AliPayForDebug/AliPayForDebug/AlipayWallet_Headers/EmotionCacher.h
ceekay1991/AliPayForDebug
5795e5db31e5b649d4758469b752585e63e84d94
[ "MIT" ]
5
2020-04-17T03:24:04.000Z
2022-03-30T05:42:17.000Z
// // Generated by class-dump 3.5 (64 bit) (Debug version compiled Sep 17 2017 16:24:48). // // class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2015 by Steve Nygard. // #import <objc/NSObject.h> @class NSMutableDictionary; @protocol OS_dispatch_queue; @interface EmotionCacher : NSObject { NSMutableDictionary *_emotionIdPathMap; NSMutableDictionary *_emotionImageMap; NSMutableDictionary *_emotionDataMap; NSObject<OS_dispatch_queue> *_queue; } + (id)sharedInstance; - (void).cxx_destruct; - (void)didReceiveMemoryWarning; - (void)archieveEmotionMap; - (void)cacheImage:(id)arg1 byEmotion:(id)arg2; - (id)loadImageCacheByEmotionId:(id)arg1; - (id)findGifPathByEmotion:(id)arg1; - (void)unregistGifPathByEmotion:(id)arg1; - (void)registGifPath:(id)arg1 forEmotion:(id)arg2; - (id)findEmotionDataByVO:(id)arg1; - (void)deleteEmotionCache:(id)arg1; - (void)cacheEmotionData:(id)arg1 forData:(id)arg2; - (void)dealloc; - (id)init; @end
26.216216
90
0.740206
7a70f9f8a233b6bc89d0f5a313d03663157274b3
35,701
rb
Ruby
google/ads/googleads/v8/googleads-ruby/proto_docs/google/ads/googleads/v8/common/criteria.rb
googleapis/googleapis-gen
d84824c78563d59b0e58d5664bfaa430e9ad7e7a
[ "Apache-2.0" ]
7
2021-02-21T10:39:41.000Z
2021-12-07T07:31:28.000Z
google/ads/googleads/v8/googleads-ruby/proto_docs/google/ads/googleads/v8/common/criteria.rb
googleapis/googleapis-gen
d84824c78563d59b0e58d5664bfaa430e9ad7e7a
[ "Apache-2.0" ]
6
2021-02-02T23:46:11.000Z
2021-11-15T01:46:02.000Z
google/ads/googleads/v8/googleads-ruby/proto_docs/google/ads/googleads/v8/common/criteria.rb
googleapis/googleapis-gen
d84824c78563d59b0e58d5664bfaa430e9ad7e7a
[ "Apache-2.0" ]
4
2021-01-28T23:25:45.000Z
2021-08-30T01:55:16.000Z
# frozen_string_literal: true # Copyright 2021 Google LLC # # 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 # # https://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. # Auto-generated by gapic-generator-ruby. DO NOT EDIT! module Google module Ads module GoogleAds module V8 module Common # A keyword criterion. # @!attribute [rw] text # @return [::String] # The text of the keyword (at most 80 characters and 10 words). # @!attribute [rw] match_type # @return [::Google::Ads::GoogleAds::V8::Enums::KeywordMatchTypeEnum::KeywordMatchType] # The match type of the keyword. class KeywordInfo include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # A placement criterion. This can be used to modify bids for sites when # targeting the content network. # @!attribute [rw] url # @return [::String] # URL of the placement. # # For example, "http://www.domain.com". class PlacementInfo include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # A mobile app category criterion. # @!attribute [rw] mobile_app_category_constant # @return [::String] # The mobile app category constant resource name. class MobileAppCategoryInfo include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # A mobile application criterion. # @!attribute [rw] app_id # @return [::String] # A string that uniquely identifies a mobile application to Google Ads API. # The format of this string is "\\{platform}-\\{platform_native_id}", where # platform is "1" for iOS apps and "2" for Android apps, and where # platform_native_id is the mobile application identifier native to the # corresponding platform. # For iOS, this native identifier is the 9 digit string that appears at the # end of an App Store URL (e.g., "476943146" for "Flood-It! 2" whose App # Store link is "http://itunes.apple.com/us/app/flood-it!-2/id476943146"). # For Android, this native identifier is the application's package name # (e.g., "com.labpixies.colordrips" for "Color Drips" given Google Play link # "https://play.google.com/store/apps/details?id=com.labpixies.colordrips"). # A well formed app id for Google Ads API would thus be "1-476943146" for iOS # and "2-com.labpixies.colordrips" for Android. # This field is required and must be set in CREATE operations. # @!attribute [rw] name # @return [::String] # Name of this mobile application. class MobileApplicationInfo include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # A location criterion. # @!attribute [rw] geo_target_constant # @return [::String] # The geo target constant resource name. class LocationInfo include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # A device criterion. # @!attribute [rw] type # @return [::Google::Ads::GoogleAds::V8::Enums::DeviceEnum::Device] # Type of the device. class DeviceInfo include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # A preferred content criterion. # @!attribute [rw] type # @return [::Google::Ads::GoogleAds::V8::Enums::PreferredContentTypeEnum::PreferredContentType] # Type of the preferred content. class PreferredContentInfo include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # A listing group criterion. # @!attribute [rw] type # @return [::Google::Ads::GoogleAds::V8::Enums::ListingGroupTypeEnum::ListingGroupType] # Type of the listing group. # @!attribute [rw] case_value # @return [::Google::Ads::GoogleAds::V8::Common::ListingDimensionInfo] # Dimension value with which this listing group is refining its parent. # Undefined for the root group. # @!attribute [rw] parent_ad_group_criterion # @return [::String] # Resource name of ad group criterion which is the parent listing group # subdivision. Null for the root group. class ListingGroupInfo include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # A listing scope criterion. # @!attribute [rw] dimensions # @return [::Array<::Google::Ads::GoogleAds::V8::Common::ListingDimensionInfo>] # Scope of the campaign criterion. class ListingScopeInfo include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Listing dimensions for listing group criterion. # @!attribute [rw] hotel_id # @return [::Google::Ads::GoogleAds::V8::Common::HotelIdInfo] # Advertiser-specific hotel ID. # @!attribute [rw] hotel_class # @return [::Google::Ads::GoogleAds::V8::Common::HotelClassInfo] # Class of the hotel as a number of stars 1 to 5. # @!attribute [rw] hotel_country_region # @return [::Google::Ads::GoogleAds::V8::Common::HotelCountryRegionInfo] # Country or Region the hotel is located in. # @!attribute [rw] hotel_state # @return [::Google::Ads::GoogleAds::V8::Common::HotelStateInfo] # State the hotel is located in. # @!attribute [rw] hotel_city # @return [::Google::Ads::GoogleAds::V8::Common::HotelCityInfo] # City the hotel is located in. # @!attribute [rw] product_bidding_category # @return [::Google::Ads::GoogleAds::V8::Common::ProductBiddingCategoryInfo] # Bidding category of a product offer. # @!attribute [rw] product_brand # @return [::Google::Ads::GoogleAds::V8::Common::ProductBrandInfo] # Brand of a product offer. # @!attribute [rw] product_channel # @return [::Google::Ads::GoogleAds::V8::Common::ProductChannelInfo] # Locality of a product offer. # @!attribute [rw] product_channel_exclusivity # @return [::Google::Ads::GoogleAds::V8::Common::ProductChannelExclusivityInfo] # Availability of a product offer. # @!attribute [rw] product_condition # @return [::Google::Ads::GoogleAds::V8::Common::ProductConditionInfo] # Condition of a product offer. # @!attribute [rw] product_custom_attribute # @return [::Google::Ads::GoogleAds::V8::Common::ProductCustomAttributeInfo] # Custom attribute of a product offer. # @!attribute [rw] product_item_id # @return [::Google::Ads::GoogleAds::V8::Common::ProductItemIdInfo] # Item id of a product offer. # @!attribute [rw] product_type # @return [::Google::Ads::GoogleAds::V8::Common::ProductTypeInfo] # Type of a product offer. # @!attribute [rw] unknown_listing_dimension # @return [::Google::Ads::GoogleAds::V8::Common::UnknownListingDimensionInfo] # Unknown dimension. Set when no other listing dimension is set. class ListingDimensionInfo include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Advertiser-specific hotel ID. # @!attribute [rw] value # @return [::String] # String value of the hotel ID. class HotelIdInfo include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Class of the hotel as a number of stars 1 to 5. # @!attribute [rw] value # @return [::Integer] # Long value of the hotel class. class HotelClassInfo include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Country or Region the hotel is located in. # @!attribute [rw] country_region_criterion # @return [::String] # The Geo Target Constant resource name. class HotelCountryRegionInfo include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # State the hotel is located in. # @!attribute [rw] state_criterion # @return [::String] # The Geo Target Constant resource name. class HotelStateInfo include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # City the hotel is located in. # @!attribute [rw] city_criterion # @return [::String] # The Geo Target Constant resource name. class HotelCityInfo include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Bidding category of a product offer. # @!attribute [rw] id # @return [::Integer] # ID of the product bidding category. # # This ID is equivalent to the google_product_category ID as described in # this article: https://support.google.com/merchants/answer/6324436 # @!attribute [rw] country_code # @return [::String] # Two-letter upper-case country code of the product bidding category. It must # match the campaign.shopping_setting.sales_country field. # @!attribute [rw] level # @return [::Google::Ads::GoogleAds::V8::Enums::ProductBiddingCategoryLevelEnum::ProductBiddingCategoryLevel] # Level of the product bidding category. class ProductBiddingCategoryInfo include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Brand of the product. # @!attribute [rw] value # @return [::String] # String value of the product brand. class ProductBrandInfo include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Locality of a product offer. # @!attribute [rw] channel # @return [::Google::Ads::GoogleAds::V8::Enums::ProductChannelEnum::ProductChannel] # Value of the locality. class ProductChannelInfo include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Availability of a product offer. # @!attribute [rw] channel_exclusivity # @return [::Google::Ads::GoogleAds::V8::Enums::ProductChannelExclusivityEnum::ProductChannelExclusivity] # Value of the availability. class ProductChannelExclusivityInfo include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Condition of a product offer. # @!attribute [rw] condition # @return [::Google::Ads::GoogleAds::V8::Enums::ProductConditionEnum::ProductCondition] # Value of the condition. class ProductConditionInfo include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Custom attribute of a product offer. # @!attribute [rw] value # @return [::String] # String value of the product custom attribute. # @!attribute [rw] index # @return [::Google::Ads::GoogleAds::V8::Enums::ProductCustomAttributeIndexEnum::ProductCustomAttributeIndex] # Indicates the index of the custom attribute. class ProductCustomAttributeInfo include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Item id of a product offer. # @!attribute [rw] value # @return [::String] # Value of the id. class ProductItemIdInfo include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Type of a product offer. # @!attribute [rw] value # @return [::String] # Value of the type. # @!attribute [rw] level # @return [::Google::Ads::GoogleAds::V8::Enums::ProductTypeLevelEnum::ProductTypeLevel] # Level of the type. class ProductTypeInfo include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Unknown listing dimension. class UnknownListingDimensionInfo include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Criterion for hotel date selection (default dates vs. user selected). # @!attribute [rw] type # @return [::Google::Ads::GoogleAds::V8::Enums::HotelDateSelectionTypeEnum::HotelDateSelectionType] # Type of the hotel date selection class HotelDateSelectionTypeInfo include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Criterion for number of days prior to the stay the booking is being made. # @!attribute [rw] min_days # @return [::Integer] # Low end of the number of days prior to the stay. # @!attribute [rw] max_days # @return [::Integer] # High end of the number of days prior to the stay. class HotelAdvanceBookingWindowInfo include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Criterion for length of hotel stay in nights. # @!attribute [rw] min_nights # @return [::Integer] # Low end of the number of nights in the stay. # @!attribute [rw] max_nights # @return [::Integer] # High end of the number of nights in the stay. class HotelLengthOfStayInfo include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Criterion for a check-in date range. # @!attribute [rw] start_date # @return [::String] # Start date in the YYYY-MM-DD format. # @!attribute [rw] end_date # @return [::String] # End date in the YYYY-MM-DD format. class HotelCheckInDateRangeInfo include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Criterion for day of the week the booking is for. # @!attribute [rw] day_of_week # @return [::Google::Ads::GoogleAds::V8::Enums::DayOfWeekEnum::DayOfWeek] # The day of the week. class HotelCheckInDayInfo include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Criterion for Interaction Type. # @!attribute [rw] type # @return [::Google::Ads::GoogleAds::V8::Enums::InteractionTypeEnum::InteractionType] # The interaction type. class InteractionTypeInfo include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Represents an AdSchedule criterion. # # AdSchedule is specified as the day of the week and a time interval # within which ads will be shown. # # No more than six AdSchedules can be added for the same day. # @!attribute [rw] start_minute # @return [::Google::Ads::GoogleAds::V8::Enums::MinuteOfHourEnum::MinuteOfHour] # Minutes after the start hour at which this schedule starts. # # This field is required for CREATE operations and is prohibited on UPDATE # operations. # @!attribute [rw] end_minute # @return [::Google::Ads::GoogleAds::V8::Enums::MinuteOfHourEnum::MinuteOfHour] # Minutes after the end hour at which this schedule ends. The schedule is # exclusive of the end minute. # # This field is required for CREATE operations and is prohibited on UPDATE # operations. # @!attribute [rw] start_hour # @return [::Integer] # Starting hour in 24 hour time. # This field must be between 0 and 23, inclusive. # # This field is required for CREATE operations and is prohibited on UPDATE # operations. # @!attribute [rw] end_hour # @return [::Integer] # Ending hour in 24 hour time; 24 signifies end of the day. # This field must be between 0 and 24, inclusive. # # This field is required for CREATE operations and is prohibited on UPDATE # operations. # @!attribute [rw] day_of_week # @return [::Google::Ads::GoogleAds::V8::Enums::DayOfWeekEnum::DayOfWeek] # Day of the week the schedule applies to. # # This field is required for CREATE operations and is prohibited on UPDATE # operations. class AdScheduleInfo include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # An age range criterion. # @!attribute [rw] type # @return [::Google::Ads::GoogleAds::V8::Enums::AgeRangeTypeEnum::AgeRangeType] # Type of the age range. class AgeRangeInfo include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # A gender criterion. # @!attribute [rw] type # @return [::Google::Ads::GoogleAds::V8::Enums::GenderTypeEnum::GenderType] # Type of the gender. class GenderInfo include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # An income range criterion. # @!attribute [rw] type # @return [::Google::Ads::GoogleAds::V8::Enums::IncomeRangeTypeEnum::IncomeRangeType] # Type of the income range. class IncomeRangeInfo include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # A parental status criterion. # @!attribute [rw] type # @return [::Google::Ads::GoogleAds::V8::Enums::ParentalStatusTypeEnum::ParentalStatusType] # Type of the parental status. class ParentalStatusInfo include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # A YouTube Video criterion. # @!attribute [rw] video_id # @return [::String] # YouTube video id as it appears on the YouTube watch page. class YouTubeVideoInfo include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # A YouTube Channel criterion. # @!attribute [rw] channel_id # @return [::String] # The YouTube uploader channel id or the channel code of a YouTube channel. class YouTubeChannelInfo include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # A User List criterion. Represents a user list that is defined by the # advertiser to be targeted. # @!attribute [rw] user_list # @return [::String] # The User List resource name. class UserListInfo include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # A Proximity criterion. The geo point and radius determine what geographical # area is included. The address is a description of the geo point that does # not affect ad serving. # # There are two ways to create a proximity. First, by setting an address # and radius. The geo point will be automatically computed. Second, by # setting a geo point and radius. The address is an optional label that won't # be validated. # @!attribute [rw] geo_point # @return [::Google::Ads::GoogleAds::V8::Common::GeoPointInfo] # Latitude and longitude. # @!attribute [rw] radius # @return [::Float] # The radius of the proximity. # @!attribute [rw] radius_units # @return [::Google::Ads::GoogleAds::V8::Enums::ProximityRadiusUnitsEnum::ProximityRadiusUnits] # The unit of measurement of the radius. Default is KILOMETERS. # @!attribute [rw] address # @return [::Google::Ads::GoogleAds::V8::Common::AddressInfo] # Full address. class ProximityInfo include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Geo point for proximity criterion. # @!attribute [rw] longitude_in_micro_degrees # @return [::Integer] # Micro degrees for the longitude. # @!attribute [rw] latitude_in_micro_degrees # @return [::Integer] # Micro degrees for the latitude. class GeoPointInfo include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Address for proximity criterion. # @!attribute [rw] postal_code # @return [::String] # Postal code. # @!attribute [rw] province_code # @return [::String] # Province or state code. # @!attribute [rw] country_code # @return [::String] # Country code. # @!attribute [rw] province_name # @return [::String] # Province or state name. # @!attribute [rw] street_address # @return [::String] # Street address line 1. # @!attribute [rw] street_address2 # @return [::String] # Street address line 2. This field is write-only. It is only used for # calculating the longitude and latitude of an address when geo_point is # empty. # @!attribute [rw] city_name # @return [::String] # Name of the city. class AddressInfo include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # A topic criterion. Use topics to target or exclude placements in the # Google Display Network based on the category into which the placement falls # (for example, "Pets & Animals/Pets/Dogs"). # @!attribute [rw] topic_constant # @return [::String] # The Topic Constant resource name. # @!attribute [rw] path # @return [::Array<::String>] # The category to target or exclude. Each subsequent element in the array # describes a more specific sub-category. For example, # "Pets & Animals", "Pets", "Dogs" represents the "Pets & Animals/Pets/Dogs" # category. class TopicInfo include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # A language criterion. # @!attribute [rw] language_constant # @return [::String] # The language constant resource name. class LanguageInfo include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # An IpBlock criterion used for IP exclusions. We allow: # - IPv4 and IPv6 addresses # - individual addresses (192.168.0.1) # - masks for individual addresses (192.168.0.1/32) # - masks for Class C networks (192.168.0.1/24) # @!attribute [rw] ip_address # @return [::String] # The IP address of this IP block. class IpBlockInfo include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Content Label for category exclusion. # @!attribute [rw] type # @return [::Google::Ads::GoogleAds::V8::Enums::ContentLabelTypeEnum::ContentLabelType] # Content label type, required for CREATE operations. class ContentLabelInfo include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Represents a Carrier Criterion. # @!attribute [rw] carrier_constant # @return [::String] # The Carrier constant resource name. class CarrierInfo include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Represents a particular interest-based topic to be targeted. # @!attribute [rw] user_interest_category # @return [::String] # The UserInterest resource name. class UserInterestInfo include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Represents a criterion for targeting webpages of an advertiser's website. # @!attribute [rw] criterion_name # @return [::String] # The name of the criterion that is defined by this parameter. The name value # will be used for identifying, sorting and filtering criteria with this type # of parameters. # # This field is required for CREATE operations and is prohibited on UPDATE # operations. # @!attribute [rw] conditions # @return [::Array<::Google::Ads::GoogleAds::V8::Common::WebpageConditionInfo>] # Conditions, or logical expressions, for webpage targeting. The list of # webpage targeting conditions are and-ed together when evaluated # for targeting. # # This field is required for CREATE operations and is prohibited on UPDATE # operations. # @!attribute [rw] coverage_percentage # @return [::Float] # Website criteria coverage percentage. This is the computed percentage # of website coverage based on the website target, negative website target # and negative keywords in the ad group and campaign. For instance, when # coverage returns as 1, it indicates it has 100% coverage. This field is # read-only. # @!attribute [rw] sample # @return [::Google::Ads::GoogleAds::V8::Common::WebpageSampleInfo] # List of sample urls that match the website target. This field is read-only. class WebpageInfo include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Logical expression for targeting webpages of an advertiser's website. # @!attribute [rw] operand # @return [::Google::Ads::GoogleAds::V8::Enums::WebpageConditionOperandEnum::WebpageConditionOperand] # Operand of webpage targeting condition. # @!attribute [rw] operator # @return [::Google::Ads::GoogleAds::V8::Enums::WebpageConditionOperatorEnum::WebpageConditionOperator] # Operator of webpage targeting condition. # @!attribute [rw] argument # @return [::String] # Argument of webpage targeting condition. class WebpageConditionInfo include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # List of sample urls that match the website target # @!attribute [rw] sample_urls # @return [::Array<::String>] # Webpage sample urls class WebpageSampleInfo include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Represents an operating system version to be targeted. # @!attribute [rw] operating_system_version_constant # @return [::String] # The operating system version constant resource name. class OperatingSystemVersionInfo include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # An app payment model criterion. # @!attribute [rw] type # @return [::Google::Ads::GoogleAds::V8::Enums::AppPaymentModelTypeEnum::AppPaymentModelType] # Type of the app payment model. class AppPaymentModelInfo include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # A mobile device criterion. # @!attribute [rw] mobile_device_constant # @return [::String] # The mobile device constant resource name. class MobileDeviceInfo include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # A custom affinity criterion. # A criterion of this type is only targetable. # @!attribute [rw] custom_affinity # @return [::String] # The CustomInterest resource name. class CustomAffinityInfo include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # A custom intent criterion. # A criterion of this type is only targetable. # @!attribute [rw] custom_intent # @return [::String] # The CustomInterest resource name. class CustomIntentInfo include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # A radius around a list of locations specified via a feed. # @!attribute [rw] feed # @return [::String] # Feed specifying locations for targeting. # This is required and must be set in CREATE operations. # @!attribute [rw] geo_target_constants # @return [::Array<::String>] # Geo target constant(s) restricting the scope of the geographic area within # the feed. Currently only one geo target constant is allowed. # @!attribute [rw] radius # @return [::Integer] # Distance in units specifying the radius around targeted locations. # This is required and must be set in CREATE operations. # @!attribute [rw] radius_units # @return [::Google::Ads::GoogleAds::V8::Enums::LocationGroupRadiusUnitsEnum::LocationGroupRadiusUnits] # Unit of the radius. Miles and meters are supported for geo target # constants. Milli miles and meters are supported for feed item sets. # This is required and must be set in CREATE operations. # @!attribute [rw] feed_item_sets # @return [::Array<::String>] # FeedItemSets whose FeedItems are targeted. If multiple IDs are specified, # then all items that appear in at least one set are targeted. This field # cannot be used with geo_target_constants. This is optional and can only be # set in CREATE operations. class LocationGroupInfo include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # A custom audience criterion. # @!attribute [rw] custom_audience # @return [::String] # The CustomAudience resource name. class CustomAudienceInfo include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # A combined audience criterion. # @!attribute [rw] combined_audience # @return [::String] # The CombinedAudience resource name. class CombinedAudienceInfo include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # A Smart Campaign keyword theme. # @!attribute [rw] keyword_theme_constant # @return [::String] # The resource name of a Smart Campaign keyword theme constant. # `keywordThemeConstants/{keyword_theme_id}~{sub_keyword_theme_id}` # @!attribute [rw] free_form_keyword_theme # @return [::String] # Free-form text to be matched to a Smart Campaign keyword theme constant # on a best-effort basis. class KeywordThemeInfo include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end end end end end end
44.963476
121
0.58721
266bf21cb131b9d67a785efb28f270d3a4e12e75
8,105
java
Java
src/main/java/de/eradszewski/fluxvideostreamservice/services/impl/FileStorageService.java
eradszewski/flux-video-stream-service
d0310b5d5435b8f40318fc4b24c8b93a8814e559
[ "Apache-2.0" ]
null
null
null
src/main/java/de/eradszewski/fluxvideostreamservice/services/impl/FileStorageService.java
eradszewski/flux-video-stream-service
d0310b5d5435b8f40318fc4b24c8b93a8814e559
[ "Apache-2.0" ]
1
2019-05-17T13:26:25.000Z
2019-05-18T17:03:40.000Z
src/main/java/de/eradszewski/fluxvideostreamservice/services/impl/FileStorageService.java
eradszewski/flux-video-stream-service
d0310b5d5435b8f40318fc4b24c8b93a8814e559
[ "Apache-2.0" ]
null
null
null
package de.eradszewski.fluxvideostreamservice.services.impl; import de.eradszewski.fluxvideostreamservice.config.FileStorageProperties; import de.eradszewski.fluxvideostreamservice.exceptions.FileNotFoundException; import de.eradszewski.fluxvideostreamservice.exceptions.FileStorageException; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.core.io.Resource; import org.springframework.core.io.UrlResource; import org.springframework.core.io.buffer.DataBuffer; import org.springframework.http.codec.multipart.FilePart; import org.springframework.stereotype.Service; import org.springframework.util.StringUtils; import org.springframework.web.multipart.MultipartFile; import reactor.core.publisher.Mono; import java.io.File; import java.io.IOException; import java.net.MalformedURLException; import java.nio.ByteBuffer; import java.nio.channels.AsynchronousFileChannel; import java.nio.channels.CompletionHandler; import java.nio.file.*; import java.util.concurrent.atomic.AtomicBoolean; import java.util.concurrent.atomic.AtomicInteger; @Service public class FileStorageService { Logger logger = LoggerFactory.getLogger(FileStorageService.class); private final Path fileStorageLocation; @Autowired public FileStorageService(FileStorageProperties fileStorageProperties) { this.fileStorageLocation = Paths.get(fileStorageProperties.getUploadDir()) .toAbsolutePath().normalize(); try { Files.createDirectories(this.fileStorageLocation); } catch (Exception ex) { throw new FileStorageException("Could not create the directory where the uploaded files will be stored.", ex); } } /** * tske a {@link FilePart}, transfer it to disk using {@link AsynchronousFileChannel}s and return a {@link Mono} representing the result * * @param filePart - the request part containing the file to be saved * @return a {@link Mono} representing the result of the operation */ public Mono<String> saveFile(FilePart filePart) { logger.info("handling file upload {}", filePart.filename()); // if a file with the same name already exists in a repository, delete and recreate it final String filename = filePart.filename(); //set file path File file = new File(fileStorageLocation.toString() + "/"+ filename);//"video/" + if (file.exists()) file.delete(); try { file.createNewFile(); } catch (IOException e) { return Mono.error(e); // if creating a new file fails return an error } try { // create an async file channel to store the file on disk final AsynchronousFileChannel fileChannel = AsynchronousFileChannel.open(file.toPath(), StandardOpenOption.WRITE); // final CloseCondition closeCondition = new CloseCondition(); // pointer to the end of file offset AtomicInteger fileWriteOffset = new AtomicInteger(0); // error signal AtomicBoolean errorFlag = new AtomicBoolean(false); logger.info("subscribing to file parts"); // FilePart.content produces a flux of data buffers, each need to be written to the file return filePart.content().doOnEach(dataBufferSignal -> { if (dataBufferSignal.hasValue() && !errorFlag.get()) { // read data from the incoming data buffer into a file array DataBuffer dataBuffer = dataBufferSignal.get(); int count = dataBuffer.readableByteCount(); byte[] bytes = new byte[count]; dataBuffer.read(bytes); // create a file channel compatible byte buffer final ByteBuffer byteBuffer = ByteBuffer.allocate(count); byteBuffer.put(bytes); byteBuffer.flip(); // get the current write offset and increment by the buffer size final int filePartOffset = fileWriteOffset.getAndAdd(count); logger.info("processing file part at offset {}", filePartOffset); // write the buffer to disk // closeCondition.onTaskSubmitted(); fileChannel.write(byteBuffer, filePartOffset, null, new CompletionHandler<Integer, ByteBuffer>() { public void completed(Integer result, ByteBuffer attachment) { // file part successfuly written to disk, clean up logger.info("done saving file part {}", filePartOffset); byteBuffer.clear(); // if (closeCondition.onTaskCompleted()) // try { // logger.info("closing after last part"); // fileChannel.close(); // } catch (IOException ignored) { // ignored.printStackTrace(); // } } public void failed(Throwable exc, ByteBuffer attachment) { // there as an error while writing to disk, set an error flag errorFlag.set(true); logger.info("error saving file part {}", filePartOffset); } }); } }).doOnComplete(() -> { // all done, close the file channel logger.info("done processing file parts"); // if (closeCondition.canCloseOnComplete()) // try { // logger.info("closing after complete"); // fileChannel.close(); // } catch (IOException ignored) { // } }).doOnError(t -> { // ooops there was an error logger.info("error processing file parts"); try { fileChannel.close(); } catch (IOException ignored) { } // take last, map to a status string }).last().map(dataBuffer -> filePart.filename() + " " + (errorFlag.get() ? "error" : "uploaded")); } catch (IOException e) { // unable to open the file channel, return an error logger.info("error opening the file channel"); return Mono.error(e); } } public String storeFile(MultipartFile file) { // Normalize file name String fileName = StringUtils.cleanPath(file.getOriginalFilename()); try { // Check if the file's name contains invalid characters if(fileName.contains("..")) { throw new FileStorageException("Sorry! Filename contains invalid path sequence " + fileName); } // Copy file to the target location (Replacing existing file with the same name) Path targetLocation = this.fileStorageLocation.resolve(fileName); Files.copy(file.getInputStream(), targetLocation, StandardCopyOption.REPLACE_EXISTING); return fileName; } catch (IOException ex) { throw new FileStorageException("Could not store file " + fileName + ". Please try again!", ex); } } public Resource loadFileAsResource(String fileName) { try { Path filePath = this.fileStorageLocation.resolve(fileName).normalize(); Resource resource = new UrlResource(filePath.toUri()); if(resource.exists()) { return resource; } else { throw new FileNotFoundException("File not found " + fileName); } } catch (MalformedURLException ex) { throw new FileNotFoundException("File not found " + fileName, ex); } } }
42.657895
140
0.595312
9df9f67d2ff0601f96bd771aca637ea9496328eb
485
kt
Kotlin
src/main/java/tripway/server/models/api/PointRequest.kt
NikitaBurtelov/Tripway-Spring-Server
a2b4434a9b75631772d84f3f5ddda96c6a899415
[ "Apache-2.0" ]
null
null
null
src/main/java/tripway/server/models/api/PointRequest.kt
NikitaBurtelov/Tripway-Spring-Server
a2b4434a9b75631772d84f3f5ddda96c6a899415
[ "Apache-2.0" ]
2
2021-05-04T16:02:40.000Z
2021-05-19T16:49:18.000Z
src/main/java/tripway/server/models/api/PointRequest.kt
NikitaBurtelov/Tripway-Spring-Server
a2b4434a9b75631772d84f3f5ddda96c6a899415
[ "Apache-2.0" ]
null
null
null
package tripway.server.models.api import com.fasterxml.jackson.annotation.JsonProperty data class PointRequest( val id: Long, val name: String, val description: String?, @JsonProperty("trip_name") val tripName: String?, @JsonProperty("trip_id") val tripId: Long?, val lat: Double, val lng: Double, val address: String, @JsonProperty("address_components") val addressComponents: String )
25.526316
52
0.628866
4a79668caa6325b5cda8398f7ec61f01e280d3fc
549
kt
Kotlin
mobile/src/main/java/com/ctyeung/runyasso800/room/steps/StepRepository.kt
yeuchi/RunYasso800
e90c1913fafe33baacba680893889d74ec810098
[ "MIT" ]
3
2019-12-27T01:21:30.000Z
2020-05-12T19:04:40.000Z
mobile/src/main/java/com/ctyeung/runyasso800/room/steps/StepRepository.kt
yeuchi/RunYasso800
e90c1913fafe33baacba680893889d74ec810098
[ "MIT" ]
null
null
null
mobile/src/main/java/com/ctyeung/runyasso800/room/steps/StepRepository.kt
yeuchi/RunYasso800
e90c1913fafe33baacba680893889d74ec810098
[ "MIT" ]
null
null
null
package com.ctyeung.runyasso800.room.steps import androidx.lifecycle.LiveData import javax.inject.Inject class StepRepository @Inject constructor(private val stepDao: StepDao) { var steps:LiveData<List<Step>> = stepDao.getAll() fun query(splitIndex:Int):List<Step> { return stepDao.getBySplit(splitIndex) } suspend fun insert(step:Step) { stepDao.insert(step) } suspend fun clear() { stepDao.deleteAll() } suspend fun update(step:Step) { stepDao.update(step) } }
18.931034
70
0.661202
b013d6621fd48e57ccb3931b4185b000e7a1ca78
3,050
rs
Rust
chain-storage/benches/jellyfish.rs
trevor-crypto/thaler
945bb91da28c4ee022c5a653296f6ffbb1a5576c
[ "Apache-2.0" ]
144
2019-03-20T03:24:43.000Z
2020-10-06T00:11:30.000Z
chain-storage/benches/jellyfish.rs
trevor-crypto/thaler
945bb91da28c4ee022c5a653296f6ffbb1a5576c
[ "Apache-2.0" ]
2,183
2019-03-20T04:18:14.000Z
2020-10-19T07:41:42.000Z
chain-storage/benches/jellyfish.rs
trevor-crypto/thaler
945bb91da28c4ee022c5a653296f6ffbb1a5576c
[ "Apache-2.0" ]
75
2019-03-20T08:08:42.000Z
2020-10-18T14:49:18.000Z
use criterion::{criterion_group, criterion_main, Bencher, Criterion}; use chain_core::state::account::{StakedState, StakedStateAddress}; use chain_storage::buffer::MemStore; use chain_storage::jellyfish::{get_with_proof, put_stakings, Version}; fn bench_insert_256(b: &mut Bencher) { let stakings = (0x00u8..=0x0fu8) .map(|version| { (0x00u8..=0x0fu8) .map(|i| { let mut seed = [0; 20]; seed[0] = version; seed[1] = i; StakedState::default(StakedStateAddress::BasicRedeem(seed.into())) }) .collect::<Vec<_>>() }) .collect::<Vec<_>>(); b.iter(|| { let mut store = MemStore::new(); for (version, xs) in stakings.iter().enumerate() { put_stakings(&mut store, version as Version, xs.iter()) .expect("jellyfish error with in memory storage"); } }); } fn bench_insert(b: &mut Bencher) { let stakings = (0x00u8..=0x0fu8) .map(|version| { (0x00u8..=0x0fu8) .map(|i| { let mut seed = [0; 20]; seed[0] = version; seed[1] = i; StakedState::default(StakedStateAddress::BasicRedeem(seed.into())) }) .collect::<Vec<_>>() }) .collect::<Vec<_>>(); let mut store = MemStore::new(); for (version, xs) in stakings.iter().enumerate() { put_stakings(&mut store, version as Version, xs.iter()) .expect("jellyfish error with in memory storage"); } let mut seed = [0; 20]; seed[0] = 0x10; let stakings = vec![StakedState::default(StakedStateAddress::BasicRedeem( seed.into(), ))]; b.iter(|| { put_stakings(&mut store, 0x10, stakings.iter()).unwrap(); }); } fn bench_get(b: &mut Bencher) { let stakings = (0x00u8..=0x0fu8) .map(|version| { (0x00u8..=0x0fu8) .map(|i| { let mut seed = [0; 20]; seed[0] = version; seed[1] = i; StakedState::default(StakedStateAddress::BasicRedeem(seed.into())) }) .collect::<Vec<_>>() }) .collect::<Vec<_>>(); let mut store = MemStore::new(); for (version, xs) in stakings.iter().enumerate() { put_stakings(&mut store, version as Version, xs.iter()) .expect("jellyfish error with in memory storage"); } b.iter(|| { get_with_proof( &store, 0x0f, &stakings.last().unwrap().last().unwrap().address, ); }); } fn criterion_benchmark(c: &mut Criterion) { c.bench_function("jellyfish, insert 256", bench_insert_256); c.bench_function("jellyfish, insert", bench_insert); c.bench_function("jellyfish, get_with_proof", bench_get); } criterion_group!(benches, criterion_benchmark); criterion_main!(benches);
32.795699
86
0.52459
8e79e6d7b873e56d5b9eb19c93a606d512d8da3c
2,374
rb
Ruby
lib/parser.rb
metamorph/taskwarrior-journal
21d6dc226351b5ab08d3c98a281b90d9408e3c8b
[ "Apache-2.0" ]
1
2019-09-29T20:19:50.000Z
2019-09-29T20:19:50.000Z
lib/parser.rb
metamorph/taskwarrior-journal
21d6dc226351b5ab08d3c98a281b90d9408e3c8b
[ "Apache-2.0" ]
null
null
null
lib/parser.rb
metamorph/taskwarrior-journal
21d6dc226351b5ab08d3c98a281b90d9408e3c8b
[ "Apache-2.0" ]
null
null
null
# Takes a stream of JSON entries as # in format produced by the +taskwarrior+ export # command. # # The entries are converted to a sequence of # Tasks. # # filter: modified.after:<date> # module TaskWarrior module Parser class Task attr_reader :id, :status, :description, :annotations, :project, :created_at, :updated_at, :completed_at def initialize yield self if block_given? end # Parse data from a taskwarrior entry (a Hash). def self.parse(rec) Task.new do |t| t.instance_eval do @id = rec["id"] @status = rec["status"] @description = rec["description"] @project = rec["project"] @created_at = parse_date(rec["entry"]) @updated_at = parse_date(rec["modified"]) @completed_at = parse_date(rec["completed"]) @annotations = if rec["annotations"] rec["annotations"].map {|rec| Annotation.parse(t, rec)} else [] end end end end # Return a function that delegates to +parse+ def self.parser method(:parse).to_proc end end class Annotation attr_reader :task, :created_at, :description def initialize yield self if block_given? end def self.parse(task, rec) Annotation.new do |a| a.instance_eval do @task = task @created_at = parse_date(rec["entry"]) @description = rec["description"] end end end end # Read JSON elements from the stream # and return +Task+ items. def parse(io) require 'json' json = "[" + io.read + "]" JSON.parse(json).map(&Task.parser) end def parse_date(date) require 'time' Time.parse(date) if date end end # Parser end if __FILE__ == $0 require 'pp' include TaskWarrior::Parser pp parse(STDIN) end
24.989474
94
0.471356
4e472616766dd55b67d976975faf088f0fcd0bd7
1,624
swift
Swift
FourCubed/NetworkServices/VenueModel.swift
PNadiadhara/FourCubed
afeb851a3f92f5617bf5a2216344c9a3ff12fabe
[ "MIT" ]
null
null
null
FourCubed/NetworkServices/VenueModel.swift
PNadiadhara/FourCubed
afeb851a3f92f5617bf5a2216344c9a3ff12fabe
[ "MIT" ]
null
null
null
FourCubed/NetworkServices/VenueModel.swift
PNadiadhara/FourCubed
afeb851a3f92f5617bf5a2216344c9a3ff12fabe
[ "MIT" ]
2
2019-02-08T21:48:17.000Z
2019-02-08T22:12:28.000Z
// // VenueModel.swift // FourCubed // // Created by TingxinLi on 2/19/19. // Copyright © 2019 Pritesh Nadiadhara. All rights reserved. // import Foundation final class VenuesModel { private static let filename = "VenuesList.plist" private static var venusData = [Favorite]() static func saveVenues() { let path = DataPersistenceManager.filepathToDocumentsDirectory(filename: filename) do { let data = try PropertyListEncoder().encode(venusData) try data.write(to: path, options: Data.WritingOptions.atomic) } catch { print("property list encoding error: \(error)") } } static func getVenues() -> [Favorite] { let path = DataPersistenceManager.filepathToDocumentsDirectory(filename: filename).path if FileManager.default.fileExists(atPath: path) { if let data = FileManager.default.contents(atPath: path) { do { venusData = try PropertyListDecoder().decode([Favorite].self, from: data) } catch { print("property list decoding error: \(error)") } }else { print("getPhotoJournal - data is nil") } } else { print("\(filename) does not exist") } return venusData } static func addVenues(item: Favorite) { venusData.append(item) saveVenues() } static func delete(atIndex index: Int) { venusData.remove(at: index) saveVenues() } }
28
95
0.567118
f2b8275e20da0135192de3d76297951360a9a6fa
2,104
kt
Kotlin
app/autodiscovery/src/main/java/com/fsck/k9/autodiscovery/srvrecords/SrvServiceDiscovery.kt
ufarooq/k-9
f414d4788c3a700dd0bd16632d8bc06bac527ea8
[ "Apache-2.0" ]
null
null
null
app/autodiscovery/src/main/java/com/fsck/k9/autodiscovery/srvrecords/SrvServiceDiscovery.kt
ufarooq/k-9
f414d4788c3a700dd0bd16632d8bc06bac527ea8
[ "Apache-2.0" ]
null
null
null
app/autodiscovery/src/main/java/com/fsck/k9/autodiscovery/srvrecords/SrvServiceDiscovery.kt
ufarooq/k-9
f414d4788c3a700dd0bd16632d8bc06bac527ea8
[ "Apache-2.0" ]
null
null
null
package com.fsck.k9.autodiscovery.srvrecords import com.fsck.k9.autodiscovery.ConnectionSettings import com.fsck.k9.autodiscovery.ConnectionSettingsDiscovery import com.fsck.k9.helper.EmailHelper import com.fsck.k9.mail.AuthType import com.fsck.k9.mail.ConnectionSecurity import com.fsck.k9.mail.ServerSettings class SrvServiceDiscovery( private val srvResolver: MiniDnsSrvResolver ) : ConnectionSettingsDiscovery { override fun discover(email: String): ConnectionSettings? { val domain = EmailHelper.getDomainFromEmailAddress(email) ?: return null val pickMailService = compareBy<MailService> { it.priority }.thenByDescending { it.security } val outgoingService = listOf(SrvType.SUBMISSIONS, SrvType.SUBMISSION).flatMap { srvResolver.lookup(domain, it) } .minWith(pickMailService) ?: return null val incomingService = listOf(SrvType.IMAPS, SrvType.IMAP).flatMap { srvResolver.lookup(domain, it) } .minWith(pickMailService) ?: return null return ConnectionSettings( incoming = ServerSettings( incomingService.srvType.protocol, incomingService.host, incomingService.port, incomingService.security, AuthType.PLAIN, email, null, null ), outgoing = ServerSettings( outgoingService.srvType.protocol, outgoingService.host, outgoingService.port, outgoingService.security, AuthType.PLAIN, email, null, null ) ) } } enum class SrvType(val label: String, val protocol: String, val assumeTls: Boolean) { SUBMISSIONS("_submissions", "smtp", true), SUBMISSION("_submission", "smtp", false), IMAPS("_imaps", "imap", true), IMAP("_imap", "imap", false) } data class MailService( val srvType: SrvType, val host: String, val port: Int, val priority: Int, val security: ConnectionSecurity? )
34.491803
120
0.638783
f1cfbefffbb1cee4fe6a662c34a007a1fc5f6412
2,556
swift
Swift
Xoshem/ForecastLocationViewController+CollectionView.swift
patagonia2019/xoshem
a708d505cb38f0169026f7787eff4e7e88410c6f
[ "CC-BY-3.0" ]
1
2020-10-23T21:24:12.000Z
2020-10-23T21:24:12.000Z
Xoshem/ForecastLocationViewController+CollectionView.swift
southfox/xoshem
a708d505cb38f0169026f7787eff4e7e88410c6f
[ "CC-BY-3.0" ]
null
null
null
Xoshem/ForecastLocationViewController+CollectionView.swift
southfox/xoshem
a708d505cb38f0169026f7787eff4e7e88410c6f
[ "CC-BY-3.0" ]
null
null
null
// // ForecastLocationViewController+CollectionView.swift // Xoshem // // Created by javierfuchs on 7/20/17. // Copyright © 2017 Fuchs. All rights reserved. // import Foundation extension ForecastLocationViewController : UICollectionViewDelegate { // Uncomment this method to specify if the specified item should be highlighted during tracking func collectionView(_ collectionView: UICollectionView, shouldHighlightItemAt indexPath: IndexPath) -> Bool { return true } func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) { if let cell = collectionView.cellForItem(at: indexPath) { let forecastCell = cell as! ForecastLocationCollectionViewCell forecastCell.selected() UIView.animate(withDuration: 0.5, animations: { forecastCell.unselected() }) let lastRow = totalCells() - 1 if indexPath.item == lastRow { performSegue(withIdentifier: Common.segue.search, sender: nil) } else if indexPath.item == 0 && Facade.instance.hasCurrentLocalForecast() { performSegue(withIdentifier: Common.segue.forecastDetail, sender: nil) } } } } extension ForecastLocationViewController : UICollectionViewDataSource { func numberOfSections(in collectionView: UICollectionView) -> Int { return 1 } func totalCells() -> Int { var count = 0 // current location if Facade.instance.hasCurrentLocalForecast() { count += 1 } // Add new (+) count = count + 1 return count } func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int { return totalCells() } func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell { let cell = collectionView.dequeueReusableCell(withReuseIdentifier: Common.cell.identifier.forecast, for: indexPath) as! ForecastLocationCollectionViewCell let lastRow = totalCells() - 1 if indexPath.item == lastRow { cell.configureLastCell() } else if indexPath.item == 0 && Facade.instance.hasCurrentLocalForecast() { cell.configureCellWithCurrentPlacemark { [weak self] in self?.updateForecastView(false) } } return cell } }
32.769231
162
0.638106
ddb0f9feaa87e18a1a29428225baa1d36a07d69b
2,742
php
PHP
app/Controllers/infoperusahaan.php
Lucifer07/Project-CI4
f93fd3cb9c32e79720040c9911959037b5bba1ce
[ "MIT" ]
null
null
null
app/Controllers/infoperusahaan.php
Lucifer07/Project-CI4
f93fd3cb9c32e79720040c9911959037b5bba1ce
[ "MIT" ]
null
null
null
app/Controllers/infoperusahaan.php
Lucifer07/Project-CI4
f93fd3cb9c32e79720040c9911959037b5bba1ce
[ "MIT" ]
null
null
null
<?php namespace App\Controllers; use App\Models\infoModel; class infoperusahaan extends BaseController { protected $infoModel; public function __construct(){ $this->infoModel = new infoModel; } public function index() { $data = [ 'title' => 'Info Perusahaan | Nuansa Inti Persada', 'info' => $this->infoModel->getInfoAll() ]; return view('info/index',$data); } // Admin Info public function infoadmin() { $data = [ 'title' => 'Info Perusahaan | Nuansa Inti Persada', 'info' => $this->infoModel->getInfoAll() ]; return view('admin/infoadmin',$data); } public function tambahData(){ $data = [ 'title' => 'Info Perusahaan | Nuansa Inti Persada', 'info' => $this->infoModel->getInfoAll() ]; return view('admin/insert/insertinfo',$data); } public function insertInfo(){ $file = $this->request->getFile('foto2'); $namafoto = $file->getName(); $file->move('img'); $selected = $this->request->getPost('posisi'); $this->infoModel->insert([ 'headingprofil' => $this->request->getPost('headingprofil'), 'deskripsiprofil' => $this->request->getPost('deskripsiprofil'), 'posisi' => $selected, 'foto2' => $namafoto ]); return redirect()->to(base_url('infoadmin')); } public function editinfo($id){ $data = [ 'title' => 'Info Perusahaan | Nuansa Inti Persada', 'info' => $this->infoModel->getInfoAll($id) ]; return view('admin/edit/editinfo',$data); } public function deleteInfo($id){ $this->infoModel->delete($id); return redirect()->to(base_url('/infoadmin')); } public function tambahInfo(){ $data =[ 'title' => 'Tambah Data Info Perusahaan | Nuansa Inti Persada' ]; return view('admin/insert/insertinfo',$data); } public function updateInfo($id){ $file = $this->request->getFile('gambarinfo'); if($file->getError()==4){ $namafoto = $this->request->getVar('gambarlama'); }else{ $namafoto = $file->getName(); $file->move('img'); // unlink('img/'.$this->request->getVar('gambarlama')); } $data = [ 'id' => $id, 'headingprofil' => $this->request->getPost('headingprofil'), 'deskripsiprofil' => $this->request->getPost('deskripsi'), 'foto2' => $namafoto ]; $this->infoModel->save($data); return redirect()->to(base_url('/infoadmin')); } } ?>
29.483871
76
0.529905
98cb4b53da99dec5d38b05cb6b5d3d6d50ba5865
942
html
HTML
src/main/webapp/index2.html
saumilj/MessageHubModuleServ
97c3823e3f4b2478558f7e17e05af4b50e23ade0
[ "Apache-2.0" ]
null
null
null
src/main/webapp/index2.html
saumilj/MessageHubModuleServ
97c3823e3f4b2478558f7e17e05af4b50e23ade0
[ "Apache-2.0" ]
null
null
null
src/main/webapp/index2.html
saumilj/MessageHubModuleServ
97c3823e3f4b2478558f7e17e05af4b50e23ade0
[ "Apache-2.0" ]
null
null
null
<!DOCTYPE html> <html> <head> <title>Sample Liberty app over Message Hub</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <link rel="stylesheet" href="style.css" /> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script> </head> <body> <div><center><h1> Search </h1> <I>Using Message Hub </I></h1></center></div><hr> <center><input type = "text" id = "txtQuery" name = "txtQuery"></center><br> <center><input type='button' id='btnPost' value='Search' onclick='postMessage();'/></center> <center> <div class='wrapper'> <h3> Produced</h3> <div id='produceResponse'> <p>Nothing produced</p></div> <h3> Consumed</h3> <div id='consumeResponse'> <p>Nothing consumed</p></div> </div> </center> <div id="results"></div> <!-- Call KafkaServlet --> <script type="text/javascript" src="index.js"></script> </body> </html>
33.642857
93
0.624204
0a2b44ad47e66f906728cfe228fce6ef7343e159
442
ts
TypeScript
examples/transformer/app.ts
crupakheti/pattern-lib
f92310c8b6a553dc6200587792832f3ab236d5d7
[ "MIT" ]
null
null
null
examples/transformer/app.ts
crupakheti/pattern-lib
f92310c8b6a553dc6200587792832f3ab236d5d7
[ "MIT" ]
1
2021-06-27T17:54:47.000Z
2021-06-27T17:54:47.000Z
examples/transformer/app.ts
crupakheti/pattern-lib
f92310c8b6a553dc6200587792832f3ab236d5d7
[ "MIT" ]
null
null
null
import { Transformer } from '../../src'; import { Source } from '../strategizer/model'; import { CategorizedText } from './model'; export class App { constructor(protected transformer: Transformer<CategorizedText>) {} async run(source: Source, content: string) { const text: CategorizedText = { source, content }; console.log('Input: ', text); await this.transformer.execute(text); console.log('Output: ', text); } }
27.625
69
0.671946
a1365c221c6166e83aee4ca6c2a466f4d073da6c
2,740
go
Go
cmd/cmd_num.go
Louch2010/dhaiy
c15481e7e30129b5ed9eda75c5e8e2a870885165
[ "MIT" ]
1
2017-09-04T04:42:48.000Z
2017-09-04T04:42:48.000Z
cmd/cmd_num.go
Louch2010/dhaiy
c15481e7e30129b5ed9eda75c5e8e2a870885165
[ "MIT" ]
null
null
null
cmd/cmd_num.go
Louch2010/dhaiy
c15481e7e30129b5ed9eda75c5e8e2a870885165
[ "MIT" ]
null
null
null
package cmd import ( "strconv" "time" . "github.com/louch2010/dhaiy/common" "github.com/louch2010/dhaiy/log" ) //NSet命令处理 func HandleNSetCommand(client *Client) { args := client.Reqest[1:] var liveTime int = 0 if len(args) == 3 { t, err := strconv.Atoi(args[2]) if err != nil { log.Info("参数转换错误,liveTime:", args[2], err) client.Response = GetCmdResponse(MESSAGE_COMMAND_PARAM_ERROR, "", ERROR_COMMAND_PARAM_ERROR, client) return } liveTime = t } f, err := strconv.ParseFloat(args[1], 64) if err != nil { log.Info("参数类型错误,nset value:", args[0], err) client.Response = GetCmdResponse(MESSAGE_COMMAND_NOT_SUPPORT_DATA, "", ERROR_COMMAND_NOT_SUPPORT_DATA, client) return } //增加缓存项 item := client.CacheTable.Set(args[0], f, time.Duration(liveTime)*time.Second, DATA_TYPE_NUMBER) client.Response = GetCmdResponse(MESSAGE_SUCCESS, item, nil, client) } //NGet命令处理 func HandleNGetCommand(client *Client) { //请求体校验 args := client.Reqest[1:] item := client.CacheTable.Get(args[0]) if item == nil { client.Response = GetCmdResponse(MESSAGE_ITEM_NOT_EXIST, "", ERROR_ITEM_NOT_EXIST, client) return } //数据类型校验 if item.DataType() != DATA_TYPE_NUMBER { client.Response = GetCmdResponse(MESSAGE_COMMAND_NOT_SUPPORT_DATA, "", ERROR_COMMAND_NOT_SUPPORT_DATA, client) return } response := GetCmdResponse(MESSAGE_SUCCESS, item.Value(), nil, client) response.DataType = DATA_TYPE_NUMBER client.Response = response } //Incr命令处理 func HandleIncrCommand(client *Client) { //请求体校验 args := client.Reqest[1:] item := client.CacheTable.Get(args[0]) var v float64 = 1 //不存在,则设置为0,存在增加1 if item == nil { client.CacheTable.Set(args[0], v, 0, DATA_TYPE_NUMBER) } else { //数据类型校验 if item.DataType() != DATA_TYPE_NUMBER { client.Response = GetCmdResponse(MESSAGE_COMMAND_NOT_SUPPORT_DATA, "", ERROR_COMMAND_NOT_SUPPORT_DATA, client) return } o, _ := item.Value().(float64) v = o + v item.SetValue(v) } response := GetCmdResponse(MESSAGE_SUCCESS, v, nil, client) response.DataType = DATA_TYPE_NUMBER client.Response = response } //IncrBy命令处理 func HandleIncrByCommand(client *Client) { //请求体校验 args := client.Reqest[1:] item := client.CacheTable.Get(args[0]) v, _ := strconv.ParseFloat(args[1], 10) //不存在,则设置为0,存在增加1 if item == nil { client.CacheTable.Set(args[0], v, 0, DATA_TYPE_NUMBER) } else { //数据类型校验 if item.DataType() != DATA_TYPE_NUMBER { client.Response = GetCmdResponse(MESSAGE_COMMAND_NOT_SUPPORT_DATA, "", ERROR_COMMAND_NOT_SUPPORT_DATA, client) return } o, _ := item.Value().(float64) v = o + v item.SetValue(v) } response := GetCmdResponse(MESSAGE_SUCCESS, v, nil, client) response.DataType = DATA_TYPE_NUMBER client.Response = response }
27.128713
113
0.716058
4a5391771ec1acced4cb108c6ec34822f45af460
60
js
JavaScript
generators/templates/src/index.js
mplabs/generator-babel-webpack
4ace4cf3fea24bb2a6dc41d60bb628889ec5112d
[ "MIT" ]
null
null
null
generators/templates/src/index.js
mplabs/generator-babel-webpack
4ace4cf3fea24bb2a6dc41d60bb628889ec5112d
[ "MIT" ]
null
null
null
generators/templates/src/index.js
mplabs/generator-babel-webpack
4ace4cf3fea24bb2a6dc41d60bb628889ec5112d
[ "MIT" ]
null
null
null
export default from './Library'; export util from './util';
20
32
0.7
ff3a9124dd183337b5ae79248205eddd2518629b
5,198
lua
Lua
script/core/diagnostics/type-check.lua
rski/lua-language-server
6bf7a86e3fab833031918d93eb9d9ecbdafe9353
[ "MIT" ]
null
null
null
script/core/diagnostics/type-check.lua
rski/lua-language-server
6bf7a86e3fab833031918d93eb9d9ecbdafe9353
[ "MIT" ]
null
null
null
script/core/diagnostics/type-check.lua
rski/lua-language-server
6bf7a86e3fab833031918d93eb9d9ecbdafe9353
[ "MIT" ]
null
null
null
local files = require 'files' local guide = require 'parser.guide' local vm = require 'vm' local infer = require 'core.infer' local await = require 'await' local hasVarargs local function inTypes(param, args) for _, v in ipairs(args) do if param[1] == v[1] then return true elseif param[1] == 'number' and v[1] == 'integer' then return true end end return false end local function excludeSituations(types) if not types[1] or not types[1][1] or types[1].typeGeneric then return true end return false end local function getInfoFromDefs(defs) local paramsTypes = {} local funcArgsType local mark = {} for _, def in ipairs(defs) do funcArgsType = {} if def.value then def = def.value end if mark[def] then goto CONTINUE end mark[def] = true if def.type == 'function' or def.type == 'doc.type.function' then if def.args then for _, arg in ipairs(def.args) do local types if arg.docParam and arg.docParam.extends then types = arg.docParam.extends.types ---变长参数 elseif arg.name and arg.name[1] == '...' then types = { [1] = { [1] = '...', type = 'varargs' } } elseif arg.type == 'doc.type.arg' then types = arg.extends.types else goto CONTINUE end ---如果是很复杂的type,比如泛型什么的,先不检查 if excludeSituations(types) then goto CONTINUE end funcArgsType[#funcArgsType+1] = types end end if #funcArgsType > 0 then paramsTypes[#paramsTypes+1] = funcArgsType end end ::CONTINUE:: end return paramsTypes end local function matchParams(paramsTypes, i, arg) local flag = '' local messages = {} for _, paramTypes in ipairs(paramsTypes) do if not paramTypes[i] then goto CONTINUE end for _, param in ipairs(paramTypes[i]) do ---如果形参的类型在实参里面 if inTypes(param, arg) or param[1] == 'any' or arg.type == 'any' then flag = '' return true elseif param[1] == '...' then hasVarargs = true return true else flag = flag ..' ' .. param[1] end end if flag ~= '' then local argm = '[ ' for _, v in ipairs(arg) do argm = argm .. v[1]..' ' end argm = argm .. ']' local message = 'Argument of type in '..argm..' is not assignable to parameter of type in ['..flag..' ]' if not messages[message] then messages[message] = true messages[#messages+1] = message end end ::CONTINUE:: end return false, messages end return function (uri, callback) local ast = files.getState(uri) if not ast then return end guide.eachSourceType(ast.ast, 'call', function (source) if not source.args then return end await.delay() local callArgs = source.args local callArgsType = {} for _, arg in ipairs(callArgs) do local infers = infer.searchInfers(arg) if infers['_G'] or infer['_ENV'] then infers['_G'] = nil infers['_ENV'] = nil infers['table'] = true end local types = {} for k in pairs(infers) do if k then types[#types+1] = { [1] = k, type = k } end end if #types < 1 then return end types.start = arg.start types.finish = arg.finish callArgsType[#callArgsType+1] = types end local func = source.node local defs = vm.getDefs(func) ---只检查有emmy注释定义的函数 local paramsTypes = getInfoFromDefs(defs) ---遍历实参 for i, arg in ipairs(callArgsType) do ---遍历形参 hasVarargs = false local match, messages = matchParams(paramsTypes, i, arg) if hasVarargs then return end ---都不匹配 if not match then if #messages > 0 then callback{ start = arg.start, finish = arg.finish, message = table.concat(messages, '\n') } end end end ---所有参数都匹配了 end) end
29.202247
116
0.449981
5b007c875151aedb3bb0f80667de5a60f7e6906c
973
h
C
include/fusekit/stream_reader.h
baltoche/fusekit
5ed297a90af12b9641542ebe386073493ee859c2
[ "MIT" ]
1
2020-12-30T22:04:21.000Z
2020-12-30T22:04:21.000Z
include/fusekit/stream_reader.h
baltoche/fusekit
5ed297a90af12b9641542ebe386073493ee859c2
[ "MIT" ]
3
2015-08-02T20:56:50.000Z
2015-08-02T21:31:19.000Z
include/fusekit/stream_reader.h
baltoche/fusekit
5ed297a90af12b9641542ebe386073493ee859c2
[ "MIT" ]
1
2015-08-02T20:30:57.000Z
2015-08-02T20:30:57.000Z
#ifndef __FUSEKIT__STREAM_READER_H #define __FUSEKIT__STREAM_READER_H #include <error.h> #include <iostream> #include <fusekit/entry.h> namespace fusekit{ template< class Reader, char Delimiter > struct stream_reader { stream_reader( Reader& w ) : _reader(w) , _err(0){ } stream_reader() : _err(0){ } stream_reader( const stream_reader& other ){ operator=( other ); } stream_reader& operator=( const stream_reader& other ){ _reader = other._reader; _err = 0; return *this; } int operator()( char* buf, size_t size, off_t offset){ if( offset == 0 ){ if( _os.tellp() ){ _os.seekp(0); } _err = _reader( _os ); _os << Delimiter; _os.flush(); } if( _err != 0 ){ return _err; } else{ _os.seekg( offset ); return _os.readsome( buf, size ); } } private: std::stringstream _os; Reader _reader; int _err; }; } #endif
16.491525
59
0.582734
132ed6511683d3e610ed05c243eb449363cfbafb
814
h
C
src/task_manager.h
Field-Programmable-Smartwatch/firmware
0a78c922ce10bfc8bab296935c125e03047315dc
[ "MIT" ]
5
2020-12-08T02:03:34.000Z
2021-02-07T16:57:42.000Z
src/task_manager.h
Field-Programmable-Smartwatch/firmware
0a78c922ce10bfc8bab296935c125e03047315dc
[ "MIT" ]
14
2021-01-27T02:22:42.000Z
2021-04-21T03:35:00.000Z
src/task_manager.h
Field-Programmable-Smartwatch/firmware
0a78c922ce10bfc8bab296935c125e03047315dc
[ "MIT" ]
null
null
null
#ifndef TASK_MANAGER_H #define TASK_MANAGER_H #include <stdint.h> #include <string.h> #define TASK_LIST_MAX 16 #define TASK_NAME_MAX 16 typedef enum task_status { TASK_STATUS_STOPPED, TASK_STATUS_STOP, TASK_STATUS_RUNNING, TASK_STATUS_START } task_status_t; typedef struct task { task_status_t status; char name_data[TASK_NAME_MAX]; string_t name; void (*task_start)(void); } task_t; typedef struct task_manager{ uint32_t task_count; task_t task_list[TASK_LIST_MAX]; } task_manager_t; task_t *task_manager_get_task_by_name(string_t name); uint32_t task_manager_start_task_by_name(string_t name); void task_manager_add_task(string_t task_name, void (*task_start)(void)); task_manager_t *task_manager_get(); void task_manager_init(); void task_manager_start(); #endif
21.421053
73
0.780098
e0da0fae8922675657c431cac976902dffc1a102
443
sql
SQL
sql/forbid_truncate.sql
NaokiNakamichi/postgres_extension
47029106ccbc1fe00d0ec9a612ddfedd7abf6847
[ "PostgreSQL", "MIT" ]
2
2020-09-14T10:01:09.000Z
2020-09-26T07:29:36.000Z
sql/forbid_truncate.sql
NaokiNakamichi/postgres_extension
47029106ccbc1fe00d0ec9a612ddfedd7abf6847
[ "PostgreSQL", "MIT" ]
null
null
null
sql/forbid_truncate.sql
NaokiNakamichi/postgres_extension
47029106ccbc1fe00d0ec9a612ddfedd7abf6847
[ "PostgreSQL", "MIT" ]
null
null
null
LOAD 'forbid_truncate'; CREATE TEMP TABLE test (a int, b char(20)); INSERT INTO test VALUES(generate_series(1, 10), 'aaa'); -- forbid truncate this command is forbidden TRUNCATE TABLE test; -- No change SELECT * FROM test; -- DDL command function correctly ALTER TABLE test ADD foo VARCHAR(30) ; ALTER TABLE test ALTER COLUMN foo TYPE VARCHAR(20) ; ALTER TABLE test DROP foo ; ALTER TABLE test RENAME TO test2; DROP TABLE test2;
14.290323
55
0.731377
169db5eacc4bba39485539892f14b19f06b8c586
1,539
ts
TypeScript
docman-frontend2/app/hooks/view/contextmenu/treeContextMenuControllHook.ts
orimajp/document-manager-test
6452a5aa1dcab52a66c41b7181abfe8430addee2
[ "MIT" ]
null
null
null
docman-frontend2/app/hooks/view/contextmenu/treeContextMenuControllHook.ts
orimajp/document-manager-test
6452a5aa1dcab52a66c41b7181abfe8430addee2
[ "MIT" ]
5
2020-09-13T03:27:17.000Z
2022-02-15T02:25:29.000Z
docman-frontend2/app/hooks/view/contextmenu/treeContextMenuControllHook.ts
orimajp/document-manager-test
6452a5aa1dcab52a66c41b7181abfe8430addee2
[ "MIT" ]
null
null
null
import { reactive, toRefs } from '@vue/composition-api' export interface TreeContextMenuParam { showContextMenu: boolean openPageId: string openPageTitle: string contextMenuX: number contextMenuY: number top: boolean } export interface TreeContextMenuProps { treeContextMenuParam: TreeContextMenuParam } export const useTreeContextControll = () => { const state = reactive({ contextMenuParam: { showContextMenu: false, openPageId: '', openPageTitle: '', contextMenuX: 0, contextMenuY: 0, top: false } as TreeContextMenuParam }) const openContextMenu = ( pageId: string, pageTitle: string, e: MouseEvent, top: boolean ) => { e.preventDefault() state.contextMenuParam.showContextMenu = true state.contextMenuParam.openPageId = pageId state.contextMenuParam.openPageTitle = pageTitle state.contextMenuParam.contextMenuX = e.clientX state.contextMenuParam.contextMenuY = e.clientY state.contextMenuParam.top = top } const openTopContextMenu = ( pageId: string, pageTitle: string, e: MouseEvent ) => { openContextMenu(pageId, pageTitle, e, true) } const openTreeContextMenu = ( pageId: string, pageTitle: string, e: MouseEvent ) => { openContextMenu(pageId, pageTitle, e, false) } const closeContextMenu = () => { state.contextMenuParam.showContextMenu = false } return { ...toRefs(state), openTopContextMenu, openTreeContextMenu, closeContextMenu } }
21.985714
55
0.687459
2657f1a887b98233d97a91a894aa0b0a1651a42c
735
java
Java
data-structures-and-algorithms/src/main/java/org/devon/data/structures/SkipNode.java
devon-ye/demos-parent
bc98102d26d7b123bb4bfdd13d3d6f20c27b16a8
[ "Apache-2.0" ]
10
2018-03-27T06:47:00.000Z
2019-10-20T17:47:44.000Z
data-structures-and-algorithms/src/main/java/org/devon/data/structures/SkipNode.java
devon-ye/demos-parent
bc98102d26d7b123bb4bfdd13d3d6f20c27b16a8
[ "Apache-2.0" ]
2
2021-05-28T05:42:23.000Z
2021-05-28T05:43:29.000Z
data-structures-and-algorithms/src/main/java/org/devon/data/structures/SkipNode.java
devon-ye/demos-parent
bc98102d26d7b123bb4bfdd13d3d6f20c27b16a8
[ "Apache-2.0" ]
4
2018-03-07T02:50:38.000Z
2018-05-28T06:41:30.000Z
package org.devon.data.structures; public class SkipNode<E> { private E data; private SkipNode[] forwards; private int maxLevel; public SkipNode(E data, int maxLevel) { this.data = data; this.maxLevel = maxLevel; this.forwards = new SkipNode[maxLevel]; } public E getData() { return data; } public void setData(E data) { this.data = data; } public SkipNode[] getForwards() { return forwards; } public void setForwards(SkipNode[] forwards) { this.forwards = forwards; } public int getMaxLevel() { return maxLevel; } public void setMaxLevel(int maxLevel) { this.maxLevel = maxLevel; } }
18.846154
50
0.591837
437885a25c1108d031dc31d77b180b4f6a81b5b2
91
go
Go
api/api.go
homemade/justin
4830f6df31fe54226aa471cf4e9be0a20c103dc4
[ "MIT" ]
2
2017-01-24T09:28:10.000Z
2017-08-16T04:09:19.000Z
api/api.go
homemade/justin
4830f6df31fe54226aa471cf4e9be0a20c103dc4
[ "MIT" ]
null
null
null
api/api.go
homemade/justin
4830f6df31fe54226aa471cf4e9be0a20c103dc4
[ "MIT" ]
null
null
null
// Package api provides common utility functions for working with HTTP(S) APIs package api
30.333333
78
0.802198
82079b897254dd53d122c2287c4c7936b9e375c0
94
kt
Kotlin
src/main/java/com/arman/kotboy/Main.kt
campoe/KotBoy
709efa50a0b176d7ed8aefe4db0f35f173472de2
[ "MIT" ]
2
2020-04-18T17:36:52.000Z
2020-07-14T15:54:46.000Z
src/main/java/com/arman/kotboy/Main.kt
coenvk/KotBoy
709efa50a0b176d7ed8aefe4db0f35f173472de2
[ "MIT" ]
null
null
null
src/main/java/com/arman/kotboy/Main.kt
coenvk/KotBoy
709efa50a0b176d7ed8aefe4db0f35f173472de2
[ "MIT" ]
1
2019-08-28T15:02:12.000Z
2019-08-28T15:02:12.000Z
package com.arman.kotboy fun main(args: Array<String>) { val kb = KotBoy() kb.run() }
15.666667
31
0.62766
542242646758f0ffc4fb263d3db44ec5262d664a
1,692
go
Go
pkg/apis/mxnet/validation/validation.go
jzp1025/mx-operator.v2
a6a15ca6f0e64e7c2d55f7d010d134fac1ee041c
[ "Apache-2.0" ]
null
null
null
pkg/apis/mxnet/validation/validation.go
jzp1025/mx-operator.v2
a6a15ca6f0e64e7c2d55f7d010d134fac1ee041c
[ "Apache-2.0" ]
null
null
null
pkg/apis/mxnet/validation/validation.go
jzp1025/mx-operator.v2
a6a15ca6f0e64e7c2d55f7d010d134fac1ee041c
[ "Apache-2.0" ]
null
null
null
// Copyright 2018 The Kubeflow Authors // // 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. package validation import ( //"errors" "fmt" log "github.com/sirupsen/logrus" mxv2 "github.com/kubeflow/mxnet-operator.v2/pkg/apis/mxnet/v1alpha2" ) // ValidateAlphaTwoMXJobSpec checks that the v1alpha2.MXJobSpec is valid. func ValidateAlphaTwoMXJobSpec(c *mxv2.MXJobSpec) error { if c.MXReplicaSpecs == nil { return fmt.Errorf("MXJobSpec is NULL") } for rType, value := range c.MXReplicaSpecs { if value == nil || len(value.Template.Spec.Containers) == 0 { return fmt.Errorf("MXJobSpec is not valid") } //Make sure the image is defined in the container numNamedMXNet := 0 for _, container := range value.Template.Spec.Containers { if container.Image == "" { log.Warn("Image is undefined in the container") return fmt.Errorf("MXJobSpec is not valid") } if container.Name == mxv2.DefaultContainerName { numNamedMXNet++ } } //Make sure there has at least one container named "mxnet" if numNamedMXNet == 0 { log.Warnf("There is no container named mxnet in %v", rType) return fmt.Errorf("MXJobSpec is not valid") } } return nil }
30.763636
75
0.717494
6cb38b453256f072361c569665e361f66ed480b8
1,214
kt
Kotlin
app/src/main/java/com/zero/neon/game/stage/StageController.kt
MAliffadlan/permainan-pesawat
29c43454c0f0d8d40b982b04d3190305b0da04d4
[ "MIT" ]
53
2021-12-11T12:36:03.000Z
2022-03-17T22:36:27.000Z
app/src/main/java/com/zero/neon/game/stage/StageController.kt
MAliffadlan/permainan-pesawat
29c43454c0f0d8d40b982b04d3190305b0da04d4
[ "MIT" ]
null
null
null
app/src/main/java/com/zero/neon/game/stage/StageController.kt
MAliffadlan/permainan-pesawat
29c43454c0f0d8d40b982b04d3190305b0da04d4
[ "MIT" ]
4
2022-01-02T14:10:24.000Z
2022-03-20T12:37:00.000Z
package com.zero.neon.game.stage import androidx.compose.runtime.saveable.Saver import com.zero.neon.utils.DateUtils class StageController( private val dateUtils: DateUtils = DateUtils(), private var stageIndex: Int = 0, private var stageStartSnapshotMillis: Long = dateUtils.currentTimeMillis() ) { fun getGameStage(readyForNextStage: Boolean = false): Stage { val stageTimeExpired = stageStartSnapshotMillis + getStage().durationSec * 1000 < dateUtils.currentTimeMillis() val hasNextStage = stageIndex < stages.lastIndex if (stageTimeExpired && hasNextStage) { if (!readyForNextStage) return StageBreak stageIndex++ stageStartSnapshotMillis = dateUtils.currentTimeMillis() } return getStage() } private fun getStage(): Stage { return stages[stageIndex] } companion object { fun saver(): Saver<StageController, *> = Saver( save = { Pair(it.stageIndex, it.stageStartSnapshotMillis) }, restore = { StageController(stageIndex = it.first, stageStartSnapshotMillis = it.second) } ) } }
31.947368
100
0.637562
e630893b6b5d5a8a9dc2fa752434e5912e11d99f
211
kt
Kotlin
src/main/kotlin/com/tingfeng/ershou/collector/dao/impl/AccountDaoImpl.kt
huitoukest/ershou-collector-kotlin
81d5f3455647b26b59594208890135af9255827f
[ "Apache-2.0" ]
null
null
null
src/main/kotlin/com/tingfeng/ershou/collector/dao/impl/AccountDaoImpl.kt
huitoukest/ershou-collector-kotlin
81d5f3455647b26b59594208890135af9255827f
[ "Apache-2.0" ]
null
null
null
src/main/kotlin/com/tingfeng/ershou/collector/dao/impl/AccountDaoImpl.kt
huitoukest/ershou-collector-kotlin
81d5f3455647b26b59594208890135af9255827f
[ "Apache-2.0" ]
null
null
null
package com.tingfeng.ershou.collector.dao.impl //* @Query("update account set name=${name} where id = ${id}")*//* /* override fun updateNameById(name:String, id: Long): Long { return 1L; } }*/
21.1
66
0.620853
6591a3c532e745f5085d37bbe7a35e7d851a0c53
3,296
rs
Rust
medicines/api/src/main.rs
alsuren/products
b0ef8b13f9dfee457c25a3537619bd652541bf28
[ "MIT" ]
null
null
null
medicines/api/src/main.rs
alsuren/products
b0ef8b13f9dfee457c25a3537619bd652541bf28
[ "MIT" ]
null
null
null
medicines/api/src/main.rs
alsuren/products
b0ef8b13f9dfee457c25a3537619bd652541bf28
[ "MIT" ]
null
null
null
use anyhow::anyhow; use core::fmt::Display; use std::{env, net::SocketAddr, str::FromStr}; use tracing::Level; use warp::{ self, http::{header, Method, StatusCode}, Filter, Rejection, Reply, }; mod azure_context; mod document; mod pagination; mod product; mod schema; mod substance; const PORT: u16 = 8000; use crate::{azure_context::create_context, schema::create_schema}; pub fn healthz() -> impl Filter<Extract = impl Reply, Error = Rejection> + Copy { warp::path!("healthz") .and(warp::get()) .map(warp::reply) .map(|reply| warp::reply::with_status(reply, StatusCode::NO_CONTENT)) } #[tokio::main] async fn main() -> Result<(), Box<dyn std::error::Error>> { if get_env_or_default("JSON_LOGS", true) { use_json_log_subscriber() } else { use_unstructured_log_subscriber() } let log = warp::log("medicines-api"); let schema = create_schema(); let context = warp::any().map(create_context); let cors = warp::cors() .allow_methods(vec![Method::GET, Method::POST]) .allow_headers(vec![ header::AUTHORIZATION, header::ACCEPT, header::CONTENT_TYPE, ]) .allow_any_origin(); let graphql_filter = juniper_warp::make_graphql_filter(schema, context.boxed()).with(cors.clone()); let addr = format!("0.0.0.0:{}", get_env_or_default("PORT", PORT.to_string())) .parse::<SocketAddr>()?; let _ = tokio::join!(tokio::spawn(async move { warp::serve( healthz() .or(warp::path("graphiql").and(juniper_warp::graphiql_filter("/graphql", None))) .or(warp::path("graphql").and( warp::options() .map(warp::reply) .with(cors) .with(warp::log("cors-only")), )) .or(warp::path("graphql").and(graphql_filter)) .with(log), ) .run(addr) .await; })); Ok(()) } fn use_json_log_subscriber() { let subscriber = tracing_subscriber::fmt::Subscriber::builder() .json() .with_timer(tracing_subscriber::fmt::time::ChronoUtc::rfc3339()) .with_max_level(Level::INFO) .with_env_filter(tracing_subscriber::EnvFilter::from_default_env()) .finish(); tracing::subscriber::set_global_default(subscriber).expect("setting default subscriber failed"); } fn use_unstructured_log_subscriber() { let subscriber = tracing_subscriber::fmt::Subscriber::builder() .with_timer(tracing_subscriber::fmt::time::ChronoUtc::rfc3339()) .with_max_level(Level::DEBUG) .with_env_filter(tracing_subscriber::EnvFilter::from_default_env()) .finish(); tracing::subscriber::set_global_default(subscriber).expect("setting default subscriber failed"); } pub fn get_env_or_default<T>(key: &str, default: T) -> T where T: FromStr + Display, { get_env(key).unwrap_or_else(|e| { tracing::warn!(r#"defaulting {} to "{}" ({})"#, key, &default, e); default }) } pub fn get_env<T>(key: &str) -> anyhow::Result<T> where T: FromStr, { env::var(key)? .parse::<T>() .map_err(|_| anyhow!("failed to parse for {}", key)) }
28.66087
100
0.597998
f2f2d5ce4459699385592ef52e9569deefe93d51
3,845
kt
Kotlin
utils_androidx/src/main/java/com/fintek/utils_androidx/phone/PhoneUtils.kt
ZuiRenA/fintek_android_sdk
3934edfc55e2a25659c14b74832f20d04bb53da5
[ "MIT" ]
1
2021-07-23T14:27:31.000Z
2021-07-23T14:27:31.000Z
utils_androidx/src/main/java/com/fintek/utils_androidx/phone/PhoneUtils.kt
ZuiRenA/fintek_android_sdk
3934edfc55e2a25659c14b74832f20d04bb53da5
[ "MIT" ]
null
null
null
utils_androidx/src/main/java/com/fintek/utils_androidx/phone/PhoneUtils.kt
ZuiRenA/fintek_android_sdk
3934edfc55e2a25659c14b74832f20d04bb53da5
[ "MIT" ]
null
null
null
package com.fintek.utils_androidx.phone import android.Manifest import android.annotation.SuppressLint import android.content.Context import android.os.Build import android.telephony.TelephonyManager import android.telephony.gsm.GsmCellLocation import androidx.annotation.RequiresPermission import com.fintek.utils_androidx.FintekUtils import com.fintek.utils_androidx.throwable.catchOrBoolean import com.fintek.utils_androidx.throwable.catchOrEmpty import java.util.* /** * Created by ChaoShen on 2020/11/18 */ object PhoneUtils { private val telephonyManager: TelephonyManager? get() = FintekUtils.requiredContext.getSystemService(Context.TELEPHONY_SERVICE) as? TelephonyManager /** * @return the current phone type * * - [TelephonyManager.PHONE_TYPE_NONE] * - [TelephonyManager.PHONE_TYPE_GSM] * - [TelephonyManager.PHONE_TYPE_CDMA] * - [TelephonyManager.PHONE_TYPE_SIP] */ @JvmStatic fun getPhoneType(): Int { return telephonyManager?.phoneType ?: TelephonyManager.PHONE_TYPE_NONE } /** * Return user phone number */ @JvmStatic @SuppressLint("HardwareIds", "InlinedApi") @RequiresPermission( anyOf = [ Manifest.permission.READ_PHONE_STATE, Manifest.permission.READ_SMS, Manifest.permission.READ_PHONE_NUMBERS ] ) fun getPhoneNumber(): String = catchOrEmpty { if (isHasSimCard()) telephonyManager?.line1Number ?: "" else "" } /** * Required permission: * - Manifest.permission.READ_PHONE_STATE * - Manifest.permission.READ_PRIVILEGED_PHONE_STATE */ @JvmStatic @SuppressLint("HardwareIds", "MissingPermission") @RequiresPermission(Manifest.permission.READ_PHONE_STATE) fun getImsi(): String = catchOrEmpty { telephonyManager?.subscriberId ?: "" } /** * Required permission: * - Manifest.permission.READ_PHONE_STATE * - Manifest.permission.READ_PRIVILEGED_PHONE_STATE */ @JvmStatic @SuppressLint("HardwareIds", "MissingPermission") @RequiresPermission(Manifest.permission.READ_PHONE_STATE) fun getMCC(): String = catchOrEmpty { var mcc = "" if (isHasSimCard()) { val imsi = telephonyManager?.subscriberId if (!imsi.isNullOrEmpty()) { mcc = imsi.take(3) } } mcc } /** * Required permission: * - Manifest.permission.READ_PHONE_STATE * - Manifest.permission.READ_PRIVILEGED_PHONE_STATE */ @JvmStatic @SuppressLint("HardwareIds", "MissingPermission") @RequiresPermission(Manifest.permission.READ_PHONE_STATE) fun getMNC(): String = catchOrEmpty { var mnc = "" if (isHasSimCard()) { val imsi = telephonyManager?.subscriberId if (!imsi.isNullOrEmpty()) { mnc = imsi.substring(2, 5) } } mnc } /** * Return is has sim card */ @JvmStatic fun isHasSimCard(): Boolean = catchOrBoolean { !telephonyManager?.simOperator.isNullOrEmpty() } /** * Return timezone id */ @JvmStatic fun getTimeZoneId(): String = catchOrEmpty { TimeZone.getDefault().id } /** * Return timezone displayName */ @JvmStatic fun getTimeZoneDisplayName(): String = catchOrEmpty { TimeZone.getDefault().getDisplayName(false, TimeZone.SHORT) } /** * Return cid */ @JvmStatic @RequiresPermission(Manifest.permission.ACCESS_FINE_LOCATION) fun getCID(): String = catchOrEmpty { val location = telephonyManager?.cellLocation as? GsmCellLocation var cid = "" location?.let { cid = location.cid.toString() } cid } }
26.888112
108
0.644993
207b832856434d002adbf55d25906085d22c957a
1,343
css
CSS
styles/main.css
DmitriiLevchenko/breackout
a006919bbae7b6b9ec75e9e000d135bc751b7543
[ "MIT" ]
1
2020-07-13T08:58:00.000Z
2020-07-13T08:58:00.000Z
styles/main.css
DmitriiLevchenko/breackout
a006919bbae7b6b9ec75e9e000d135bc751b7543
[ "MIT" ]
32
2020-05-02T09:09:42.000Z
2021-05-03T17:23:11.000Z
styles/main.css
DmitriiLevchenko/homepage
655863a5b146753bea78942d5de834c1ef104eb5
[ "MIT" ]
null
null
null
.iridescent-text { animation: 5s linear 0s infinite alternate iridescent-anim; } .clickable-icon { border: 3px solid black; height: 240px; width: 200px; } .iridescent-border { animation: 5s linear 0s infinite alternate border-anim; } .hide { animation: 2s linear 0s 1 normal hide-anim; } .show { animation: 2s linear 0s 1 normal show-anim; } .clickable-icon:hover { cursor: pointer; animation: 5s linear 0s infinite alternate border-anim; } .ball-transform { position: absolute; border: 3px solid black; height: 240px; width: 200px; top: 50px; left: 50px; animation: 2s linear 0s 1 alternate ball-transform-anim; } @keyframes iridescent-anim { from { color: #658f82; } 25% { color: #b7d4ff; } 50% { color: #fed876; } 75% { color: #db6b88; } to { color: #d8664d; } } @keyframes border-anim { from { border: 3px solid #658f82; } to { border: 3px solid #d8664d; } } @keyframes hide-anim { from { opacity: 1; } to { opacity: 0; } } @keyframes show-anim { from { opacity: 0; } to { opacity: 1; } } @keyframes ball-transform-anim { to { position: absolute; border-radius: 400px; border: 1px solid #0095dd; background-color: #0095dd; width: 35px; height: 35px; top: 500px; left: 400px; } }
15.261364
61
0.620253
0ce945d91f14b7115bc5eeecc89a0cbddf6f0ae2
2,925
py
Python
radical_translations/agents/tests/test_models.py
kingsdigitallab/radical_translations
c18ca1ccc0ab2d88ae472dc2eda58e2ff9dcc76a
[ "MIT" ]
3
2022-02-08T18:03:44.000Z
2022-03-18T18:10:43.000Z
radical_translations/agents/tests/test_models.py
kingsdigitallab/radical_translations
c18ca1ccc0ab2d88ae472dc2eda58e2ff9dcc76a
[ "MIT" ]
19
2020-05-11T15:36:35.000Z
2022-02-08T11:26:40.000Z
radical_translations/agents/tests/test_models.py
kingsdigitallab/radical_translations
c18ca1ccc0ab2d88ae472dc2eda58e2ff9dcc76a
[ "MIT" ]
null
null
null
from collections import defaultdict import pytest from radical_translations.agents.models import Organisation, Person pytestmark = pytest.mark.django_db @pytest.mark.usefixtures("vocabulary") class TestOrganisation: def test_agent_type(self, title): obj = Person(name="person name") obj.save() assert obj.agent_type == "person" obj = Organisation(name="organisation name") obj.save() assert obj.agent_type == "organisation" def test_from_gsx_entry(self): assert Organisation.from_gsx_entry(None) is None entry = defaultdict(defaultdict) entry["gsx$organisation"]["$t"] = "" assert Organisation.from_gsx_entry(entry) is None entry["gsx$organisation"]["$t"] = "Organisation 1" assert Organisation.from_gsx_entry(entry) is not None entry["gsx$type"]["$t"] = "Publisher" assert Organisation.from_gsx_entry(entry) is not None entry["gsx$location"]["$t"] = "0001: London [UK]" assert Organisation.from_gsx_entry(entry) is not None assert Organisation.objects.count() == 1 @pytest.mark.usefixtures("vocabulary") class TestPerson: def test_from_gsx_entry(self): assert Person.from_gsx_entry(None) is None entry = defaultdict(defaultdict) entry["gsx$name"]["$t"] = "" assert Person.from_gsx_entry(entry) is None entry["gsx$name"]["$t"] = "Person 1" assert Person.from_gsx_entry(entry) is not None entry["gsx$gender"]["$t"] = "f" p = Person.from_gsx_entry(entry) assert p is not None assert p.gender == "f" entry["gsx$birth"]["$t"] = "1790" p = Person.from_gsx_entry(entry) assert p is not None assert p.date_birth.date_display == "1790" entry["gsx$locationsresidence"]["$t"] = "0001: London [UK]; 0002: Paris [FR]" p = Person.from_gsx_entry(entry) assert p is not None assert "London" in p.based_near.first().address assert "Paris" in p.based_near.last().address entry["gsx$locationbirth"]["$t"] = "0001: London [UK]" p = Person.from_gsx_entry(entry) assert p is not None assert "London" in p.place_birth.address entry["gsx$locationdeath"]["$t"] = "0002: Paris [FR]" p = Person.from_gsx_entry(entry) assert p is not None assert "Paris" in p.place_death.address entry["gsx$occupations"]["$t"] = "tester" p = Person.from_gsx_entry(entry) assert p is not None assert "tester" in p.roles.first().label.lower() entry["gsx$organisations"]["$t"] = "Organisation 1" p = Person.from_gsx_entry(entry) assert p is not None entry["gsx$collaborators"]["$t"] = "Person 2; Person 3" p = Person.from_gsx_entry(entry) assert p is not None assert Person.objects.count() == 3
31.793478
85
0.624274
2629fe896ea7cf424053dbe4a168352be5774d01
4,334
java
Java
src/main/java/im/yangqiang/android/unicorn/core/log/ILogger.java
carltony/Unicorn
5cf1422d9837819ccda0d5100100445a4925c8f8
[ "BSD-2-Clause" ]
null
null
null
src/main/java/im/yangqiang/android/unicorn/core/log/ILogger.java
carltony/Unicorn
5cf1422d9837819ccda0d5100100445a4925c8f8
[ "BSD-2-Clause" ]
null
null
null
src/main/java/im/yangqiang/android/unicorn/core/log/ILogger.java
carltony/Unicorn
5cf1422d9837819ccda0d5100100445a4925c8f8
[ "BSD-2-Clause" ]
null
null
null
package im.yangqiang.android.unicorn.core.log; public interface ILogger { /** * Send a {@link android.util.Log#VERBOSE} log message. * * @param tag * Used to identify the source of a log message. It usually identifies * the class or activity where the log call occurs. * @param msg * The message you would like logged. */ int v(String tag, String msg); /** * Send a {@link android.util.Log#VERBOSE} log message and log the exception. * * @param tag * Used to identify the source of a log message. It usually identifies * the class or activity where the log call occurs. * @param msg * The message you would like logged. * @param tr * An exception to log */ int v(String tag, String msg, Throwable tr); /** * Send a {@link android.util.Log#DEBUG} log message. * * @param tag * Used to identify the source of a log message. It usually identifies * the class or activity where the log call occurs. * @param msg * The message you would like logged. */ int d(String tag, String msg); /** * Send a {@link android.util.Log#DEBUG} log message and log the exception. * * @param tag * Used to identify the source of a log message. It usually identifies * the class or activity where the log call occurs. * @param msg * The message you would like logged. * @param tr * An exception to log */ int d(String tag, String msg, Throwable tr); /** * Send an {@link android.util.Log#INFO} log message. * * @param tag * Used to identify the source of a log message. It usually identifies * the class or activity where the log call occurs. * @param msg * The message you would like logged. */ int i(String tag, String msg); /** * Send a {@link android.util.Log#INFO} log message and log the exception. * * @param tag * Used to identify the source of a log message. It usually identifies * the class or activity where the log call occurs. * @param msg * The message you would like logged. * @param tr * An exception to log */ int i(String tag, String msg, Throwable tr); /** * Send a {@link android.util.Log#WARN} log message. * * @param tag * Used to identify the source of a log message. It usually identifies * the class or activity where the log call occurs. * @param msg * The message you would like logged. */ int w(String tag, String msg); /** * Send a {@link android.util.Log#WARN} log message and log the exception. * * @param tag * Used to identify the source of a log message. It usually identifies * the class or activity where the log call occurs. * @param msg * The message you would like logged. * @param tr * An exception to log */ int w(String tag, String msg, Throwable tr); /** * Send an {@link android.util.Log#ERROR} log message. * * @param tag * Used to identify the source of a log message. It usually identifies * the class or activity where the log call occurs. * @param msg * The message you would like logged. */ int e(String tag, String msg); /** * Send a {@link android.util.Log#ERROR} log message and log the exception. * * @param tag * Used to identify the source of a log message. It usually identifies * the class or activity where the log call occurs. * @param msg * The message you would like logged. * @param tr * An exception to log */ int e(String tag, String msg, Throwable tr); void open(); void close(); void println(int priority, String tag, String message); /** * 是否开启 * * @return */ boolean isOpen(); }
31.635036
84
0.550761
3e2defade92d63d813de05aa9b8fa46ea1a24b82
1,871
kt
Kotlin
math/src/main/kotlin/com/oneliang/ktx/util/math/check/Checker.kt
oneliang/util-kotlin
66c603ee9da407384cfc283102079e43d23e5b90
[ "Apache-2.0" ]
1
2021-11-26T14:53:16.000Z
2021-11-26T14:53:16.000Z
math/src/main/kotlin/com/oneliang/ktx/util/math/check/Checker.kt
oneliang/util-kotlin
66c603ee9da407384cfc283102079e43d23e5b90
[ "Apache-2.0" ]
null
null
null
math/src/main/kotlin/com/oneliang/ktx/util/math/check/Checker.kt
oneliang/util-kotlin
66c603ee9da407384cfc283102079e43d23e5b90
[ "Apache-2.0" ]
2
2020-06-10T08:19:59.000Z
2020-08-27T10:52:00.000Z
package com.oneliang.ktx.util.math.check object Checker { enum class CheckType(val value: Int) { RANGE_LEFT_OPEN_RIGHT_OPEN(0),//(,) RANGE_LEFT_OPEN_RIGHT_CLOSED(1),//(,] RANGE_LEFT_CLOSED_RIGHT_OPEN(2),//[,) RANGE_LEFT_CLOSED_RIGHT_CLOSED(3)//[,] } enum class ParameterCheckType(val value: Int) { PERCENT(0), DIFF(1) } fun check(value: Double, consultValue: Double, parameterArray: Array<Double>, checkType: CheckType, parameterCheckType: ParameterCheckType): Boolean { if (parameterArray.isEmpty() || parameterArray.size != 2) { error("match rule parameter size error, $checkType need two parameter") } val left = when (parameterCheckType) { ParameterCheckType.PERCENT -> value * parameterArray[0] else -> value + parameterArray[0] } val right = when (parameterCheckType) { ParameterCheckType.PERCENT -> value * parameterArray[1] else -> value + parameterArray[1] } when (checkType) { CheckType.RANGE_LEFT_OPEN_RIGHT_OPEN -> { if (!(left < consultValue && consultValue < right)) { return false } } CheckType.RANGE_LEFT_OPEN_RIGHT_CLOSED -> { if (!(left < consultValue && consultValue <= right)) { return false } } CheckType.RANGE_LEFT_CLOSED_RIGHT_OPEN -> { if (!(left <= consultValue && consultValue < right)) { return false } } CheckType.RANGE_LEFT_CLOSED_RIGHT_CLOSED -> { if (!(left <= consultValue && consultValue <= right)) { return false } } } return true } }
36.686275
154
0.54356
eeb75cfa340036a803810d363e92e7e2c21a26e0
1,396
kt
Kotlin
app/src/main/java/com/wgy/recycleclient/logic/viewmodel/ActivityCategoryViewModel.kt
Gaoyuan-Wang/RecycleClient
ba34b9270b49f3801ecf316e9e2766941ffb8a4a
[ "Apache-2.0" ]
null
null
null
app/src/main/java/com/wgy/recycleclient/logic/viewmodel/ActivityCategoryViewModel.kt
Gaoyuan-Wang/RecycleClient
ba34b9270b49f3801ecf316e9e2766941ffb8a4a
[ "Apache-2.0" ]
null
null
null
app/src/main/java/com/wgy/recycleclient/logic/viewmodel/ActivityCategoryViewModel.kt
Gaoyuan-Wang/RecycleClient
ba34b9270b49f3801ecf316e9e2766941ffb8a4a
[ "Apache-2.0" ]
null
null
null
package com.wgy.recycleclient.logic.viewmodel import androidx.lifecycle.MutableLiveData import androidx.lifecycle.Transformations import androidx.lifecycle.ViewModel import com.wgy.recycleclient.logic.Repository import com.wgy.recycleclient.logic.model.Sign import com.wgy.recycleclient.logic.model.CheckActivityByCategory import com.wgy.recycleclient.logic.model.CheckActivityByCategoryData import com.wgy.recycleclient.logic.model.Order class ActivityCategoryViewModel: ViewModel() { var id = "" var category = "" var activityPosition = 0 var allActivities = ArrayList<CheckActivityByCategoryData>() val checkActivityByCategoryLiveData = MutableLiveData<CheckActivityByCategory>() lateinit var checkActivityByCategory: CheckActivityByCategory val activityLiveData = Transformations.switchMap(checkActivityByCategoryLiveData) { Repository.checkActivityByCategory(checkActivityByCategory.category,checkActivityByCategory.rid) } fun checkActivityByCategory(checkActivityByCategory: CheckActivityByCategory){ checkActivityByCategoryLiveData.value = checkActivityByCategory } var signLiveData = MutableLiveData<Sign>() lateinit var sign: Sign val signResponseLiveData = Transformations.switchMap(signLiveData){ Repository.sign(sign.aid,sign.rid) } fun sign(sign: Sign){ signLiveData.value = sign } }
39.885714
104
0.797994
1f89b79de4874d4dd02509165a484aa15fe15770
34,811
html
HTML
johnbattelle.html
svven/pages
5478469c88f5d6acfd4cacc0f075a4e0951cc340
[ "MIT" ]
null
null
null
johnbattelle.html
svven/pages
5478469c88f5d6acfd4cacc0f075a4e0951cc340
[ "MIT" ]
null
null
null
johnbattelle.html
svven/pages
5478469c88f5d6acfd4cacc0f075a4e0951cc340
[ "MIT" ]
1
2019-12-20T04:39:04.000Z
2019-12-20T04:39:04.000Z
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>News - Summary Extraction</title> <link rel="stylesheet" href="css/bootstrap.css"> <link rel="stylesheet" href="css/news.css"> <!--<script type="text/javascript" src="js/cycle.js"></script>--> </head> <body> <div class="container-fluid"> <div class="page-content"> <div class="row"> <ul class="list-unstyled"> <li> <div class="summary"> <h2 class="title"> <a href="https://www.battleforthenet.com">This is why your Internet is slow. And it’ll get worse. Unless you take 1 ...</a> </h2> <p class="site"> <span>www.battleforthenet.com</span> </p> <div class="crop"> <div><img class="image" src="https://www.battleforthenet.com/images/battle-for-the-net.jpg" /></div> </div> <div class="description"> <p> You’re our only hope. </p> </div> <div class="readers"> <a href="bfeld.html"><img class="reader" src="http://pbs.twimg.com/profile_images/441605100440547328/vJhIbf6j_normal.png" title="@bfeld" /></a> <a href="patin__.html"><img class="reader" src="http://pbs.twimg.com/profile_images/502681453017464832/2xXIt-qk_normal.jpeg" title="@patin__" /></a> <a href="signap.html"><img class="reader" src="http://pbs.twimg.com/profile_images/1826838332/bibo_normal.jpg" title="@signap" /></a> </div> </div> <div class="clearfix enable-sm "></div> </li> <li> <div class="summary"> <h2 class="title"> <a href="http://snapsnapsnap.photos/how-does-the-iphone-6-camera-compare-to-previous-iphone-cameras">iPhone camera evolution: How does the iPhone 6 camera compare to previous ...</a> </h2> <p class="site"> <span>snapsnapsnap.photos</span> </p> <div class="crop"> <div><img class="image" src="http://static.snapsnapsnap.photos/wp-content/uploads/2014/09/8-iPhones-optim-150x150@2x.jpg" /></div> </div> <div class="description"> <p> How does the iPhone 6 camera stack up against previous hardware? In her ongoing series, professional iPhone photographer Lisa Bettany takes a hard ... </p> </div> <div class="readers"> <a href="arrington.html"><img class="reader" src="http://pbs.twimg.com/profile_images/378800000654181704/52e1a4162ad05f167fca1432630dac1c_normal.jpeg" title="@arrington" /></a> <a href="fmorgan2k9.html"><img class="reader" src="http://pbs.twimg.com/profile_images/378800000843135361/7129897f73f5187099263e996d4fdc2d_normal.png" title="@fmorgan2k9" /></a> <a href="adrianspeyer.html"><img class="reader" src="http://pbs.twimg.com/profile_images/412046241871056896/nXmCIGts_normal.png" title="@adrianspeyer" /></a> </div> </div> <div class="clearfix enable-sm enable-md "></div> </li> <li> <div class="summary"> <h2 class="title"> <a href="http://avc.com/2014/09/burn-baby-burn">Burn Baby Burn – AVC</a> </h2> <p class="site"> <span>avc.com</span> </p> <div class="description"> <p> Andy sent me a WSJ piece with Bill Gurley yesterday. I don’t like to link to paid content so here’s a good Business Insider summary of the article ... </p> </div> <div class="readers"> <a href="mlcwong.html"><img class="reader" src="http://pbs.twimg.com/profile_images/378800000808107649/9a9161e37c7ac8935a0109e1d846393c_normal.jpeg" title="@mlcwong" /></a> <a href="infoarbitrage.html"><img class="reader" src="http://pbs.twimg.com/profile_images/3089185167/4f6afdd0c812fc4d713b721b0c492c79_normal.jpeg" title="@infoarbitrage" /></a> <a href="tomiogeron.html"><img class="reader" src="http://pbs.twimg.com/profile_images/1895661355/tomo_normal.jpg" title="@tomiogeron" /></a> </div> </div> <div class="clearfix enable-sm enable-lg"></div> </li> <li> <div class="summary"> <h2 class="title"> <a href="http://www.bothsidesofthetable.com/2014/09/17/bad-notes-on-venture-capital">Bad Notes on Venture Capital</a> </h2> <p class="site"> <span>www.bothsidesofthetable.com</span> </p> <div class="crop"> <div><img class="image" src="http://www.bothsidesofthetable.com/wp-content/uploads/2014/09/Bad-Notes.png" /></div> </div> <div class="description"> <p> This week. On the phone ... Me: So, you raised venture capital? Him: Yeah. We raised a seed round. About $1 million. Me: At what price? Him: It ... </p> </div> <div class="readers"> <a href="mlcwong.html"><img class="reader" src="http://pbs.twimg.com/profile_images/378800000808107649/9a9161e37c7ac8935a0109e1d846393c_normal.jpeg" title="@mlcwong" /></a> <a href="infoarbitrage.html"><img class="reader" src="http://pbs.twimg.com/profile_images/3089185167/4f6afdd0c812fc4d713b721b0c492c79_normal.jpeg" title="@infoarbitrage" /></a> <a href="bwertz.html"><img class="reader" src="http://pbs.twimg.com/profile_images/488743484375826432/11dWC2yH_normal.jpeg" title="@bwertz" /></a> </div> </div> <div class="clearfix enable-sm enable-md "></div> </li> <li> <div class="summary"> <h2 class="title"> <a href="http://www.apple.com/privacy">Apple - Privacy</a> </h2> <p class="site"> <span>www.apple.com</span> </p> <div class="crop"> <div><img class="image" src="http://www.apple.com/home/images/og.jpg?201409231413" /></div> </div> <div class="description"> <p> At Apple, we respect your privacy and protect it with strong encryption, plus strict policies that govern how all data is handled. </p> </div> <div class="readers"> <a href="mschaecher.html"><img class="reader" src="http://pbs.twimg.com/profile_images/516124933789712384/10rhcFXa_normal.jpeg" title="@mschaecher" /></a> <a href="migueldeicaza.html"><img class="reader" src="http://pbs.twimg.com/profile_images/458699507576737793/KzwT77TX_normal.png" title="@migueldeicaza" /></a> <a href="fmorgan2k9.html"><img class="reader" src="http://pbs.twimg.com/profile_images/378800000843135361/7129897f73f5187099263e996d4fdc2d_normal.png" title="@fmorgan2k9" /></a> </div> </div> <div class="clearfix enable-sm "></div> </li> <li> <div class="summary"> <h2 class="title"> <a href="http://startupclass.samaltman.com">How to Start a Startup</a> </h2> <p class="site"> <span>startupclass.samaltman.com</span> </p> <div class="description"> <p> CS183B is a class we’re teaching at Stanford. It’s designed to be a sort of one-class business course for people who want to start startups. </p> </div> <div class="readers"> <a href="bwertz.html"><img class="reader" src="http://pbs.twimg.com/profile_images/488743484375826432/11dWC2yH_normal.jpeg" title="@bwertz" /></a> <a href="a16z.html"><img class="reader" src="http://pbs.twimg.com/profile_images/487366765106565120/jGvHRW6p_normal.png" title="@a16z" /></a> <a href="pmarca.html"><img class="reader" src="http://pbs.twimg.com/profile_images/436973293053034496/Rc_YcyTy_normal.png" title="@pmarca" /></a> </div> </div> <div class="clearfix enable-sm enable-md enable-lg"></div> </li> <li> <div class="summary"> <h2 class="title"> <a href="http://www.ycombinator.com/rfs">Requests for Startups</a> </h2> <p class="site"> <span>www.ycombinator.com</span> </p> <div class="crop"> <div><img class="image" src="http://www.ycombinator.com/images/ycombinator-logo-fb889e2e.png" /></div> </div> <div class="description"> <p> You shouldn't start a company just because it's on this list. 1. It’s mostly here to help stimulate you to think about ideas. </p> </div> <div class="readers"> <a href="julius_adebayo.html"><img class="reader" src="http://pbs.twimg.com/profile_images/2623424955/0u0sas75899dhrj4thhc_normal.jpeg" title="@julius_adebayo" /></a> <a href="bwertz.html"><img class="reader" src="http://pbs.twimg.com/profile_images/488743484375826432/11dWC2yH_normal.jpeg" title="@bwertz" /></a> <a href="tomiogeron.html"><img class="reader" src="http://pbs.twimg.com/profile_images/1895661355/tomo_normal.jpg" title="@tomiogeron" /></a> </div> </div> <div class="clearfix enable-sm "></div> </li> <li> <div class="summary"> <h2 class="title"> <a href="http://www.hodinkee.com/blog/hodinkee-apple-watch-review">A Watch Guy's Thoughts On The Apple Watch After Seeing It In The Metal ...</a> </h2> <p class="site"> <span>www.hodinkee.com</span> </p> <div class="crop"> <div><img class="image" src="http://static.squarespace.com/static/4fa14d3ce4b08a53fa26468e/500881b0e4b0634b00d359ed/540f8287e4b04f85eb6883b9/1410960502748/?format=1000w" /></div> </div> <div class="description"> <p> I'm not even sure we can call it a watch. Okay, it goes on the wrist, and it happens to tell the time, but that's about where the similarities ... </p> </div> <div class="readers"> <a href="infoarbitrage.html"><img class="reader" src="http://pbs.twimg.com/profile_images/3089185167/4f6afdd0c812fc4d713b721b0c492c79_normal.jpeg" title="@infoarbitrage" /></a> <a href="codinghorror.html"><img class="reader" src="http://pbs.twimg.com/profile_images/2052442590/coding-horror-official-logo-medium_normal.png" title="@codinghorror" /></a> <a href="bgurley.html"><img class="reader" src="http://pbs.twimg.com/profile_images/453216011945136128/x12zi3zt_normal.jpeg" title="@bgurley" /></a> </div> </div> <div class="clearfix enable-sm enable-md "></div> </li> <li> <div class="summary"> <h2 class="title"> <a href="https://blog.twitter.com/2014/testing-a-way-for-you-to-make-purchases-on-twitter">Testing a way for you to make purchases on Twitter | Twitter Blogs</a> </h2> <p class="site"> <span>blog.twitter.com</span> </p> <div class="crop"> <div><img class="image" src="https://blog.twitter.com/sites/all/themes/gazebo/img/twitter-bird-white-on-blue.png" /></div> </div> <div class="description"> <p> A new way to discover and buy products on Twitter. </p> </div> <div class="readers"> <a href="signap.html"><img class="reader" src="http://pbs.twimg.com/profile_images/1826838332/bibo_normal.jpg" title="@signap" /></a> <a href="rsarver.html"><img class="reader" src="http://pbs.twimg.com/profile_images/477679945678741504/k1qS6ruv_normal.jpeg" title="@rsarver" /></a> <a href="parislemon.html"><img class="reader" src="http://pbs.twimg.com/profile_images/504213080184590336/PZHN3lE9_normal.jpeg" title="@parislemon" /></a> </div> </div> <div class="clearfix enable-sm enable-lg"></div> </li> <li> <div class="summary"> <h2 class="title"> <a href="http://www.nytimes.com/2014/09/07/magazine/so-bill-gates-has-this-idea-for-a-history-class.html">So Bill Gates Has This Idea for a History Class ... - NYTimes.com</a> </h2> <p class="site"> <span>www.nytimes.com</span> </p> <div class="crop"> <div><img class="image" src="http://static01.nyt.com/images/2014/09/07/magazine/07gates1/07gates1-articleLarge.jpg" /></div> </div> <div class="description"> <p> In 2008, shortly after Bill Gates stepped down from his executive role at Microsoft, he often awoke in his 66,000-square-foot home on the eastern ... </p> </div> <div class="readers"> <a href="mschaecher.html"><img class="reader" src="http://pbs.twimg.com/profile_images/516124933789712384/10rhcFXa_normal.jpeg" title="@mschaecher" /></a> <a href="bwertz.html"><img class="reader" src="http://pbs.twimg.com/profile_images/488743484375826432/11dWC2yH_normal.jpeg" title="@bwertz" /></a> <a href="tomiogeron.html"><img class="reader" src="http://pbs.twimg.com/profile_images/1895661355/tomo_normal.jpg" title="@tomiogeron" /></a> </div> </div> <div class="clearfix enable-sm enable-md "></div> </li> <li> <div class="summary"> <h2 class="title"> <a href="http://www.forbes.com/sites/gartnergroup/2014/09/17/digital-business-technologies-dominate-gartner-2014-emerging-technologies-hype-cycle">Digital Business Technologies Dominate Gartner 2014 Emerging Technologies ...</a> </h2> <p class="site"> <span>www.forbes.com</span> </p> <div class="crop"> <div><img class="image" src="http://blogs-images.forbes.com/gartnergroup/files/2014/09/Emerging-Tech-Hype-Cycle2014.png" /></div> </div> <div class="description"> <p> By Hung LeHong and Jackie Fenn Gartner, Inc. Imagine this: As you leave for work in the morning, your house automatically turns down the heat and ... </p> </div> <div class="readers"> <a href="RonP.html"><img class="reader" src="http://pbs.twimg.com/profile_images/464866159351713792/uxqYo-ZU_normal.jpeg" title="@RonP" /></a> <a href="DanielleMorrill.html"><img class="reader" src="http://pbs.twimg.com/profile_images/509198498190086144/k_Qgn1_a_normal.jpeg" title="@DanielleMorrill" /></a> <a href="GordonSuttie.html"><img class="reader" src="http://pbs.twimg.com/profile_images/476969110031851520/z5nNFEsX_normal.jpeg" title="@GordonSuttie" /></a> </div> </div> <div class="clearfix enable-sm "></div> </li> <li> <div class="summary"> <h2 class="title"> <a href="http://www.nytimes.com/2014/09/21/business/zenefits-leader-is-rattling-an-industry-so-why-is-he-stressed-out.html">Zenefits’ Leader Is Rattling an Industry, So Why Is He Stressed Out? - ...</a> </h2> <p class="site"> <span>www.nytimes.com</span> </p> <div class="crop"> <div><img class="image" src="http://static01.nyt.com/images/2014/09/21/business/21-ZENEFITS/21-ZENEFITS-articleInline.jpg" /></div> </div> <div class="description"> <p> Parker Conrad’s start-up, Zenefits, is thought to be one of the fastest-growing companies in recent Silicon Valley history, and his investors and ... </p> </div> <div class="readers"> <a href="RonP.html"><img class="reader" src="http://pbs.twimg.com/profile_images/464866159351713792/uxqYo-ZU_normal.jpeg" title="@RonP" /></a> <a href="a16z.html"><img class="reader" src="http://pbs.twimg.com/profile_images/487366765106565120/jGvHRW6p_normal.png" title="@a16z" /></a> <a href="anbuteau.html"><img class="reader" src="http://pbs.twimg.com/profile_images/510297189495889920/prGF7otr_normal.jpeg" title="@anbuteau" /></a> </div> </div> <div class="clearfix enable-sm enable-md enable-lg"></div> </li> <li> <div class="summary"> <h2 class="title"> <a href="http://www.amazon.com/Zero-One-Notes-Startups-Future/dp/0804139296">Zero to One: Notes on Startups, or How to Build the Future:Amazon:Books</a> </h2> <p class="site"> <span>www.amazon.com</span> </p> <div class="description"> <p> Amazon Zero to One: Notes on Startups, or How to Build the Future </p> </div> <div class="readers"> <a href="asenkut.html"><img class="reader" src="http://pbs.twimg.com/profile_images/427193341847941120/4cUfWM6w_normal.jpeg" title="@asenkut" /></a> <a href="DanielleMorrill.html"><img class="reader" src="http://pbs.twimg.com/profile_images/509198498190086144/k_Qgn1_a_normal.jpeg" title="@DanielleMorrill" /></a> <a href="paulballen.html"><img class="reader" src="http://pbs.twimg.com/profile_images/1795542090/facebookprofilepic_normal.jpg" title="@paulballen" /></a> </div> </div> <div class="clearfix enable-sm "></div> </li> <li> <div class="summary"> <h2 class="title"> <a href="http://www.reddit.com/r/IAmA/comments/2g4g95/peter_thiel_technology_entrepreneur_and_investor">Peter Thiel, technology entrepreneur and investor. AMA • /r/IAmA</a> </h2> <p class="site"> <span>www.reddit.com</span> </p> <div class="crop"> <div><img class="image" src="http://www.redditstatic.com/icon.png" /></div> </div> <div class="description"> <p> **My short bio:** Hi, I'm Peter Thiel, co-founder of PayPal and Palantir, first investor in Facebook, venture capitalist at Founders Fund, and... </p> </div> <div class="readers"> <a href="bwertz.html"><img class="reader" src="http://pbs.twimg.com/profile_images/488743484375826432/11dWC2yH_normal.jpeg" title="@bwertz" /></a> <a href="RonP.html"><img class="reader" src="http://pbs.twimg.com/profile_images/464866159351713792/uxqYo-ZU_normal.jpeg" title="@RonP" /></a> <a href="a16z.html"><img class="reader" src="http://pbs.twimg.com/profile_images/487366765106565120/jGvHRW6p_normal.png" title="@a16z" /></a> </div> </div> <div class="clearfix enable-sm enable-md "></div> </li> <li> <div class="summary"> <h2 class="title"> <a href="http://www.apple.com">Apple</a> </h2> <p class="site"> <span>www.apple.com</span> </p> <div class="crop"> <div><img class="image" src="http://images.apple.com/home/images/og.jpg?201409261557" /></div> </div> <div class="description"> <p> Apple designs and creates the iPhone, iPad, Mac notebooks and desktop computers, iOS 8, OS X, iPod and iTunes, and the new Apple Watch. </p> </div> <div class="readers"> <a href="migueldeicaza.html"><img class="reader" src="http://pbs.twimg.com/profile_images/458699507576737793/KzwT77TX_normal.png" title="@migueldeicaza" /></a> <a href="rsarver.html"><img class="reader" src="http://pbs.twimg.com/profile_images/477679945678741504/k1qS6ruv_normal.jpeg" title="@rsarver" /></a> <a href="parislemon.html"><img class="reader" src="http://pbs.twimg.com/profile_images/504213080184590336/PZHN3lE9_normal.jpeg" title="@parislemon" /></a> </div> </div> <div class="clearfix enable-sm enable-lg"></div> </li> <li> <div class="summary"> <h2 class="title"> <a href="http://www.nytimes.com">Breaking News, World News & Multimedia</a> </h2> <p class="site"> <span>www.nytimes.com</span> </p> <div class="crop"> <div><img class="image" src="http://static01.nyt.com/images/2014/09/26/us/26holder3/26holder3-mediumFlexible177.jpg" /></div> </div> <div class="description"> <p> The New York Times: Find breaking news, multimedia, reviews & opinion on Washington, business, sports, movies, travel, books, jobs, education, real ... </p> </div> <div class="readers"> <a href="adrianspeyer.html"><img class="reader" src="http://pbs.twimg.com/profile_images/412046241871056896/nXmCIGts_normal.png" title="@adrianspeyer" /></a> <a href="loic.html"><img class="reader" src="http://pbs.twimg.com/profile_images/477838412074848257/lvBjaz-R_normal.jpeg" title="@loic" /></a> <a href="sujal.html"><img class="reader" src="http://pbs.twimg.com/profile_images/456892479048929280/rfzz9mrK_normal.jpeg" title="@sujal" /></a> </div> </div> <div class="clearfix enable-sm enable-md "></div> </li> <li> <div class="summary"> <h2 class="title"> <a href="https://www.coursera.org">Coursera</a> </h2> <p class="site"> <span>www.coursera.org</span> </p> <div class="crop"> <div><img class="image" src="http://s3.amazonaws.com/coursera/media/Coursera_Computer_Narrow.png" /></div> </div> <div class="description"> <p> Take free online classes from 80+ top universities and organizations. Coursera is a social entrepreneurship company partnering with Stanford ... </p> </div> <div class="readers"> <a href="Jekrb.html"><img class="reader" src="http://pbs.twimg.com/profile_images/378800000391540932/ddbf4ab823d0168a5cd9f25ed68d7f2c_normal.jpeg" title="@Jekrb" /></a> <a href="bwertz.html"><img class="reader" src="http://pbs.twimg.com/profile_images/488743484375826432/11dWC2yH_normal.jpeg" title="@bwertz" /></a> <a href="michaelmorett.html"><img class="reader" src="http://pbs.twimg.com/profile_images/467202461699031040/b6G81HFA_normal.jpeg" title="@michaelmorett" /></a> </div> </div> <div class="clearfix enable-sm "></div> </li> <li> <div class="summary"> <h2 class="title"> <a href="http://ello.co/waxpancake/post/oy73kFfDdhOPh8Jv9z9pFA">Ello | waxpancake</a> </h2> <p class="site"> <span>ello.co</span> </p> <div class="crop"> <div><img class="image" src="https://ello.co/apple-touch-icon-precomposed.png" /></div> </div> <div class="description"> <p> Ello is a beautiful, simple, and ad-free social network. The Ello interface supports posting and private messaging. Ello allows users to share ... </p> </div> <div class="readers"> <a href="bryce.html"><img class="reader" src="http://pbs.twimg.com/profile_images/1760909983/me_normal.jpg" title="@bryce" /></a> <a href="hakantee.html"><img class="reader" src="http://pbs.twimg.com/profile_images/378800000244696802/797ae5f41384d7a97a826980bf23a9c8_normal.jpeg" title="@hakantee" /></a> <a href="mariorz.html"><img class="reader" src="http://pbs.twimg.com/profile_images/2964153728/d412163825bf82346c6810a3329a1bb6_normal.jpeg" title="@mariorz" /></a> </div> </div> <div class="clearfix enable-sm enable-md enable-lg"></div> </li> <li> <div class="summary"> <h2 class="title"> <a href="http://scotthurff.com/posts/posts/how-to-design-for-thumbs-in-the-era-of-huge-screens">Scott Hurff</a> </h2> <p class="site"> <span>scotthurff.com</span> </p> <div class="crop"> <div><img class="image" src="http://scotthurff.com/themes/default/img/og_image.gif" /></div> </div> <div class="description"> <p> I'm Scott Hurff, and I love to help you build better products. I'm on the founding team of a Kleiner Perkins-backed mobile startup, created a course ... </p> </div> <div class="readers"> <a href="sujal.html"><img class="reader" src="http://pbs.twimg.com/profile_images/456892479048929280/rfzz9mrK_normal.jpeg" title="@sujal" /></a> <a href="agaton.html"><img class="reader" src="http://pbs.twimg.com/profile_images/1254616660/anton_normal.jpg" title="@agaton" /></a> <a href="andrewchen.html"><img class="reader" src="http://pbs.twimg.com/profile_images/458703930323525633/BZz2lNZ6_normal.jpeg" title="@andrewchen" /></a> </div> </div> <div class="clearfix enable-sm "></div> </li> <li> <div class="summary"> <h2 class="title"> <a href="http://a16z.com/2014/09/12/a16z-podcast-secrets-power-laws-and-technology-the-ideas-of-zero-to-one">A16z Podcast: Secrets, Power Laws, and Technology — The Ideas of “Zero to ...</a> </h2> <p class="site"> <span>a16z.com</span> </p> <div class="crop"> <div><img class="image" src="http://a16z.files.wordpress.com/2014/01/7cb56ea5114a9f0e92d53bf0e171d15d.png" /></div> </div> <div class="description"> <p> Have we as a culture become expert at globalizing industries, but are we failing when it comes to truly world-changing technological breakthroughs? ... </p> </div> <div class="readers"> <a href="bwertz.html"><img class="reader" src="http://pbs.twimg.com/profile_images/488743484375826432/11dWC2yH_normal.jpeg" title="@bwertz" /></a> <a href="a16z.html"><img class="reader" src="http://pbs.twimg.com/profile_images/487366765106565120/jGvHRW6p_normal.png" title="@a16z" /></a> <a href="cdixon.html"><img class="reader" src="http://pbs.twimg.com/profile_images/2874406524/5ecf4e7907cbb226d8337704dd752dd5_normal.jpeg" title="@cdixon" /></a> </div> </div> <div class="clearfix enable-sm enable-md "></div> </li> <li> <div class="summary"> <h2 class="title"> <a href="http://stratechery.com/2014/apple-watch-asking-saying">Apple Watch: Asking Why and Saying No - stratechery by Ben Thompson</a> </h2> <p class="site"> <span>stratechery.com</span> </p> <div class="crop"> <div><img class="image" src="http://2yj23r14cytosbxol4cavq337g.wpengine.netdna-cdn.com/wp-content/themes/stratechery/images/header_small.png" /></div> </div> <div class="description"> <p> Apple Watch is beautiful and has many compelling features, but Apple never said why it exists. Has that led them to do too much? </p> </div> <div class="readers"> <a href="bryce.html"><img class="reader" src="http://pbs.twimg.com/profile_images/1760909983/me_normal.jpg" title="@bryce" /></a> <a href="bwertz.html"><img class="reader" src="http://pbs.twimg.com/profile_images/488743484375826432/11dWC2yH_normal.jpeg" title="@bwertz" /></a> <a href="AndrewMueller.html"><img class="reader" src="http://pbs.twimg.com/profile_images/378800000016855619/1e3cf77a6c3f9a90c0ea5341334a654f_normal.jpeg" title="@AndrewMueller" /></a> </div> </div> <div class="clearfix enable-sm enable-lg"></div> </li> <li> <div class="summary"> <h2 class="title"> <a href="http://www.feld.com/archives/2014/09/techstars-equity-back-guarantee.html">Techstars Equity Back Guarantee - Feld Thoughts</a> </h2> <p class="site"> <span>www.feld.com</span> </p> <div class="crop"> <div><img class="image" src="http://www.feld.com/wp-content/themes/feld-thoughts/img/book_covers/communities.png" /></div> </div> <div class="description"> <p> Today Techstars announced an “equity back guarantee” for any company that goes through the Techstars program starting in 2015. We’ve been talking ... </p> </div> <div class="readers"> <a href="bfeld.html"><img class="reader" src="http://pbs.twimg.com/profile_images/441605100440547328/vJhIbf6j_normal.png" title="@bfeld" /></a> <a href="fyietc.html"><img class="reader" src="http://pbs.twimg.com/profile_images/1759944905/image_normal.jpg" title="@fyietc" /></a> <a href="ericries.html"><img class="reader" src="http://pbs.twimg.com/profile_images/1769304611/image1327092761_normal.png" title="@ericries" /></a> </div> </div> <div class="clearfix enable-sm enable-md "></div> </li> <li> <div class="summary"> <h2 class="title"> <a href="http://www.nytimes.com/2014/09/02/health/low-carb-vs-low-fat-diet.html">A Call for a Low-Carb Diet That Embraces Fat - NYTimes.com</a> </h2> <p class="site"> <span>www.nytimes.com</span> </p> <div class="crop"> <div><img class="image" src="http://static01.nyt.com/images/2014/09/02/science/02CARB/02CARB-articleInline.jpg" /></div> </div> <div class="description"> <p> People who avoid carbohydrates and eat more fat, even saturated fat , lose more body fat and have fewer cardiovascular risks than people who follow ... </p> </div> <div class="readers"> <a href="bryce.html"><img class="reader" src="http://pbs.twimg.com/profile_images/1760909983/me_normal.jpg" title="@bryce" /></a> <a href="RonP.html"><img class="reader" src="http://pbs.twimg.com/profile_images/464866159351713792/uxqYo-ZU_normal.jpeg" title="@RonP" /></a> <a href="jeremys.html"><img class="reader" src="http://pbs.twimg.com/profile_images/2678283048/4fe3bd750d60715b35b1c4c276430213_normal.jpeg" title="@jeremys" /></a> </div> </div> <div class="clearfix enable-sm "></div> </li> <li> <div class="summary"> <h2 class="title"> <a href="http://dealbook.nytimes.com/2014/08/17/in-silicon-valley-mergers-must-meet-the-toothbrush-test">In Silicon Valley, Mergers Must Meet the Toothbrush Test</a> </h2> <p class="site"> <span>dealbook.nytimes.com</span> </p> <div class="crop"> <div><img class="image" src="http://graphics8.nytimes.com/images/2014/08/18/business/VALLEYDEALSillo/VALLEYDEALSillo-videoSixteenByNine600.jpg" /></div> </div> <div class="description"> <p> Companies like Google are employing unorthodox criteria — say, whether a product is used daily, like a toothbrush — to size up their deal targets, ... </p> </div> <div class="readers"> <a href="mlcwong.html"><img class="reader" src="http://pbs.twimg.com/profile_images/378800000808107649/9a9161e37c7ac8935a0109e1d846393c_normal.jpeg" title="@mlcwong" /></a> <a href="mschaecher.html"><img class="reader" src="http://pbs.twimg.com/profile_images/516124933789712384/10rhcFXa_normal.jpeg" title="@mschaecher" /></a> <a href="missivanau.html"><img class="reader" src="http://pbs.twimg.com/profile_images/466489844676710400/6PmGHnK5_normal.jpeg" title="@missivanau" /></a> </div> </div> <div class="clearfix enable-sm enable-md enable-lg"></div> </li> <li> <div class="summary"> <h2 class="title"> <a href="http://www.bloombergview.com/articles/2014-09-24/occupational-hazards-of-working-on-wall-street">Occupational Hazards of Working on Wall Street</a> </h2> <p class="site"> <span>www.bloombergview.com</span> </p> <div class="crop"> <div><img class="image" src="http://www.bloomberg.com/image/i26LxkLSWIn0.jpg" /></div> </div> <div class="description"> <p> Michael Lewis asks the big question about the army of Ivy League graduates, with seemingly endless career options, who wind up in finance: What ... </p> </div> <div class="readers"> <a href="paulballen.html"><img class="reader" src="http://pbs.twimg.com/profile_images/1795542090/facebookprofilepic_normal.jpg" title="@paulballen" /></a> <a href="jeremys.html"><img class="reader" src="http://pbs.twimg.com/profile_images/2678283048/4fe3bd750d60715b35b1c4c276430213_normal.jpeg" title="@jeremys" /></a> <a href="scoobydoo22b.html"><img class="reader" src="http://pbs.twimg.com/profile_images/2646629916/732924e4c53bb7846706c3f3851c25a8_normal.jpeg" title="@scoobydoo22b" /></a> </div> </div> <div class="clearfix enable-sm "></div> </li> <li> <div class="summary"> <h2 class="title"> <a href="http://a16z.com/2014/09/25/on-dark-talent-moocs-universities-and-startups-an-interview-with-andreessen-horowitz-first-distinguished-visiting-professor-of-computer-science">On ‘Dark Talent’, MOOCs, Universities, and Startups: An Interview with the ...</a> </h2> <p class="site"> <span>a16z.com</span> </p> <div class="crop"> <div><img class="image" src="http://a16z.files.wordpress.com/2014/01/7cb56ea5114a9f0e92d53bf0e171d15d.png" /></div> </div> <div class="description"> <p> We’re bringing together a great group of computer science professors from around the U.S. for talks and discussion as part of our second annual ... </p> </div> <div class="readers"> <a href="a16z.html"><img class="reader" src="http://pbs.twimg.com/profile_images/487366765106565120/jGvHRW6p_normal.png" title="@a16z" /></a> <a href="pmarca.html"><img class="reader" src="http://pbs.twimg.com/profile_images/436973293053034496/Rc_YcyTy_normal.png" title="@pmarca" /></a> <a href="cdixon.html"><img class="reader" src="http://pbs.twimg.com/profile_images/2874406524/5ecf4e7907cbb226d8337704dd752dd5_normal.jpeg" title="@cdixon" /></a> </div> </div> <div class="clearfix enable-sm enable-md "></div> </li> <li> <div class="summary"> <h2 class="title"> <a href="http://avc.com/2014/09/the-bitcoin-hype-cycle">The Bitcoin Hype Cycle – AVC</a> </h2> <p class="site"> <span>avc.com</span> </p> <div class="crop"> <div><img class="image" src="http://avc.com/wp-content/uploads/2014/09/Hype-cycle-600x413.jpg" /></div> </div> <div class="description"> <p> Most people are familiar with the Gartner Hype Cycle. It is a great framework for looking at the development of important technological innovations: </p> </div> <div class="readers"> <a href="infoarbitrage.html"><img class="reader" src="http://pbs.twimg.com/profile_images/3089185167/4f6afdd0c812fc4d713b721b0c492c79_normal.jpeg" title="@infoarbitrage" /></a> <a href="cdixon.html"><img class="reader" src="http://pbs.twimg.com/profile_images/2874406524/5ecf4e7907cbb226d8337704dd752dd5_normal.jpeg" title="@cdixon" /></a> <a href="ShriBhashyam.html"><img class="reader" src="http://pbs.twimg.com/profile_images/509799871562268672/X7mFnSyh_normal.jpeg" title="@ShriBhashyam" /></a> </div> </div> <div class="clearfix enable-sm enable-lg"></div> </li> <li> <div class="summary"> <h2 class="title"> <a href="https://equityzen.com/blog/metrics-required-for-series-a">The Metrics Required for Raising a Series A Round</a> </h2> <p class="site"> <span>equityzen.com</span> </p> <div class="crop"> <div><img class="image" src="http://3.bp.blogspot.com/-p0btFzQzvx8/VBnpQsWHQQI/AAAAAAAAAuA/uRruwVQaFuU/s1600/Up%2Band%2Bto%2Bthe%2BRight%2BChart.jpg" /></div> </div> <div class="description"> <p> The Metrics Required for Raising a Series A Round | EquityZen | Where Private Investors Access Proven Startups </p> </div> <div class="readers"> <a href="bwertz.html"><img class="reader" src="http://pbs.twimg.com/profile_images/488743484375826432/11dWC2yH_normal.jpeg" title="@bwertz" /></a> <a href="DanielleMorrill.html"><img class="reader" src="http://pbs.twimg.com/profile_images/509198498190086144/k_Qgn1_a_normal.jpeg" title="@DanielleMorrill" /></a> <a href="ShriBhashyam.html"><img class="reader" src="http://pbs.twimg.com/profile_images/509799871562268672/X7mFnSyh_normal.jpeg" title="@ShriBhashyam" /></a> </div> </div> <div class="clearfix enable-sm enable-md "></div> </li> <li> <div class="summary"> <h2 class="title"> <a href="http://moz.com/rand/long-ugly-year-depression-thats-finally-fading">A Long, Ugly Year of Depression That's Finally Fading - Rand's Blog</a> </h2> <p class="site"> <span>moz.com</span> </p> <div class="crop"> <div><img class="image" src="http://cdn.moz.com/rand/wp-content/uploads/2014/09/dryteardrops.jpg" /></div> </div> <div class="description"> <p> Yesterday morning I woke up early to speak at the Business of Software conference in Boston. It was my first time there, and it’s an exceptional ... </p> </div> <div class="readers"> <a href="bwertz.html"><img class="reader" src="http://pbs.twimg.com/profile_images/488743484375826432/11dWC2yH_normal.jpeg" title="@bwertz" /></a> <a href="DanielleMorrill.html"><img class="reader" src="http://pbs.twimg.com/profile_images/509198498190086144/k_Qgn1_a_normal.jpeg" title="@DanielleMorrill" /></a> <a href="a16z.html"><img class="reader" src="http://pbs.twimg.com/profile_images/487366765106565120/jGvHRW6p_normal.png" title="@a16z" /></a> </div> </div> <div class="clearfix enable-sm "></div> </li> <li> <div class="summary"> <h2 class="title"> <a href="http://avc.com/2014/09/the-coin-center">The Coin Center – AVC</a> </h2> <p class="site"> <span>avc.com</span> </p> <div class="description"> <p> We have found that the best way to deal with policy makers and regulators when something new and threatening and dangerous looking comes around is to ... </p> </div> <div class="readers"> <a href="a16z.html"><img class="reader" src="http://pbs.twimg.com/profile_images/487366765106565120/jGvHRW6p_normal.png" title="@a16z" /></a> <a href="cdixon.html"><img class="reader" src="http://pbs.twimg.com/profile_images/2874406524/5ecf4e7907cbb226d8337704dd752dd5_normal.jpeg" title="@cdixon" /></a> <a href="anbuteau.html"><img class="reader" src="http://pbs.twimg.com/profile_images/510297189495889920/prGF7otr_normal.jpeg" title="@anbuteau" /></a> </div> </div> <div class="clearfix enable-sm enable-md enable-lg"></div> </li> </ul> </div> </div> <div class="footer"> <!-- <hr /> <p> Svven look'n'feel <span class="pull-right">Comments?</span> </p> --> </div> </div> <!--<script type="text/javascript" charset="utf-8"> initCycle(); </script>--> </body> </html>
46.978408
265
0.693114
3be652f3d00b99bcd5b1b18390a5762a8b782fd0
369
c
C
mentos/src/ui/command/cmd_whoami.c
adamantinum/MentOS
d24274f1047a0df0ed925297329c61332b3dab0f
[ "MIT" ]
1
2022-01-10T15:14:10.000Z
2022-01-10T15:14:10.000Z
mentos/src/ui/command/cmd_whoami.c
LauraCanaia/MentOS
9af9701ddb34b7904d9379badc2ba8e19a7b7071
[ "MIT" ]
null
null
null
mentos/src/ui/command/cmd_whoami.c
LauraCanaia/MentOS
9af9701ddb34b7904d9379badc2ba8e19a7b7071
[ "MIT" ]
null
null
null
/// MentOS, The Mentoring Operating system project /// @file cmd_whoami.c /// @brief /// @copyright (c) 2019 This file is distributed under the MIT License. /// See LICENSE.md for details. #include "commands.h" #include "stdio.h" void cmd_whoami(int argc, char **argv) { (void) argc; (void) argv; printf("%s\n", current_user.username); }
23.0625
71
0.642276
88edae2c1cdf7ab4040622b0cbf0f82f3f0836ec
680
kt
Kotlin
kuberig-gradle-plugin/src/main/kotlin/io/kuberig/gradle/tasks/resource/ResourceGenerationTask.kt
guai/kuberig
c709c2838a2adae4ba4115c3d01a6057122abf73
[ "Apache-2.0" ]
19
2020-11-09T02:44:28.000Z
2022-03-24T07:12:56.000Z
kuberig-gradle-plugin/src/main/kotlin/io/kuberig/gradle/tasks/resource/ResourceGenerationTask.kt
guai/kuberig
c709c2838a2adae4ba4115c3d01a6057122abf73
[ "Apache-2.0" ]
27
2019-05-12T16:20:17.000Z
2020-10-14T18:33:44.000Z
kuberig-gradle-plugin/src/main/kotlin/io/kuberig/gradle/tasks/resource/ResourceGenerationTask.kt
guai/kuberig
c709c2838a2adae4ba4115c3d01a6057122abf73
[ "Apache-2.0" ]
2
2020-02-27T18:30:49.000Z
2020-03-26T08:01:58.000Z
package io.kuberig.gradle.tasks.resource import io.kuberig.core.generation.yaml.YamlGenerator import io.kuberig.gradle.tasks.AbstractResourceTask import org.gradle.api.tasks.TaskAction open class ResourceGenerationTask : AbstractResourceTask() { @TaskAction fun generateResources() { val generator = YamlGenerator( this.environmentFileSystem(), this.kubeRigExtension().yamlOutputFileConvention ) val groupNameMatcher = this.groupNameMatcher(groupName, allGroups) val methodResults = this.resourceGeneratorMethodExecutor(groupNameMatcher) .execute() generator.generate(methodResults) } }
29.565217
82
0.729412
3e3612a205cbeaa2ea8022d29486cf503f492364
1,004
swift
Swift
VisualRecognitionWorkshop/Fireworks.swift
abl/workshops-2018
aacc3206503cc9d82818f0705635d93b22e88b98
[ "Apache-2.0" ]
3
2018-06-17T23:01:18.000Z
2019-06-19T12:51:05.000Z
VisualRecognitionWorkshop/Fireworks.swift
abl/workshops-2018
aacc3206503cc9d82818f0705635d93b22e88b98
[ "Apache-2.0" ]
2
2018-06-15T22:35:03.000Z
2018-06-19T16:00:29.000Z
VisualRecognitionWorkshop/Fireworks.swift
abl/workshops-2018
aacc3206503cc9d82818f0705635d93b22e88b98
[ "Apache-2.0" ]
7
2018-06-16T16:54:14.000Z
2018-06-18T13:15:49.000Z
// // Fireworks.swift // rainbow // // Created by David Okun IBM on 5/16/18. // Copyright © 2018 IBM. All rights reserved. // import Foundation import UIKit class Fireworks { static func show(for view: UIView, at point: CGPoint, with color: UIColor) { let emitter = CAEmitterLayer() emitter.frame = view.bounds emitter.renderMode = kCAEmitterLayerAdditive emitter.emitterPosition = point view.layer.addSublayer(emitter) let cell = CAEmitterCell() cell.contents = UIImage(named: "particle")?.cgImage cell.birthRate = 750 cell.lifetime = 5.0 cell.color = color.cgColor cell.alphaSpeed = -0.4 cell.velocity = 50 cell.velocityRange = 250 cell.emissionRange = CGFloat(Double.pi) * 2.0 emitter.emitterCells = [cell] DispatchQueue.main.asyncAfter(deadline: DispatchTime.now() + 5.0) { emitter.removeFromSuperlayer() } } }
27.135135
80
0.613546
3be1fdfbba1c4c050a7a4f7c9d177e463057d4df
145,996
c
C
src/bigtable.c
CountOnes/hamming_weight
1dd7554c0fc39e01c9d7fa54372fd4eccf458875
[ "Apache-2.0" ]
48
2016-04-24T06:50:20.000Z
2021-11-27T07:45:38.000Z
src/bigtable.c
CountOnes/hamming_weight
1dd7554c0fc39e01c9d7fa54372fd4eccf458875
[ "Apache-2.0" ]
2
2016-11-29T00:01:06.000Z
2016-12-05T13:40:02.000Z
src/bigtable.c
CountOnes/hamming_weight
1dd7554c0fc39e01c9d7fa54372fd4eccf458875
[ "Apache-2.0" ]
8
2016-06-13T06:14:10.000Z
2021-07-20T00:47:13.000Z
const uint8_t big_table[]= {0,1,1,2,1,2,2,3,1,2,2,3,2,3,3,4,1,2,2,3,2,3,3,4,2,3,3,4,3,4,4,5,1,2,2,3,2,3,3,4,2,3,3,4,3,4,4,5,2,3,3,4,3,4,4,5,3,4,4,5,4,5,5,6,1,2,2,3,2,3,3,4,2,3,3,4,3,4,4,5,2,3,3,4,3,4,4,5,3,4,4,5,4,5,5,6,2,3,3,4,3,4,4,5,3,4,4,5,4,5,5,6,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,1,2,2,3,2,3,3,4,2,3,3,4,3,4,4,5,2,3,3,4,3,4,4,5,3,4,4,5,4,5,5,6,2,3,3,4,3,4,4,5,3,4,4,5,4,5,5,6,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,2,3,3,4,3,4,4,5,3,4,4,5,4,5,5,6,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,1,2,2,3,2,3,3,4,2,3,3,4,3,4,4,5,2,3,3,4,3,4,4,5,3,4,4,5,4,5,5,6,2,3,3,4,3,4,4,5,3,4,4,5,4,5,5,6,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,2,3,3,4,3,4,4,5,3,4,4,5,4,5,5,6,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,2,3,3,4,3,4,4,5,3,4,4,5,4,5,5,6,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,1,2,2,3,2,3,3,4,2,3,3,4,3,4,4,5,2,3,3,4,3,4,4,5,3,4,4,5,4,5,5,6,2,3,3,4,3,4,4,5,3,4,4,5,4,5,5,6,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,2,3,3,4,3,4,4,5,3,4,4,5,4,5,5,6,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,2,3,3,4,3,4,4,5,3,4,4,5,4,5,5,6,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,2,3,3,4,3,4,4,5,3,4,4,5,4,5,5,6,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,1,2,2,3,2,3,3,4,2,3,3,4,3,4,4,5,2,3,3,4,3,4,4,5,3,4,4,5,4,5,5,6,2,3,3,4,3,4,4,5,3,4,4,5,4,5,5,6,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,2,3,3,4,3,4,4,5,3,4,4,5,4,5,5,6,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,2,3,3,4,3,4,4,5,3,4,4,5,4,5,5,6,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,2,3,3,4,3,4,4,5,3,4,4,5,4,5,5,6,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,2,3,3,4,3,4,4,5,3,4,4,5,4,5,5,6,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,1,2,2,3,2,3,3,4,2,3,3,4,3,4,4,5,2,3,3,4,3,4,4,5,3,4,4,5,4,5,5,6,2,3,3,4,3,4,4,5,3,4,4,5,4,5,5,6,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,2,3,3,4,3,4,4,5,3,4,4,5,4,5,5,6,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,2,3,3,4,3,4,4,5,3,4,4,5,4,5,5,6,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,2,3,3,4,3,4,4,5,3,4,4,5,4,5,5,6,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,2,3,3,4,3,4,4,5,3,4,4,5,4,5,5,6,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,2,3,3,4,3,4,4,5,3,4,4,5,4,5,5,6,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,1,2,2,3,2,3,3,4,2,3,3,4,3,4,4,5,2,3,3,4,3,4,4,5,3,4,4,5,4,5,5,6,2,3,3,4,3,4,4,5,3,4,4,5,4,5,5,6,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,2,3,3,4,3,4,4,5,3,4,4,5,4,5,5,6,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,2,3,3,4,3,4,4,5,3,4,4,5,4,5,5,6,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,2,3,3,4,3,4,4,5,3,4,4,5,4,5,5,6,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,2,3,3,4,3,4,4,5,3,4,4,5,4,5,5,6,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,2,3,3,4,3,4,4,5,3,4,4,5,4,5,5,6,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,2,3,3,4,3,4,4,5,3,4,4,5,4,5,5,6,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,1,2,2,3,2,3,3,4,2,3,3,4,3,4,4,5,2,3,3,4,3,4,4,5,3,4,4,5,4,5,5,6,2,3,3,4,3,4,4,5,3,4,4,5,4,5,5,6,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,2,3,3,4,3,4,4,5,3,4,4,5,4,5,5,6,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,2,3,3,4,3,4,4,5,3,4,4,5,4,5,5,6,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,2,3,3,4,3,4,4,5,3,4,4,5,4,5,5,6,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,2,3,3,4,3,4,4,5,3,4,4,5,4,5,5,6,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,2,3,3,4,3,4,4,5,3,4,4,5,4,5,5,6,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,2,3,3,4,3,4,4,5,3,4,4,5,4,5,5,6,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,2,3,3,4,3,4,4,5,3,4,4,5,4,5,5,6,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,10,11,11,12,11,12,12,13,11,12,12,13,12,13,13,14,1,2,2,3,2,3,3,4,2,3,3,4,3,4,4,5,2,3,3,4,3,4,4,5,3,4,4,5,4,5,5,6,2,3,3,4,3,4,4,5,3,4,4,5,4,5,5,6,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,2,3,3,4,3,4,4,5,3,4,4,5,4,5,5,6,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,2,3,3,4,3,4,4,5,3,4,4,5,4,5,5,6,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,2,3,3,4,3,4,4,5,3,4,4,5,4,5,5,6,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,2,3,3,4,3,4,4,5,3,4,4,5,4,5,5,6,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,2,3,3,4,3,4,4,5,3,4,4,5,4,5,5,6,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,2,3,3,4,3,4,4,5,3,4,4,5,4,5,5,6,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,2,3,3,4,3,4,4,5,3,4,4,5,4,5,5,6,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,10,11,11,12,11,12,12,13,11,12,12,13,12,13,13,14,2,3,3,4,3,4,4,5,3,4,4,5,4,5,5,6,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,10,11,11,12,11,12,12,13,11,12,12,13,12,13,13,14,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,10,11,11,12,11,12,12,13,11,12,12,13,12,13,13,14,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,10,11,11,12,11,12,12,13,11,12,12,13,12,13,13,14,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,10,11,11,12,11,12,12,13,11,12,12,13,12,13,13,14,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,10,11,11,12,11,12,12,13,11,12,12,13,12,13,13,14,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,10,11,11,12,11,12,12,13,11,12,12,13,12,13,13,14,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,10,11,11,12,11,12,12,13,11,12,12,13,12,13,13,14,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,10,11,11,12,11,12,12,13,11,12,12,13,12,13,13,14,10,11,11,12,11,12,12,13,11,12,12,13,12,13,13,14,11,12,12,13,12,13,13,14,12,13,13,14,13,14,14,15,1,2,2,3,2,3,3,4,2,3,3,4,3,4,4,5,2,3,3,4,3,4,4,5,3,4,4,5,4,5,5,6,2,3,3,4,3,4,4,5,3,4,4,5,4,5,5,6,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,2,3,3,4,3,4,4,5,3,4,4,5,4,5,5,6,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,2,3,3,4,3,4,4,5,3,4,4,5,4,5,5,6,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,2,3,3,4,3,4,4,5,3,4,4,5,4,5,5,6,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,2,3,3,4,3,4,4,5,3,4,4,5,4,5,5,6,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,2,3,3,4,3,4,4,5,3,4,4,5,4,5,5,6,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,2,3,3,4,3,4,4,5,3,4,4,5,4,5,5,6,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,2,3,3,4,3,4,4,5,3,4,4,5,4,5,5,6,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,10,11,11,12,11,12,12,13,11,12,12,13,12,13,13,14,2,3,3,4,3,4,4,5,3,4,4,5,4,5,5,6,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,10,11,11,12,11,12,12,13,11,12,12,13,12,13,13,14,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,10,11,11,12,11,12,12,13,11,12,12,13,12,13,13,14,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,10,11,11,12,11,12,12,13,11,12,12,13,12,13,13,14,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,10,11,11,12,11,12,12,13,11,12,12,13,12,13,13,14,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,10,11,11,12,11,12,12,13,11,12,12,13,12,13,13,14,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,10,11,11,12,11,12,12,13,11,12,12,13,12,13,13,14,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,10,11,11,12,11,12,12,13,11,12,12,13,12,13,13,14,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,10,11,11,12,11,12,12,13,11,12,12,13,12,13,13,14,10,11,11,12,11,12,12,13,11,12,12,13,12,13,13,14,11,12,12,13,12,13,13,14,12,13,13,14,13,14,14,15,2,3,3,4,3,4,4,5,3,4,4,5,4,5,5,6,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,10,11,11,12,11,12,12,13,11,12,12,13,12,13,13,14,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,10,11,11,12,11,12,12,13,11,12,12,13,12,13,13,14,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,10,11,11,12,11,12,12,13,11,12,12,13,12,13,13,14,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,10,11,11,12,11,12,12,13,11,12,12,13,12,13,13,14,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,10,11,11,12,11,12,12,13,11,12,12,13,12,13,13,14,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,10,11,11,12,11,12,12,13,11,12,12,13,12,13,13,14,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,10,11,11,12,11,12,12,13,11,12,12,13,12,13,13,14,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,10,11,11,12,11,12,12,13,11,12,12,13,12,13,13,14,10,11,11,12,11,12,12,13,11,12,12,13,12,13,13,14,11,12,12,13,12,13,13,14,12,13,13,14,13,14,14,15,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,10,11,11,12,11,12,12,13,11,12,12,13,12,13,13,14,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,10,11,11,12,11,12,12,13,11,12,12,13,12,13,13,14,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,10,11,11,12,11,12,12,13,11,12,12,13,12,13,13,14,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,10,11,11,12,11,12,12,13,11,12,12,13,12,13,13,14,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,10,11,11,12,11,12,12,13,11,12,12,13,12,13,13,14,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,10,11,11,12,11,12,12,13,11,12,12,13,12,13,13,14,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,10,11,11,12,11,12,12,13,11,12,12,13,12,13,13,14,10,11,11,12,11,12,12,13,11,12,12,13,12,13,13,14,11,12,12,13,12,13,13,14,12,13,13,14,13,14,14,15,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,10,11,11,12,11,12,12,13,11,12,12,13,12,13,13,14,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,10,11,11,12,11,12,12,13,11,12,12,13,12,13,13,14,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,10,11,11,12,11,12,12,13,11,12,12,13,12,13,13,14,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,10,11,11,12,11,12,12,13,11,12,12,13,12,13,13,14,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,10,11,11,12,11,12,12,13,11,12,12,13,12,13,13,14,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,10,11,11,12,11,12,12,13,11,12,12,13,12,13,13,14,10,11,11,12,11,12,12,13,11,12,12,13,12,13,13,14,11,12,12,13,12,13,13,14,12,13,13,14,13,14,14,15,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,10,11,11,12,11,12,12,13,11,12,12,13,12,13,13,14,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,10,11,11,12,11,12,12,13,11,12,12,13,12,13,13,14,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,10,11,11,12,11,12,12,13,11,12,12,13,12,13,13,14,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,10,11,11,12,11,12,12,13,11,12,12,13,12,13,13,14,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,10,11,11,12,11,12,12,13,11,12,12,13,12,13,13,14,10,11,11,12,11,12,12,13,11,12,12,13,12,13,13,14,11,12,12,13,12,13,13,14,12,13,13,14,13,14,14,15,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,10,11,11,12,11,12,12,13,11,12,12,13,12,13,13,14,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,10,11,11,12,11,12,12,13,11,12,12,13,12,13,13,14,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,10,11,11,12,11,12,12,13,11,12,12,13,12,13,13,14,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,10,11,11,12,11,12,12,13,11,12,12,13,12,13,13,14,10,11,11,12,11,12,12,13,11,12,12,13,12,13,13,14,11,12,12,13,12,13,13,14,12,13,13,14,13,14,14,15,7,8,8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,10,11,11,12,11,12,12,13,11,12,12,13,12,13,13,14,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,10,11,11,12,11,12,12,13,11,12,12,13,12,13,13,14,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,10,11,11,12,11,12,12,13,11,12,12,13,12,13,13,14,10,11,11,12,11,12,12,13,11,12,12,13,12,13,13,14,11,12,12,13,12,13,13,14,12,13,13,14,13,14,14,15,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,10,11,11,12,11,12,12,13,11,12,12,13,12,13,13,14,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,10,11,11,12,11,12,12,13,11,12,12,13,12,13,13,14,10,11,11,12,11,12,12,13,11,12,12,13,12,13,13,14,11,12,12,13,12,13,13,14,12,13,13,14,13,14,14,15,9,10,10,11,10,11,11,12,10,11,11,12,11,12,12,13,10,11,11,12,11,12,12,13,11,12,12,13,12,13,13,14,10,11,11,12,11,12,12,13,11,12,12,13,12,13,13,14,11,12,12,13,12,13,13,14,12,13,13,14,13,14,14,15,10,11,11,12,11,12,12,13,11,12,12,13,12,13,13,14,11,12,12,13,12,13,13,14,12,13,13,14,13,14,14,15,11,12,12,13,12,13,13,14,12,13,13,14,13,14,14,15,12,13,13,14,13,14,14,15,13,14,14,15,14,15,15,16};
72,998
145,995
0.551042
3fc177b7fde2d95199e0303d7ad18ccd3f81c661
324
kt
Kotlin
indexer-model/src/main/java/de/unihalle/informatik/bigdata/knjigica/indexer/model/LibrettoHolder.kt
heinrichreimer/knjigica-server
288c7bc8eb424e83d594fc5b38bc0e9f57a67130
[ "MIT" ]
null
null
null
indexer-model/src/main/java/de/unihalle/informatik/bigdata/knjigica/indexer/model/LibrettoHolder.kt
heinrichreimer/knjigica-server
288c7bc8eb424e83d594fc5b38bc0e9f57a67130
[ "MIT" ]
8
2019-01-21T21:12:19.000Z
2021-05-27T23:25:42.000Z
indexer-model/src/main/java/de/unihalle/informatik/bigdata/knjigica/indexer/model/LibrettoHolder.kt
heinrichreimer/knjigica-server
288c7bc8eb424e83d594fc5b38bc0e9f57a67130
[ "MIT" ]
1
2018-10-29T22:19:07.000Z
2018-10-29T22:19:07.000Z
package de.unihalle.informatik.bigdata.knjigica.indexer.model data class LibrettoHolder( val libretto: Sequence<Libretto>, val annotations: Sequence<Annotation>, val authors: Sequence<Author>, val operas: Sequence<Opera>, val plot: Sequence<Plot>, val roles: Sequence<Role> )
32.4
61
0.682099
5a9f14e1af62d176505b7e2a342736400aca7a1d
7,722
kt
Kotlin
joybao-esign-java/src/main/kotlin/com/joybao/esign/Account.kt
MarsCWD/joybao
6dae7021ecd3e3c51f250cdcb4491d1fd90bbbcc
[ "Apache-2.0" ]
null
null
null
joybao-esign-java/src/main/kotlin/com/joybao/esign/Account.kt
MarsCWD/joybao
6dae7021ecd3e3c51f250cdcb4491d1fd90bbbcc
[ "Apache-2.0" ]
null
null
null
joybao-esign-java/src/main/kotlin/com/joybao/esign/Account.kt
MarsCWD/joybao
6dae7021ecd3e3c51f250cdcb4491d1fd90bbbcc
[ "Apache-2.0" ]
null
null
null
package com.joybao.esign import DDP.DDPListener import com.joybao.constants.ProjectConstants import com.joybao.util.TaskCallBack import com.joybao.util.TaskObj import com.timevale.esign.sdk.tech.bean.OrganizeBean import com.timevale.esign.sdk.tech.bean.PersonBean import com.timevale.esign.sdk.tech.bean.result.AddAccountResult import com.timevale.esign.sdk.tech.bean.result.Result import com.timevale.esign.sdk.tech.impl.constants.OrganRegType import com.timevale.esign.sdk.tech.service.factory.AccountServiceFactory import org.slf4j.LoggerFactory import sun.rmi.runtime.Log /** * ESign 添加账户 */ object Account { private val Logger = LoggerFactory.getLogger(Account::class.java) private val SERVICE = AccountServiceFactory.instance() /** * 添加注册个人账户 */ fun addPerson(data: Map<String, Any>, cb: TaskCallBack) { Logger.info("添加个人账户") val identity: Map<*, *> val phone: String var identityId: String = "" var realName: String = "" val idCard: String val person = PersonBean() try { identity = data["identity"] as Map<*, *> phone = data["phone"] as String identityId = identity["identityId"] as String realName = identity["realName"] as String idCard = identity["IDCard"] as String person.mobile = phone person.email = "" person.name = realName person.idNo = idCard person.personArea = 0 // 默认为大陆 } catch (e: Exception) { Logger.error(e.message) Logger.error(realName) val res = Result() res.errCode = 56 res.msg = "客户端运行时错误" return cb.result(res, identityId) } Logger.info("添加个人账户$realName") cb.result(SERVICE.addAccount(person), identityId) } fun addOrganize(data: Map<String, Any>, cb: TaskCallBack) { Logger.info("添加企业账户") var name: String = "" var legalName: String = "" var legalIdNo: String = "" var agentName: String = "" var agentIdNo: String = "" var codeUSC: String = "" var codeORG: String = "" var codeNO: String = "" var userType: Int = 0 var identityId: String = "" val org = OrganizeBean() try { identityId = data.get("identityId") as String name = data["name"] as String codeUSC = if (data.containsKey("codeUSC")) data["codeUSC"] as String else "" codeORG = if (data.containsKey("codeORG")) data["codeORG"] as String else "" codeNO = if (data.containsKey("codeNO")) data["codeNO"] as String else "" userType = (data["userType"] as String).toInt() val regTypeStr = data["regType"] as String org.name = name org.organType = 0 // 注册方式 when (regTypeStr) { "Normal" -> { Logger.info("组织机构代码注册") org.organCode = codeORG org.regType = OrganRegType.NORMAL } "Merge" -> { Logger.info("社会统一信用代码注册") org.organCode = codeUSC org.regType = OrganRegType.MERGE } "Regcode" -> { Logger.info("注册号注册") org.organCode = codeNO org.regType = OrganRegType.REGCODE } } // 注册人 if (userType == 1) { Logger.info("代理人注册") agentName = data["agentName"] as String agentIdNo = data["agentID"] as String } else if (userType == 2) { Logger.info("法人注册") legalName = data["legalName"] as String legalIdNo = data["legalID"] as String } org.userType = userType org.legalName = legalName org.legalIdNo = legalIdNo org.agentName = agentName org.agentIdNo = agentIdNo org.legalArea = 0 } catch (e: Exception) { Logger.error(e.message) Logger.error(name) val res = Result() res.errCode = 56 res.msg = "客户端运行时错误" return cb.result(res, identityId) } Logger.info("添加企业账户$name") cb.result(SERVICE.addAccount(org), identityId) } /** * 添加个人账户OK */ fun addPersonOK(userId: String, recordId: String, res: AddAccountResult) { val params = HashMap<String, String>() params.put("userId", userId) params.put("recordId", recordId) params.put("accountId", res.accountId) val methodArgs = arrayOfNulls<Any>(1) methodArgs[0] = params Logger.info("添加个人账户成功 ${res.accountId}") ProjectConstants.ddp?.call("esign.person.ok", methodArgs, object : DDPListener() { override fun onResult(resultFields: MutableMap<String, Any>?) { super.onResult(resultFields) Logger.info(resultFields.toString()) } }) } /** * 添加个人账户失败OK * TODO 传输内容 */ fun addPersonNo(userId: String, recordId: String, res: Result) { val params = HashMap<String, String>() params.put("userId", userId) params.put("recordId", recordId) params.put("errCode", res.errCode.toString()) params.put("errMsg", res.msg.toString()) val methodArgs = arrayOfNulls<Any>(1) methodArgs[0] = params Logger.info("添加个人账户失败") ProjectConstants.ddp?.call("esign.person.no", methodArgs, object : DDPListener() { override fun onResult(resultFields: MutableMap<String, Any>?) { super.onResult(resultFields) Logger.info(resultFields.toString()) } }) } fun addCompanyOK(companyId: String, recordId: String, res: AddAccountResult) { val params = HashMap<String, String>() params.put("companyId", companyId) params.put("recordId", recordId) params.put("accountId", res.accountId) val methodArgs = arrayOfNulls<Any>(1) methodArgs[0] = params Logger.info("添加企业账户成功 ${res.accountId}") ProjectConstants.ddp?.call("esign.company.ok", methodArgs, object : DDPListener() { override fun onResult(resultFields: MutableMap<String, Any>?) { super.onResult(resultFields) Logger.info(resultFields.toString()) } }) } fun addCompanyNo(companyId: String, recordId: String, res: AddAccountResult) { val params = HashMap<String, String>() params.put("companyId", companyId) params.put("recordId", recordId) params.put("errCode", res.errCode.toString()) params.put("errMsg", res.msg.toString()) val methodArgs = arrayOfNulls<Any>(1) methodArgs[0] = params Logger.info("添加企业账户失败") ProjectConstants.ddp?.call("esign.company.no", methodArgs, object : DDPListener() { override fun onResult(resultFields: MutableMap<String, Any>?) { super.onResult(resultFields) Logger.info(resultFields.toString()) } }) } /** * 注销账户 */ fun deleteAccount(accountId: String) { SERVICE.deleteAccount(accountId) } }
33.141631
92
0.544548
d27fa0fda62f70eb2c0381600ab8e8923546fc7f
706
php
PHP
src/DependencyInjection/Compiler/CheckFirebaseMessagingEnabledPass.php
CedrickOka/notifier-server-bundle
4de374c3bea408c917056c952d9e5a61035116be
[ "MIT" ]
1
2022-02-01T15:29:49.000Z
2022-02-01T15:29:49.000Z
src/DependencyInjection/Compiler/CheckFirebaseMessagingEnabledPass.php
CedrickOka/notifier-server-bundle
4de374c3bea408c917056c952d9e5a61035116be
[ "MIT" ]
null
null
null
src/DependencyInjection/Compiler/CheckFirebaseMessagingEnabledPass.php
CedrickOka/notifier-server-bundle
4de374c3bea408c917056c952d9e5a61035116be
[ "MIT" ]
null
null
null
<?php namespace Oka\Notifier\ServerBundle\DependencyInjection\Compiler; use Symfony\Component\DependencyInjection\Compiler\CompilerPassInterface; use Symfony\Component\DependencyInjection\ContainerBuilder; /** * @author Cedrick Oka Baidai <okacedrick@gmail.com> */ class CheckFirebaseMessagingEnabledPass implements CompilerPassInterface { public function process(ContainerBuilder $container) { if (true === $container->hasDefinition('oka_notifier_server.channel.firebase_handler') && false === class_exists('Kreait\Firebase\Messaging')) { throw new \LogicException('To enable firebase channel handler you have to install the "kreait/firebase-bundle".'); } } }
35.3
152
0.763456
e53f54ac6e9b7bfd8125401457db0a165684d866
3,415
lua
Lua
CoreScripts/Modules/DevConsole/Components/ScrollingTextBox.lua
jackrestaki/Core-Scripts
31e68fd04caa585a0a52889aa2efda37ced4203e
[ "Apache-2.0" ]
null
null
null
CoreScripts/Modules/DevConsole/Components/ScrollingTextBox.lua
jackrestaki/Core-Scripts
31e68fd04caa585a0a52889aa2efda37ced4203e
[ "Apache-2.0" ]
null
null
null
CoreScripts/Modules/DevConsole/Components/ScrollingTextBox.lua
jackrestaki/Core-Scripts
31e68fd04caa585a0a52889aa2efda37ced4203e
[ "Apache-2.0" ]
null
null
null
local CorePackages = game:GetService("CorePackages") local UserInputService = game:GetService("UserInputService") local TextService = game:GetService("TextService") local Roact = require(CorePackages.Roact) local TEXTBOX_RIGHTSIDE_THRESHOLD = 0.9 local ScrollingTextBox = Roact.Component:extend("ScrollingTextBox") function ScrollingTextBox:init(props) local fontDims = TextService:GetTextSize("A", props.TextSize, props.Font, Vector2.new(0, 0)) self.adjustOffset = function() if self.clipBox.current and self.textboxRef.current then -- this logic only works for monospace font -- cursorposition returns 1 for the left most cursor position local fontDims = self.state.fontDims local cursorPos = self.textboxRef.current.CursorPosition - 1 local innerCursorPos = cursorPos - (math.ceil(self.state.innerXOffset/fontDims.X)) local maxCursorPos = math.floor(self.clipBox.current.AbsoluteSize.X * TEXTBOX_RIGHTSIDE_THRESHOLD / fontDims.X) if innerCursorPos > maxCursorPos then local newOffset = (cursorPos - maxCursorPos) * fontDims.X self:setState({ innerXOffset = newOffset }) elseif innerCursorPos < 0 then local newOffset = cursorPos * fontDims.X self:setState({ innerXOffset = newOffset }) end end end self.clipBox = Roact.createRef() self.textboxRef = self.props[Roact.Ref] or Roact.createRef() self.state = { fontDims = fontDims, innerXOffset = 0, } end function ScrollingTextBox:didMount() if not self.onFocusConnection then self.onFocusConnection = UserInputService.InputBegan:Connect(function(input) if self.textboxRef.current and self.textboxRef.current:IsFocused() then if input.KeyCode == Enum.KeyCode.Home then self.textboxRef.current.CursorPosition = 0 elseif input.KeyCode == Enum.KeyCode.End then -- plus one for the position after the last character self.textboxRef.current.CursorPosition = #self.textboxRef.current.text + 1 else self.adjustOffset() end end end) end end function ScrollingTextBox:willUnmount() if self.onFocusConnection then self.onFocusConnection:Disconnect() self.onFocusConnection = nil end end function ScrollingTextBox:render() local position = self.props.Position local size = self.props.Size local placeHolderText = self.props.PlaceholderText local textColor = self.props.TextColor3 local textSize = self.props.TextSize local font = self.props.Font local text = self.props.Text local clearTextOnFocus = self.props.ClearTextOnFocus local showNativeInput = self.props.ShowNativeInput local textboxOnFocusLost = self.props.TextBoxFocusLost local innerXOffset = self.state.innerXOffset return Roact.createElement("Frame", { Position = position, Size = size, BackgroundTransparency = 1, ClipsDescendants = true, [Roact.Ref] = self.clipBox, }, { TextBox = Roact.createElement("TextBox", { Position = UDim2.new(0, -innerXOffset, 0, 0), Size = UDim2.new(1, innerXOffset, 1, 0), BackgroundTransparency = 1, ShowNativeInput = showNativeInput, ClearTextOnFocus = clearTextOnFocus, TextColor3 = textColor, TextXAlignment = 0, TextSize = textSize, Text = text, Font = font, PlaceholderText = placeHolderText, [Roact.Ref] = self.textboxRef, [Roact.Change.CursorPosition] = self.adjustOffset, [Roact.Event.FocusLost] = textboxOnFocusLost, }), }) end return ScrollingTextBox
29.188034
114
0.747877
81129d757f28a58fdc44ce1cb2c97c7f85796b39
623
rs
Rust
examples/basic-stdio.rs
sonro/linurgy
432e42fe9820db18a5b9b0ff5ba651502d535e1e
[ "Apache-2.0", "MIT" ]
1
2019-07-31T16:37:40.000Z
2019-07-31T16:37:40.000Z
examples/basic-stdio.rs
sonro/linurgy
432e42fe9820db18a5b9b0ff5ba651502d535e1e
[ "Apache-2.0", "MIT" ]
3
2020-02-11T18:26:30.000Z
2022-01-27T14:49:35.000Z
examples/basic-stdio.rs
sonro/linurgy
432e42fe9820db18a5b9b0ff5ba651502d535e1e
[ "Apache-2.0", "MIT" ]
null
null
null
use std::io::{stdin, Read, Result}; /// Edit stdin and output to stdout. /// /// This will add a line of dashes after every line. This will only output /// after the user has ended the input stream. If you want to watch a file, /// or use the program more interactively, use `buffered_edit` instead. fn main() -> Result<()> { // appeneds "---\n" after every line let editor = linurgy::factory::appender("---\n", 1); // input buffer let mut input = String::new(); // read the input stdin().read_to_string(&mut input)?; // write the output print!("{}", editor.edit(&input)); Ok(()) }
27.086957
75
0.624398
66465a9ed3a8d9a7ba7a58b46fd32e16289900c7
662
css
CSS
examples/css-modules/styles/utils/align.css
lingard/react-css-utils
aa7d3a2acb7b9614950b7065396f135012645523
[ "MIT" ]
1
2016-05-15T12:46:52.000Z
2016-05-15T12:46:52.000Z
examples/css-modules/styles/utils/align.css
lingard/react-css-utils
aa7d3a2acb7b9614950b7065396f135012645523
[ "MIT" ]
null
null
null
examples/css-modules/styles/utils/align.css
lingard/react-css-utils
aa7d3a2acb7b9614950b7065396f135012645523
[ "MIT" ]
null
null
null
@define-mixin utils-align-setup $namespace { /** * Vertical alignment utilities * Depends on an appropriate `display` value. */ .$(namespace)baseline { vertical-align: baseline !important; } .$(namespace)bottom { vertical-align: bottom !important; } .$(namespace)middle { vertical-align: middle !important; } .$(namespace)top { vertical-align: top !important; } } :root { @mixin utils-align-setup; } @media (--palm) { :root { @mixin utils-align-setup palm-; } } @media (--lap) { :root { @mixin utils-align-setup lap-; } } @media (--desk) { :root { @mixin utils-align-setup desk-; } }
14.391304
47
0.601208
f35c3bfcb0953cde6a5e655da12e59082bf751b3
2,370
swift
Swift
Swift Rockets.playgroundbook/Contents/Sources/Satellite.swift
desplesda/SwiftRockets
58fc6164fc4449d57a828d265b7b8e41eba58752
[ "MIT" ]
null
null
null
Swift Rockets.playgroundbook/Contents/Sources/Satellite.swift
desplesda/SwiftRockets
58fc6164fc4449d57a828d265b7b8e41eba58752
[ "MIT" ]
null
null
null
Swift Rockets.playgroundbook/Contents/Sources/Satellite.swift
desplesda/SwiftRockets
58fc6164fc4449d57a828d265b7b8e41eba58752
[ "MIT" ]
null
null
null
import SpriteKit import UIKit public enum OrbitalObject: Trackable { case chandra, compton, debris, drone, explorer, hubble, iss, landsat case missile, noaa15, rocket, rocketlaunch, rocketshield, spitzer, sputnik, tiros, vanguard public var image: UIImage { return UIImage(named: self.filename)! } public var sprite: SKSpriteNode { return SKSpriteNode(imageNamed: self.filename) } public var filename: String { switch self { case .chandra: return "chandra.png" case .compton: return "compton.png" case .debris: return "debris.png" case .drone: return "drone.png" case .explorer: return "explorer.png" case .hubble: return "hubble.png" case .iss: return "iss.png" case .landsat: return "landsat.png" case .noaa15: return "noaa15.png" case .missile: return "missile.png" case .rocket: return "rocket.png" case .rocketlaunch: return "rocket-launch.png" case .rocketshield: return "rocket-shield.png" case .spitzer: return "spitzer.png" case .sputnik: return "sputnik.png" case .tiros: return "tiros.png" case .vanguard: return "vanguard.png" } } public var size: Double { switch self { case .missile, .drone: return 300 case .explorer, .sputnik, .tiros, .vanguard: return 400 case .landsat, .noaa15: return 500 case .rocket, .rocketlaunch, .rocketshield: return 800 case .chandra, .compton, .hubble, .spitzer: return 800 case .iss: return 1200 case .debris: return 2000 } } public var position: Double { switch self { case .chandra: return 0.5 case .compton: return 0.1 case .debris: return 0.5 case .explorer: return 0.45 case .hubble: return 0.85 case .iss: return 0.4 case .landsat: return 0.9 case .noaa15: return 0.7 case .spitzer: return 0.65 case .sputnik: return 0.15 case .tiros: return 0.8 case .vanguard: return 0.25 default: return 0.5 } } public var altitude: Double { switch self { case .chandra: return 0.5 case .compton: return 0.45 case .debris: return 0.4 case .explorer: return 0.4 case .hubble: return 0.7 case .iss: return 0.65 case .landsat: return 0.45 case .noaa15: return 0.4 case .spitzer: return 0.75 case .sputnik: return 0.3 case .tiros: return 0.6 case .vanguard: return 0.5 default: return 0.0 } } public var speed: Double { return 0.0 } }
26.333333
92
0.679747
f97e81558abdcb52dd2b63dc1042e1bcb7773b81
6,727
sql
SQL
dba/usp_JobStats.sql
viswaratha12/dbwarden
3931accda4fb401d21b6cb272fe3d6959915ceb8
[ "Apache-2.0" ]
2
2018-04-03T05:18:15.000Z
2020-04-23T04:00:25.000Z
dba/usp_JobStats.sql
viswaratha12/dbwarden
3931accda4fb401d21b6cb272fe3d6959915ceb8
[ "Apache-2.0" ]
null
null
null
dba/usp_JobStats.sql
viswaratha12/dbwarden
3931accda4fb401d21b6cb272fe3d6959915ceb8
[ "Apache-2.0" ]
4
2016-05-14T17:56:55.000Z
2020-01-23T12:02:25.000Z
/****** Object: StoredProcedure [dbo].[usp_JobStats] ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE PROC dbo.usp_JobStats (@InsertFlag BIT = 0) AS /************************************************************************************************************** ** Purpose: ** ** Revision History ** ** Date Author Version Revision ** ---------- -------------------- ------------- ------------- ** 02/21/2012 Michael Rounds 1.0 Comments creation ** 03/13/2012 Michael Rounds 1.1 Added join to syscategories to pull in Category name ** 04/24/2013 Volker.Bachmann from SSC 1.1.1 Added COALESCE to MAX(ja.start_execution_date) and MAX(ja.stop_execution_date) ** 05/01/2013 Michael Rounds 1.2 Creating temp tables instead of inserting INTO ** Removed COALESCE's from previous change on 4/24. Causing dates to read 1/1/1900 when NULL. Would rather have NULL. ** 05/17/2013 Michael Rounds 1.2.1 Added Job Owner to JobStatsHistory ** 07/23/2013 Michael Rounds 1.3 Tweaked to support Case-sensitive ** 06/19/2017 Matthew Monroe 1.3.1 Use xp_sqlagent_enum_jobs to confirm that jobs are actually running ***************************************************************************************************************/ BEGIN CREATE TABLE #TEMP ( Job_ID NVARCHAR(255), [Owner] NVARCHAR(255), Name NVARCHAR(128), Category NVARCHAR(128), [Enabled] BIT, Last_Run_Outcome INT, Last_Run_Date NVARCHAR(20) ) CREATE TABLE #TEMP2 ( JobName NVARCHAR(128), [Owner] NVARCHAR(255), Category NVARCHAR(128), [Enabled] BIT, StartTime DATETIME, StopTime DATETIME, AvgRunTime NUMERIC(20,10), LastRunTime INT, RunTimeStatus NVARCHAR(128), LastRunOutcome NVARCHAR(20) ) -- If a job was running while the server restarted, it will appear that the job is still running even though it isn't -- Use xp_sqlagent_enum_jobs to find jobs that are actually running CREATE TABLE #JobStatus (job_id UNIQUEIDENTIFIER NOT NULL, last_run_date INT NOT NULL, last_run_time INT NOT NULL, next_run_date INT NOT NULL, next_run_time INT NOT NULL, next_run_schedule_id INT NOT NULL, requested_to_run INT NOT NULL, -- BOOL request_source INT NOT NULL, request_source_id sysname COLLATE database_default NULL, running INT NOT NULL, -- BOOL current_step INT NOT NULL, current_retry_attempt INT NOT NULL, job_state INT NOT NULL) INSERT INTO #JobStatus EXEC master.dbo.xp_sqlagent_enum_jobs 1,dbo INSERT INTO #TEMP (Job_ID,[Owner],Name,Category,[Enabled],Last_Run_Outcome,Last_Run_Date) SELECT sj.job_id, SUSER_SNAME(sj.owner_sid) AS [Owner], sj.name, sc.name AS Category, sj.[Enabled], sjs.last_run_outcome, (SELECT MAX(run_date) FROM msdb..sysjobhistory(nolock) sjh WHERE sjh.job_id = sj.job_id) AS last_run_date FROM msdb..sysjobs(nolock) sj JOIN msdb..sysjobservers(nolock) sjs ON sjs.job_id = sj.job_id JOIN msdb..syscategories sc ON sj.category_id = sc.category_id INSERT INTO #TEMP2 (JobName,[Owner],Category,[Enabled],StartTime,StopTime,AvgRunTime,LastRunTime,RunTimeStatus,LastRunOutcome) SELECT t.name AS JobName, t.[Owner], t.Category, t.[Enabled], MAX(ja.start_execution_date) AS [StartTime], MAX(ja.stop_execution_date) AS [StopTime], COALESCE(AvgRunTime,0) AS AvgRunTime, CASE WHEN ja.stop_execution_date IS NULL THEN CASE WHEN IsNull(JobStatus.Running, 0) > 0 THEN DATEDIFF(ss,ja.start_execution_date,GETDATE()) ELSE NULL END ELSE DATEDIFF(ss,ja.start_execution_date,ja.stop_execution_date) END AS [LastRunTime], CASE WHEN ja.stop_execution_date IS NULL AND ja.start_execution_date IS NOT NULL THEN CASE WHEN IsNull(JobStatus.Running, 0) > 0 AND DATEDIFF(ss,ja.start_execution_date,GETDATE()) > (AvgRunTime + AvgRunTime * .25) THEN 'LongRunning-NOW' WHEN IsNull(JobStatus.Running, 0) > 0 THEN 'NormalRunning-NOW' ELSE 'Aborted' END WHEN DATEDIFF(ss,ja.start_execution_date,ja.stop_execution_date) > (AvgRunTime + AvgRunTime * .25) THEN 'LongRunning-History' WHEN ja.stop_execution_date IS NULL AND ja.start_execution_date IS NULL THEN 'NA' ELSE 'NormalRunning-History' END AS [RunTimeStatus], CASE WHEN ja.stop_execution_date IS NULL AND ja.start_execution_date IS NOT NULL THEN CASE WHEN IsNull(JobStatus.Running, 0) > 0 THEN 'InProcess' ELSE 'ABORTED' End WHEN ja.stop_execution_date IS NOT NULL AND t.last_run_outcome = 3 THEN 'CANCELLED' WHEN ja.stop_execution_date IS NOT NULL AND t.last_run_outcome = 0 THEN 'ERROR' WHEN ja.stop_execution_date IS NOT NULL AND t.last_run_outcome = 1 THEN 'SUCCESS' ELSE 'NA' END AS [LastRunOutcome] FROM #TEMP AS t LEFT OUTER JOIN (SELECT MAX(session_id) as session_id,job_id FROM msdb..sysjobactivity(nolock) WHERE run_requested_date IS NOT NULL GROUP BY job_id) AS ja2 ON t.job_id = ja2.job_id LEFT OUTER JOIN (SELECT Cast(job_id as nvarchar(255)) AS job_id, running FROM #JobStatus) AS JobStatus ON t.job_id = JobStatus.job_id LEFT OUTER JOIN msdb..sysjobactivity(nolock) ja ON ja.session_id = ja2.session_id and ja.job_id = t.job_id LEFT OUTER JOIN (SELECT job_id, AVG ((run_duration/10000 * 3600) + ((run_duration%10000)/100*60) + (run_duration%10000)%100) + STDEV ((run_duration/10000 * 3600) + ((run_duration%10000)/100*60) + (run_duration%10000)%100) AS [AvgRunTime] FROM msdb..sysjobhistory(nolock) WHERE step_id = 0 AND run_status = 1 and run_duration >= 0 GROUP BY job_id) art ON t.job_id = art.job_id GROUP BY t.name,t.[Owner],t.Category,t.[Enabled],t.last_run_outcome,ja.start_execution_date,ja.stop_execution_date,AvgRunTime,JobStatus.Running ORDER BY t.name SELECT * FROM #TEMP2 IF @InsertFlag = 1 BEGIN INSERT INTO [dba].dbo.JobStatsHistory (JobName,[Owner],Category,[Enabled],StartTime,StopTime,[AvgRunTime],[LastRunTime],RunTimeStatus,LastRunOutcome) SELECT JobName,[Owner],Category,[Enabled],StartTime,StopTime,[AvgRunTime],[LastRunTime],RunTimeStatus,LastRunOutcome FROM #TEMP2 UPDATE [dba].dbo.JobStatsHistory SET JobStatsID = (SELECT COALESCE(MAX(JobStatsID),0) + 1 FROM [dba].dbo.JobStatsHistory) WHERE JobStatsID IS NULL END DROP TABLE #TEMP DROP TABLE #TEMP2 END GO
41.524691
210
0.6575
8459ac05848690ff2fed38f9b1033170a34f10c1
241
swift
Swift
Weather/Modules/CitySearch/Factory/CitySearchFactory.swift
dvstupivtsev/Weather
19ee4335afee1a8a05045acec65d0c4cf477dfd5
[ "MIT" ]
3
2019-08-04T14:10:48.000Z
2019-08-20T15:41:42.000Z
Weather/Modules/CitySearch/Factory/CitySearchFactory.swift
dvstupivtsev/Weather
19ee4335afee1a8a05045acec65d0c4cf477dfd5
[ "MIT" ]
null
null
null
Weather/Modules/CitySearch/Factory/CitySearchFactory.swift
dvstupivtsev/Weather
19ee4335afee1a8a05045acec65d0c4cf477dfd5
[ "MIT" ]
2
2019-06-28T16:43:46.000Z
2019-06-28T20:57:40.000Z
// // Created by Dmitriy Stupivtsev on 06/05/2019. // import UIKit // sourcery: AutoMockable protocol CitySearchFactory { func create(selectStrategy: CitySearchSelectStrategy, persistentStore: CitySearchService) -> UIViewController }
21.909091
113
0.780083