import std, core.bitop; string[] _R; void readM(T)(ref T x) { while (_R.empty) { _R = readln.chomp.split; } x = _R.front.to!T; _R.popFront; } bool chmin(T)(ref T A, T B) { if (A > B) { A = B; return true; } else { return false; } } bool chmax(T)(ref T A, T B) { if (A < B) { A = B; return true; } else { return false; } } int lowerBound(T)(T[] A, T x) { int lo = -1, hi = cast(int)(A.length); while (hi - lo > 1) { int mid = lo + hi >> 1; (A[mid] < x ? lo : hi) = mid; } return hi; } int upperBound(T)(T[] A, T x) { int lo = -1, hi = cast(int)(A.length); while (hi - lo > 1) { int mid = lo + hi >> 1; (A[mid] > x ? hi : lo) = mid; } return hi; } void main() { int TE; TE.readM; foreach (_; 0 .. TE) { int N; long X; N.readM; X.readM; if (cast(long)(N) * (N + 1) / 2 > X) { writeln(-1); } else { long[] ans; foreach (i; 0 .. N - 1) { ans ~= i + 1; } ans ~= X - cast(long)(N) * (N - 1) / 2; writefln("%(%s %)", ans); } } }