import java.util.Scanner; import java.util.HashMap; class Main{ public static void main(String[] args){ Scanner sc = new Scanner(System.in); int N = sc.nextInt(); long bef = 0; long sum = 0; HashMap map = new HashMap<>(); while(N-->0){ long L = sc.nextLong()-1; long R = sc.nextLong(); sum += L-bef; if(sum%2==1) map.merge(sum,R-L,Long::sum); bef = R; } long g = 0; for(long num:map.values()) g ^= num; System.out.println(g>0?"First":"Second"); } }